:root {
  --navy-950: #030a12;
  --navy-900: #071321;
  --navy-850: #0a1a2b;
  --navy-800: #0e2438;
  --blue-500: #2ea9e6;
  --blue-400: #67cfff;
  --gold-500: #c99a35;
  --gold-400: #e9bf60;
  --gold-300: #f6da8d;
  --ink: #0e1722;
  --slate: #5b6878;
  --line: #d9e1e9;
  --paper: #f5f7f9;
  --white: #ffffff;
  --header-height: 88px;
  --container: 1240px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 0 24px 60px rgba(3, 10, 18, 0.16);
  --ease: cubic-bezier(.2, .72, .24, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

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

button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 6.6vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4.1vw, 4.4rem); }
h3 { font-size: 1.25rem; }
p { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(3, 10, 18, 0.78);
  backdrop-filter: blur(18px);
  transition: background .3s ease, height .3s ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(3, 10, 18, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.brand img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto !important;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 11px 12px;
  color: #cbd5df;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .03em;
  transition: color .2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--white); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.language-switcher { position: relative; flex: 0 0 auto; }

.language-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.language-current img,
.language-menu img,
.flag-inline {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2);
}

.language-current span { font-size: .76rem; font-weight: 800; letter-spacing: .08em; }
.language-current svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 4px;
  width: 172px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(7, 19, 33, .98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .3);
  transform: translateY(-6px);
  transition: .2s ease;
}

.language-switcher.is-open .language-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #dce5ee;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
}

.language-menu a:hover { background: rgba(255, 255, 255, .08); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(3, 10, 18, .99) 0%, rgba(7, 19, 33, .97) 44%, rgba(9, 32, 49, .84) 100%),
    radial-gradient(circle at 75% 20%, rgba(46, 169, 230, .18), transparent 35%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-one { width: 340px; height: 340px; right: 8%; bottom: 12%; background: rgba(46, 169, 230, .24); }
.hero-glow-two { width: 240px; height: 240px; left: 12%; top: 18%; background: rgba(201, 154, 53, .13); }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
  min-height: calc(100vh - 110px);
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-400);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before { width: 30px; height: 2px; content: ""; background: currentColor; }
.eyebrow-dark { color: #9a6c1f; }

.hero h1 { max-width: 840px; margin-bottom: 28px; }
.hero h1 span { color: var(--gold-400); }

.hero-status {
  max-width: 780px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.55vw, 1.25rem);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
  color: #dbe9f4;
  font-size: .86rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.availability span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #40d879;
  box-shadow: 0 0 0 7px rgba(64, 216, 121, .12), 0 0 24px rgba(64, 216, 121, .45);
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-3px); }
.button-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 14px 34px rgba(201, 154, 53, .22); }
.button-gold:hover { box-shadow: 0 18px 44px rgba(201, 154, 53, .32); }
.button-outline { color: var(--white); border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .04); }
.button-outline:hover { background: rgba(255, 255, 255, .1); }
.button-dark { color: var(--white); background: var(--navy-900); }
.button-dark:hover { box-shadow: 0 14px 34px rgba(7, 19, 33, .2); }
.button-outline-dark { color: var(--navy-900); border-color: rgba(7, 19, 33, .24); }

.hero-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: end;
}

.hero-portrait::before {
  position: absolute;
  z-index: -1;
  inset: 5% -7% -2%;
  content: "";
  border: 1px solid rgba(246, 218, 141, .28);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(46, 169, 230, .12), rgba(7, 19, 33, .1));
}

.hero-portrait > img {
  width: min(100%, 490px);
  height: auto;
  max-height: none;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.hero-portrait figcaption {
  position: absolute;
  right: 5%;
  bottom: 24px;
  left: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(3, 10, 18, .8);
  backdrop-filter: blur(16px);
}

.hero-portrait figcaption strong { font-size: .95rem; }
.hero-portrait figcaption span { color: var(--gold-400); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.hero-number { position: absolute; z-index: -1; right: -4%; top: -4%; color: rgba(255, 255, 255, .04); font-size: clamp(9rem, 19vw, 18rem); font-weight: 900; line-height: 1; }

.stats-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(3, 10, 18, .55);
  backdrop-filter: blur(14px);
}

.stats-strip article { padding: 24px 28px; border-right: 1px solid rgba(255, 255, 255, .1); }
.stats-strip article:last-child { border-right: 0; }
.stats-strip span { display: block; margin-bottom: 5px; color: #8293a4; font-size: .69rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.stats-strip strong { color: var(--white); font-size: .95rem; }

.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section-light { background: var(--paper); }
.section-navy { color: var(--white); background: var(--navy-900); }
.section-navy p { color: #b7c4d0; }

.split-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.image-frame { position: relative; min-height: 610px; }
.image-frame::before { position: absolute; inset: 24px -22px -22px 24px; content: ""; border: 1px solid rgba(201, 154, 53, .55); border-radius: var(--radius); }
.image-frame img { position: relative; width: 100%; height: 610px; object-fit: cover; object-position: 50% 20%; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame-label { position: absolute; right: -4px; bottom: 24px; padding: 12px 18px; color: var(--navy-950); background: var(--gold-300); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.section-copy h2 { margin-bottom: 28px; color: inherit; }
.section-copy p { max-width: 760px; color: var(--slate); font-size: 1.05rem; }
.section-navy .section-copy p,
.discipline-section .section-copy p { color: #b7c4d0; }

.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--navy-900); font-size: .8rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { font-size: 1.3rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.section-heading { max-width: 850px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p { max-width: 720px; color: var(--slate); font-size: 1.05rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { margin-inline: auto; }

.timeline-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 19, 33, .98), rgba(3, 10, 18, .99)),
    radial-gradient(circle at 80% 40%, rgba(46, 169, 230, .2), transparent 35%);
}

.timeline-section .section-heading p { color: #aebcca; }
.compact-timeline { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.compact-timeline::before { position: absolute; top: 37px; right: 8%; left: 8%; height: 1px; content: ""; background: linear-gradient(90deg, var(--gold-500), var(--blue-500)); }
.timeline-card { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
.timeline-index { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 22px; color: var(--navy-950); border: 8px solid var(--navy-900); border-radius: 50%; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); font-weight: 900; }
.timeline-card h3 { min-height: 2.2em; margin-bottom: 10px; color: var(--white); }
.timeline-card p { color: #91a1b1; font-size: .88rem; line-height: 1.55; }

.style-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.strength-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.strength-cloud span { padding: 15px 18px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; color: #d9e4ed; background: rgba(255, 255, 255, .04); font-size: .88rem; font-weight: 700; }
.strength-cloud span:nth-child(even) { border-color: rgba(246, 218, 141, .3); color: var(--gold-300); }

.video-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-preview-card { position: relative; overflow: hidden; min-height: 300px; border-radius: var(--radius); background: var(--navy-900); box-shadow: var(--shadow); }
.video-preview-card > img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform .6s var(--ease), filter .4s ease; }
.video-preview-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(3, 10, 18, .9)); }
.video-preview-card:hover > img { transform: scale(1.05); filter: saturate(1.12); }
.video-preview-card strong { position: absolute; z-index: 2; left: 22px; bottom: 20px; color: var(--white); }
.play-button { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; width: 62px; height: 62px; color: var(--navy-950); border-radius: 50%; background: rgba(246, 218, 141, .94); box-shadow: 0 12px 30px rgba(0, 0, 0, .24); transform: translate(-50%, -50%); transition: transform .25s ease; }
.play-button img { width: 22px; height: 22px; margin-left: 3px; }
.video-preview-card:hover .play-button { transform: translate(-50%, -50%) scale(1.08); }
.action-spacing { margin-top: 42px; }
.centered { text-align: center; }

.discipline-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(130deg, #0a0d13, #071321 55%, #172010); }
.discipline-section::before { position: absolute; inset: 0; content: ""; opacity: .16; background-image: radial-gradient(circle at 70% 30%, var(--gold-400), transparent 25%); }
.discipline-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.discipline-image img { width: 100%; max-height: 720px; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0, 0, 0, .42); }
.discipline-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.discipline-tags span { padding: 10px 14px; border: 1px solid rgba(246, 218, 141, .28); border-radius: 999px; color: var(--gold-300); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { position: relative; overflow: hidden; padding: calc(var(--header-height) + 100px) 0 105px; color: var(--white); background: var(--navy-950); }
.page-hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 78% 50%, rgba(46, 169, 230, .2), transparent 32%), linear-gradient(120deg, rgba(201, 154, 53, .08), transparent 40%); }
.page-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 50px; }
.page-hero h1 { max-width: 920px; margin-bottom: 22px; font-size: clamp(3.2rem, 6.2vw, 6.2rem); }
.page-hero p { max-width: 760px; margin-bottom: 0; color: #b9c6d2; font-size: 1.12rem; }
.page-hero-mark { color: transparent; font-size: clamp(4rem, 10vw, 10rem); font-weight: 950; line-height: .8; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(255, 255, 255, .11); writing-mode: vertical-rl; }

/* The longer vertical label on the contact page must not define the hero height. */
.page-hero-contact .page-hero-grid { align-items: center; }
.page-hero-contact .page-hero-grid > div:first-child { position: relative; z-index: 1; }
.page-hero-contact .page-hero-mark {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: clamp(4rem, 8vw, 8rem);
  transform: translateY(-50%);
}

.about-layout .image-frame { min-height: 0; }
.about-layout .image-frame img { height: auto; object-fit: contain; object-position: center; background: var(--navy-950); }
.section-photo-story { overflow: hidden; background: linear-gradient(145deg, #e9eef2, #f8fafb 58%, #eef4f7); }
.editorial-photo-grid { display: grid; grid-template-columns: 1.35fr .75fr .75fr; gap: 18px; }
.editorial-photo { position: relative; min-height: 520px; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--navy-900); box-shadow: var(--shadow); }
.editorial-photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 58%, rgba(3, 10, 18, .86)); pointer-events: none; }
.editorial-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform .7s var(--ease), filter .5s ease; }
.editorial-photo-1 img { object-position: 54% center; }
.editorial-photo:hover img { transform: scale(1.035); filter: saturate(1.08); }
.editorial-photo figcaption { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; color: var(--white); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { min-height: 260px; padding: 28px; border: 1px solid rgba(255, 255, 255, .11); border-radius: var(--radius); background: rgba(255, 255, 255, .035); }
.value-card > span { display: block; margin-bottom: 42px; color: var(--gold-400); font-weight: 900; }
.value-card h3 { color: var(--white); }
.value-card p { margin-bottom: 0; color: #9cabb9; font-size: .92rem; }

.journey-stages .container { display: grid; gap: 22px; }
.journey-stage { display: grid; grid-template-columns: 150px 1fr; gap: 46px; padding: clamp(32px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 12px 38px rgba(3, 10, 18, .06); }
.journey-year { color: transparent; font-size: clamp(4.4rem, 8vw, 7rem); font-weight: 950; line-height: 1; -webkit-text-stroke: 1.5px var(--gold-500); }
.journey-stage h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3.4rem); }
.journey-stage p { max-width: 850px; color: var(--slate); }
.journey-stage p:last-child { margin-bottom: 0; }

.section-photo-journey { overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0b263a 62%, #241c0d); }
.section-photo-journey .section-heading p { color: #aebcca; }
.journey-photo-band { display: grid; grid-template-columns: .78fr 1.44fr .78fr; gap: 18px; }
.journey-photo-card { position: relative; min-height: 440px; margin: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); background: #02060b; box-shadow: 0 24px 60px rgba(0, 0, 0, .26); }
.journey-photo-card img { width: 100%; height: 440px; object-fit: cover; transition: transform .65s var(--ease), filter .4s ease; }
.journey-photo-card:nth-child(2) img { object-position: center; }
.journey-photo-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.journey-photo-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 53%, rgba(3, 10, 18, .92)); }
.journey-photo-card figcaption { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; display: flex; align-items: center; gap: 12px; color: var(--white); }
.journey-photo-card figcaption span { display: grid; place-items: center; width: 34px; height: 34px; color: var(--navy-950); border-radius: 50%; background: var(--gold-400); font-size: .68rem; font-weight: 900; }
.journey-photo-card figcaption strong { font-size: .83rem; letter-spacing: .05em; text-transform: uppercase; }

.full-timeline { position: relative; max-width: 860px; }
.full-timeline::before { position: absolute; top: 10px; bottom: 10px; left: 30px; width: 2px; content: ""; background: linear-gradient(var(--gold-400), var(--blue-500)); }
.full-timeline-item { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 28px; padding: 0 0 46px; }
.full-timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: relative; z-index: 1; display: grid; place-items: center; width: 62px; height: 62px; border: 7px solid var(--navy-900); border-radius: 50%; background: var(--gold-400); color: var(--navy-950); font-weight: 900; }
.full-timeline-item h3 { margin: 7px 0 7px; color: var(--white); font-size: 1.35rem; }
.full-timeline-item p { margin: 0; color: #95a6b7; }

.style-grid-light .section-copy p { color: var(--slate); }
.strength-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.strength-list div { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); font-size: .92rem; font-weight: 700; }
.strength-list img { color: #98691d; }

.featured-video-section { padding-top: 86px; }
.featured-video { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .7fr); overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-lg); background: #02060b; }
.featured-video video { width: 100%; height: 100%; min-height: 520px; object-fit: contain; background: #000; }
.featured-video-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; background: linear-gradient(145deg, rgba(46, 169, 230, .09), rgba(201, 154, 53, .08)); }
.featured-video-copy > span { color: rgba(255, 255, 255, .08); font-size: 7rem; font-weight: 950; line-height: .8; }
.featured-video-copy h2 { margin: 30px 0 18px; font-size: 2.3rem; }
.featured-video-copy p { margin-bottom: 0; }

.video-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 36px rgba(3, 10, 18, .09); }
.video-card button { width: 100%; padding: 0; text-align: left; border: 0; background: transparent; cursor: pointer; }
.video-thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #02060b; }
.video-thumb > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.video-card:hover .video-thumb > img { transform: scale(1.05); }
.video-card .play-button { width: 52px; height: 52px; }
.video-card-copy { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 20px; }
.video-card-copy strong { font-size: .95rem; }
.video-card-copy small { color: #9a6c1f; font-weight: 850; }

.photo-gallery-section { overflow: hidden; color: var(--white); background: linear-gradient(145deg, #030a12, #071b2a 66%, #18130a); }
.photo-gallery-section::before { position: absolute; inset: 0; content: ""; opacity: .16; background: radial-gradient(circle at 78% 20%, var(--gold-400), transparent 27%), radial-gradient(circle at 12% 76%, var(--blue-500), transparent 30%); }
.photo-gallery-section .section-heading { position: relative; }
.photo-gallery-section .section-heading p { color: #acbbc7; }
.photo-gallery { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; grid-auto-rows: 118px; gap: 14px; }
.photo-card { grid-column: span 4; grid-row: span 3; min-height: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; background: var(--navy-950); box-shadow: 0 18px 50px rgba(0, 0, 0, .25); }
.photo-card.landscape { grid-column: span 8; grid-row: span 2; }
.photo-card.featured { grid-row: span 4; border-color: rgba(246, 218, 141, .35); }
.photo-card button { position: relative; width: 100%; height: 100%; padding: 0; text-align: left; border: 0; background: transparent; cursor: zoom-in; }
.photo-card button::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 48%, rgba(3, 10, 18, .94)); transition: background .3s ease; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .45s ease; }
.photo-card:hover img { transform: scale(1.045); filter: saturate(1.12) contrast(1.03); }
.photo-card:hover button::after { background: linear-gradient(180deg, rgba(3, 10, 18, .03), rgba(3, 10, 18, .98)); }
.photo-card-overlay { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3px 18px; color: var(--white); }
.photo-card-overlay small { grid-column: 1 / -1; color: var(--gold-300); font-size: .62rem; font-style: normal; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.photo-card-overlay strong { font-size: .92rem; letter-spacing: .02em; }
.photo-card-overlay em { color: #b8c6d1; font-size: .64rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.media-notice { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-top: 40px; padding: 22px 24px; border: 1px solid #c8d7e3; border-radius: 13px; background: #edf4f8; }
.media-notice img { color: var(--navy-800); }
.media-notice p { margin: 0; color: #495767; }
.media-notice a { color: #7c5518; font-size: .8rem; font-weight: 850; text-transform: uppercase; }

.video-dialog { width: min(960px, calc(100% - 30px)); padding: 0; color: var(--white); border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; background: var(--navy-950); box-shadow: 0 30px 100px rgba(0, 0, 0, .6); }
.video-dialog::backdrop { background: rgba(0, 0, 0, .82); backdrop-filter: blur(8px); }
.video-dialog-inner { position: relative; padding: 24px; }
.video-dialog h2 { margin: 0 52px 18px 0; font-size: 1.4rem; }
.video-dialog video { width: 100%; max-height: 70vh; border-radius: 10px; background: #000; }
.dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; display: grid; place-items: center; width: 40px; height: 40px; color: var(--white); border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; background: rgba(255, 255, 255, .08); font-size: 1.7rem; cursor: pointer; }

.photo-dialog { width: min(1120px, calc(100% - 28px)); max-height: calc(100vh - 28px); padding: 0; color: var(--white); border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; background: var(--navy-950); box-shadow: 0 30px 110px rgba(0, 0, 0, .7); }
.photo-dialog::backdrop { background: rgba(0, 0, 0, .88); backdrop-filter: blur(9px); }
.photo-dialog-inner { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; min-height: min(760px, calc(100vh - 70px)); }
.photo-dialog-stage { display: grid; place-items: center; min-height: 0; padding: 24px; background: #010407; }
.photo-dialog-stage img { width: 100%; height: 100%; max-height: calc(100vh - 170px); object-fit: contain; }
.photo-dialog-caption { padding: 18px 24px 22px; border-top: 1px solid rgba(255, 255, 255, .1); background: var(--navy-900); }
.photo-dialog-caption span { display: block; margin-bottom: 5px; color: var(--gold-400); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.photo-dialog-caption h2 { margin: 0 52px 0 0; font-size: 1.3rem; }

.package-download-grid { display: grid; grid-template-columns: minmax(270px, .62fr) 1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.package-cover { position: relative; max-width: 480px; }
.package-cover::after { position: absolute; inset: 20px -20px -20px 20px; z-index: -1; content: ""; border: 1px solid var(--gold-500); border-radius: 18px; }
.package-cover img { width: 100%; max-height: 660px; object-fit: cover; object-position: top; border-radius: 18px; box-shadow: var(--shadow); }
.package-cover span { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 13px 16px; color: var(--white); border-radius: 9px; background: rgba(3, 10, 18, .84); font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.package-copy h2 { margin-bottom: 22px; font-size: clamp(2.3rem, 4vw, 4.3rem); }
.package-copy > p { max-width: 650px; color: var(--slate); font-size: 1.06rem; }
.download-button { margin-top: 18px; }
.download-button img { filter: invert(1); }
.pdf-languages { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; color: var(--slate); font-size: .82rem; font-weight: 700; }
.pdf-languages a { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }

.package-includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.package-item { min-height: 230px; padding: 28px; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); background: rgba(255, 255, 255, .035); }
.package-item > span { display: block; margin-bottom: 30px; color: var(--gold-400); font-weight: 900; }
.package-item h3 { color: var(--white); }
.package-item p { margin-bottom: 0; color: #9cabb9; font-size: .91rem; }

.availability-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; padding: clamp(34px, 5vw, 65px); border: 1px solid #d7c38d; border-radius: var(--radius-lg); background: linear-gradient(135deg, #fffdf7, #eef6fb); box-shadow: var(--shadow); }
.availability-panel h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3.6rem); }
.availability-panel p { max-width: 800px; margin-bottom: 0; color: var(--slate); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { display: flex; flex-direction: column; min-height: 350px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 34px rgba(3, 10, 18, .07); }
.contact-icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 36px; color: var(--navy-900); border-radius: 16px; background: linear-gradient(135deg, #f7dc94, #c99a35); }
.contact-card h3 { font-size: 1.55rem; }
.contact-card p { color: var(--slate); }
.contact-card > a { margin-top: auto; color: #825a19; font-size: .8rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.contact-card small { display: block; margin-top: 13px; color: #718092; overflow-wrap: anywhere; }
.contact-note { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 32px; padding: 28px; border-radius: var(--radius); color: var(--white); background: var(--navy-900); }
.contact-note img { color: var(--gold-400); filter: invert(78%) sepia(43%) saturate(673%) hue-rotate(356deg) brightness(96%); }
.contact-note h3 { margin-bottom: 8px; }
.contact-note p { margin-bottom: 0; color: #aebcca; }

.final-cta { padding: 76px 0; color: var(--white); background: linear-gradient(120deg, #0e2a41, #071321 62%, #241b0c); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.final-cta h2 { max-width: 780px; margin-bottom: 16px; font-size: clamp(2rem, 3.4vw, 3.7rem); }
.final-cta p { max-width: 720px; margin-bottom: 0; color: #b6c4d0; }
.final-cta .button-row { margin-top: 0; }

.site-footer { color: #d9e3eb; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr .65fr; gap: 54px; padding-top: 72px; padding-bottom: 62px; }
.footer-brand > img {
  display: block;
  width: min(100%, 360px);
  height: auto !important;
  max-height: 110px !important;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.footer-brand p { max-width: 430px; color: #8293a4; font-size: .9rem; }
.site-footer h3 { margin-bottom: 21px; color: var(--white); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer > .footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer > .footer-grid > div:not(.footer-brand) a { display: inline-flex; align-items: center; gap: 8px; color: #8fa0b0; font-size: .86rem; transition: color .2s ease; }
.site-footer a:hover { color: var(--gold-300) !important; }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a { display: grid; place-items: center; width: 42px; height: 42px; color: var(--white); border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; background: rgba(255, 255, 255, .04); }
.social-row img, .contact-dock img { filter: invert(1); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom p { margin: 0; color: #627384; font-size: .75rem; }
.footer-bottom a { color: #b99a58; }

.contact-dock { position: fixed; z-index: 80; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.contact-dock a { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; background: rgba(7, 19, 33, .92); box-shadow: 0 10px 25px rgba(0, 0, 0, .2); backdrop-filter: blur(12px); transition: transform .2s ease, background .2s ease; }
.contact-dock a:nth-child(2) { background: #149b57; }
.contact-dock a:hover { transform: translateY(-3px); background: #b8862b; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal-delay { --delay: 120ms; }
.reveal-delay-two { --delay: 220ms; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1120px) {
  :root { --header-height: 78px; }
  .brand img { width: 215px; max-height: 52px; }
  .site-nav a { padding-inline: 8px; font-size: .75rem; }
  .header-inner { gap: 14px; }
  .hero-grid { grid-template-columns: 1fr minmax(340px, .62fr); gap: 45px; }
  .compact-timeline { grid-template-columns: repeat(5, minmax(160px, 1fr)); overflow-x: auto; padding-bottom: 14px; }
  .compact-timeline::before { right: 80px; left: 80px; min-width: 780px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .menu-toggle { display: block; order: 2; margin-left: auto; }
  .language-switcher { order: 3; }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 24px 20px;
    visibility: hidden;
    opacity: 0;
    background: rgba(3, 10, 18, .99);
    transform: translateY(-14px);
    transition: .25s ease;
  }
  .menu-open .site-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 16px 12px; font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .07); }

  .hero-grid { grid-template-columns: 1fr; padding-top: calc(var(--header-height) + 85px); padding-bottom: 190px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-portrait { width: min(100%, 520px); margin-inline: auto; }
  .hero-portrait > img { width: min(100%, 470px); }
  .stats-strip { grid-template-columns: 1fr; width: min(calc(100% - 40px), var(--container)); }
  .stats-strip article { padding: 14px 18px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .stats-strip article:last-child { border-bottom: 0; }

  .split-layout, .style-grid, .discipline-grid, .package-download-grid { grid-template-columns: 1fr; }
  .image-frame { width: min(100%, 560px); margin-inline: auto; }
  .section-copy { max-width: 820px; }
  .discipline-image { width: min(100%, 600px); margin-inline: auto; }
  .video-preview-grid, .video-gallery, .package-includes-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-photo-grid { grid-template-columns: 1fr 1fr; }
  .editorial-photo-1 { grid-column: 1 / -1; min-height: 430px; }
  .editorial-photo-1 img { min-height: 430px; }
  .editorial-photo:not(.editorial-photo-1), .editorial-photo:not(.editorial-photo-1) img { min-height: 480px; }
  .journey-photo-band { grid-template-columns: 1fr 1.35fr 1fr; }
  .photo-card { grid-column: span 6; }
  .photo-card.landscape { grid-column: span 12; }
  .photo-card.featured { grid-column: span 6; }
  .featured-video { grid-template-columns: 1fr; }
  .featured-video video { min-height: 420px; }
  .featured-video-copy { padding: 28px; }
  .package-cover { margin-inline: auto; }
  .availability-panel, .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta .button-row { margin-top: 5px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
}

@media (max-width: 640px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header, .site-header.is-scrolled { height: var(--header-height); }
  .brand { padding: 0; border-radius: 0; }
  .brand img { width: 166px; max-height: 48px; }
  .header-inner { gap: 8px; }
  .language-current { padding: 8px; }
  .language-current span { display: none; }
  .menu-toggle { width: 40px; height: 40px; }

  h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.15rem); }
  .hero-grid { padding-bottom: 220px; }
  .hero h1 { margin-bottom: 20px; }
  .hero-portrait > img { width: min(100%, 390px); }
  .hero-portrait figcaption { align-items: flex-start; flex-direction: column; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }

  .section { padding: 76px 0; }
  .image-frame { min-height: 500px; }
  .image-frame img { height: 500px; }
  .video-preview-grid, .video-gallery, .values-grid, .package-includes-grid, .contact-grid { grid-template-columns: 1fr; }
  .editorial-photo-grid { grid-template-columns: 1fr; }
  .editorial-photo-1 { grid-column: auto; }
  .editorial-photo, .editorial-photo img, .editorial-photo-1, .editorial-photo-1 img, .editorial-photo:not(.editorial-photo-1), .editorial-photo:not(.editorial-photo-1) img { min-height: 420px; height: 420px; }
  .journey-photo-band { grid-template-columns: 1fr; }
  .journey-photo-card, .journey-photo-card img { min-height: 390px; height: 390px; }
  .photo-gallery { grid-auto-rows: 90px; }
  .photo-card, .photo-card.landscape, .photo-card.featured { grid-column: span 12; }
  .photo-card { grid-row: span 4; }
  .photo-card.landscape { grid-row: span 3; }
  .photo-dialog-stage { padding: 12px; }
  .photo-dialog-caption { padding-inline: 16px; }
  .video-preview-card, .video-preview-card > img { min-height: 245px; }
  .compact-timeline { grid-template-columns: repeat(5, 230px); }
  .timeline-card { padding-inline: 8px; }
  .discipline-image img { max-height: 610px; }

  .page-hero { padding-top: calc(var(--header-height) + 72px); padding-bottom: 72px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-mark { display: none; }
  .journey-stage { grid-template-columns: 1fr; gap: 14px; }
  .journey-year { font-size: 4.7rem; }
  .strength-list { grid-template-columns: 1fr; }
  .featured-video video { min-height: 230px; }
  .featured-video-copy > span { font-size: 5rem; }
  .media-notice { grid-template-columns: auto 1fr; }
  .media-notice a { grid-column: 2; }
  .package-cover::after { inset: 12px -10px -10px 12px; }
  .availability-panel { gap: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .contact-dock { right: 10px; bottom: 10px; }
  .contact-dock a { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .final-cta, .site-footer, .contact-dock { display: none !important; }
  body { color: #000; background: #fff; }
  main { padding: 0; }
}
