/* ============================================================
   IHCC PENANG — Design System
   Indian Heritage Cultural Centre · George Town
   ============================================================ */

:root {
  --ink: #121110;
  --charcoal: #1a1816;
  --charcoal-2: #24211e;
  --ivory: #f9f6f0;
  --ivory-2: #efece6;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.22);
  --bronze: #b8860b;
  --terra: #c85a32;
  --burgundy: #581825;
  --burgundy-2: #431220;
  --muted-d: #a39e93;
  --muted-l: #6b655b;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  background: var(--ink);
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--ink); }

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */

.overline {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.overline::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.overline--center::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  text-transform: none;
}

.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  font-weight: 300;
}

.muted-d { color: var(--muted-d); }
.muted-l { color: var(--muted-l); }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.section {
  position: relative;
  padding-block: clamp(84px, 11vw, 160px);
}
.section--dark { background: var(--ink); color: var(--ivory); }
.section--charcoal { background: var(--charcoal); color: var(--ivory); }
.section--ivory { background: var(--ivory); color: var(--ink); }
.section--ivory .lead, .section--ivory p { color: #3d3a35; }
.section--burgundy { background: var(--burgundy); color: var(--ivory); }

.sec-head { max-width: 780px; margin-bottom: clamp(48px, 6vw, 88px); }
.sec-head .overline { margin-bottom: 22px; }
.sec-head p { margin-top: 26px; max-width: 560px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center p { margin-inline: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease-out), background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.btn:hover::after, .btn:focus-visible::after { transform: scaleX(1); }
.btn:hover, .btn:focus-visible { color: var(--ink); }

.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid::after { background: var(--ivory); }
.btn--solid:hover, .btn--solid:focus-visible { color: var(--ink); border-color: var(--ivory); }

.btn--ivory { border-color: rgba(249, 246, 240, 0.4); color: var(--ivory); }
.btn--ivory::after { background: var(--ivory); }
.btn--ivory:hover, .btn--ivory:focus-visible { color: var(--ink); border-color: var(--ivory); }

.btn--dark { border-color: rgba(18, 17, 16, 0.45); color: var(--ink); }
.btn--dark::after { background: var(--ink); }
.btn--dark:hover, .btn--dark:focus-visible { color: var(--ivory); }

.btn:disabled { opacity: 0.55; cursor: wait; }
.btn:disabled::after { display: none; }

.btn .arr { transition: transform 0.35s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }

/* Bokun trigger inherits site button styles */
.bokunButton { appearance: none; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(18, 17, 16, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--gold-soft);
}
.header-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}
.brand-text span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-d);
}

.nav-desktop { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.75);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-link:hover, .nav-link.is-active { color: var(--gold); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.nav-cta:hover:not(:disabled) { background: transparent; color: var(--gold); }
.nav-cta:disabled { opacity: 0.6; cursor: wait; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 130;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  margin: 7px auto;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: linear-gradient(160deg, var(--burgundy-2) 0%, var(--ink) 65%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(28px, 8vw, 64px) 48px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out), visibility 0s 0.45s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.45s var(--ease-out);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ivory);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  display: flex;
  align-items: baseline;
  gap: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s;
}
.mobile-link small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.mobile-link:hover, .mobile-link.is-active { color: var(--gold); }
.mobile-menu.is-open .mobile-link { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.29s; }
.mobile-menu .nav-cta { margin-top: 36px; align-self: flex-start; padding: 17px 34px; }
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-d);
  line-height: 2.1;
}

/* ---------- Hero (kinetic) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}
.hero-media .ph { position: absolute; inset: 0; height: 100%; }
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18,17,16,0.62) 0%, rgba(18,17,16,0.45) 42%, rgba(18,17,16,0.55) 68%, rgba(18,17,16,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(56px, 9vh, 110px);
}
.hero .overline { margin-bottom: 28px; opacity: 0; transition: opacity 1s var(--ease-out) 0.2s; }
.hero h1 {
  font-size: clamp(2.6rem, 8.4vw, 7rem);
  color: var(--ivory);
  margin-bottom: 34px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 300; text-transform: none; }

.line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.15s var(--ease-out);
  transition-delay: var(--d, 0s);
}
body.is-loaded .hero .line > span,
body.is-loaded .page-hero .line > span { transform: translateY(0); }
body.is-loaded .hero .overline,
body.is-loaded .hero-sub,
body.is-loaded .hero-actions,
body.is-loaded .hero-meta { opacity: 1; transform: none; }

.hero-sub {
  max-width: 520px;
  font-weight: 300;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  color: rgba(249, 246, 240, 0.85);
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out) 0.85s, transform 0.9s var(--ease-out) 0.85s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out) 1.05s, transform 0.9s var(--ease-out) 1.05s;
}
.hero-meta {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(56px, 9vh, 110px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.6);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out) 1.25s, transform 0.9s var(--ease-out) 1.25s;
}
.scroll-cue {
  width: 1px;
  height: 64px;
  background: rgba(249, 246, 240, 0.25);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: cueDrop 2.2s var(--ease-out) infinite;
}
@keyframes cueDrop {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}

/* ---------- Photo placeholders ---------- */

.ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(100% 100% at 85% 90%, rgba(88, 24, 37, 0.5), transparent 60%),
    linear-gradient(150deg, #2a2622 0%, #1a1816 55%, #221c18 100%);
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: overlay;
  z-index: 1;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  z-index: 2;
  pointer-events: none;
}
.ph-motif {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  opacity: 0.5;
}
.ph-motif svg { width: min(34%, 180px); height: auto; }
.ph-label {
  position: absolute;
  left: 30px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ph-label strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--ivory);
  text-transform: none;
  letter-spacing: 0.01em;
}
.ph-label span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.ph-tag {
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.45);
  border: 1px solid rgba(249, 246, 240, 0.18);
  padding: 6px 10px;
}
.ph--terra { background: radial-gradient(120% 90% at 25% 15%, rgba(200, 90, 50, 0.32), transparent 55%), radial-gradient(100% 100% at 80% 90%, rgba(18,17,16,0.75), transparent 65%), linear-gradient(150deg, #3a1f14 0%, #211410 60%, #2a1812 100%); }
.ph--burgundy { background: radial-gradient(120% 90% at 20% 12%, rgba(200, 90, 50, 0.16), transparent 50%), radial-gradient(110% 110% at 85% 90%, rgba(88, 24, 37, 0.85), transparent 62%), linear-gradient(150deg, #33101c 0%, #1c0d13 60%, #260f16 100%); }
.ph--gold { background: radial-gradient(120% 100% at 20% 10%, rgba(212, 175, 55, 0.3), transparent 55%), radial-gradient(100% 100% at 85% 90%, rgba(18,17,16,0.7), transparent 60%), linear-gradient(150deg, #33291a 0%, #1c1812 60%, #262013 100%); }
.ph--ivory { background: radial-gradient(120% 90% at 20% 10%, rgba(212, 175, 55, 0.25), transparent 55%), linear-gradient(150deg, #efe9dc 0%, #ddd5c4 60%, #e8e1d2 100%); }
.ph--ivory .ph-label strong { color: var(--ink); }
.ph--ivory .ph-tag { color: rgba(18, 17, 16, 0.5); border-color: rgba(18, 17, 16, 0.2); }
.ph--ivory::after { border-color: rgba(184, 134, 11, 0.4); }

.ph-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ph-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease-out); }
.ph-reveal.is-in { clip-path: inset(0 0 0 0); }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px) 0;
  border-block: 1px solid var(--gold-soft);
  background: var(--burgundy);
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.75);
  padding: 0 28px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 28px;
}
.marquee-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Home: intro manifesto ---------- */

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.intro-copy .overline { margin-bottom: 24px; }
.intro-copy h2 { margin-bottom: 34px; }
.intro-copy p { margin-bottom: 22px; max-width: 56ch; }
.intro-copy .btn { margin-top: 18px; }
.intro-figure { position: relative; }
.intro-figure .ph { aspect-ratio: 4 / 5; }
.intro-figure .fig-note {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-l);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* ---------- Home: experience preview ---------- */

.exp-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.exp-sticky { position: sticky; top: 120px; }
.exp-sticky .overline { margin-bottom: 22px; }
.exp-sticky h2 { margin-bottom: 26px; }
.exp-sticky p { color: var(--muted-d); max-width: 40ch; margin-bottom: 36px; }

.exp-list { list-style: none; border-top: 1px solid rgba(212, 175, 55, 0.18); }
.exp-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: background-color 0.35s, padding-left 0.35s var(--ease-out);
  cursor: pointer;
}
.exp-row:hover { background: rgba(212, 175, 55, 0.05); padding-left: 20px; }
.exp-row .num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.exp-row .ttl { display: flex; flex-direction: column; gap: 4px; }
.exp-row .ttl strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.exp-row:hover .ttl strong { color: var(--gold); }
.exp-row .ttl span {
  font-size: 13px;
  color: var(--muted-d);
  font-weight: 300;
}
.exp-row .go {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.35s var(--ease-out);
}
.exp-row:hover .go { opacity: 1; transform: none; }

/* ---------- Home: heritage story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
}
.story-item { position: relative; }
.story-item .ph { height: 100%; min-height: 280px; }
.story-item:nth-child(1) { grid-column: 1 / 7; }
.story-item:nth-child(1) .ph { aspect-ratio: 16 / 11; }
.story-item:nth-child(2) { grid-column: 7 / 13; margin-top: clamp(30px, 6vw, 90px); }
.story-item:nth-child(2) .ph { aspect-ratio: 4 / 3.4; }
.story-item:nth-child(3) { grid-column: 1 / 6; margin-top: calc(clamp(30px, 6vw, 90px) * -0.4); }
.story-item:nth-child(3) .ph { aspect-ratio: 4 / 4.6; }
.story-item:nth-child(4) { grid-column: 6 / 13; margin-top: clamp(30px, 5vw, 70px); }
.story-item:nth-child(4) .ph { aspect-ratio: 16 / 9.5; }
.story-cap {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-l);
}

/* ---------- Home: plan / visitor info ---------- */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.plan-cell {
  padding: clamp(28px, 3.4vw, 48px);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-cell:last-child { border-right: none; }
.plan-cell .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.plan-cell .v {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
}
.plan-cell .s { font-size: 13px; color: var(--muted-d); font-weight: 300; }
.plan-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: clamp(36px, 5vw, 56px); }

/* ---------- Final CTA ---------- */

.cta-final { position: relative; overflow: hidden; text-align: center; }
.cta-final .h-display { font-size: clamp(2.6rem, 7.5vw, 6rem); margin: 26px 0 30px; }
.cta-final p { max-width: 480px; margin: 0 auto 46px; color: var(--muted-d); }
.cta-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(212, 175, 55, 0.09);
  border-radius: 50%;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.page-hero .hero-content { padding-bottom: clamp(48px, 7vh, 90px); }
.page-hero h1 { font-size: clamp(2.4rem, 7.6vw, 6.2rem); color: var(--ivory); }
.page-hero .hero-sub { margin-bottom: 0; }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out) 1.05s, transform 0.9s var(--ease-out) 1.05s;
}
body.is-loaded .hero-chips { opacity: 1; transform: none; }
.chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.chip i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- Experience itinerary ---------- */

.itin { position: relative; }
.itin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.itin-steps { display: flex; flex-direction: column; }
.step {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  opacity: 0.32;
  transition: opacity 0.5s var(--ease-out);
}
.step.is-active { opacity: 1; }
.step:last-child { border-bottom: none; }
.step .s-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.step .s-num::after { content: ""; flex: 0 0 56px; height: 1px; background: var(--gold-soft); }
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.step p { color: var(--muted-d); font-weight: 300; max-width: 46ch; }
.step .s-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.step .s-tags span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.6);
  border: 1px solid rgba(249, 246, 240, 0.16);
  padding: 7px 12px;
}
.step .ph { display: none; }

.itin-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}
.itin-frame {
  position: relative;
  width: 100%;
  height: min(76vh, 720px);
}
.itin-frame .ph {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s var(--ease-out), transform 1.1s var(--ease-out);
}
.itin-frame .ph.is-active { opacity: 1; transform: scale(1); }
.itin-hud {
  position: absolute;
  left: 30px;
  top: 28px;
  z-index: 5;
  font-family: var(--mono);
  letter-spacing: 0.2em;
  color: var(--ivory);
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(18, 17, 16, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 8px 16px;
}
.itin-hud .cur { font-size: 30px; color: var(--gold); }
.itin-hud .tot { font-size: 12px; color: rgba(249, 246, 240, 0.55); }
.itin-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 1px;
  background: rgba(212, 175, 55, 0.18);
}
.itin-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

/* ---------- Included / good to know ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
}
.fact-list { list-style: none; }
.fact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(18, 17, 16, 0.12);
  align-items: start;
}
.section--dark .fact-list li, .section--charcoal .fact-list li { border-bottom-color: rgba(212, 175, 55, 0.16); }
.fact-list .ic {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-soft);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
}
.fact-list strong { display: block; font-family: var(--serif); font-size: 1.12rem; font-weight: 500; letter-spacing: 0.03em; margin-bottom: 4px; }
.fact-list span { font-size: 13.5px; font-weight: 300; color: var(--muted-l); }
.section--dark .fact-list span, .section--charcoal .fact-list span { color: var(--muted-d); }

/* ---------- Booking card ---------- */

.book-wrap { position: relative; }
.book-card {
  position: relative;
  background: linear-gradient(160deg, #211d1a 0%, var(--charcoal) 70%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: clamp(32px, 4.5vw, 64px);
  overflow: hidden;
}
.book-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  pointer-events: none;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  position: relative;
  z-index: 1;
  align-items: center;
}
.book-copy .overline { margin-bottom: 20px; }
.book-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 20px; }
.book-copy p { color: var(--muted-d); font-weight: 300; max-width: 44ch; }
.book-form { display: flex; flex-direction: column; gap: 20px; }
.book-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ivory);
  background: rgba(249, 246, 240, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 15px 16px;
  transition: border-color 0.3s, background-color 0.3s;
  border-radius: 0;
  appearance: none;
  width: 100%;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(249, 246, 240, 0.09);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(249, 246, 240, 0.35); }
.field input::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(0.6) saturate(3); cursor: pointer; }
.book-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.book-note {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 246, 240, 0.4);
  line-height: 1.9;
}

/* ---------- About page ---------- */

.manifesto { max-width: 760px; }
.manifesto .drop::first-letter {
  font-family: var(--serif);
  font-size: 4.6em;
  line-height: 0.78;
  float: left;
  padding: 8px 16px 0 0;
  color: var(--gold);
  font-weight: 400;
}
.manifesto p { margin-bottom: 26px; font-weight: 300; font-size: clamp(1rem, 1.35vw, 1.14rem); }

.chapters { display: flex; flex-direction: column; }
.chapter {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(36px, 4.5vw, 64px) 0;
  border-bottom: 1px solid rgba(18, 17, 16, 0.14);
}
.chapter:first-child { border-top: 1px solid rgba(18, 17, 16, 0.14); }
.chapter .c-num {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--bronze);
  letter-spacing: 0.06em;
}
.chapter h3 { margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.03em; }
.chapter p { color: #3d3a35; font-weight: 300; max-width: 62ch; }

.quote-strip { text-align: center; }
.quote-strip blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  max-width: 20ch;
  margin: 0 auto;
}
.quote-strip blockquote span { color: var(--gold); }
.quote-strip cite {
  display: block;
  margin-top: 30px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-d);
}

.about-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  margin-top: clamp(48px, 6vw, 88px);
}
.about-figures .ph { aspect-ratio: 4 / 3; }
.about-figures .story-item:nth-child(2) { margin-top: clamp(24px, 5vw, 72px); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-block { margin-bottom: 40px; }
.contact-block .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-block .k::after { content: ""; width: 34px; height: 1px; background: var(--gold-soft); }
.contact-block .v {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.4;
  font-weight: 400;
}
.contact-block a.v { transition: color 0.3s; display: inline-block; }
.contact-block a.v:hover { color: var(--gold); }
.contact-block .s { margin-top: 8px; font-size: 13px; color: var(--muted-d); font-weight: 300; }
.hours-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  font-size: 14px;
}
.hours-line span:first-child { color: var(--muted-d); font-weight: 300; }
.hours-line span:last-child { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; }

.contact-form-card {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: clamp(28px, 4vw, 56px);
  position: relative;
}
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}
.contact-form-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 8px; }
.contact-form-card .sub { color: var(--muted-d); font-size: 14px; font-weight: 300; margin-bottom: 34px; }
.form-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 14px 16px;
  margin-top: 4px;
  display: none;
}
.form-status.is-ok { display: block; color: #9fd6a4; border: 1px solid rgba(159, 214, 164, 0.35); background: rgba(159, 214, 164, 0.07); }
.form-status.is-err { display: block; color: #e8a1a1; border: 1px solid rgba(232, 161, 161, 0.35); background: rgba(232, 161, 161, 0.07); }

.map-band { position: relative; }
.map-frame {
  position: relative;
  height: min(62vh, 520px);
  min-height: 320px;
  background: var(--ivory-2);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.45) sepia(0.22) contrast(1.03);
  transition: filter 0.5s var(--ease-out);
}
.map-frame:hover iframe, .map-frame:focus-within iframe { filter: none; }
.map-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 134, 11, 0.45);
  pointer-events: none;
  z-index: 2;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  padding: clamp(64px, 8vw, 110px) 0 34px;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 90px);
}
.footer-grid .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-grid p, .footer-grid li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-d);
  line-height: 2;
  list-style: none;
}
.footer-grid a { transition: color 0.3s; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand p { max-width: 34ch; }
.footer-giant {
  font-family: var(--serif);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 11.5vw, 11rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 42px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.35);
  user-select: none;
  white-space: nowrap;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.footer-giant img {
  height: 0.82em;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.25));
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.footer-giant:hover img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.45));
}
@supports not (-webkit-text-stroke: 1px black) {
  .footer-giant { color: rgba(212, 175, 55, 0.25); }
}
.footer-base {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(163, 158, 147, 0.7);
}
.footer-base a {
  color: var(--gold);
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.85;
}
.footer-base a:hover { opacity: 1; color: var(--ivory); }

/* ---------- Page loader (lantern emblem) ---------- */

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease-out), visibility 0s 0.7s;
}
#page-loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.loader-inner img {
  width: 84px;
  height: auto;
  animation: lanternGlow 1.7s ease-in-out infinite;
}
.loader-inner span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.42em;
}
.loader-line {
  width: 120px;
  height: 1px;
  background: rgba(212, 175, 55, 0.16);
  position: relative;
  overflow: hidden;
}
.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: lineSweep 1.5s var(--ease-out) infinite;
}
@keyframes lanternGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25)); opacity: 0.85; }
  50% { filter: drop-shadow(0 0 26px rgba(212, 175, 55, 0.6)); opacity: 1; }
}
@keyframes lineSweep {
  to { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  #page-loader { transition: none; }
  .loader-inner img, .loader-line::after { animation: none; }
}

/* ---------- Reveal animations ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .plan-cell:nth-child(2) { border-right: none; }
  .plan-cell:nth-child(1), .plan-cell:nth-child(2) { border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
}

@media (max-width: 920px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  .intro-grid, .exp-layout, .two-col, .book-grid, .contact-grid { grid-template-columns: 1fr; }
  .exp-sticky { position: static; }
  .itin-grid { grid-template-columns: 1fr; }
  .itin-visual { display: none; }
  .step { min-height: 0; opacity: 1; padding: 0 0 44px; border-bottom: none; }
  .step .ph { display: block; aspect-ratio: 4 / 3; margin-bottom: 26px; }
  .step h3 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .story-item:nth-child(n) { grid-column: 1 / 13; margin-top: 0; }
  .story-item .ph { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .chapter { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 560px) {
  .footer-giant { font-size: clamp(1.9rem, 9.5vw, 2.6rem); gap: 10px; }
  .footer-giant img { height: 0.95em; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-cell { border-right: none; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
  .plan-cell:last-child { border-bottom: none; }
  .exp-row { grid-template-columns: 44px 1fr; }
  .exp-row .go { display: none; }
  .book-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions .btn, .plan-actions .btn, .book-actions .btn { width: 100%; }
  .about-figures { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */

@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], .line > span, .hero .overline, .hero-sub, .hero-actions, .hero-meta, .hero-chips {
    opacity: 1 !important;
    transform: none !important;
  }
  .ph-reveal { clip-path: none; }
  .marquee-track { animation: none; }
}
