:root {
  --navy-950: #08111f;
  --navy-900: #0b1628;
  --navy-800: #0f1e35;
  --navy-700: #183055;
  --gold-500: #c4963a;
  --gold-400: #e2b95a;
  --ivory-100: #f9f6f0;
  --ivory-200: #efe7da;
  --text-dark: #1a1008;
  --text-soft: #8a7e6e;
  --border-gold: rgba(196, 150, 58, 0.32);
  --shadow-deep: 0 24px 60px rgba(4, 10, 20, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: var(--ivory-100);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(226, 185, 90, 0.08), transparent 32%),
    radial-gradient(circle at bottom left, rgba(15, 30, 53, 0.08), transparent 24%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  z-index: -1;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(8, 17, 31, 0.88);
  border-color: rgba(196, 150, 58, 0.16);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 48px rgba(4, 10, 20, 0.28);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(196, 150, 58, 0.3);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.1;
}

.brand-title {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 18px 34px rgba(196, 150, 58, 0.2);
}

.btn-outline {
  border-color: rgba(196, 150, 58, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.nav-actions .btn-outline {
  color: rgba(255, 255, 255, 0.7);
}

.nav-actions .btn-outline:hover {
  color: #fff;
}

.btn-outline-dark {
  border-color: rgba(26, 16, 8, 0.16);
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.82);
}

.main-shell {
  overflow: hidden;
}

.hero,
.page-hero {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 44px) 0 72px;
}

.page-hero {
  min-height: 68svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 54px) 0 64px;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 15, 28, 0.36) 0%, rgba(7, 15, 28, 0.76) 60%, rgba(7, 15, 28, 0.96) 100%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 16%, rgba(226, 185, 90, 0.18), transparent 30%),
    linear-gradient(120deg, rgba(15, 30, 53, 0.58), transparent 58%);
}

.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 42px;
}

.hero-shell {
  max-width: 880px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.section-kicker::after {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.hero-title,
.page-hero-title,
.section-title,
.card-title,
.quote-text,
.timeline-number,
.timeline-title,
.info-title,
.mini-title,
.form-title,
.footer-title,
.table-card h3 {
  font-family: "Playfair Display", serif;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-title .highlight,
.section-title .highlight,
.page-hero-title .highlight {
  color: var(--gold-400);
  font-style: italic;
}

.hero-subtitle {
  margin: 18px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy,
.page-hero-copy,
.section-intro,
.serif-copy,
.banner-card p {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.36rem;
}

.hero-copy,
.page-hero-copy {
  color: rgba(255, 255, 255, 0.72);
}

.section-intro,
.serif-copy {
  color: var(--text-soft);
}

.section-dark .section-intro,
.section-dark .serif-copy,
.section-dark .card-copy,
.section-dark .info-copy,
.section-dark .bullet-list,
.section-dark .detail-list,
.section-dark .step-copy,
.section-dark .contact-copy,
.section-dark .faq-answer,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.62);
}

.hero-actions,
.banner-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stat-card {
  padding: 22px 24px;
  border: 1px solid rgba(196, 150, 58, 0.22);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-number {
  display: block;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.chip-row,
.page-menu,
.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-row {
  margin-top: 26px;
}

.chip,
.page-menu a,
.timeline-tags span {
  border-radius: 999px;
  border: 1px solid rgba(196, 150, 58, 0.22);
}

.chip {
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero-title {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  line-height: 0.98;
}

.page-menu {
  margin-top: 30px;
}

.page-menu a,
.timeline-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff;
}

.section-light {
  background: var(--ivory-100);
  color: var(--text-dark);
}

.section-contrast {
  background: linear-gradient(180deg, #fdfaf4, #f3ede3);
}

.section-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  align-items: center;
}

.split-grid.reverse .media-frame {
  order: 2;
}

.split-grid.reverse .content-stack {
  order: 1;
}

.content-stack > * + * {
  margin-top: 18px;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-deep);
}

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

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(196, 150, 58, 0.35);
  border-radius: 50%;
}

.feature-grid,
.link-grid,
.detail-grid,
.steps-grid,
.faq-grid,
.contact-grid,
.stats-grid,
.program-grid {
  display: grid;
  gap: 20px;
}

.feature-grid.three,
.detail-grid.three,
.program-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid.two,
.link-grid.two,
.contact-grid.two,
.steps-grid.two,
.faq-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-card,
.link-card,
.detail-card,
.quote-panel,
.contact-card,
.form-shell,
.timeline-card,
.table-card,
.banner-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.feature-card,
.detail-card,
.contact-card,
.table-card {
  padding: 28px;
  border: 1px solid rgba(26, 16, 8, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(26, 16, 8, 0.06);
}

.section-dark .feature-card,
.section-dark .detail-card,
.section-dark .contact-card,
.section-dark .table-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 150, 58, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-card::before,
.detail-card::before,
.table-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  opacity: 0.72;
}

.card-tag,
.inline-note {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card-title,
.mini-title,
.info-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.card-copy,
.info-copy,
.bullet-list,
.detail-list,
.step-copy,
.contact-copy,
.faq-answer,
.timeline-copy,
.form-note {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 28px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(196, 150, 58, 0.18);
  box-shadow: var(--shadow-deep);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 185, 90, 0.38);
}

.link-card .card-copy {
  color: rgba(255, 255, 255, 0.76);
}

.link-arrow {
  margin-top: 18px;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bullet-list,
.detail-list,
.form-note-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bullet-list li,
.detail-list li,
.form-note-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-list li::before,
.detail-list li::before,
.form-note-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(196, 150, 58, 0.14);
  flex: 0 0 auto;
}

.split-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.metric-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 150, 58, 0.18);
  border-radius: var(--radius-lg);
}

.metric-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-400);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.quote-panel {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(196, 150, 58, 0.18);
  color: #fff;
}

.quote-text {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.28;
}

.quote-meta {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-shell {
  position: relative;
  max-width: 980px;
}

.timeline-shell::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 36px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196, 150, 58, 0.4), transparent);
}

.timeline-list {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.timeline-number {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 150, 58, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-400);
  font-size: 1.6rem;
  z-index: 1;
}

.timeline-card {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid rgba(196, 150, 58, 0.46);
}

.timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.45rem;
  color: #fff;
}

.timeline-period {
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.table-card {
  padding: 34px;
}

.table-card h3 {
  margin: 0 0 22px;
  font-size: 1.8rem;
}

.info-table {
  display: grid;
  gap: 16px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 16, 8, 0.08);
}

.section-dark .info-row {
  border-color: rgba(255, 255, 255, 0.08);
}

.info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  color: var(--text-soft);
}

.section-dark .info-label {
  color: rgba(255, 255, 255, 0.54);
}

.info-value {
  color: var(--text-dark);
  font-weight: 700;
  text-align: right;
}

.section-dark .info-value {
  color: #fff;
}

.accent-value {
  color: var(--gold-500);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.steps-grid .detail-card {
  display: flex;
  gap: 18px;
}

.step-number {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 150, 58, 0.42);
  color: var(--gold-500);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  flex: 0 0 auto;
}

.banner-card {
  padding: 44px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border: 1px solid rgba(196, 150, 58, 0.18);
  box-shadow: var(--shadow-deep);
}

.banner-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.banner-card p {
  color: rgba(255, 255, 255, 0.76);
}

.banner-actions {
  margin-top: 26px;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  color: var(--text-dark);
}

.section-dark .contact-value {
  color: #fff;
}

.form-shell {
  padding: 30px;
  border: 1px solid rgba(26, 16, 8, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 52px rgba(26, 16, 8, 0.08);
}

.form-shell.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 150, 58, 0.18);
  box-shadow: none;
}

.form-title {
  margin: 0 0 18px;
  font-size: 1.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(26, 16, 8, 0.12);
  border-radius: 14px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
}

.form-shell.dark .field input,
.form-shell.dark .field select,
.form-shell.dark .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 150, 58, 0.16);
  color: #fff;
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.form-actions {
  align-items: center;
  margin-top: 20px;
}

.footer {
  background: var(--navy-900);
  color: #fff;
  padding: 34px 0 44px;
  border-top: 1px solid rgba(196, 150, 58, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.footer-copy,
.footer-links a,
.footer-small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-small {
  margin-top: 24px;
  font-size: 0.8rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.spacer-md {
  height: 30px;
}

.section-anchor {
  scroll-margin-top: 110px;
}

@media (max-width: 1040px) {
  .feature-grid.three,
  .detail-grid.three,
  .program-grid.three,
  .footer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .split-grid.reverse {
    grid-template-columns: 1fr;
  }

  .split-grid.reverse .media-frame,
  .split-grid.reverse .content-stack {
    order: initial;
  }

  .media-frame {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(8, 17, 31, 0.96);
    border: 1px solid rgba(196, 150, 58, 0.18);
    box-shadow: 0 24px 60px rgba(4, 10, 20, 0.44);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a::after {
    display: none;
  }

  .stats-row,
  .feature-grid.two,
  .link-grid.two,
  .contact-grid,
  .steps-grid.two,
  .faq-grid.two,
  .stats-grid.four,
  .footer-grid,
  .feature-grid.three,
  .detail-grid.three,
  .program-grid.three,
  .split-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .hero-subtitle,
  .hero-copy,
  .page-hero-copy,
  .section-intro,
  .serif-copy,
  .banner-card p {
    font-size: 1.16rem;
  }

  .page-hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .page-hero-title {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .section {
    padding: 76px 0;
  }

  .timeline-shell::before {
    left: 28px;
  }

  .timeline-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .timeline-number {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Glion-inspired editorial theme overrides */
:root {
  --navy-950: #08111a;
  --navy-900: #0d1724;
  --navy-800: #13253b;
  --navy-700: #1c3451;
  --gold-500: #b88a46;
  --gold-400: #d8b178;
  --ivory-100: #f7f3eb;
  --ivory-200: #efe8dc;
  --text-dark: #1f1812;
  --text-soft: #73695d;
  --border-gold: rgba(184, 138, 70, 0.22);
  --shadow-deep: 0 26px 72px rgba(7, 14, 24, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: min(1220px, calc(100vw - 56px));
  --header-height: 92px;
}

body,
button,
input,
textarea,
select {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

body {
  background: var(--ivory-100);
  line-height: 1.72;
}

body::before {
  background:
    radial-gradient(circle at top right, rgba(184, 138, 70, 0.05), transparent 28%),
    radial-gradient(circle at bottom left, rgba(13, 23, 36, 0.05), transparent 22%);
}

body::after {
  opacity: 0;
}

.site-header {
  padding: 20px 0;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(8, 17, 26, 0.92);
  border-color: rgba(216, 177, 120, 0.12);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 44px rgba(6, 12, 20, 0.2);
}

.brand-mark {
  border-color: rgba(216, 177, 120, 0.2);
  border-radius: 16px;
}

.brand-title,
.brand-subtitle,
.nav-links a,
.btn,
.section-kicker,
.card-tag,
.inline-note,
.stat-label,
.chip,
.page-menu a,
.timeline-tags span,
.timeline-period,
.link-arrow,
.field label,
.footer-links a,
.footer-small {
  font-family: "Manrope", sans-serif;
}

.brand-title {
  font-size: 0.88rem;
  letter-spacing: 0.24em;
}

.brand-subtitle {
  font-size: 0.67rem;
  letter-spacing: 0.16em;
}

.nav-links {
  gap: 22px;
}

.nav-links a {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.nav-actions {
  gap: 10px;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
}

.btn-gold {
  background: linear-gradient(135deg, #e4c793, var(--gold-500));
  box-shadow: 0 14px 28px rgba(184, 138, 70, 0.16);
}

.btn-outline {
  border-color: rgba(216, 177, 120, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-dark {
  border-color: rgba(31, 24, 18, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.hero::before,
.page-hero::before {
  background: linear-gradient(180deg, rgba(8, 15, 24, 0.2) 0%, rgba(8, 15, 24, 0.66) 58%, rgba(8, 15, 24, 0.9) 100%);
}

.hero::after,
.page-hero::after {
  background: linear-gradient(90deg, rgba(8, 15, 24, 0.78) 0%, rgba(8, 15, 24, 0.4) 46%, transparent 100%);
}

.hero {
  padding: calc(var(--header-height) + 54px) 0 88px;
}

.page-hero {
  min-height: 72svh;
  padding: calc(var(--header-height) + 62px) 0 76px;
}

.section-kicker {
  gap: 14px;
  margin-bottom: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.section-kicker::before,
.section-kicker::after {
  width: 64px;
}

.hero-title,
.page-hero-title,
.section-title,
.card-title,
.quote-text,
.timeline-number,
.timeline-title,
.info-title,
.mini-title,
.form-title,
.footer-title,
.table-card h3,
.accent-value,
.banner-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.9;
}

.page-hero-title {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.92;
}

.hero-title .highlight,
.section-title .highlight,
.page-hero-title .highlight {
  font-style: normal;
}

.hero-subtitle {
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy,
.page-hero-copy,
.section-intro,
.serif-copy,
.banner-card p,
.card-copy,
.info-copy,
.bullet-list,
.detail-list,
.step-copy,
.contact-copy,
.faq-answer,
.timeline-copy,
.form-note {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  line-height: 1.74;
}

.hero-copy,
.page-hero-copy {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.74);
}

.section-intro,
.serif-copy {
  max-width: 62ch;
  color: var(--text-soft);
}

.section-dark .section-intro,
.section-dark .serif-copy,
.section-dark .card-copy,
.section-dark .info-copy,
.section-dark .bullet-list,
.section-dark .detail-list,
.section-dark .step-copy,
.section-dark .contact-copy,
.section-dark .faq-answer,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.hero-actions {
  margin-top: 30px;
}

.stats-row {
  gap: 1px;
  margin-top: 38px;
  background: rgba(216, 177, 120, 0.12);
  border: 1px solid rgba(216, 177, 120, 0.12);
}

.stat-card {
  padding: 24px;
  border: 0;
  background: rgba(8, 17, 26, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  line-height: 0.95;
}

.stat-label {
  margin-top: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.chip-row {
  gap: 10px;
  margin-top: 24px;
}

.chip,
.page-menu a,
.timeline-tags span {
  border-color: rgba(216, 177, 120, 0.18);
}

.chip {
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.page-menu a,
.timeline-tags span {
  min-height: 44px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.section {
  padding: 104px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
}

.section-light {
  background: var(--ivory-100);
}

.section-contrast {
  background: #fcfaf6;
}

.section-header {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
  line-height: 0.95;
}

.split-grid {
  gap: 60px;
  align-items: stretch;
}

.content-stack > * + * {
  margin-top: 16px;
}

.media-frame {
  min-height: 500px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
}

.media-frame::after {
  inset: auto 28px 28px auto;
  width: 132px;
  height: 132px;
  border-color: rgba(216, 177, 120, 0.22);
}

.feature-card,
.detail-card,
.contact-card,
.table-card,
.form-shell {
  border-radius: 26px;
}

.feature-card,
.detail-card,
.contact-card,
.table-card {
  padding: 30px;
  border: 1px solid rgba(31, 24, 18, 0.06);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(17, 21, 28, 0.08);
}

.section-dark .feature-card,
.section-dark .detail-card,
.section-dark .contact-card,
.section-dark .table-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 17, 26, 0.42);
  border-color: rgba(216, 177, 120, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.feature-card::before,
.detail-card::before,
.table-card::before {
  width: 0;
  opacity: 0;
}

.card-tag,
.inline-note {
  margin-bottom: 12px;
  color: var(--gold-500);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.card-title,
.mini-title,
.info-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 2.2vw, 2.1rem);
  line-height: 1;
}

.link-card {
  min-height: 320px;
  padding: 30px;
  border-radius: 28px;
  border-color: rgba(216, 177, 120, 0.16);
  box-shadow: 0 24px 70px rgba(7, 14, 24, 0.22);
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 177, 120, 0.28);
}

.link-arrow {
  margin-top: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.bullet-list,
.detail-list,
.form-note-list {
  gap: 14px;
}

.bullet-list li::before,
.detail-list li::before,
.form-note-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 10px;
  box-shadow: 0 0 0 4px rgba(184, 138, 70, 0.12);
}

.metric-panel {
  padding: 30px;
  border: 1px solid rgba(216, 177, 120, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-panel strong {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
}

.quote-panel {
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 17, 26, 0.34);
  border: 1px solid rgba(216, 177, 120, 0.16);
}

.quote-text {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.quote-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.timeline-shell::before {
  left: 40px;
  background: linear-gradient(180deg, transparent, rgba(216, 177, 120, 0.34), transparent);
}

.timeline-item {
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 20px;
}

.timeline-number {
  width: 80px;
  height: 80px;
  border-color: rgba(216, 177, 120, 0.18);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.8rem;
}

.timeline-card {
  padding: 26px 28px;
  border-left: 0;
  border: 1px solid rgba(216, 177, 120, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 17, 26, 0.42);
}

.timeline-title {
  font-size: 1.6rem;
}

.timeline-period {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.table-card {
  padding: 34px;
}

.table-card h3 {
  margin: 0 0 20px;
  font-size: 2rem;
}

.info-row {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 24, 18, 0.08);
}

.section-dark .info-row {
  border-color: rgba(255, 255, 255, 0.08);
}

.accent-value {
  font-size: 1.95rem;
}

.banner-card {
  padding: 48px;
  border-radius: 30px;
  border-color: rgba(216, 177, 120, 0.16);
}

.banner-card h3 {
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  line-height: 0.96;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
}

.form-shell {
  padding: 34px;
  border: 1px solid rgba(31, 24, 18, 0.06);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 52px rgba(17, 21, 28, 0.08);
}

.form-shell.dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 17, 26, 0.42);
  border-color: rgba(216, 177, 120, 0.16);
}

.form-title {
  margin: 0 0 20px;
  font-size: 2rem;
}

.field {
  gap: 10px;
}

.field label {
  font-size: 0.68rem;
  letter-spacing: 0.17em;
}

.field input,
.field select,
.field textarea {
  border-radius: 16px;
  border-color: rgba(31, 24, 18, 0.1);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
}

.form-shell.dark .field input,
.form-shell.dark .field select,
.form-shell.dark .field textarea {
  border-color: rgba(216, 177, 120, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.footer {
  background: var(--navy-900);
  padding: 42px 0 50px;
  border-top: 1px solid rgba(216, 177, 120, 0.12);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 32px;
}

.footer-title {
  font-size: 2rem;
}

.footer-copy,
.footer-links a,
.footer-small {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-small {
  margin-top: 22px;
}

[data-reveal] {
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

@media (max-width: 1040px) {
  .feature-grid.three,
  .detail-grid.three,
  .program-grid.three,
  .footer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-frame {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .nav-menu {
    background: rgba(8, 17, 26, 0.96);
    border-color: rgba(216, 177, 120, 0.16);
    box-shadow: 0 24px 60px rgba(4, 10, 20, 0.28);
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 12vw, 4.8rem);
  }

  .page-hero-title {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .hero-copy,
  .page-hero-copy,
  .section-intro,
  .serif-copy,
  .banner-card p {
    font-size: 1rem;
  }

  .section {
    padding: 78px 0;
  }

  .banner-card,
  .form-shell,
  .table-card {
    padding: 28px 24px;
  }
}

.hero.has-video,
.page-hero.has-video {
  background-image: none !important;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.88;
  filter: saturate(0.88) contrast(1.02) brightness(0.68);
}

.hero.has-video::before,
.page-hero.has-video::before {
  background: linear-gradient(180deg, rgba(7, 14, 23, 0.34) 0%, rgba(7, 14, 23, 0.72) 56%, rgba(7, 14, 23, 0.92) 100%);
}

.hero.has-video::after,
.page-hero.has-video::after {
  background:
    linear-gradient(90deg, rgba(7, 14, 23, 0.84) 0%, rgba(7, 14, 23, 0.48) 46%, rgba(7, 14, 23, 0.16) 100%),
    radial-gradient(circle at 84% 18%, rgba(216, 177, 120, 0.12), transparent 28%);
}

.hero.has-video > .container,
.page-hero.has-video > .container {
  z-index: 2;
}

@media (max-width: 860px) {
  .hero-video {
    object-position: 62% center;
    opacity: 0.8;
  }

  .page-hero .hero-video {
    object-position: center;
  }
}

/* Sample 3 premium refinement */
.hero-title {
  font-size: clamp(3.2rem, 5.8vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.042em;
}

.page-hero-title {
  font-size: clamp(2.8rem, 4.9vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.038em;
}

.hero-subtitle {
  margin: 12px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.02rem, 1.6vw, 1.32rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
}

.section-title {
  font-size: clamp(2.25rem, 3.7vw, 3.45rem);
  line-height: 0.97;
}

.hero-copy,
.page-hero-copy,
.section-intro,
.serif-copy,
.banner-card p,
.card-copy {
  font-size: 0.95rem;
  line-height: 1.72;
}

.hero-copy,
.page-hero-copy {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.76);
}

.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.hero.has-video::before,
.page-hero.has-video::before {
  background: linear-gradient(180deg, rgba(7, 14, 23, 0.24) 0%, rgba(7, 14, 23, 0.66) 58%, rgba(7, 14, 23, 0.9) 100%);
}

.hero.has-video::after,
.page-hero.has-video::after {
  background:
    linear-gradient(90deg, rgba(7, 14, 23, 0.8) 0%, rgba(7, 14, 23, 0.42) 46%, rgba(7, 14, 23, 0.12) 100%),
    radial-gradient(circle at 84% 18%, rgba(216, 177, 120, 0.08), transparent 28%);
}

.site-header {
  padding: 16px 0;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(8, 17, 26, 0.82);
  border-color: rgba(216, 177, 120, 0.1);
  box-shadow: 0 14px 30px rgba(6, 12, 20, 0.16);
}

.navbar {
  gap: 18px;
}

.nav-links {
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.nav-actions {
  gap: 10px;
}

.hero {
  min-height: 96svh;
  padding: calc(var(--header-height) + 32px) 0 58px;
}

.hero-grid {
  gap: 34px;
}

.hero-shell {
  max-width: 760px;
}

.hero-actions {
  margin-top: 24px;
  gap: 12px;
}

.stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border-radius: 24px;
  overflow: hidden;
}

.stat-card {
  min-height: 146px;
  padding: 20px 20px 18px;
}

.stat-number {
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
}

.stat-label {
  margin-top: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
}

.chip-row {
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 10px 15px;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
}

.section {
  padding: 96px 0;
}

@media (max-width: 860px) {
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4.1rem);
  }

  .page-hero-title {
    font-size: clamp(2.35rem, 9.6vw, 3.45rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ── FOUNDERS ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.f-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s;
}
.f-card:hover {
  border-color: rgba(196, 150, 58, 0.45);
}
.f-photo {
  position: relative;
  overflow: hidden;
}
.f-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.f-card:hover .f-photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.f-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.f-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.f-role-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.f-hotel {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}
.f-hotel-name {
  font-size: 0.96rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.f-hotel-title {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}
.f-bio {
  font-size: 0.86rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
}
.f-msc {
  margin-top: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: flex;
  align-items: center;
  gap: 8px;
}
.f-msc::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold-400);
  flex-shrink: 0;
}
.founder-quote {
  margin-top: 48px;
  padding: 44px 48px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold-400);
}
.founder-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 20px;
  max-width: 76ch;
}
.founder-quote cite {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-style: normal;
}

/* Responsive */
@media (max-width: 1000px) {
  .founders-grid { grid-template-columns: 1fr; }
  .f-card { grid-template-columns: 180px 1fr; }
}
@media (max-width: 640px) {
  .f-card { grid-template-columns: 1fr; }
  .f-photo { aspect-ratio: 3/2; }
  .founder-quote { padding: 28px 22px; }
}
/* ── LIGHT BACKGROUND REFRESH ── */

/* 1. Whiten the base */
:root {
  --ivory-100: #ffffff;
  --ivory-200: #f4f4f4;
}

body {
  background: #ffffff;
}

body::before {
  background:
    radial-gradient(circle at top right, rgba(184, 138, 70, 0.04), transparent 28%),
    radial-gradient(circle at bottom left, rgba(13, 23, 36, 0.03), transparent 22%);
}

/* 2. Light sections go fully white */
.section-light {
  background: #ffffff;
}

/* 3. Contrast sections get a soft warm grey instead of cream */
.section-contrast {
  background: #f7f7f7;
}

/* 4. Feature cards pop more on white */
.section-light .feature-card,
.section-light .detail-card,
.section-light .table-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* 5. Text on white sections — slightly darker for contrast */
.section-light .section-intro,
.section-light .serif-copy,
.section-light .card-copy {
  color: #5a5248;
}

.section-light .section-title,
.section-light .card-title {
  color: #0d1724;
}

/* 6. Header — on white pages, scrolled state uses white bg */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* Nav links go dark on white header */
.site-header.scrolled .nav-links a {
  color: rgba(13, 23, 36, 0.72);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  color: #0d1724;
}

.site-header.scrolled .nav-actions .btn-outline {
  color: rgba(13, 23, 36, 0.72);
}

.site-header.scrolled .nav-actions .btn-outline:hover {
  color: #0d1724;
}

.site-header.scrolled .brand-title {
  color: #0d1724;
}

.site-header.scrolled .brand-subtitle {
  color: rgba(13, 23, 36, 0.55);
}

/* 7. Footer stays dark for grounding */
.footer {
  background: #0d1724;
}

/* 8. Global refinement layer: type rhythm, spacing, and split-section balance */
:root {
  --copy-size-fluid: clamp(0.98rem, 0.35vw + 0.92rem, 1.05rem);
  --copy-line-fluid: 1.72;
  --heading-tight: -0.03em;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: var(--copy-line-fluid);
  color: #514a42;
}

:is(
  .page-hero-title,
  .section-title,
  .card-title,
  .mini-title,
  .info-title,
  .rs-title,
  .role-title,
  .salary-heading,
  .support-title,
  .enroll-step-title,
  .diff-card-title,
  .pillar-title,
  .journey-title,
  .f-name,
  .f-hotel-name
) {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: var(--heading-tight);
}

.page-hero-title {
  font-size: clamp(2.9rem, 4.9vw, 4.9rem);
  line-height: 0.95;
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 0.98;
  margin-bottom: 14px;
}

:is(.card-title, .mini-title, .info-title) {
  font-size: clamp(1.5rem, 1.9vw, 1.95rem);
  line-height: 1.08;
}

.page-hero-copy,
.section-intro,
.serif-copy,
.card-copy,
.info-copy,
.contact-copy,
.timeline-copy,
.faq-answer,
.form-note,
.rs-copy,
.role-copy,
.support-copy,
.salary-note,
.enroll-step-copy,
.contact-band-note,
.f-bio,
.f-hotel-title,
.gulf-perks li,
.bullet-list li,
.detail-list li {
  font-family: "Manrope", sans-serif;
  font-size: var(--copy-size-fluid);
  line-height: var(--copy-line-fluid);
}

.section-dark .page-hero-copy,
.section-dark .section-intro,
.section-dark .serif-copy,
.section-dark .card-copy,
.section-dark .info-copy,
.section-dark .contact-copy,
.section-dark .timeline-copy,
.section-dark .faq-answer,
.section-dark .form-note,
.section-dark .rs-copy,
.section-dark .role-copy,
.section-dark .support-copy,
.section-dark .salary-note,
.section-dark .enroll-step-copy,
.section-dark .contact-band-note,
.section-dark .f-bio,
.section-dark .f-hotel-title,
.section-dark .gulf-perks li,
.section-dark .bullet-list li,
.section-dark .detail-list li {
  color: rgba(255, 255, 255, 0.72);
}

:is(.section-kicker, .card-tag, .nav-links a, .btn, .f-role-tag, .f-msc) {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.section {
  padding: clamp(54px, 5vw, 72px) 0;
}

.section-header {
  margin-bottom: 24px;
}

.feature-grid,
.detail-grid,
.contact-grid,
.program-grid,
.link-grid,
.stats-grid {
  gap: 16px;
}

.feature-card,
.detail-card,
.contact-card,
.table-card,
.form-shell {
  padding: 26px;
  border-radius: 24px;
}

.split-grid {
  gap: clamp(20px, 3vw, 30px);
  align-items: center;
}

.content-stack > * + * {
  margin-top: 14px;
}

.media-frame {
  min-height: clamp(260px, 24vw, 360px);
}

.about-story-grid,
.about-mission-grid,
.about-context-grid,
.about-environment-grid-shell {
  align-items: center;
}

.about-story-media,
.about-compact-media {
  min-height: 0;
  aspect-ratio: 5 / 4;
  max-height: 360px;
}

.about-story-media img,
.about-compact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spacer-md {
  height: 14px;
}

.page-hero {
  padding: calc(var(--header-height) + 28px) 0 52px;
}

.page-menu {
  gap: 12px;
}

.page-menu a {
  min-height: 42px;
  padding: 0 14px;
}

.feature-grid.two,
.link-grid.two,
.contact-grid.two,
.steps-grid.two,
.faq-grid.two {
  gap: 16px;
}

@media (max-width: 1040px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: clamp(2rem, 6.5vw, 3rem);
  }

  .page-hero-title {
    font-size: clamp(2.45rem, 8.4vw, 3.9rem);
  }

  .media-frame,
  .about-story-media,
  .about-compact-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}

/* Header logo clarity */
.brand {
  gap: 16px;
}

.brand-mark {
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-color: rgba(216, 177, 120, 0.48);
  background:
    linear-gradient(145deg, rgba(16, 35, 66, 0.98) 0%, rgba(7, 18, 36, 0.98) 58%, rgba(5, 12, 25, 0.98) 100%);
  box-shadow:
    0 12px 26px rgba(2, 8, 18, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -18px 30px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 88%;
  height: 88%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}

.brand-title {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.site-header.scrolled .brand-title {
  color: #0d1724;
}

.site-header.scrolled .brand-subtitle {
  color: rgba(13, 23, 36, 0.72);
}

@media (max-width: 860px) {
  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-mark img {
    width: 88%;
    height: 88%;
  }

  .brand-title {
    font-size: 0.88rem;
    letter-spacing: 0.22em;
  }

  .brand-subtitle {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }
}

/* Mobile polish and compact spacing */
@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 8px 0;
  }

  .navbar {
    min-height: 70px;
  }

  .nav-menu {
    max-height: calc(100svh - 86px);
    overflow-y: auto;
  }

  .nav-actions,
  .hero-actions,
  .banner-actions,
  .form-actions,
  .cta-actions {
    gap: 10px;
  }

  .page-hero,
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 42px;
  }

  .page-hero-title,
  .hero-title {
    font-size: clamp(2.05rem, 9vw, 3rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.04;
  }

  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .page-hero-copy,
  .section-intro,
  .serif-copy,
  .card-copy,
  .info-copy,
  .contact-copy,
  .timeline-copy,
  .faq-answer,
  .form-note,
  .bullet-list li,
  .detail-list li {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .feature-card,
  .detail-card,
  .contact-card,
  .table-card,
  .form-shell {
    padding: 20px;
    border-radius: 18px;
  }

  .split-grid,
  .contact-grid,
  .feature-grid,
  .detail-grid,
  .program-grid,
  .link-grid,
  .stats-grid {
    gap: 16px;
  }

  .media-frame,
  .about-story-media,
  .about-compact-media {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .btn {
    min-height: 44px;
    padding: 0 16px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-title {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .brand-subtitle {
    max-width: 180px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .nav-menu {
    padding: 18px;
  }

  .nav-links a,
  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-menu {
    grid-template-columns: 1fr;
  }

  .feature-grid.two,
  .link-grid.two,
  .contact-grid.two,
  .steps-grid.two,
  .faq-grid.two {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
    align-items: start;
  }

  .contact-stack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card,
  .form-shell {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-value {
    font-size: 1.08rem;
    line-height: 1.32;
    overflow-wrap: anywhere;
  }

  .contact-copy {
    margin-top: 10px;
  }

  .form-title {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.05;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 118px;
  }
}

.about-page #environment .about-compact-media {
  aspect-ratio: 3 / 4;
}

@media (max-width: 900px) {
  .about-page #environment .about-compact-media {
    min-height: 420px;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 560px) {
  .about-page #environment .about-compact-media {
    min-height: 360px;
  }
}

/* Final logo crop */
.brand-mark {
  overflow: hidden;
}

.brand-mark img {
  width: 116% !important;
  height: 116% !important;
  max-width: none;
  object-fit: cover !important;
  object-position: center;
}
