/* ═══════════════════════════════════════════════════════════════
   SEOUL RADIANCE — Global Stylesheet
   Design language: Quiet luxury, restrained elegance, editorial
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Marcellus&family=Noto+Serif+JP:wght@300;400;500&display=swap');

:root {
  /* Core palette — drawn directly from the K-Beauty brochure */
  --ink: #0E2841;
  --ink-deep: #1C2744;
  --gold: #9B7E46;
  --gold-soft: #B99868;
  --gold-whisper: #D4C4AA;
  --bronze: #8B7A68;
  --cream: #F6F1EA;
  --cream-soft: #FAF7F2;
  --paper: #FDFBF7;
  --line: rgba(155, 126, 70, 0.18);
  --line-soft: rgba(14, 40, 65, 0.08);
  --text: #2A2826;
  --text-muted: #6B6560;

  /* Typography */
  --serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --display: 'Marcellus', 'Cormorant Garamond', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --pad-page: clamp(1.5rem, 4vw, 5rem);
  --pad-section: clamp(5rem, 10vw, 9rem);
  --max-width: 1280px;
  --max-narrow: 780px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─────── Typography ─────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 1rem;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

p { margin-bottom: 1.2rem; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.8rem;
}

.eyebrow::before {
  content: "——   ";
  color: var(--gold-soft);
  letter-spacing: 0;
}

.script-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; transition: all 0.4s ease; }

/* ─────── Layout utilities ─────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-page);
}

.narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-page);
}

section { padding: var(--pad-section) 0; }

.rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  border: none;
  display: block;
}

.rule--centered { margin: 2rem auto; }
.rule--long { width: 120px; }

/* ─────── Navigation ─────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.1rem var(--pad-page);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 251, 247, 0.78);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.5s ease;
}

.nav--scrolled {
  background: rgba(253, 251, 247, 0.94);
  border-bottom-color: var(--line);
  padding: 0.85rem var(--pad-page);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  text-transform: uppercase;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.nav__brand img {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.5s ease, filter 0.5s ease;
}

.nav--scrolled .nav__brand img {
  height: 42px;
}

.nav__brand span {
  /* legacy subtitle — kept visually hidden to retain semantics if reused */
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--ink);
}

.nav__links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.nav__rsvp {
  border: 1px solid var(--gold);
  padding: 0.7rem 1.4rem;
  font-size: 0.68rem !important;
  letter-spacing: 0.32em !important;
  color: var(--gold) !important;
  transition: all 0.4s ease;
}

.nav__rsvp:hover {
  background: var(--gold);
  color: var(--paper) !important;
}

@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ─────── Hero ─────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 9rem var(--pad-page) 5rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14, 40, 65, 0.0), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(155, 126, 70, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 35% at 50% 50%, rgba(28, 39, 68, 0.55), transparent 75%),
    linear-gradient(180deg, #0A1E33 0%, var(--ink) 45%, var(--ink-deep) 100%);
  color: var(--cream);
  overflow: hidden;
  z-index: 1;
}

/* Subtle gold pinstripe texture (visible on dark bg) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(155, 126, 70, 0.06) 50%, transparent 50.5%);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

/* Ornamental framed border on hero — gold thread on ink */
.hero::after {
  content: "";
  position: absolute;
  top: 6rem; left: 3rem; right: 3rem; bottom: 3rem;
  border: 1px solid rgba(155, 126, 70, 0.32);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 700px) {
  .hero::after { top: 5rem; left: 1.2rem; right: 1.2rem; bottom: 1.5rem; }
}

.hero > * { position: relative; z-index: 2; }

/* Large ghosted logo as hero background signature */
.hero__crest {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(62vw, 780px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  /* Invert dark logo to light, slight gold tint for warmth on navy bg */
  filter: invert(0.92) saturate(0.4) sepia(0.3) brightness(0.95);
}

.hero__emblem {
  width: clamp(170px, 22vw, 260px);
  height: auto;
  margin: 0 auto 2.2rem;
  display: block;
  opacity: 0.96;
}

.hero__mark {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.62em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  position: relative;
  font-weight: 400;
}

.hero__mark::before,
.hero__mark::after {
  content: "";
  display: inline-block;
  width: 52px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 1.3rem;
  opacity: 0.7;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 300;
}

.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--gold-whisper);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* Small ornament between title and subtitle */
.hero__ornament {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
  margin: 0 auto 2.5rem;
}

.hero__foot {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  color: var(--gold-whisper);
  text-transform: uppercase;
  z-index: 3;
}

.hero__foot::after {
  content: "";
  display: block;
  width: 1px; height: 40px;
  background: var(--gold);
  margin: 1.2rem auto 0;
  animation: breathe 2.4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ─────── Section blocks ─────── */
.section-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.section-lead h2 {
  margin-bottom: 1.6rem;
}

.section-lead p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

/* Wine problem intro section */
.parable {
  background: var(--paper);
  position: relative;
}

.parable__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad-page);
}

.parable p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.85;
  color: var(--text);
  font-weight: 300;
}

.parable p + p { margin-top: 1.6rem; }

.parable .emph {
  font-style: italic;
  color: var(--ink);
}

.parable blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  color: var(--gold);
  line-height: 1.3;
  padding: 3rem 0;
  text-align: center;
  font-weight: 300;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 3rem 0;
  position: relative;
}

.parable blockquote::before,
.parable blockquote::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.parable blockquote::before { top: -4px; }
.parable blockquote::after  { bottom: -4px; }

/* ─────── The Four Movements grid ─────── */
.movements {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream-soft) 100%);
}

.movements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.movement {
  padding: 3rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: all 0.5s ease;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.movement:hover {
  background: var(--cream-soft);
}

.movement__roman {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.movement__title {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.movement__desc {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  flex-grow: 1;
}

.movement__tags {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .movements__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .movements__grid { grid-template-columns: 1fr; }
}

/* ─────── Commitments ─────── */
.commitments {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* (Removed) Large 'SOULIGHT' background watermark — too noisy behind the headline */
.commitments::before { content: none; }

/* Replaced with a subtle radial gold halo for warmth */
.commitments {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(155, 126, 70, 0.06) 0%, transparent 55%),
    var(--ink);
}

.commitments h2 {
  color: var(--cream);
  text-align: center;
  position: relative;
  z-index: 2;
}

.commitments .eyebrow {
  color: var(--gold-soft);
}

.commitments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}

.commitment {
  text-align: center;
  padding: 0 1rem;
}

.commitment__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.commitment h3 {
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.commitment p {
  color: var(--gold-whisper);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 860px) {
  .commitments__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─────── Pillar rows (for detail pages) ─────── */
.pillar {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.pillar:last-child { border-bottom: none; }

.pillar__head {
  position: sticky;
  top: 6rem;
}

.pillar__roman {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar__title {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.pillar__kana {
  font-family: 'Noto Serif JP', var(--serif);
  font-size: 0.8rem;
  color: var(--bronze);
  letter-spacing: 0.2em;
}

.pillar__body p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
}

.tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  background: var(--paper);
  font-weight: 400;
}

@media (max-width: 860px) {
  .pillar { grid-template-columns: 1fr; gap: 2rem; }
  .pillar__head { position: static; }
}

/* ─────── Privileges list ─────── */
.priv-list { margin-top: 4rem; }

.priv {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding-left 0.5s ease;
}

.priv:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, var(--cream-soft), transparent);
}

.priv__num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  font-style: italic;
}

.priv__content h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.priv__content p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.5;
}

.priv__tag {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 700px) {
  .priv {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .priv__tag { text-align: left; }
}

/* ─────── Journey timeline ─────── */
.timeline { margin: 4rem 0; }

.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step__idx {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding-top: 0.2rem;
}

.step h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.step p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
}

@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; gap: 1rem; }
}

/* ─────── Form / contact ─────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-bottom-color: var(--gold);
}

textarea { resize: vertical; min-height: 100px; }

.btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--sans);
  font-weight: 500;
}

.btn:hover {
  background: var(--gold);
  letter-spacing: 0.46em;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}

.btn--ghost:hover { background: var(--gold); color: var(--cream); }

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ─────── Disclaimer / small print ─────── */
.small-print {
  background: var(--cream);
  padding: 3rem 0;
}

.small-print p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1rem;
}

/* ─────── Footer ─────── */
footer {
  background: var(--ink-deep);
  color: var(--gold-whisper);
  padding: 5rem var(--pad-page) 2rem;
  position: relative;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(155, 126, 70, 0.2);
}

.footer__brand h3 {
  font-family: var(--serif);
  color: var(--cream);
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0.92;
  filter: brightness(1.05);
}

.footer__brand p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer__col ul { list-style: none; }

.footer__col li {
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  color: var(--gold-whisper);
  font-weight: 300;
}

.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--bronze);
  flex-wrap: wrap;
  gap: 1rem;
  letter-spacing: 0.04em;
}

.footer__bottom span { opacity: 0.8; }

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ─────── Scroll reveal ─────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────── Page intro (inner pages) ─────── */
.page-intro {
  padding: 11rem var(--pad-page) 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-soft), var(--paper));
  position: relative;
}

.page-intro .eyebrow { margin-bottom: 1.5rem; }

.page-intro h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 900px;
  margin: 0 auto 1.6rem;
}

.page-intro .lead {
  max-width: 640px;
  margin: 0 auto;
}

/* ─────── Two-track programme cards (homepage) ─────── */
.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--line);
}

.track {
  padding: 4rem 3rem;
  background: var(--paper);
  transition: all 0.6s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-right: 1px solid var(--line);
}

.track:last-child { border-right: none; }

.track:hover { background: var(--cream-soft); }

.track__label {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.track__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.track__title em { font-style: italic; color: var(--gold); font-weight: 300; }

.track__kana {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--bronze);
  letter-spacing: 0.16em;
  margin-bottom: 2rem;
  display: block;
}

.track__desc {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.track__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  border-top: 1px solid var(--line);
}

.track__list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.track__list li::before {
  content: attr(data-roman);
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  min-width: 36px;
  text-transform: none;
}

.track__cta {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  transition: all 0.4s ease;
}

.track__cta:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  letter-spacing: 0.36em;
}

@media (max-width: 900px) {
  .tracks { grid-template-columns: 1fr; }
  .track { border-right: none; border-bottom: 1px solid var(--line); }
  .track:last-child { border-bottom: none; }
}

/* ─────── AT A GLANCE summary (K-Beauty page) ─────── */
.glance {
  background: var(--ink);
  color: var(--gold-whisper);
  padding: var(--pad-section) 0;
  text-align: center;
}

.glance h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
}

.glance__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1.2rem;
  max-width: 880px;
  margin: 2rem auto 3rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: var(--gold-whisper);
  text-transform: uppercase;
  line-height: 2.4;
}

.glance__row span:not(:last-child)::after {
  content: "·";
  color: var(--gold);
  margin-left: 1.2rem;
  font-size: 1.2rem;
  vertical-align: middle;
}

.glance__roman {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.2em;
  margin-bottom: 0.6rem;
  display: block;
}

/* Utility */
.center { text-align: center; }
.muted { color: var(--text-muted); }
.kana { font-family: 'Noto Serif JP', serif; color: var(--bronze); letter-spacing: 0.12em; }

/* ═══════════════════════════════════════════════════════════════
   Multi-language support
   ═══════════════════════════════════════════════════════════════ */

[data-lang] { display: none; }
html[lang="en"] [data-lang="en"],
html[lang="ja"] [data-lang="ja"],
html[lang="id"] [data-lang="id"] { display: revert; }

/* Inline span used inside heading/links should display inline */
h1 [data-lang], h2 [data-lang], h3 [data-lang], h4 [data-lang],
p [data-lang], li [data-lang], a [data-lang], span[data-lang],
.eyebrow [data-lang], .lead [data-lang], .hero__sub [data-lang] {
  display: none;
}
html[lang="en"] h1 [data-lang="en"],
html[lang="ja"] h1 [data-lang="ja"],
html[lang="id"] h1 [data-lang="id"],
html[lang="en"] h2 [data-lang="en"],
html[lang="ja"] h2 [data-lang="ja"],
html[lang="id"] h2 [data-lang="id"],
html[lang="en"] h3 [data-lang="en"],
html[lang="ja"] h3 [data-lang="ja"],
html[lang="id"] h3 [data-lang="id"],
html[lang="en"] p [data-lang="en"],
html[lang="ja"] p [data-lang="ja"],
html[lang="id"] p [data-lang="id"],
html[lang="en"] li [data-lang="en"],
html[lang="ja"] li [data-lang="ja"],
html[lang="id"] li [data-lang="id"],
html[lang="en"] a [data-lang="en"],
html[lang="ja"] a [data-lang="ja"],
html[lang="id"] a [data-lang="id"],
html[lang="en"] span[data-lang="en"],
html[lang="ja"] span[data-lang="ja"],
html[lang="id"] span[data-lang="id"],
html[lang="en"] .eyebrow [data-lang="en"],
html[lang="ja"] .eyebrow [data-lang="ja"],
html[lang="id"] .eyebrow [data-lang="id"],
html[lang="en"] blockquote [data-lang="en"],
html[lang="ja"] blockquote [data-lang="ja"],
html[lang="id"] blockquote [data-lang="id"] { display: inline; }

/* Japanese typography refinements */
html[lang="ja"] body {
  font-family: 'Noto Serif JP', var(--sans);
  font-weight: 300;
  letter-spacing: 0.02em;
}
html[lang="ja"] .hero__title,
html[lang="ja"] .track__title,
html[lang="ja"] .step h3,
html[lang="ja"] .commitment h3,
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3 {
  font-family: 'Noto Serif JP', var(--serif);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
html[lang="ja"] .hero__title em,
html[lang="ja"] .track__title em,
html[lang="ja"] .serif-italic { font-style: normal; }
html[lang="ja"] .lead,
html[lang="ja"] .parable p,
html[lang="ja"] .hero__sub,
html[lang="ja"] blockquote,
html[lang="ja"] .form-note { font-family: 'Noto Serif JP', serif; font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   Nav cluster (links + lang switch)
   ═══════════════════════════════════════════════════════════════ */

.nav__cluster {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  padding: 2px;
  border-radius: 1px;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 11px;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.35s ease;
  font-weight: 400;
}

.lang-btn:hover { color: var(--gold); }

.lang-btn.active {
  background: var(--ink);
  color: var(--cream);
}

.nav__rsvp[data-tally-link] { cursor: pointer; }

@media (max-width: 860px) {
  .nav__cluster { gap: 0.8rem; }
  .lang-btn { padding: 5px 8px; font-size: 0.58rem; letter-spacing: 0.18em; }
}

/* ═══════════════════════════════════════════════════════════════
   Form gateway (Tally external CTA section) — replaces inline form
   ═══════════════════════════════════════════════════════════════ */

.form-gateway {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.form-gateway::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 126, 70, 0.10), transparent 70%);
  pointer-events: none;
}

.form-gateway::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 126, 70, 0.06), transparent 70%);
  pointer-events: none;
}

.form-gateway .narrow { position: relative; z-index: 1; }

.form-gateway .btn {
  background: var(--gold);
  color: var(--ink);
  padding: 1.15rem 3rem;
  font-weight: 500;
}

.form-gateway .btn:hover {
  background: var(--cream);
  color: var(--ink);
  letter-spacing: 0.46em;
}

/* ─── btn--gold — hero CTA: exact copy of .form-gateway .btn rules ───
   Use class="btn btn--gold" to get gold-default / cream-hover matching
   the form-gateway button. Values are verbatim copies — do not edit
   without updating .form-gateway .btn in the same commit.          ─── */
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  padding: 1.15rem 3rem;
  font-weight: 500;
}
.btn--gold:hover {
  background: var(--cream);
  color: var(--ink);
  letter-spacing: 0.46em;
}

.form-note {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold-whisper);
  letter-spacing: 0.04em;
  opacity: 0.78;
}

/* ═══════════════════════════════════════════════════════════════
   Privileges intro — softer paper-tone cradle
   ═══════════════════════════════════════════════════════════════ */

.privileges-intro {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(155, 126, 70, 0.06), transparent 70%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream-soft) 100%);
}

/* ═══════════════════════════════════════════════════════════════
   Refinements — slightly more "considered" overall feel
   ═══════════════════════════════════════════════════════════════ */

/* Soften the eyebrow for a more editorial register */
.eyebrow {
  font-family: var(--display);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.46em;
}

/* Refined hero title weight balance */
.hero__title {
  font-weight: 300;
  letter-spacing: 0.002em;
}

/* Tracks — even quieter hover, brighter divider */
.track {
  transition: background 0.7s ease, transform 0.7s ease;
}
.track:hover {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--paper) 100%);
  transform: translateY(-2px);
}

/* Subtle gold underline on commitment headings */
.commitment h3 {
  position: relative;
  padding-bottom: 0.6rem;
}
.commitment h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.65;
}

/* Step refinement */
.step {
  position: relative;
}
.step__idx {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
}
.step h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.55rem;
}

/* Footer — slightly tighter type & calmer divider */
.footer__top {
  border-bottom: 1px solid rgba(155, 126, 70, 0.16);
}
.footer__brand p {
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Selection color */
::selection {
  background: var(--gold);
  color: var(--paper);
}

/* ═══════════════════════════════════════════════════════════════
   IMAGERY LAYER — atmospheric photography slots + SVG ornaments
   ───────────────────────────────────────────────────────────────
   Image filename convention (drop into assets/images/):
     hero.jpg        — Seoul/skyline/hanok mood, 1920×1080+
     parable.jpg     — wine glass / vineyard / mood
     programme-i.jpg — soft skin, marble, textile close-up
     programme-ii.jpg— restorative / botanical / clinic abstract
     journey.jpg     — calm corridor / hanok path
     gateway.jpg     — Seoul night sky / constellation
   When a file is missing, the slot falls back to gentle gradient.
   ═══════════════════════════════════════════════════════════════ */

/* Paper grain — fine SVG noise overlay (CSS-only) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ─── Hero photographic underlay ─── */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transition: opacity 1.8s ease;
  filter: brightness(0.78) saturate(0.85) contrast(1.02);
}
.hero__photo img.is-loaded { opacity: 0.62; }

/* Dark vignette + ink veil that blends photo into navy hero bg */
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, transparent 0%, rgba(14, 40, 65, 0.35) 60%, rgba(14, 40, 65, 0.85) 100%),
    linear-gradient(180deg, rgba(14, 40, 65, 0.55) 0%, rgba(14, 40, 65, 0.15) 35%, rgba(14, 40, 65, 0.65) 100%);
  pointer-events: none;
}

/* ─── Atmospheric inline figure slot ─── */
.atmosphere {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(155, 126, 70, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 70%, rgba(14, 40, 65, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.atmosphere--banner {
  aspect-ratio: 21 / 6;
  min-height: 200px;
  max-height: 360px;
}
.atmosphere--tall {
  aspect-ratio: 16 / 9;
  min-height: 320px;
}
.atmosphere__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease;
  filter: saturate(0.85) brightness(0.92);
}
.atmosphere__img.is-loaded { opacity: 1; }

/* ─── carousel variant: stack two atmosphere images, fade between them ─── */
.atmosphere--carousel { cursor: pointer; }
.atmosphere--carousel .atmosphere__img:not(.is-active) { opacity: 0 !important; }
.atmosphere--carousel .atmosphere__img.is-active.is-loaded { opacity: 1; }
.carousel-dots {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 4;
  pointer-events: none;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(248, 244, 235, 0.4);
  border: 1px solid rgba(248, 244, 235, 0.6);
  transition: background 0.6s ease, transform 0.6s ease;
}
.carousel-dot.is-active {
  background: rgba(248, 244, 235, 0.95);
  transform: scale(1.25);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 40, 65, 0.10) 0%, rgba(14, 40, 65, 0) 28%, rgba(14, 40, 65, 0) 72%, rgba(14, 40, 65, 0.20) 100%);
  pointer-events: none;
  z-index: 2;
}
.atmosphere__cap {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3rem);
  bottom: 1.4rem;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 10px rgba(14, 40, 65, 0.55);
  opacity: 0.9;
}

/* ─── Programme card photo underlay ─── */
.track {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.track__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.track__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(1.0);
  opacity: 0;
  transition: opacity 1.4s ease;
}
.track__photo img.is-loaded { opacity: 0.95; }
.track__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.05) 0%, rgba(253, 251, 247, 0.55) 100%);
  pointer-events: none;
}
.track > * { position: relative; z-index: 1; }

/* ─── SVG ornaments ─── */
.svg-ornament {
  display: block;
  margin: 2.5rem auto;
  color: var(--gold);          /* used by stroke="currentColor" */
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.7;
}
.svg-ornament--hero {
  width: 120px;
  height: auto;
  opacity: 0.85;
  margin: 1.5rem auto 2.2rem;
}
.svg-ornament--mid {
  width: 64px;
  height: auto;
  opacity: 0.55;
}
.svg-ornament--footer {
  width: 38px;
  height: auto;
  opacity: 0.5;
  stroke: var(--gold-soft);
}

/* ─── Section divider — hanok rooftop silhouette ─── */
.section-divider {
  width: 100%;
  height: 60px;
  display: block;
  margin: 0;
  opacity: 0.14;
  fill: var(--ink);
  pointer-events: none;
}
.section-divider--flip { transform: scaleY(-1); opacity: 0.10; }

/* ─── Wine Problem — wine glass watermark ─── */
.parable__watermark {
  position: absolute;
  right: 5%;
  top: 7%;
  width: clamp(110px, 14vw, 180px);
  height: auto;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  color: var(--ink);            /* used by stroke="currentColor" */
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.2;
}
.parable__inner { position: relative; z-index: 1; }

/* ─── Atmosphere strip · constellation (navy + gold stars) ─── */
.constellation-strip {
  background: linear-gradient(180deg, #0A1E33 0%, var(--ink) 50%, var(--ink-deep) 100%);
  height: 240px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.constellation-strip::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 126, 70, 0.10), transparent 65%);
  pointer-events: none;
}
.constellation-strip__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.constellation-strip__stars circle {
  fill: var(--gold-whisper);
}
.constellation-strip__stars line {
  stroke: var(--gold-soft);
  stroke-width: 0.4;
  opacity: 0.55;
}
@media (max-width: 720px) {
  .constellation-strip { height: 180px; }
}

/* ─── Form Gateway constellation ─── */
.form-gateway__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}
.form-gateway__stars circle {
  fill: var(--gold-whisper);
}
.form-gateway__stars line {
  stroke: var(--gold-soft);
  stroke-width: 0.4;
  opacity: 0.6;
}

/* ─── Footer ornament ─── */
.footer__ornament {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto 1rem;
  opacity: 0.7;
}

/* ─── Reduced motion / mobile photo trim ─── */
@media (prefers-reduced-motion: reduce) {
  .hero__photo img,
  .atmosphere__img,
  .track__photo img {
    transition: none;
  }
}

@media (max-width: 700px) {
  .atmosphere--banner { min-height: 180px; }
  .atmosphere--tall { min-height: 240px; }
  .parable__watermark { display: none; }
  .svg-ornament--hero { width: 90px; }
}

/* ═══════════════════════════════════════════════════════════════
   DARK HERO REFINEMENT — final polish
   ═══════════════════════════════════════════════════════════════ */

/* Atmosphere captions only appear when the photo is actually loaded —
   prevents cream-on-cream illegibility when images are absent */
.atmosphere__cap {
  opacity: 0;
  transition: opacity 1.4s ease 0.3s;
}
.atmosphere__img.is-loaded ~ .atmosphere__cap {
  opacity: 0.9;
}

/* When no photo is loaded, atmosphere banners use a deeper gradient
   so they don't read as "blank space" between sections */
.atmosphere {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(155, 126, 70, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse at 70% 70%, rgba(14, 40, 65, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--paper) 50%, var(--cream-soft) 100%);
}

/* Nav over dark hero — make the underline whisper-thin */
.nav { border-bottom-color: rgba(155, 126, 70, 0.10); }

/* Hero scroll cue — restrained */
.hero__foot::after { background: var(--gold-soft); }

/* Hero brand mark over photo — let the gold lines feel slightly warmer */
.hero__mark { color: var(--gold-soft); }
.hero__mark::before,
.hero__mark::after { background: var(--gold-soft); opacity: 0.6; }

/* Hero title em — slightly more visible italic on dark navy */
.hero__title em { color: var(--gold); }

/* Hero ornament gold gradient bar — slightly brighter against navy */
.hero__ornament {
  background: linear-gradient(180deg, transparent, var(--gold-soft) 50%, transparent);
}

/* ─────── Privileges 6-category preview grid ─────── */
.priv-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
  background: var(--paper);
  position: relative;
}
.priv-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
}
.priv-grid {
  list-style: none;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.8rem);
  row-gap: clamp(2rem, 4vw, 3.2rem);
}
@media (max-width: 880px) { .priv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .priv-grid { grid-template-columns: 1fr; } }
.priv-card {
  position: relative;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.priv-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: lowercase;
}
.priv-card__title {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.priv-card__desc {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.priv-cta-wrap {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.priv-cta {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.28rem;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.priv-cta:hover { opacity: 0.7; color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════
   V3 — Cinematic image-led tracks (homepage Two Programmes)
   ═══════════════════════════════════════════════════════════════ */

.tracks--cinematic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  /* TRUE full-bleed — break out of any container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: 0;
  border: none;
  background: var(--ink);
  position: relative;
}

.tracks--cinematic::before {
  /* hairline gold divider between two tracks */
  content: "";
  position: absolute;
  top: 14%; bottom: 14%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(168, 133, 74, 0.45), transparent);
  z-index: 4;
  pointer-events: none;
}

.track-c {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  background: #0E0E10;
  isolation: isolate;
  cursor: pointer;
}

.track-c__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) brightness(0.78) contrast(1.02);
  opacity: 0;
  transition: opacity 1.4s ease, transform 1.6s cubic-bezier(.2,.7,.1,1), filter 1.6s ease;
  z-index: 0;
}
.track-c__img.is-loaded { opacity: 1; }

.track-c:hover .track-c__img {
  transform: scale(1.04);
  filter: saturate(0.92) brightness(0.86) contrast(1.02);
}

.track-c__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.20) 0%, rgba(14,14,16,0.05) 36%, rgba(14,14,16,0.62) 100%);
  pointer-events: none;
}

.track-c__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(2rem, 5vw, 3.6rem);
  color: var(--cream, #F5EFE0);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.track-c__roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  color: var(--gold-soft, #C9AC78);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.track-c__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--cream, #F5EFE0);
  margin: 0 0 1rem;
  letter-spacing: 0.005em;
  max-width: 16ch;
}

.track-c__title em,
.track-c__title .serif-italic {
  font-style: italic;
  color: var(--gold-soft, #C9AC78);
  font-weight: 300;
}

.track-c__desc {
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 239, 224, 0.82);
  margin: 0;
  max-width: 40ch;
}

.track-c__more {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--display, var(--sans));
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-soft, #C9AC78);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft, #C9AC78);
  padding-bottom: 0.3rem;
  align-self: flex-start;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.track-c:hover .track-c__more {
  color: var(--cream, #F5EFE0);
  border-color: var(--cream, #F5EFE0);
}

@media (max-width: 760px) {
  .tracks--cinematic { grid-template-columns: 1fr; }
  .tracks--cinematic::before {
    top: 50%;
    left: 12%; right: 12%;
    bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 133, 74, 0.45), transparent);
  }
  .track-c { min-height: 64vh; }
  .track-c__title { font-size: clamp(1.7rem, 6vw, 2.2rem); max-width: 18ch; }
}

/* JA refinement — italic loses meaning in CJK serif */
html[lang="ja"] .track-c__title em,
html[lang="ja"] .track-c__title .serif-italic { font-style: normal; }
html[lang="ja"] .track-c__title { font-family: 'Noto Serif JP', var(--serif); font-style: normal; }
html[lang="ja"] .track-c__desc { font-style: normal; font-family: 'Noto Serif JP', sans-serif; }

/* ═══════════════════════════════════════════════════════════════
   V3 — Cinematic image-led privileges 6-card grid
   ═══════════════════════════════════════════════════════════════ */

.priv-grid--cinematic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3.4vw, 3rem);
  list-style: none;
  margin: 0 0 clamp(3rem, 6vw, 5rem);
  padding: 0;
}

@media (max-width: 1000px) {
  .priv-grid--cinematic {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.6rem, 3vw, 2.4rem);
  }
}
@media (max-width: 600px) {
  .priv-grid--cinematic { grid-template-columns: 1fr; gap: 2.2rem; }
}

.priv-c {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 0;
  isolation: isolate;
}

.priv-c__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink, #0E0E10);
  border: 1px solid rgba(14, 14, 16, 0.06);
}

.priv-c__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) brightness(0.92) contrast(1.02);
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.6s cubic-bezier(.2,.7,.1,1), filter 1.4s ease;
}
.priv-c__photo img.is-loaded { opacity: 1; }

.priv-c:hover .priv-c__photo img {
  transform: scale(1.04);
  filter: saturate(0.95) brightness(0.96) contrast(1.02);
}

.priv-c__photo::after {
  /* corner shadow so roman numeral always sits on darker tone */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(14,14,16,0) 0%, rgba(14,14,16,0.48) 100%);
  z-index: 1;
  pointer-events: none;
}

.priv-c__roman {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--cream, #F5EFE0);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(14, 14, 16, 0.55);
}

.priv-c__body {
  padding: 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.priv-c__tag {
  font-family: var(--display, var(--sans));
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold, #A8854A);
}

.priv-c__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  line-height: 1.2;
  color: var(--ink, #0E0E10);
  margin: 0.15rem 0 0.4rem;
  letter-spacing: 0.005em;
}

.priv-c__title em,
.priv-c__title .serif-italic {
  font-style: italic;
  color: var(--gold, #A8854A);
  font-weight: 400;
}

.priv-c__desc {
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink, #0E0E10);
  opacity: 0.78;
  margin: 0;
}

/* JA refinement */
html[lang="ja"] .priv-c__title em,
html[lang="ja"] .priv-c__title .serif-italic { font-style: normal; }
html[lang="ja"] .priv-c__title { font-family: 'Noto Serif JP', var(--serif); font-style: normal; }
html[lang="ja"] .priv-c__desc { font-family: 'Noto Serif JP', sans-serif; font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   V3 — Bleed atmosphere with overlaid quote (V2 style)
   ═══════════════════════════════════════════════════════════════ */

.bleed-q {
  position: relative;
  width: 100%;
  height: clamp(440px, 70vh, 760px);
  overflow: hidden;
  background: var(--ink, #0E0E10);
  margin: 0;
  display: block;
}

.bleed-q__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(0.86) brightness(0.86);
  opacity: 0;
  transition: opacity 1.4s ease, transform 6s ease-out;
}
.bleed-q__img.is-loaded { opacity: 1; }

.bleed-q--mood .bleed-q__img {
  /* Eames lounge: keep chair head visible */
  object-position: center 75%;
}

.bleed-q__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,16,0.32) 0%, rgba(14,14,16,0.12) 35%, rgba(14,14,16,0.18) 65%, rgba(14,14,16,0.48) 100%);
  pointer-events: none;
}

.bleed-q__quote {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--cream, #F5EFE0);
}

.bleed-q__quote .eyebrow {
  color: var(--gold-soft, #C9AC78);
  font-family: var(--display, var(--sans));
  font-size: 0.66rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

/* (legacy .bleed-q__quote q rules removed — they used quotes/::before/::after with content: open-quote which rendered as broken :D-style characters in some browsers. Replaced with plain caption format below.) */

/* ─── New caption format (no quotation pseudo-elements) ─── */
.bleed-q__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--cream, #F5EFE0);
}
.bleed-q__caption .eyebrow {
  color: var(--gold-soft, #C9AC78);
  font-family: var(--display, var(--sans));
  font-size: 0.66rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}
.bleed-q__line {
  display: block;
  margin: 1.4rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
  line-height: 1.4;
  max-width: 26ch;
  color: var(--cream, #F5EFE0);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.005em;
}

/* attached modifier — sits flush against tracks above */
.bleed-q--attached {
  margin-top: 0;
  height: clamp(380px, 58vh, 600px);
}
.bleed-q--attached .bleed-q__img {
  object-position: center 60%;
}

@media (max-width: 760px) {
  .bleed-q { height: clamp(360px, 60vh, 520px); }
  .bleed-q__line { font-size: clamp(1.2rem, 5.6vw, 1.75rem); max-width: 22ch; }
  .bleed-q--attached { height: clamp(300px, 48vh, 460px); }
}

/* JA refinement */
html[lang="ja"] .bleed-q__line {
  font-style: normal;
  font-family: 'Noto Serif JP', var(--serif);
}



/* ════════════════════════════════════════════════════════════════
   PRIVILEGES — EDITORIAL ZIGZAG MAGAZINE LAYOUT
   ════════════════════════════════════════════════════════════════ */

.priv-section--editorial {
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(4rem, 7vh, 6rem);
  background: var(--paper, #FAF7F0);
}

.priv-section--editorial .priv-wrap {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.priv-zig {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(4.5rem, 9vh, 7.5rem);
}

.priv-z {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}

.priv-z--reverse {
  grid-template-columns: 1fr 1.05fr;
}

.priv-z--reverse .priv-z__photo { order: 2; }
.priv-z--reverse .priv-z__body  { order: 1; }

.priv-z__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream, #F5EFE0);
}

.priv-z__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 6s ease-out;
}

.priv-z__photo img.is-loaded { opacity: 1; }

.priv-z:hover .priv-z__photo img { transform: scale(1.04); }

/* ── roman numeral overlay — large, italic, gold ── */
.priv-z__num {
  position: absolute;
  bottom: -0.32em;
  left: -0.04em;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(7rem, 17vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--gold-soft, #C9AC78);
  pointer-events: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
}

.priv-z--reverse .priv-z__num {
  left: auto;
  right: -0.04em;
}

/* ── body ── */
.priv-z__body {
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}

.priv-z__tag {
  display: block;
  font-family: var(--display, var(--sans));
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold, #B89A60);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.priv-z__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink, #0E0E10);
  margin: 0 0 1.6rem;
}

.priv-z__title em,
.priv-z__title .serif-italic {
  font-style: italic;
  color: var(--gold, #B89A60);
  font-weight: 300;
}

.priv-z__desc {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.75;
  color: rgba(14, 14, 16, 0.78);
  max-width: 42ch;
  margin: 0 0 1.8rem;
}

.priv-z__rule {
  border: 0;
  height: 1px;
  width: 60px;
  background: var(--gold-soft, #C9AC78);
  opacity: 0.6;
  margin: 0;
}

/* ── JA refinement ── */
html[lang="ja"] .priv-z__title em,
html[lang="ja"] .priv-z__title .serif-italic { font-style: normal; color: var(--gold, #B89A60); }
html[lang="ja"] .priv-z__title { font-family: 'Noto Serif JP', var(--serif); font-style: normal; }
html[lang="ja"] .priv-z__desc  { font-family: 'Noto Serif JP', sans-serif; }

/* ── mobile stacking ── */
@media (max-width: 880px) {
  .priv-zig { gap: clamp(3rem, 7vh, 5rem); }
  .priv-z, .priv-z--reverse {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .priv-z--reverse .priv-z__photo { order: 0; }
  .priv-z--reverse .priv-z__body  { order: 0; }
  .priv-z__photo { aspect-ratio: 4 / 5; }
  .priv-z__num   { font-size: clamp(5.5rem, 22vw, 9rem); bottom: -0.22em; }
  .priv-z--reverse .priv-z__num { right: auto; left: -0.04em; }
  .priv-z__body  { padding: 0; }
  .priv-z__title { font-size: clamp(1.7rem, 6.8vw, 2.4rem); }
}


/* ════════════════════════════════════════════════════════════════
   ATMOSPHERE STRIP — full-bleed photo placeholder band
   ════════════════════════════════════════════════════════════════ */

.atmosphere-strip {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(220px, 36vh, 380px);
  overflow: hidden;
  background: var(--ink, #0E0E10);
  display: block;
}

.atmosphere-strip__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.88) brightness(0.92);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.atmosphere-strip__img.is-loaded { opacity: 1; }

.atmosphere-strip::after {
  /* subtle vignette */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14,14,16,0.18) 0%, transparent 30%, transparent 70%, rgba(14,14,16,0.32) 100%);
}

@media (max-width: 760px) {
  .atmosphere-strip { height: clamp(180px, 28vh, 280px); }
}


/* ════════════════════════════════════════════════════════════════
   HERO — magazine-cover refinements
   (additive: doesn't override existing .hero rules,
   only adds issue marker, side rule, vertical kana column)
   ════════════════════════════════════════════════════════════════ */

.hero { position: relative; }

/* Issue marker · top-right corner */
.hero__issue {
  position: absolute;
  top: clamp(5.5rem, 9vh, 8rem);
  right: clamp(1.5rem, 4.5vw, 4rem);
  font-family: var(--display, var(--sans));
  font-size: 0.6rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold-soft, #C9AC78);
  z-index: 5;
  font-weight: 500;
  opacity: 0.88;
  pointer-events: none;
  white-space: nowrap;
  text-align: right;
  line-height: 1.6;
}
.hero__issue strong {
  display: block;
  font-weight: 500;
  color: var(--gold, #B89A60);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
}

/* Vertical kana column · left edge — magazine spine feel */
.hero__spine {
  position: absolute;
  top: clamp(8rem, 18vh, 14rem);
  bottom: clamp(7rem, 14vh, 10rem);
  left: clamp(1.4rem, 3.6vw, 3rem);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}
.hero__spine::before,
.hero__spine::after {
  content: "";
  flex: 1 1 auto;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 172, 120, 0.55), transparent);
  opacity: 0.7;
}
.hero__spine span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--gold-soft, #C9AC78);
  white-space: nowrap;
}
html[lang="ja"] .hero__spine span {
  font-family: 'Noto Serif JP', var(--serif);
  font-style: normal;
  letter-spacing: 0.5em;
}

@media (max-width: 760px) {
  .hero__issue { top: 4.6rem; right: 1rem; font-size: 0.54rem; letter-spacing: 0.4em; }
  .hero__issue strong { font-size: 0.6rem; }
  .hero__spine { left: 0.6rem; bottom: 5rem; }
  .hero__spine span { font-size: 0.62rem; letter-spacing: 0.24em; }
}
