/* ============================================================
   ONDO — Eco Resonance, Eulsukdo
   Brand system v2 — built from the official ONDO Video Edit Guide
   color table + ONDO Brand Foundation Q&A. Light, natural palette;
   gold/black/cream are restricted to the logo mark and thin accents
   only — never a background or filter. Typography is Jost only
   (+ Noto Sans KR for Korean), per the guide: "no decorative, script,
   or heavy impact fonts."
   ============================================================ */

:root {
  /* ---- Primary set: logo / gold-on-black / cream — now the whole scheme,
     not just thin accents. Park Hyatt register: near-black ground, gold
     line-work, cream body copy, worn only as a card surface (never a
     background fill in its own right). ---- */
  --ink: #0b0b0d;
  --ink-raised: #17161a;
  --gold: #c9a257;
  --gold-bright: #d8b96c;
  --gold-soft: rgba(201, 162, 87, 0.5);
  --cream: #f4efe4;

  /* ---- Secondary set: retained as accent/photo-overlay colors ---- */
  --ivory: #f6f2e8;
  --sand: #e7dac1;
  --stone: #a89d8c;
  --stone-on-card: #8c8377;
  --pine: #3e5245;
  --sea-mist: #6e93a0;
  --ocean: #1f3a4d;
  --amber: #c9a257;

  /* ---- derived working tokens (dark ground, cream ink) ---- */
  --bg: var(--ink);
  --bg-alt: var(--ink-raised);
  --text: var(--cream);
  --text-dim: rgba(244, 239, 228, 0.74);
  --text-faint: rgba(244, 239, 228, 0.5);
  --line: rgba(201, 162, 87, 0.18);
  --line-soft: rgba(244, 239, 228, 0.08);
  --white: #fffdf8;

  --sans: "Jost", "Noto Sans KR", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); border: 2px solid var(--ink); }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}

.section-head {
  max-width: 700px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.section-head h2 strong { font-weight: 500; color: var(--gold-bright); }
.section-head p {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0;
  font-weight: 300;
}

.btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--gold); color: var(--ink); }
.btn.solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn.solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn.ghost { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn.ghost:hover { background: rgba(255,255,255,0.14); }
.btn svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.idx {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.idx::before { content: ""; width: 26px; height: 1px; background: var(--gold-soft); display: inline-block; flex: none; }
.idx b { color: var(--amber); font-weight: 500; }
.section-head.center .idx { justify-content: center; }

/* subtle natural-grain texture instead of a flat color fill */
.texture {
  position: relative;
}
.texture::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Header — permanently black, so the gold logo mark never
   sits on anything but black, at any scroll position or over any photo ---- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease);
}
header.scrolled {
  padding: 13px 0;
  background: rgba(11, 11, 13, 0.96);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 14px; }
.logo img { width: 50px; height: 50px; border-radius: 50%; transition: width 0.4s var(--ease), height 0.4s var(--ease); }
header.scrolled .logo img { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .word {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--cream);
  white-space: nowrap;
}
.logo-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.24em;
  font-weight: 400;
  color: var(--gold-soft);
  margin-top: 3px;
  text-transform: uppercase;
}

nav.primary-nav ul { list-style: none; display: flex; gap: 38px; margin: 0; padding: 0; }
nav.primary-nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.82);
  position: relative;
  padding-bottom: 6px;
}
nav.primary-nav a.active { color: var(--gold-bright); }
nav.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.4s var(--ease);
}
nav.primary-nav a.active::after, nav.primary-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 24px; }
.header-actions .btn { padding: 13px 24px; border-color: var(--gold); color: var(--cream); }
.header-actions .btn:hover { background: var(--gold); color: var(--ink); }

.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--gold-soft); border-radius: 20px;
  padding: 7px 13px; cursor: pointer;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--stone); transition: border-color 0.3s var(--ease);
}
.lang-toggle:hover { border-color: var(--gold); }
.lang-toggle .lang-opt { transition: color 0.3s var(--ease); }
.lang-toggle .lang-opt.is-active { color: var(--gold-bright); }
.lang-toggle .lang-sep { color: var(--gold-soft); }

.nav-toggle { display: none; width: 26px; height: 18px; position: relative; background: none; border: none; cursor: pointer; z-index: 600; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 1px; background: var(--cream); transition: all 0.35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--gold); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--gold); }

/* ---------- Hero (video slot) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ocean);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transform: scale(1.12) translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,20,0.82) 0%, rgba(8,15,20,0.18) 48%, rgba(8,15,20,0.4) 100%);
}
.hero-placeholder-flag {
  position: absolute; top: 100px; right: 24px; z-index: 4;
  background: rgba(201, 138, 75, 0.92);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  max-width: 280px;
  line-height: 1.5;
}
.hero-content { position: relative; z-index: 5; width: 100%; padding-bottom: 90px; }
.hero-content .eyebrow { color: var(--sand); }
.hero-content .eyebrow::before { background: var(--sand); }

/* Tour orientation kicker — tells a guest landing anywhere near the top of a
   journey which of the two tours they're looking at ("The Tours / 01 —
   Eulsukdo — Eco Resonance"), since one long scroll can otherwise leave that
   ambiguous. */
.tour-kicker { margin-bottom: 26px; }
.tour-kicker-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.55);
  margin-bottom: 10px;
}
.tour-kicker-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  padding: 9px 18px 9px 0;
  border-bottom: 1px solid var(--gold-soft);
}
.tour-kicker-current b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  font-size: 11px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 50%;
  font-weight: 700;
}
.tour-kicker-current i { font-style: normal; color: var(--gold-soft); }
.hero-content h1 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.12;
  margin: 0 0 22px;
  color: var(--white);
  max-width: 760px;
  letter-spacing: -0.01em;
}
.hero-content h1 strong { font-weight: 500; color: var(--sand); }
.hero-content .sub {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin: 0 0 40px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

.hero-scroll {
  position: absolute; right: 36px; bottom: 30px; z-index: 6;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.hero-scroll .line { width: 50px; height: 1px; background: linear-gradient(to right, var(--sand), transparent); animation: scrollLineH 2.2s ease-in-out infinite; }
@keyframes scrollLineH { 0%{opacity:0.2;} 50%{opacity:1;} 100%{opacity:0.2;} }

/* ---------- Experience Our Tours — a short orientation title card
   between the brand hero and the first tour's story. Left-aligned, quiet,
   just tall enough to hold the tour-kicker moved out of the hero. ---------- */
.tours-intro { padding: 64px 0 30px; text-align: left; background: var(--ink); }
.tours-intro-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 24px;
}
.tours-intro .tour-kicker { display: inline-flex; flex-direction: column; align-items: flex-start; margin-bottom: 0; }
.tours-intro .tour-kicker-current { padding: 9px 0; }

/* ---------- Positioning / philosophy ---------- */
.philosophy { padding: 140px 0; border-top: 1px solid var(--line); }
.philosophy .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.philosophy-media { position: relative; aspect-ratio: 4/5; }
.philosophy-media img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-media .tag {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); color: var(--ocean);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 16px;
}
.philosophy-copy p { font-size: 18px; color: var(--text-dim); margin: 0 0 20px; font-weight: 300; }
.philosophy-copy p.lede {
  font-size: 24px;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.45;
}
.philosophy-copy p.lede strong { font-weight: 500; color: var(--gold-bright); }

/* ---------- The Journey — five beats ---------- */
.journey { padding: 60px 0 150px; background: var(--bg-alt); }
.journey-inner { padding-top: 90px; }
.beats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.beat {
  background: var(--ink-raised);
  padding: 34px 22px 40px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.beat-media { position: absolute; inset: 0; overflow: hidden; }
.beat-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transform: scale(1.15) translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.beat-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,20,0.18) 0%, rgba(8,15,20,0.52) 55%, rgba(8,15,20,0.86) 100%);
}
.beat-content { position: relative; z-index: 2; }
.beat .n {
  font-family: var(--sans); font-size: 34px; font-weight: 200; color: var(--sea-mist);
  margin-bottom: 18px; line-height: 1;
}
.beat h3 {
  font-family: var(--sans); font-size: 17px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sand); margin: 0 0 12px;
}
.beat p { font-size: 14.5px; color: rgba(255,255,255,0.82); margin: 0; font-weight: 300; }
.beat.restore .beat-media::after { background: linear-gradient(180deg, rgba(31,58,77,0.2) 0%, rgba(31,58,77,0.58) 55%, rgba(31,58,77,0.9) 100%); }

/* ---------- Eulsukdo location ---------- */
.place { padding: 150px 0; border-top: 1px solid var(--line); }
.place-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.place-top p { font-size: 18px; color: var(--text-dim); margin: 0; font-weight: 300; }
.place-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
.place-grid .tall { aspect-ratio: 3/4; overflow: hidden; }
.place-grid .stack { display: grid; gap: 20px; }
.place-grid .short { aspect-ratio: 16/10; overflow: hidden; }
.place-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.place-grid div:hover img { transform: scale(1.05); }
.place-caption {
  margin-top: 14px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em;
  color: var(--stone); font-weight: 400;
}
.place-caption b { color: var(--amber); font-weight: 500; }

/* ---------- What's included ---------- */
.included { padding: 0 0 150px; }
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.included-item {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 2px solid var(--amber);
}
.included-media { position: absolute; inset: 0; overflow: hidden; }
.included-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transform: scale(1.15) translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.included-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,20,0.15) 0%, rgba(8,15,20,0.5) 55%, rgba(8,15,20,0.85) 100%);
}
.included-content { position: relative; z-index: 2; }
.included-item h4 { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--sand); margin: 0 0 10px; }
.included-item p { font-size: 14.5px; color: rgba(255,255,255,0.85); margin: 0; font-weight: 300; }

/* ---------- Reserve / pricing ---------- */
.reserve { padding: 140px 0; background: var(--ocean); color: var(--white); position: relative; overflow: hidden; }
.reserve-media { position: absolute; inset: 0; overflow: hidden; }
.reserve-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transform: scale(1.15) translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.reserve-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,20,0.55) 0%, rgba(31,58,77,0.82) 50%, rgba(8,15,20,0.6) 100%);
}
.reserve .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.reserve h2 { font-family: var(--sans); font-weight: 300; font-size: clamp(30px, 3.6vw, 44px); margin: 0 0 20px; line-height: 1.2; }
.reserve h2 strong { font-weight: 500; color: var(--sand); }
.reserve p.copy { font-size: 17px; color: rgba(255,255,255,0.78); margin: 0 0 0; font-weight: 300; }

.price-card {
  background: var(--white);
  color: var(--text);
  padding: 44px 40px;
}
.price-card .eco-name { font-family: var(--sans); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone-on-card); margin-bottom: 6px; }
.price-card .eco-title { font-family: var(--sans); font-size: 26px; font-weight: 500; color: var(--ocean); margin-bottom: 24px; }
.price-row { display: flex; align-items: flex-end; gap: 22px; margin-bottom: 6px; flex-wrap: wrap; }
.price-block { display: flex; flex-direction: column; gap: 5px; }
.price-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-on-card); font-weight: 500; }
.price-label.promo-label { color: #a2762e; }
.price-row .list { font-size: 20px; color: #b3ab9d; text-decoration: line-through; font-weight: 300; line-height: 1; }
.price-row .promo { font-size: 40px; color: #a2762e; font-weight: 500; line-height: 1; }
.price-row .unit { font-size: 13px; color: var(--stone-on-card); padding-bottom: 4px; }
.price-note { font-size: 12.5px; color: #8c8377; margin: 10px 0 28px; line-height: 1.6; }
.price-note.flag { color: #a24b1f; background: rgba(201,138,75,0.12); padding: 10px 14px; border-left: 2px solid var(--amber); }
.price-card .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ---------- Gallery ---------- */
.gallery { padding: 60px 0 150px; border-top: 1px solid var(--line); }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; gap: 16px; }
.gallery-grid figure { margin: 0; overflow: hidden; position: relative; grid-column: span 2; }
.gallery-grid figure:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); opacity: 0; transition: opacity 0.4s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,58,77,0.7), transparent 55%);
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-grid figure:hover::after, .gallery-grid figure:hover figcaption { opacity: 1; }
.gallery-note {
  margin-top: 22px; font-size: 13px; color: var(--stone); font-family: var(--sans);
  background: var(--bg-alt); padding: 14px 18px; border-left: 2px solid var(--amber);
}

/* ---------- Voice ---------- */
.voice { position: relative; padding: 190px 0; text-align: center; overflow: hidden; }
.voice-media { position: absolute; inset: 0; overflow: hidden; }
.voice-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transform: scale(1.15) translateY(var(--parallax-y, 0px));
  will-change: transform;
}
.voice-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,20,0.58) 0%, rgba(8,15,20,0.42) 42%, rgba(8,15,20,0.7) 100%);
}
.voice-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.voice p.line {
  font-family: var(--sans); font-weight: 300; font-style: normal;
  font-size: clamp(21px, 2.6vw, 30px); line-height: 1.65; color: var(--white); margin: 0 0 28px;
  text-shadow: 0 2px 28px rgba(8,15,20,0.4);
}
.voice-attr { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,253,248,0.8); }

/* ---------- Next journey teaser ---------- */
/* ---------- Section divider — a deliberate pause between (03) and (04) ---------- */
.section-divider {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}
.section-divider::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
}
.section-divider-mark {
  position: relative;
  z-index: 2;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold-bright);
  font-weight: 400;
}

/* ---------- Where ONDO Goes — a compact, interactive map feature.
   Deliberately small: a contained widget, not a full-bleed section,
   so it reads as a nice-to-have rather than a navigational page. ---------- */
.mini-map-section { padding: 90px 0; background: var(--bg-alt); }
.busan-map-wrap { position: relative; max-width: 620px; margin: 0 auto; }
.busan-map svg { width: 100%; height: auto; display: block; }
.map-land { fill: rgba(201, 162, 87, 0.1); stroke: var(--gold-soft); stroke-width: 1.5; }
.map-island { fill: rgba(201, 162, 87, 0.16); stroke: var(--gold-soft); stroke-width: 1.2; }
.map-islet { fill: var(--sea-mist); opacity: 0.65; }
.map-river { fill: none; stroke: var(--sea-mist); stroke-width: 2; opacity: 0.55; stroke-dasharray: 2 6; stroke-linecap: round; }
.map-area-label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; fill: var(--stone); opacity: 0.75; pointer-events: none;
}
.map-pin { cursor: pointer; }
.map-pin-halo { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.5; animation: pinPulse 3s ease-in-out infinite; }
.map-pin-oryukdo .map-pin-halo { animation-delay: 1.2s; }
.map-pin-dot { fill: var(--gold-bright); }
.map-pin text {
  font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: 0.04em;
  fill: var(--cream);
}
.map-pin text.map-pin-sub, .map-pin .map-pin-sub {
  font-size: 11px; font-weight: 300; letter-spacing: 0.08em; fill: var(--stone); text-transform: uppercase;
}
.map-pin:hover .map-pin-dot, .map-pin:focus .map-pin-dot { fill: var(--gold); }
.map-pin:hover text, .map-pin:focus text { fill: var(--gold-bright); }
@keyframes pinPulse { 0%,100% { r: 16; opacity: 0.5; } 50% { r: 22; opacity: 0.15; } }

/* Secondary landmark pins — smaller, quieter, name revealed on hover/tap */
.map-pin-landmark-ring { fill: none; stroke: var(--sea-mist); stroke-width: 1; opacity: 0.6; }
.map-pin-landmark-dot { fill: var(--sea-mist); }
.map-pin-landmark:hover .map-pin-landmark-dot, .map-pin-landmark:focus .map-pin-landmark-dot { fill: var(--gold-bright); }
.map-pin-landmark:hover .map-pin-landmark-ring, .map-pin-landmark:focus .map-pin-landmark-ring { stroke: var(--gold-bright); }

.map-tooltip {
  position: absolute; left: 0; top: 0;
  transform: translate(-50%, -135%);
  background: var(--ink); border: 1px solid var(--gold); color: var(--cream);
  font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.03em;
  padding: 8px 13px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
  z-index: 5;
}
.map-tooltip.show { opacity: 1; }

.map-legend {
  display: flex; justify-content: center; gap: 30px; margin-top: 28px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone);
}
.map-legend .legend-item { display: flex; align-items: center; gap: 8px; }
.map-legend i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; font-style: normal; }
.map-legend .main i { background: var(--gold-bright); }
.map-legend .landmark i { background: var(--sea-mist); }

/* ---------- Travel Guide — practical info for international guests ---------- */
.travel-guide { padding: 130px 0 100px; border-top: 1px solid var(--line); }
.travel-guide .section-head p { max-width: 640px; margin-left: auto; margin-right: auto; }

.travel-guide-head-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; margin-bottom: 56px; }
.travel-guide-head-grid .section-head { margin-bottom: 0; max-width: none; }
.travel-guide-head-grid .section-head p { margin-left: 0; margin-right: 0; }
.travel-guide-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.travel-guide-media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; display: block; }
.travel-guide-media .photo-credit {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  background: rgba(11,11,13,0.4);
  padding: 4px 12px;
  border-radius: 20px;
}
.travel-guide-media .photo-credit a { color: rgba(255,255,255,0.9); text-decoration: underline; text-underline-offset: 2px; }
.travel-guide-media .photo-credit a:hover { color: var(--gold-bright); }
.travel-media { margin-top: 50px; aspect-ratio: 21/8; overflow: hidden; }
.travel-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Quiet full-bleed photo band between Travel Guide and Who We Are */
.guide-transition-media { position: relative; width: 100%; aspect-ratio: 1920/570; overflow: hidden; }
.guide-transition-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guide-transition-media .photo-credit {
  position: absolute; bottom: 14px; right: 18px; z-index: 2;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  background: rgba(11,11,13,0.4);
  padding: 4px 12px;
  border-radius: 20px;
}
.guide-transition-media .photo-credit a { color: rgba(255,255,255,0.9); text-decoration: underline; text-underline-offset: 2px; }
.guide-transition-media .photo-credit a:hover { color: var(--gold-bright); }
.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
.travel-card:last-child { grid-column: span 2; }
.travel-card {
  background: var(--ink);
  padding: 40px 34px;
  border-top: 2px solid var(--amber);
  position: relative;
}
.travel-tag {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.travel-card h4 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--sand);
  margin: 0 0 14px;
}
.travel-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244, 239, 228, 0.78);
  font-weight: 300;
  margin: 0;
}
.travel-card p a, .travel-note a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--gold-soft); }
.travel-card p a:hover, .travel-note a:hover { border-color: var(--gold-bright); }
.travel-note {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--stone);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- Who We Are ---------- */
.who-we-are { padding: 140px 0 160px; background: var(--bg-alt); }
.who-we-are-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
.who-we-are h2 { font-family: var(--sans); font-weight: 300; font-size: clamp(28px, 3.4vw, 40px); color: var(--cream); line-height: 1.25; margin: 0; }
.who-we-are h2 strong { font-weight: 500; color: var(--gold-bright); }
.who-we-are-copy p { font-size: 16.5px; color: var(--text-dim); margin: 0 0 20px; font-weight: 300; }
.who-we-are-copy p.lede { font-size: 19px; color: var(--cream); font-weight: 300; line-height: 1.5; }
.who-we-are-copy p.lede strong { font-weight: 500; color: var(--gold-bright); }

/* ---------- WellMi — the wellness studio behind ONDO ---------- */
.wellmi { padding: 0 0 150px; background: var(--ink); }
.wellmi-hero { aspect-ratio: 21/9; overflow: hidden; margin-bottom: 90px; position: relative; }
.wellmi-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.wellmi-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,13,0.05) 0%, rgba(11,11,13,0.75) 100%); }
.wellmi .section-head p { max-width: 680px; margin-left: 0; }
.wellmi .gallery-grid { border-top: 1px solid var(--line); padding-top: 60px; }
.wellmi .gallery-note { margin-top: 20px; }

.wellmi-partners { margin-top: 90px; border-top: 1px solid var(--line); padding-top: 56px; }
.wellmi-partners .idx { margin-bottom: 28px; }
.partner-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 40px;
}
.partner-list li {
  font-family: var(--sans); font-size: 15px; font-weight: 300; color: var(--text-dim);
  padding-bottom: 13px; border-bottom: 1px solid var(--line);
}

/* ---------- Footer ---------- */
footer { padding: 80px 0 30px; border-top: 1px solid var(--line); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo img { width: 46px; height: 46px; }
.footer-brand p { color: var(--text-dim); font-size: 14.5px; max-width: 300px; font-weight: 300; }
.footer-social { display: flex; gap: 14px; margin-top: 24px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; font-size: 12px; color: var(--text-dim);
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 22px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 13px; }
.footer-col a, .footer-col p { color: var(--text-dim); font-size: 14.5px; font-weight: 300; }
.footer-col a:hover { color: var(--amber); }

.newsletter-form { display: flex; border-bottom: 1px solid var(--stone); padding-bottom: 10px; margin-top: 8px; }
.newsletter-form input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-family: var(--sans); font-size: 14px; }
.newsletter-form input::placeholder { color: var(--text-faint); }
.newsletter-form button { background: none; border: none; color: var(--amber); cursor: pointer; font-size: 15px; }

.footer-legal {
  padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--sans); font-size: 11px; color: var(--text-faint); line-height: 1.7;
}
.footer-legal p { margin: 0 0 4px; }
.footer-legal a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--gold-bright); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 18px;
  font-family: var(--sans); font-size: 11px; color: var(--text-faint); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--amber); }

/* ---------- Reveal ---------- */
/* Korean line-wrapping: default CSS line-breaking treats every Hangul syllable
   block as a break opportunity, which can split an inflected word/suffix
   awkwardly across two lines. `keep-all` restricts wraps to spaces (the same
   rule Latin text already follows), which is the standard fix for Korean
   typesetting — applied whenever the language toggle is set to KO. */
body.lang-ko { word-break: keep-all; overflow-wrap: break-word; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Toast ---------- */
#toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ocean); color: var(--white); font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.04em; padding: 16px 28px;
  opacity: 0; pointer-events: none; transition: all 0.5s var(--ease);
  z-index: 800; white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
#preloader.hidden { opacity: 0; visibility: hidden; }
#preloader .mark { font-family: var(--sans); font-size: 13px; letter-spacing: 0.5em; color: var(--sand); animation: pulseFade 1.6s ease-in-out infinite; }
@keyframes pulseFade { 0%,100%{opacity:.35;} 50%{opacity:1;} }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .philosophy .container, .place-top, .reserve .container { grid-template-columns: 1fr; gap: 44px; }
  .travel-guide-head-grid { grid-template-columns: 1fr; gap: 32px; }
  .travel-guide-head-grid .travel-guide-media { order: -1; aspect-ratio: 16/10; }
  .beats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .place-grid { grid-template-columns: 1fr; }
  .place-grid .stack { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; }
  .gallery-grid figure:nth-child(1) { grid-column: span 4; }
  .who-we-are-grid { grid-template-columns: 1fr; gap: 36px; }
  .travel-grid { grid-template-columns: 1fr 1fr; }
  .travel-card:last-child { grid-column: span 2; }
  .partner-list { grid-template-columns: 1fr 1fr; }
  .wellmi-hero { aspect-ratio: 16/9; }
  .travel-media { aspect-ratio: 16/9; }
}

@media (max-width: 860px) {
  nav.primary-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  /* grid/flex children default to min-width:auto, so a nowrap button label can
     stretch its whole column wider than the viewport once columns stack to 1fr —
     clipped only by body's overflow-x:hidden, which crops every sibling with it */
  .philosophy .container > *, .place-top > *, .reserve .container > * { min-width: 0; }
  .btn { white-space: normal; text-align: center; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .philosophy, .journey, .place, .included, .reserve, .gallery, .voice { padding: 80px 0; }
  .journey-inner { padding-top: 50px; }
  .beats { grid-template-columns: 1fr; }
  .beat { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .included-grid { grid-template-columns: 1fr; }
  .included-item { min-height: 240px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; height: auto; }
  .price-card { padding: 32px 24px; }
  .btn { font-size: 11px; letter-spacing: 0.14em; padding: 15px 22px; }
  .hero-cta .btn, .price-card .btn { width: 100%; }
  .mini-map-section, .who-we-are, .travel-guide, .wellmi { padding: 60px 0; }
  .travel-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .travel-card, .travel-card:last-child { grid-column: span 1; padding: 30px 24px; }
  .travel-media { aspect-ratio: 4/3; margin-top: 36px; }
  .guide-transition-media { aspect-ratio: 4/3; }
  .guide-transition-media .photo-credit { font-size: 10px; padding: 3px 9px; bottom: 10px; right: 10px; }
  .wellmi-hero { aspect-ratio: 4/3; margin-bottom: 50px; }
  .partner-list { grid-template-columns: 1fr; }
  .wellmi-partners { margin-top: 50px; padding-top: 40px; }
  .tours-intro { padding: 44px 0 20px; }
  .lang-toggle { padding: 6px 10px; font-size: 10px; }
  .map-pin text { font-size: 13px; }
  .map-pin text.map-pin-sub, .map-pin .map-pin-sub { font-size: 9.5px; }
  .map-legend { gap: 20px; font-size: 10px; }
  .map-tooltip { font-size: 10.5px; padding: 7px 11px; }
  .section-divider { height: 90px; }
  .section-divider-mark { width: 44px; height: 44px; font-size: 17px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 400; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%); transition: transform 0.6s var(--ease);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer a { font-family: var(--sans); font-size: 26px; font-weight: 300; color: var(--cream); }
.mobile-drawer a:hover { color: var(--gold); }
