:root {
  color-scheme: dark;
  --ink: #071018;
  --ink-soft: #0d1922;
  --ink-card: #11212b;
  --cream: #f7ecdc;
  --cream-soft: #e6d8c6;
  --muted: #b9ada0;
  --gold: #e8ad67;
  --gold-bright: #ffd08c;
  --coral: #cf7354;
  --sage: #8fa187;
  --line: rgba(247, 236, 220, 0.16);
  --line-strong: rgba(247, 236, 220, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: min(1180px, calc(100% - 2rem));
  --header-h: 5rem;
  --serif: Georgia, "Times New Roman", "Noto Serif Thai", "Noto Serif SC", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Thai", "Noto Sans SC", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 5%, rgba(232, 173, 103, 0.08), transparent 28rem),
    linear-gradient(180deg, #061019 0%, #0b151d 46%, #071018 100%);
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.98rem + 0.1vw, 1.08rem);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html:lang(th) body { line-height: 1.78; }
html:lang(zh-CN) body { line-height: 1.75; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  background: var(--cream);
  color: var(--ink);
  font-weight: 750;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
  border-radius: 0.25rem;
}

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; position: relative; }
.section--compact { padding: clamp(3rem, 5vw, 5rem) 0; }
.section--cream {
  background: var(--cream);
  color: #132028;
}
.section--sage {
  background: #dfe6db;
  color: #142019;
}
.section--line { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 1.9rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.8;
}
.section--cream .eyebrow,
.section--sage .eyebrow { color: #8b4f2d; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7.8vw, 7.6rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.45rem, 5.1vw, 5.2rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.3rem); letter-spacing: -0.02em; }
p { margin: 0 0 1.25rem; }
.lead {
  max-width: 52rem;
  color: var(--cream-soft);
  font-size: clamp(1.14rem, 1rem + 0.65vw, 1.6rem);
  line-height: 1.55;
  text-wrap: pretty;
}
.section--cream .lead,
.section--sage .lead { color: #455057; }
.muted { color: var(--muted); }
.small { font-size: 0.89rem; line-height: 1.6; }
.prose { max-width: 48rem; }
.prose > * + * { margin-top: 1rem; }
.prose ul { margin: 1.25rem 0; padding-left: 1.25rem; }
.prose li + li { margin-top: 0.55rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: #111820;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-bright); }
.button--ghost { border-color: var(--line-strong); background: rgba(7, 16, 24, 0.25); color: var(--cream); }
.button--ghost:hover { border-color: rgba(247, 236, 220, 0.55); background: rgba(247, 236, 220, 0.08); }
.button--dark { background: var(--ink); color: var(--cream); }
.button svg { width: 1rem; height: 1rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream-soft);
  background: rgba(7, 16, 24, 0.34);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}
.pill::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0.9rem var(--gold);
  content: "";
}
.pill--dark { border-color: rgba(7,16,24,.18); background: rgba(255,255,255,.48); color: #26333a; }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 12, 18, 0.82), rgba(5, 12, 18, 0.15));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 12, 18, 0.88);
  backdrop-filter: blur(18px) saturate(125%);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--cream);
  text-decoration: none;
}
.brand img { width: 2rem; height: 2rem; object-fit: contain; }
.brand-name { font-family: var(--serif); font-size: 1.42rem; letter-spacing: 0.16em; line-height: 1; }
.desktop-nav { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.65rem); }
.desktop-nav > a {
  position: relative;
  color: var(--cream-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav > a::after {
  position: absolute;
  inset: auto 0 -0.5rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 160ms ease;
}
.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.desktop-nav > a[aria-current="page"] { color: var(--gold-bright); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.lang-switcher { position: relative; }
.lang-switcher summary {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream-soft);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
  list-style: none;
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-switcher summary svg { width: 1rem; height: 1rem; }
.lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: 10.5rem;
  overflow: hidden;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(8, 18, 26, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.lang-menu a {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0.7rem;
  border-radius: 0.55rem;
  color: var(--cream-soft);
  font-size: 0.85rem;
  text-decoration: none;
}
.lang-menu a:hover { background: rgba(247,236,220,.08); color: var(--cream); }
.lang-menu a[aria-current="true"] { color: var(--gold-bright); }
.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7,16,24,.22);
  cursor: pointer;
}
.menu-toggle svg { width: 1.2rem; height: 1.2rem; }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: calc(var(--header-h) + 1.8rem) 1rem 2rem;
  background: rgba(5, 12, 18, 0.985);
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { width: min(100%, 34rem); margin: 0 auto; }
.mobile-menu nav > a {
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 8vw, 3rem);
  line-height: 1.2;
  text-decoration: none;
}
.mobile-languages { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.mobile-languages a { padding: 0.55rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; }
body.menu-open { overflow: hidden; }

/* Hero */
.hero {
  min-height: min(100svh, 64rem);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #071018;
}
.hero-media, .hero-media picture, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 48%; filter: saturate(0.92) contrast(1.02); }
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 15, 0.92) 0%, rgba(4, 10, 15, 0.58) 43%, rgba(4, 10, 15, 0.25) 72%),
    linear-gradient(0deg, rgba(4, 10, 15, 0.92) 0%, rgba(4, 10, 15, 0.08) 55%, rgba(4, 10, 15, 0.5) 100%);
  content: "";
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--header-h) + 5rem) 0 clamp(4rem, 9vw, 8.5rem);
}
.hero-copy { max-width: 58rem; }
.hero h1 { max-width: 12ch; }
.hero .lead { max-width: 43rem; margin-top: 1.45rem; }
.hero-kicker { margin-bottom: 1.3rem; }
.hero-note { margin-top: 1.3rem; color: rgba(247,236,220,.7); font-size: 0.82rem; }

.light-string {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-h) + 0.2rem);
  left: -3%;
  width: 106%;
  height: 5rem;
  transform: rotate(-1.2deg);
  pointer-events: none;
}
.light-string::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(248, 216, 170, 0.55);
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
  content: "";
}
.light-string span {
  position: absolute;
  top: 0.45rem;
  width: 0.72rem;
  height: 1.05rem;
  border-radius: 45% 45% 55% 55%;
  background: #ffd492;
  box-shadow: 0 0 0.3rem #ffd492, 0 0 1.15rem rgba(255, 191, 91, 0.85);
  animation: light-breathe 3.6s ease-in-out infinite alternate;
}
.light-string span::before {
  position: absolute;
  top: -0.35rem;
  left: 50%;
  width: 0.34rem;
  height: 0.36rem;
  transform: translateX(-50%);
  border-radius: 0.08rem;
  background: #524a43;
  content: "";
}
.light-string span:nth-child(1){left:4%;animation-delay:-.3s}.light-string span:nth-child(2){left:12%;animation-delay:-1.7s}.light-string span:nth-child(3){left:21%;animation-delay:-.8s}.light-string span:nth-child(4){left:31%;animation-delay:-2.3s}.light-string span:nth-child(5){left:42%;animation-delay:-1.2s}.light-string span:nth-child(6){left:54%;animation-delay:-2.8s}.light-string span:nth-child(7){left:66%;animation-delay:-.6s}.light-string span:nth-child(8){left:78%;animation-delay:-2s}.light-string span:nth-child(9){left:89%;animation-delay:-1s}.light-string span:nth-child(10){left:97%;animation-delay:-2.5s}
@keyframes light-breathe { from { opacity: .78; transform: translateY(0); } to { opacity: 1; transform: translateY(.12rem); } }

.hero-scroll {
  position: absolute;
  z-index: 4;
  right: max(1rem, calc((100% - min(1180px, calc(100% - 2rem))) / 2));
  bottom: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(247,236,220,.7);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-scroll::after { width: 2.8rem; height: 1px; background: currentColor; content: ""; }

/* Layouts */
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.intro-grid h2 { max-width: 12ch; }
.intro-copy { padding-top: 1rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stat { min-height: 9.5rem; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { color: var(--gold-bright); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.05; }
.stat span { margin-top: .55rem; color: var(--muted); font-size: .84rem; line-height: 1.45; }

.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 3rem; }
.card {
  min-height: 18rem;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  overflow: hidden;
}
.card::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,173,103,.18), transparent 66%);
  content: "";
}
.card-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-bright);
}
.card-icon svg { width: 1.2rem; height: 1.2rem; }
.card h3 { margin-top: 3rem; font-size: 1.7rem; }
.card p { margin: .8rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }
.card-link { margin-top: 1rem; color: var(--gold-bright); font-size: .82rem; font-weight: 800; text-decoration: none; }

.photo-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, minmax(15rem, 24rem)); gap: 1rem; margin-top: 3rem; }
.photo { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink-card); }
.photo:first-child { grid-row: 1 / 3; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.photo:hover img { transform: scale(1.025); }
.photo-overlay { position: absolute; inset: auto .9rem .9rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.photo-label { max-width: 19rem; padding: .6rem .75rem; border: 1px solid rgba(255,255,255,.18); border-radius: .7rem; background: rgba(5,12,18,.72); color: rgba(255,255,255,.88); font-size: .75rem; line-height: 1.45; backdrop-filter: blur(12px); }

.feature-band { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); min-height: 42rem; }
.feature-band-media { position: relative; min-height: 28rem; overflow: hidden; }
.feature-band-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-band-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, var(--cream)); content: ""; }
.feature-band-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.feature-band-content h2 { max-width: 9ch; }
.feature-band-content .lead { margin-top: 1.4rem; }

.quote-block { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.quote-block blockquote { margin: 0; max-width: 17ch; font-family: var(--serif); font-size: clamp(2.2rem, 5.2vw, 5.4rem); line-height: 1.1; letter-spacing: -.035em; }
.quote-block .quote-note { max-width: 20rem; color: var(--muted); }

.split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.split--top { align-items: start; }
.media-card { position: relative; overflow: hidden; min-height: 30rem; border-radius: var(--radius-lg); background: var(--ink-card); box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.media-card .pill { position: absolute; z-index: 2; top: 1rem; left: 1rem; }

.check-list { display: grid; gap: .85rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 1.6rem 1fr; gap: .7rem; align-items: start; }
.check-list li::before { width: 1.25rem; height: 1.25rem; display: grid; place-items: center; margin-top: .23rem; border: 1px solid rgba(232,173,103,.6); border-radius: 50%; color: var(--gold-bright); content: "✓"; font-size: .7rem; font-weight: 900; }
.section--cream .check-list li::before, .section--sage .check-list li::before { border-color: #9b603e; color: #7e4729; }

.icon-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 2.5rem; }
.icon-item { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.icon-item strong { display: block; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.icon-item span { display: block; margin-top: .35rem; color: var(--muted); font-size: .84rem; }
.section--cream .icon-item, .section--sage .icon-item { border-color: rgba(7,16,24,.15); }
.section--cream .icon-item span, .section--sage .icon-item span { color: #536069; }

.journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-top: 2.5rem; }
.journey-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.025); }
.journey-card .number { color: var(--gold-bright); font-family: var(--serif); font-size: 2rem; }
.journey-card h3 { margin-top: 2.5rem; font-size: 1.65rem; }
.journey-card p { margin: .7rem 0 0; color: var(--muted); font-size: .9rem; }

.cta-panel { position: relative; overflow: hidden; padding: clamp(2.2rem, 5vw, 4.5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(232,173,103,.12), rgba(255,255,255,.025)); }
.cta-panel::after { position: absolute; inset: auto -10% -85% auto; width: 34rem; height: 34rem; border-radius: 50%; background: radial-gradient(circle, rgba(232,173,103,.18), transparent 65%); content: ""; }
.cta-panel h2 { position: relative; z-index: 1; max-width: 11ch; }
.cta-panel p, .cta-panel .button-row { position: relative; z-index: 1; }

/* Page hero */
.page-hero { min-height: 37rem; position: relative; display: grid; align-items: end; overflow: hidden; padding-top: var(--header-h); border-bottom: 1px solid var(--line); }
.page-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 78% 24%, rgba(232,173,103,.16), transparent 24rem), linear-gradient(135deg,#08131c,#0e1b24); content: ""; }
.page-hero--photo::before { z-index: 1; background: linear-gradient(90deg, rgba(4,10,15,.93), rgba(4,10,15,.48)), linear-gradient(0deg,rgba(4,10,15,.75),transparent); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 2; padding: clamp(5rem,10vw,9rem) 0 clamp(3.5rem,7vw,6rem); }
.page-hero h1 { max-width: 12ch; font-size: clamp(3.4rem,7vw,7rem); }
.page-hero .lead { margin-top: 1.4rem; max-width: 46rem; }
.breadcrumbs { margin-bottom: 2rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; color: rgba(247,236,220,.7); font-size: .78rem; }
.breadcrumbs li:not(:last-child)::after { margin-left: .5rem; color: rgba(247,236,220,.35); content: "/"; }
.breadcrumbs a { text-decoration: none; }

.planned-note { padding: 1rem 1.15rem; border-left: 3px solid var(--gold); background: rgba(232,173,103,.08); color: var(--cream-soft); font-size: .88rem; }
.section--cream .planned-note, .section--sage .planned-note { background: rgba(139,79,45,.08); color: #455057; }

.faq { max-width: 56rem; margin-top: 2rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.25rem 2.4rem 1.25rem 0; cursor: pointer; font-family: var(--serif); font-size: 1.22rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; right: .2rem; top: 1.2rem; content: "+"; color: var(--gold-bright); font-family: var(--sans); font-weight: 300; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 2.5rem 1.3rem 0; color: var(--muted); }
.section--cream .faq details, .section--sage .faq details { border-color: rgba(7,16,24,.16); }
.section--cream .faq details p, .section--sage .faq details p { color: #526069; }

.timeline { display: grid; gap: 0; margin-top: 3rem; }
.timeline-item { display: grid; grid-template-columns: 10rem 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.timeline-label { color: var(--gold-bright); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item h3 { font-size: 1.65rem; }
.timeline-item p { margin: .65rem 0 0; color: var(--muted); }

/* Illustration */
.discovery-illustration { position: relative; min-height: 30rem; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(160deg,#294139,#172d2a); box-shadow: var(--shadow); }
.discovery-illustration::before { position:absolute; inset:0; background: radial-gradient(circle at 70% 22%, rgba(255,208,140,.24), transparent 15rem); content:""; }
.discovery-scene { position:absolute; inset:8% 8% 5%; }
.discovery-roof { position:absolute; top:3%; left:10%; right:10%; height:10%; border-radius:4rem 4rem .7rem .7rem; background:#e8ad67; box-shadow:0 .8rem 2rem rgba(0,0,0,.25); }
.discovery-room { position:absolute; inset:12% 0 0; border:1px solid rgba(255,255,255,.18); border-radius:1.5rem; background:rgba(247,236,220,.9); }
.discovery-window { position:absolute; top:12%; left:8%; width:32%; height:27%; border-radius:.8rem; background:linear-gradient(180deg,#719a9a,#c9dfd5); box-shadow:inset 0 0 0 .6rem #fcf3e7; }
.discovery-window::after { position:absolute; left:50%; top:0; bottom:0; width:.45rem; background:#fcf3e7; content:""; }
.discovery-table { position:absolute; left:16%; bottom:18%; width:45%; height:7%; border-radius:1rem; background:#c88054; }
.discovery-table::before,.discovery-table::after { position:absolute; top:80%; width:6%; height:160%; background:#8d583a; content:""; }
.discovery-table::before{left:10%}.discovery-table::after{right:10%}
.discovery-blocks { position:absolute; left:25%; bottom:29%; display:flex; gap:.45rem; align-items:end; }
.discovery-blocks span { width:1.6rem; height:1.6rem; border-radius:.25rem; background:#e8ad67; box-shadow:1.9rem -.7rem 0 #82a47d, 3.8rem .2rem 0 #cf7354; }
.discovery-shelf { position:absolute; right:8%; bottom:15%; width:25%; height:48%; border-radius:.5rem; border: .55rem solid #805139; }
.discovery-shelf::before,.discovery-shelf::after{position:absolute;left:0;right:0;height:.45rem;background:#805139;content:""}.discovery-shelf::before{top:31%}.discovery-shelf::after{top:65%}
.discovery-star { position:absolute; width:1rem; height:1rem; background:#ffd08c; clip-path:polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 93%,50% 71%,21% 93%,32% 57%,2% 35%,39% 35%); filter:drop-shadow(0 0 .7rem #ffd08c); }
.discovery-star.s1{top:5%;left:5%}.discovery-star.s2{top:18%;right:4%;transform:scale(.7)}.discovery-star.s3{top:44%;right:39%;transform:scale(.55)}

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #050d13; }
.footer-main { display: grid; grid-template-columns: 1.2fr repeat(3, .6fr); gap: 2rem; padding: 4.5rem 0 3.5rem; }
.footer-brand { max-width: 24rem; }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; }
.footer-col h2 { margin: 0 0 .9rem; font-family: var(--sans); color: var(--cream); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; padding: .28rem 0; color: var(--muted); font-size: .88rem; text-decoration: none; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0 1.6rem; border-top: 1px solid var(--line); color: #8f857d; font-size: .75rem; }
.footer-bottom a { text-decoration: none; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(1.2rem); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: 80ms; }
.js .reveal-delay-2 { transition-delay: 160ms; }
.js .reveal-delay-3 { transition-delay: 240ms; }

/* Language gateway */
.gateway { min-height: 100svh; display: grid; place-items: center; padding: 2rem; background: radial-gradient(circle at 50% 30%, rgba(232,173,103,.16), transparent 25rem), var(--ink); }
.gateway-card { width: min(100%, 42rem); padding: clamp(2rem,6vw,4.5rem); border:1px solid var(--line); border-radius:var(--radius-lg); background:rgba(255,255,255,.025); text-align:center; box-shadow:var(--shadow); }
.gateway-card .brand { justify-content:center; margin-bottom:2rem; }
.gateway-card h1 { font-size:clamp(2.5rem,7vw,4.8rem); }
.gateway-card p { margin:1rem auto 2rem; max-width:30rem; color:var(--muted); }
.gateway-links { display:grid; grid-template-columns:repeat(3,1fr); gap:.7rem; }
.gateway-links a { padding:1rem .8rem; border:1px solid var(--line); border-radius:1rem; text-decoration:none; font-weight:750; }
.gateway-links a:hover { border-color:var(--gold); background:rgba(232,173,103,.08); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1.2fr repeat(2,.7fr); }
  .footer-main .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 1.25rem, 1180px); --header-h: 4.5rem; }
  body { font-size: 1rem; }
  .lang-switcher { display: none; }
  .hero { min-height: 47rem; }
  .hero::before { background: linear-gradient(0deg,rgba(4,10,15,.95),rgba(4,10,15,.2) 70%,rgba(4,10,15,.54)); }
  .hero-content { padding-bottom: 4.5rem; }
  .hero h1 { max-width: 10ch; font-size: clamp(3.1rem,16vw,5.5rem); }
  .hero-scroll { display: none; }
  .light-string { top: calc(var(--header-h) + .4rem); }
  .intro-grid, .split, .feature-band, .quote-block { grid-template-columns: 1fr; }
  .intro-grid { gap: 2rem; }
  .intro-grid h2 { max-width: 13ch; }
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 7.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .card-grid, .journey-grid, .icon-list { grid-template-columns: 1fr; }
  .card { min-height: 15rem; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 19rem); }
  .photo:first-child { grid-row: auto; }
  .feature-band-media::after { background: linear-gradient(0deg,var(--cream),transparent 28%); }
  .feature-band-content { padding: 3rem 1rem 4.5rem; }
  .media-card, .discovery-illustration { min-height: 24rem; }
  .page-hero { min-height: 34rem; }
  .timeline-item { grid-template-columns: 1fr; gap: .6rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .gateway-links { grid-template-columns:1fr; }
}

@media (max-width: 420px) {
  .brand-name { font-size: 1.18rem; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-main .footer-col:last-child { grid-column: auto; }
}

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

@media print {
  .site-header, .mobile-menu, .light-string, .hero-scroll, .button-row, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-hero { min-height: auto; padding: 2rem 0; }
  .hero-media, .page-hero-media { display: none; }
  .hero::before, .page-hero::before { display: none; }
  .hero-content, .page-hero-content { padding: 0; }
  .lead, .muted, .card p, .journey-card p { color: #333 !important; }
  .section { padding: 2rem 0; }
}

/* Assistive text and compact mobile-menu icon */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.menu-toggle > span:not(.sr-only) {
  position: absolute;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle > span:nth-child(1) { transform: translateY(-0.32rem); }
.menu-toggle > span:nth-child(3) { transform: translateY(0.32rem); }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }
.footer-main { grid-template-columns: 1.35fr .65fr .65fr; }

/* The decorative light cable intentionally extends past both edges; clip it without creating horizontal scrolling. */
body { overflow-x: hidden; overflow-x: clip; }
.light-string { left: 0; width: 100%; transform: none; overflow: hidden; }

/* Artist-impression gallery */
.concept-showcase{overflow:hidden}.concept-heading{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(18rem,.95fr);gap:clamp(2rem,6vw,6rem);align-items:end;margin-bottom:2.2rem}.concept-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:1rem}.concept-card{position:relative;overflow:hidden;min-height:18rem;border-radius:1.35rem;background:#071018;box-shadow:var(--shadow)}.concept-card img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}.concept-card:hover img{transform:scale(1.035)}.concept-card figcaption{position:absolute;inset:auto 0 0;padding:3.5rem 1rem 1rem;background:linear-gradient(transparent,rgba(5,12,18,.92));color:#fff;font-size:.9rem;font-weight:850}.concept-disclaimer{margin-top:1.1rem;color:var(--muted,#6c6257);font-size:.88rem}.section--dark-concept{background:#071018;color:#f7ecdc}.section--dark-concept .lead{color:#d8cabb}.section--dark-concept .eyebrow{color:#e8ad67}.section--dark-concept .concept-disclaimer{color:#cbbbaa}
@media(max-width:900px){.concept-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.concept-heading{grid-template-columns:1fr}.concept-grid{grid-template-columns:1fr}.concept-card{min-height:16rem}}
@media(prefers-reduced-motion:reduce){.concept-card img{transition:none}}
