*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #0a2540;
  background: #ffffff;
  font-feature-settings: "ss01" on, "cv01" on;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #0a2540;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
p {
  color: #425466;
}

p + p {
  margin-top: 1rem;
}

a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 24, 50, 0.25);
}

strong {
  font-weight: 700;
  color: #0a2540;
}

.lede {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #425466;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8863b;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.hindi-text {
  font-family: "Noto Sans Devanagari", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.9;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  background: #0a2540;
  color: #fff;
  border-radius: 10px;
  z-index: 2000;
  clip: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.text-center {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition-property: opacity, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 450ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition-property: border-color, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.site-header.is-scrolled {
  border-color: #e3e8ee;
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
}

.header-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1rem;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #7a1832, #4a0f22);
  color: #fff;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0a2540;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 0.8125rem;
  color: #6b7c93;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #425466;
  transition-property: color, background-color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover {
  color: #0a2540;
  background: #f6f9fc;
}
.nav-link.is-active {
  color: #7a1832;
  font-weight: 600;
}
.nav-link .chev {
  width: 12px;
  height: 12px;
  transition-property: transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .nav-link .chev,
.nav-item.is-open .nav-link .chev {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1), 0 2px 6px rgba(10, 37, 64, 0.06);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition-property: opacity, transform, visibility;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #425466;
  transition-property: color, background-color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown-link:hover {
  background: #f6f9fc;
  color: #7a1832;
}

.nav-cta {
  margin-left: 0.75rem;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #0a2540;
  position: relative;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle-icon {
  display: flex;
}

.nav-toggle-icon--close {
  display: none;
}

.nav-toggle[aria-expanded=true] .nav-toggle-icon--open {
  display: none;
}
.nav-toggle[aria-expanded=true] .nav-toggle-icon--close {
  display: flex;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }
  .nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition-property: transform, visibility;
    transition-duration: 250ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .nav-link {
    border-radius: 6px;
    padding: 0.75rem;
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 0.75rem;
  }
  .nav-item.is-open .nav-dropdown {
    display: block;
  }
  .nav-cta {
    margin: 1rem 0 0;
  }
}
.site-footer {
  margin-top: 6rem;
  background: #0a2540;
  color: rgba(255, 255, 255, 0.72);
}

.footer-top {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .footer-top {
    padding-inline: 1rem;
  }
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 3rem;
  padding-block: 4rem;
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand .brand-mark {
  background: linear-gradient(135deg, #d9a94f, #b8863b);
}
.footer-brand .brand-name {
  color: #fff;
}
.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.55);
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 32ch;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-link:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #d9a94f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .footer-bottom-inner {
    padding-inline: 1rem;
  }
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-header {
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
  border-bottom: 1px solid #e3e8ee;
  padding-block: 3rem 2rem;
}

.page-header-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .page-header-inner {
    padding-inline: 1rem;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7c93;
  margin-bottom: 1rem;
}
.breadcrumb a {
  transition-property: color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb a:hover {
  color: #7a1832;
}
.breadcrumb svg {
  width: 12px;
  height: 12px;
}

.page-title {
  margin-bottom: 0.5rem;
}

.page-lede {
  max-width: 60ch;
  font-size: 1.25rem;
}

.content-layout {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .content-layout {
    padding-inline: 1rem;
  }
}
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  padding-block: 4rem;
}
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
}

.content-main {
  min-width: 0;
}

.content-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
  padding: 2rem;
}
@media (max-width: 540px) {
  .content-card {
    padding: 1.5rem;
  }
}

.prose {
  font-size: 1.0625rem;
  color: #425466;
}
.prose img {
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
}
.prose .prose-figure {
  float: left;
  width: 220px;
  margin: 0.25rem 1.5rem 1rem 0;
  position: relative;
}
@media (max-width: 540px) {
  .prose .prose-figure {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }
}
.prose .prose-figure img {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.prose .prose-figure .prose-figure-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: linear-gradient(160deg, #f6f9fc, #fbeef1);
  color: #a3acb9;
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
}
.prose .prose-figure .prose-figure-fallback svg {
  width: 32px;
  height: 32px;
}
.prose .prose-figure.is-fallback img {
  display: none;
}
.prose .prose-figure.is-fallback .prose-figure-fallback {
  display: flex;
}
.prose .prose-signoff {
  margin-top: 1.5rem;
  font-weight: 600;
  color: #0a2540;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.06);
  padding: 1.5rem;
}

.sidebar-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-card-title svg {
  width: 18px;
  height: 18px;
  color: #7a1832;
}

.sidebar-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: #425466;
  transition-property: color, background-color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-link:hover {
  background: #f6f9fc;
  color: #7a1832;
}

.sidebar-card--accent {
  background: linear-gradient(160deg, #7a1832, #4a0f22);
  color: #fff;
  border: none;
}
.sidebar-card--accent .sidebar-card-title {
  color: #fff;
}
.sidebar-card--accent p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.btn {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 24, 50, 0.25);
}
.btn {
  transition-property: background-color, border-color, color, box-shadow, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: #7a1832;
  color: #fff;
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
}
.btn--primary:hover {
  background: #611429;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1), 0 2px 6px rgba(10, 37, 64, 0.06);
}

.btn--ghost {
  background: transparent;
  color: #0a2540;
  border: 1px solid #e3e8ee;
}
.btn--ghost:hover {
  background: #f6f9fc;
  border-color: #a3acb9;
}

.btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.btn--light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--white {
  background: #fff;
  color: #7a1832;
}
.btn--white:hover {
  background: #f6f9fc;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% -10%, #fbeef1 0%, #ffffff 55%);
  border-bottom: 1px solid #e3e8ee;
}

.hero-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .hero-inner {
    padding-inline: 1rem;
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-block: 6rem 4rem;
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 3rem 2rem;
    text-align: center;
  }
}

.hero-copy h1 {
  margin-block: 1rem 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
  }
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .hero-stats {
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

.hero-stat-value {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #7a1832;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: #6b7c93;
}

.hero-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.16), 0 8px 16px rgba(10, 37, 64, 0.08);
  border: 1px solid #e3e8ee;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 450ms;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #7a1832, #4a0f22);
}
.hero-slide-fallback svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.35);
}

[data-media].is-fallback .hero-slide-media {
  display: none;
}
[data-media].is-fallback .hero-slide-fallback {
  display: flex;
}

.hero-slide-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(10, 8, 8, 0.72) 0%, rgba(10, 8, 8, 0) 100%);
  font-size: 0.9375rem;
  font-weight: 600;
}

.hero-slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.hero-slider-dot {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition-property: background-color, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slider-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

.section {
  padding-block: 6rem;
}
@media (max-width: 768px) {
  .section {
    padding-block: 3rem;
  }
}

.section--alt {
  background: #f6f9fc;
  border-block: 1px solid #e3e8ee;
}

.section-inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .section-inner {
    padding-inline: 1rem;
  }
}

.section-head {
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
  transition-property: box-shadow, transform, border-color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1), 0 2px 6px rgba(10, 37, 64, 0.06);
  transform: translateY(-2px);
  border-color: #a3acb9;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fbeef1;
  color: #7a1832;
  margin-bottom: 1rem;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: #425466;
}

.people-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .people-grid {
    grid-template-columns: 1fr;
  }
}

.people-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1), 0 2px 6px rgba(10, 37, 64, 0.06);
  border: 1px solid #e3e8ee;
}

.people-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-media-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #faf3e3, #f6f9fc);
}
.people-media-fallback svg {
  width: 64px;
  height: 64px;
  color: #a3acb9;
}

.people-media[data-media].is-fallback img {
  display: none;
}
.people-media[data-media].is-fallback .people-media-fallback {
  display: flex;
}

.quote-mark {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  color: #b8863b;
  margin-bottom: 0.5rem;
}

.link-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .link-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .link-strip {
    grid-template-columns: 1fr;
  }
}

.link-strip-item {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.06);
  transition-property: box-shadow, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0a2540;
}
.link-strip-item:hover {
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
  transform: translateY(-2px);
}
.link-strip-item svg {
  width: 20px;
  height: 20px;
  color: #7a1832;
  flex-shrink: 0;
}

.cta-band {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 768px) {
  .cta-band {
    padding-inline: 1rem;
  }
}
.cta-band {
  border-radius: 24px;
  background: linear-gradient(135deg, #7a1832, #4a0f22);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.16), 0 8px 16px rgba(10, 37, 64, 0.08);
}
@media (max-width: 768px) {
  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.data-table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e3e8ee;
}
.data-table th, .data-table td {
  padding: 1rem;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid #e3e8ee;
}
.data-table thead th {
  background: #0a2540;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.data-table tbody tr:last-child td {
  border-bottom: none;
}
.data-table tbody tr:nth-child(even) {
  background: #f6f9fc;
}
.data-table ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.gallery-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 24, 50, 0.25);
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid #e3e8ee;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 450ms;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-fallback {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(160deg, #f6f9fc, #fbeef1);
  color: #6b7c93;
}
.gallery-item-fallback svg {
  width: 32px;
  height: 32px;
}
.gallery-item-fallback span {
  font-size: 0.8125rem;
}

.gallery-item[data-media].is-fallback img {
  display: none;
}
.gallery-item[data-media].is-fallback .gallery-item-fallback {
  display: flex;
}

.gallery-item-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 8, 0.28);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
}
.gallery-item-zoom svg {
  width: 24px;
  height: 24px;
}

.gallery-item:hover .gallery-item-zoom,
.gallery-item:focus-visible .gallery-item-zoom {
  opacity: 1;
}

.gallery-item.is-fallback {
  cursor: default;
}
.gallery-item.is-fallback .gallery-item-zoom {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(10, 8, 8, 0.82);
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  position: relative;
  max-width: min(880px, 92vw);
  max-height: 86vh;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.16), 0 8px 16px rgba(10, 37, 64, 0.08);
}

.lightbox-close {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.lightbox-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 24, 50, 0.25);
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition-property: background-color;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox-close svg {
  width: 18px;
  height: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.06);
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fbeef1;
  color: #7a1832;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 0.8125rem;
  color: #6b7c93;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0a2540;
}

.map-frame {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(10, 37, 64, 0.08), 0 1px 1px rgba(10, 37, 64, 0.04);
  overflow: hidden;
  min-height: 360px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
