/* ===================================================================
   China Expresses — China Luxury Trains
   Shared Design System  ·  Light-Luxury Edition
   Ivory paper · antique gold · espresso ink
   =================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Papers (light backgrounds) */
  --paper:    #F6F1E7;   /* main page bg — warm ivory */
  --paper-2:  #EFE8D7;   /* alt section — warm sand */
  --paper-3:  #E7DECA;   /* deeper sand */
  --cream:    #FDFBF4;   /* cards */

  /* Ink (dark text & dark panels) */
  --ink:      #211C14;   /* deepest espresso — dark panels, footer */
  --ink-2:    #2C2519;   /* dark panel alt */
  --ink-3:    #3A3122;   /* dark panel hover */
  --ink-4:    #4A4030;

  /* Text on light */
  --text:     #2E281E;   /* body text — warm dark brown */
  --text-2:   #524838;   /* secondary text (was #5A5040 — deeper for a11y) */
  --muted:    #847868;   /* muted / captions (was #94896F — deeper for a11y) */

  /* Text on dark */
  --ivory:    #F6F1E7;   /* light text on dark panels */
  --ivory-dim:#C9C1AA;

  /* Gold */
  --gold:     #A8864A;   /* antique gold — primary accent */
  --gold-2:   #C8A86B;   /* lighter champagne */
  --gold-3:   #8A6E38;   /* deep gold */

  /* Secondary accents */
  --ember:    #7A2E2A;   /* deep burgundy */
  --jade:     #1E4A45;   /* deep teal */

  /* Lines */
  --line:       rgba(168,134,74,0.30);
  --line-soft:  rgba(33,28,20,0.10);
  --line-dark:  rgba(246,241,231,0.14);

  /* Film grain (SVG noise — data URI, no external file) */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");

  --serif: 'EB Garamond', 'Times New Roman', serif;
  --serif-display: 'Philosopher', Georgia, serif;
  --sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow: 0 22px 48px -28px rgba(33,28,20,.32);
  --shadow-lg: 0 34px 70px -30px rgba(33,28,20,.4);
  --shadow-gold: 0 14px 36px -12px rgba(168,134,74,.45);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography (light default) ---------- */
h1,h2,h3,h4 { line-height: 1.18; color: var(--ink); }
h1,h2 { font-family: var(--serif-display); font-weight: 700; letter-spacing: 0; }
h3 { font-family: var(--serif); font-weight: 600; letter-spacing: .008em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: .08em; text-transform:uppercase; color: var(--ink); }
p { color: var(--text-2); }
.lead { font-size: 1.18rem; color: var(--text-2); font-weight: 400; line-height: 1.65; }

/* Article drop-cap — editorial luxury */
.article > .lead:first-of-type::first-letter,
.article > p:first-of-type::first-letter {
  font-family: var(--serif-display);
  font-size: 3.6rem;
  line-height: .8;
  float: left;
  margin: .3rem .7rem 0 0;
  color: var(--gold);
  font-weight: 600;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.1rem;
}
.eyebrow.center { display: block; text-align: center; }
.eyebrow::after {
  content: ''; display: inline-block; width: 0; height: 1px; margin-left: .8rem;
  vertical-align: middle; background: var(--gold);
  transition: width .8s var(--ease) .3s;
}
.in-view .eyebrow::after, .reveal.in-view .eyebrow::after { width: 2.4rem; }

.gold { color: var(--gold); }
.serif { font-family: var(--serif); }

/* ---------- Dark-section text overrides ---------- */
.dark { background: var(--ink); color: var(--ivory-dim); }
.dark h1,.dark h2,.dark h3,.dark h4 { color: var(--ivory); }
.dark p { color: var(--ivory-dim); }
.dark .lead { color: var(--ivory-dim); }
.dark .eyebrow { color: var(--gold-2); }
.dark .muted, .dark .text-muted { color: var(--ivory-dim); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.wrap--narrow { max-width: 880px; }
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1.2rem; }
.divider { width: 100%; height: 1px; background: var(--line); }
.thin-rule { width: 56px; height: 1px; background: var(--gold); margin: 1.4rem 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: relative; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .nav-links a { color: var(--text-2); }
.site-header .nav-links a:hover,
.site-header .nav-links a.active { color: var(--ink); }
.site-header .brand,
.site-header .brand span { color: var(--ink); }
.site-header .brand small { color: var(--gold); }
.nav-toggle span { background: var(--ink); }
.site-header.scrolled {}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--serif-display); font-size: 1.5rem; font-weight: 700; letter-spacing: .02em; transition:color .4s; }
.brand svg, .brand-logo { width: 56px; height: auto; flex: none; }
.brand span { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: .45rem; }
.brand-logo { grid-row: 1 / 3; }
.brand span small { display:block; font-family: var(--sans); font-size:.56rem; letter-spacing:.16em; text-transform:uppercase; font-weight:600; transition:color .4s; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  position: relative; padding: .3rem 0; transition: color .3s;
}
.nav-links a::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold); transition:width .35s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; transition: .3s, background .4s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: var(--radius);
  transition: all .35s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn--gold { background: var(--gold); color: #fff; position: relative; overflow: hidden; }
.btn--gold::before {
  content:''; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); transition: left .7s var(--ease);
}
.btn--gold:hover::before { left:140%; }
.btn--gold:hover { background: var(--gold-3); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--ink { background: var(--ink); color: var(--ivory); }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(33,28,20,.5); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-3); }
.btn--ghost-light { border-color: var(--line-dark); color: var(--ivory); background: transparent; }
.btn--ghost-light:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--sm { padding: .72rem 1.4rem; font-size: .7rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Hero (dark) ---------- */
.hero { position: relative; min-height: clamp(560px, 78vh, 820px); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after { content:''; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(20,16,10,.78) 0%, rgba(20,16,10,.48) 40%, rgba(20,16,10,.18) 60%, rgba(20,16,10,0) 78%),
    linear-gradient(180deg, rgba(20,16,10,.55) 0%, rgba(20,16,10,.20) 28%, rgba(20,16,10,.52) 64%, rgba(33,28,20,.96) 100%);
}
/* Film grain overlay for cinematic depth */
.hero__bg::before {
  content:''; position:absolute; inset:0; z-index:1;
  background-image: var(--grain);
  opacity: .35; mix-blend-mode: overlay; pointer-events: none;
}
/* Vignette */
.hero::after {
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(20,16,10,.45) 100%);
}
.hero__bg img { width:100%; height:100%; object-fit: cover; }
.hero__inner { position: relative; z-index: 2; max-width: 960px; margin-left: 0; padding: 5.5rem var(--gut) clamp(4rem,8vh,6rem); color: var(--ivory); }
.hero__inner .eyebrow { color: var(--gold-2); }
.hero__inner h1 { color: var(--ivory); max-width: 22ch; margin-bottom: 1.4rem; font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.hero__inner h1 em { font-style: normal; color: var(--gold-2); }
.hero__inner .lead { color: var(--ivory-dim); max-width: 58ch; margin-bottom: 2.4rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__meta { position: absolute; bottom: 2.5rem; left: 0; right: 0; z-index: 2; }
.hero__meta-inner { display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.hero__meta-item { display:flex; flex-direction:column; gap:2px; }
.hero__meta-item span { font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ivory-dim); }
.hero__meta-item strong { font-family: var(--serif); font-size:1.5rem; color:var(--gold-2); font-weight:600; }
.scroll-cue { position:absolute; bottom:1.6rem; right:var(--gut); z-index:3; display:flex; flex-direction:column; align-items:center; gap:.5rem; color:var(--ivory-dim); font-size:.64rem; letter-spacing:.2em; text-transform:uppercase; }
.scroll-cue .line { width:1px; height:36px; background:linear-gradient(var(--gold-2),transparent); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* ---------- Page Banner (dark) ---------- */
.page-banner { position: relative; padding: 11rem 0 4rem; overflow: hidden; background: var(--ink); color: var(--ivory); }
.page-banner__bg { position:absolute; inset:0; z-index:0; }
.page-banner__bg::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(20,16,10,.55), rgba(20,16,10,.45) 50%, var(--ink) 100%); }
.page-banner__bg::before {
  content:''; position:absolute; inset:0; z-index:1;
  background-image: var(--grain);
  opacity: .3; mix-blend-mode: overlay; pointer-events: none;
}
.page-banner__bg img { width:100%; height:100%; object-fit:cover; }
.page-banner__inner { position: relative; z-index: 2; }
.page-banner__inner h1 { color: var(--ivory); }
.page-banner__inner .lead { color: var(--ivory-dim); }
.page-banner__inner .eyebrow { color: var(--gold-2); }
.breadcrumb { display:flex; gap:.6rem; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:var(--ivory-dim); margin-bottom:1.4rem; }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb span { color: var(--gold-2); }

/* ---------- Cards (light) ---------- */
.card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 30px -24px rgba(33,28,20,.3);
  position: relative;
  --spot-x: 50%;
  --spot-y: 50%;
}
.card::before {
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background: radial-gradient(circle 200px at var(--spot-x) var(--spot-y), rgba(168,134,74,.08), transparent 70%);
  opacity:0; transition:opacity .4s;
}
.card:hover::before { opacity:1; }
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.card__media::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 50%, rgba(20,16,10,.5) 100%); opacity:0; transition:opacity .5s var(--ease); z-index:1; pointer-events:none; }
.card__media img { width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card:hover .card__media::after { opacity:1; }
.card__badge { position:absolute; top:1rem; left:1rem; background:rgba(33,28,20,.82); color:var(--gold-2); font-size:.64rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; padding:.42rem .8rem; border:1px solid var(--line-dark); border-radius:2px; }
.card__body { padding: 1.9rem; display:flex; flex-direction:column; flex:1; }
.card__body h3 { margin-bottom:.6rem; color: var(--ink); }
.card__body p { font-size:.92rem; flex:1; }
.card__foot { display:flex; align-items:center; justify-content:space-between; margin-top:1.4rem; padding-top:1.2rem; border-top:1px solid var(--line-soft); }
.card__price { font-family:var(--serif); }
.card__price small { display:block; font-family:var(--sans); font-size:.64rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.card__price strong { font-size:1.5rem; color:var(--gold); font-weight:600; }
.card__tag { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--text-2); }

/* ---------- Journey Detail Block ---------- */
.journey { padding: clamp(48px,7vw,90px) 0; border-bottom: 1px solid var(--line-soft); }
.journey:last-child { border-bottom: none; }
.journey__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.journey:nth-child(even) .journey__media { order: 2; }
.journey__media { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; border:1px solid var(--line-soft); background:var(--ink); box-shadow: var(--shadow); }
.journey__media img { width:100%; height:100%; object-fit:cover; }
.journey__media .card__badge { top:1.2rem; left:1.2rem; }
.journey__content .eyebrow { margin-bottom:.8rem; }
.journey__content h2 { margin-bottom:1rem; }
.journey__content .lead { margin-bottom: 1rem; }
.journey__stats { display:flex; gap:2rem; margin:1.6rem 0; flex-wrap:wrap; }
.journey__stat span { display:block; font-size:.64rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:2px; }
.journey__stat strong { font-family:var(--serif); font-size:1.3rem; color:var(--gold); font-weight:600; }
.journey__included { margin: 1.4rem 0; }
.journey__included li { display:flex; gap:.6rem; align-items:flex-start; padding:.35rem 0; font-size:.9rem; color:var(--text-2); }
.journey__included li::before { content:'✦'; color:var(--gold); font-size:.8rem; margin-top:.15rem; }
.journey__cta { display:flex; gap:1rem; margin-top:1.6rem; flex-wrap:wrap; }

/* ---------- Value Props ---------- */
.props { display:grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-soft); border:1px solid var(--line-soft); border-radius: var(--radius); overflow:hidden; }
.prop { background: var(--cream); padding: 2.6rem 2rem; transition: background .4s; }
.prop:hover { background: var(--paper-2); }
.prop__icon { width:42px; height:42px; margin-bottom:1.4rem; color:var(--gold); }
.prop h4 { margin-bottom:.6rem; color: var(--ink); }
.prop p { font-size:.88rem; }

/* ---------- Train / Fleet ---------- */
.train { display:grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,64px); align-items:start; padding: clamp(48px,7vw,80px) 0; border-bottom:1px solid var(--line-soft); }
.train:last-child { border-bottom:none; }
.train__media { aspect-ratio: 5/4; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line-soft); position:sticky; top:90px; background:var(--ink); box-shadow: var(--shadow); }
.train__media img { width:100%; height:100%; object-fit:cover; }
.train__info .eyebrow { margin-bottom:.6rem; }
.train__info h2 { margin-bottom:.6rem; }
.train__specs { display:grid; grid-template-columns: 1fr 1fr; gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); margin:1.6rem 0; border-radius:var(--radius); overflow:hidden; }
.train__spec { background:var(--cream); padding:1.1rem 1.2rem; }
.train__spec span { display:block; font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }
.train__spec strong { font-family:var(--serif); font-size:1.15rem; color:var(--gold); font-weight:600; }
.amenities { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1rem; }
.amenity { font-size:.73rem; padding:.42rem .85rem; border:1px solid var(--line); border-radius:20px; color:var(--text-2); background:var(--cream); }

/* ---------- Comparison Table ---------- */
.compare-wrap { overflow-x:auto; border:1px solid var(--line-soft); border-radius:var(--radius); box-shadow: var(--shadow); }
.compare { width:100%; border-collapse:collapse; min-width:720px; background:var(--cream); }
.compare th, .compare td { padding:1.1rem 1.2rem; text-align:left; border-bottom:1px solid var(--line-soft); font-size:.9rem; }
.compare thead th { background:var(--ink); font-family:var(--sans); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-2); font-weight:600; }
.compare tbody tr:hover { background:var(--paper-2); }
.compare td:first-child { font-weight:600; color:var(--ink); }
.compare .yes { color:var(--gold); font-weight:600; }
.compare .no { color:var(--muted); }

/* ---------- Guides ---------- */
.guide-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.guide-card { background:var(--cream); border:1px solid var(--line-soft); border-radius:var(--radius); overflow:hidden; transition:transform .5s var(--ease), border-color .5s, box-shadow .5s; display:flex; flex-direction:column; box-shadow: 0 10px 30px -24px rgba(33,28,20,.3); position:relative; --spot-x:50%; --spot-y:50%; }
.guide-card::before { content:''; position:absolute; inset:0; z-index:2; pointer-events:none; background: radial-gradient(circle 200px at var(--spot-x) var(--spot-y), rgba(168,134,74,.08), transparent 70%); opacity:0; transition:opacity .4s; }
.guide-card:hover::before { opacity:1; }
.guide-card:hover { transform:translateY(-5px); border-color:var(--line); box-shadow: var(--shadow); }
.guide-card__media { aspect-ratio: 16/9; overflow:hidden; position:relative; background:var(--ink); }
.guide-card__media::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(20,16,10,.45) 100%); opacity:0; transition:opacity .5s var(--ease); z-index:1; pointer-events:none; }
.guide-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.guide-card:hover .guide-card__media img { transform:scale(1.05); }
.guide-card:hover .guide-card__media::after { opacity:1; }
.guide-card__cat { position:absolute; top:.8rem; left:.8rem; font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2); background:rgba(33,28,20,.82); padding:.32rem .7rem; border-radius:2px; font-weight:600; }
.guide-card__body { padding:1.6rem; flex:1; display:flex; flex-direction:column; }
.guide-card__body h3 { font-size:1.3rem; margin-bottom:.6rem; color:var(--ink); }
.guide-card__body p { font-size:.88rem; flex:1; }
.guide-card__meta { display:flex; gap:1rem; margin-top:1.2rem; font-size:.7rem; color:var(--muted); letter-spacing:.06em; }

.featured-guide { display:grid; grid-template-columns: 1.2fr 1fr; gap:clamp(32px,5vw,64px); align-items:center; background:var(--cream); border:1px solid var(--line-soft); border-radius:var(--radius); overflow:hidden; margin-bottom: 3rem; box-shadow: var(--shadow); }
.featured-guide__media { aspect-ratio:5/4; overflow:hidden; background:var(--ink); }
.featured-guide__media img { width:100%; height:100%; object-fit:cover; }
.featured-guide__body { padding: clamp(28px,4vw,48px); }
.featured-guide__body h2 { color:var(--ink); }
.featured-guide__body p { margin:1rem 0 1.6rem; }

/* ---------- Article (long-form guide) ---------- */
.article { max-width: 760px; }
.article h2 { margin: 2.4rem 0 1rem; }
.article h3 { margin: 2rem 0 .8rem; font-size:1.5rem; }
.article p { margin-bottom:1.1rem; }
.article ul.bullets { margin: 1rem 0 1.4rem; }
.article ul.bullets li { position:relative; padding-left:1.6rem; margin-bottom:.6rem; color:var(--text-2); }
.article ul.bullets li::before { content:'✦'; position:absolute; left:0; color:var(--gold); }
.callout { background:var(--paper-2); border-left:3px solid var(--gold); padding:1.4rem 1.6rem; margin:1.6rem 0; border-radius:0 var(--radius) var(--radius) 0; }
.callout strong { color:var(--gold-3); }

/* ---------- Testimonial ---------- */
.testimonial { text-align:center; max-width:820px; margin:0 auto; }
.testimonial blockquote { font-family:var(--serif); font-size:clamp(1.5rem,3vw,2.2rem); font-style:italic; line-height:1.45; color:var(--ink); font-weight:400; }
.testimonial blockquote::before { content:'\201C'; color:var(--gold); font-size:3rem; line-height:0; vertical-align:-.3em; margin-right:.2rem; }
.testimonial cite { display:block; margin-top:1.4rem; font-style:normal; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.testimonial cite strong { color:var(--gold-3); font-weight:600; }

/* ---------- Stats Band ---------- */
.stats-band { display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:var(--radius); overflow:hidden; }
.stat { background:var(--cream); padding:2.4rem 1.5rem; text-align:center; }
.stat strong { display:block; font-family:var(--serif); font-size:clamp(2.2rem,4vw,3rem); color:var(--gold); font-weight:600; line-height:1; }
.stat span { display:block; margin-top:.6rem; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }

/* ---------- Form ---------- */
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap:1.2rem; }
.field { display:flex; flex-direction:column; gap:.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.field input, .field select, .field textarea {
  background:var(--cream); border:1px solid var(--line-soft); border-radius:var(--radius);
  padding:.9rem 1rem; color:var(--text); font-family:var(--sans); font-size:.92rem;
  transition:border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(168,134,74,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size:.78rem; color:var(--muted); margin-top:1rem; }

/* ---------- Contact info ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap:clamp(32px,5vw,64px); }
.contact-info li { display:flex; gap:1rem; padding:1.2rem 0; border-bottom:1px solid var(--line-soft); }
.contact-info li:last-child { border-bottom:none; }
.contact-info .ic { width:40px; height:40px; flex:none; color:var(--gold); }
.contact-info span { font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); display:block; margin-bottom:2px; }
.contact-info strong { font-family:var(--serif); font-size:1.15rem; color:var(--ink); }

/* ---------- CTA Band (dark) ---------- */
.cta-band { text-align:center; position:relative; overflow:hidden; }
.cta-band h2 { margin-bottom:1.2rem; }
.cta-band p { max-width: 56ch; margin: 0 auto 2rem; }

/* ---------- Included panel ---------- */
.included-panel { background:var(--ink); border:1px solid var(--ink-2); border-radius:var(--radius); padding:clamp(28px,4vw,48px); color:var(--ivory-dim); }
.included-panel h2 { color:var(--ivory); }
.included-panel .eyebrow { color:var(--gold-2); }
.included-item { display:flex; gap:.6rem; align-items:flex-start; font-size:.9rem; color:var(--ivory-dim); }
.included-item .tick { color:var(--gold-2); }

/* ---------- Footer (dark) ---------- */
.site-footer { background:var(--ink); border-top:1px solid var(--ink-2); padding: 4rem 0 2rem; color:var(--ivory-dim); }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap:2.5rem; margin-bottom:3rem; }
.footer-brand .brand, .footer-brand .brand span { color: var(--ivory); }
.footer-brand .brand small { color: var(--gold-2); }
.footer-brand p { font-size:.88rem; margin:1rem 0; max-width:30ch; color:var(--ivory-dim); }
.footer-col h5 { font-family:var(--sans); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2); margin-bottom:1.2rem; font-weight:600; }
.footer-col a { display:block; padding:.3rem 0; font-size:.88rem; color:var(--ivory-dim); transition:color .3s; }
.footer-col a:hover { color:var(--gold-2); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:2rem; border-top:1px solid var(--line-dark); font-size:.76rem; color:var(--ivory-dim); flex-wrap:wrap; gap:1rem; }
.footer-bottom a:hover { color:var(--gold-2); }

/* ---------- Journey Glance Box ---------- */
.journey__glance { display:grid; grid-template-columns: repeat(3,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:var(--radius); overflow:hidden; margin-bottom:1.6rem; }
.journey__glance-item { background:var(--cream); padding:1rem 1.1rem; }
.journey__glance-item span { display:block; font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); margin-bottom:2px; }
.journey__glance-item strong { font-family:var(--serif); font-size:1.05rem; color:var(--gold); font-weight:600; }

/* ---------- What's Not Included ---------- */
.excluded-panel { background:var(--paper-2); border:1px solid var(--line-soft); border-left:3px solid var(--ember); border-radius:var(--radius); padding:1.6rem 1.8rem; margin:1.4rem 0; }
.excluded-panel h4 { color:var(--ember); margin-bottom:.8rem; font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; }
.excluded-panel ul { display:grid; grid-template-columns:1fr 1fr; gap:.4rem 1.4rem; }
.excluded-panel li { display:flex; gap:.5rem; align-items:flex-start; font-size:.86rem; color:var(--text-2); }
.excluded-panel li::before { content:'\\00d7'; color:var(--ember); font-weight:600; flex:none; font-size:1rem; }

/* ---------- Who This Suits ---------- */
.suits-panel { background:var(--cream); border:1px solid var(--line-soft); border-radius:var(--radius); padding:1.6rem 1.8rem; margin:1.4rem 0; }
.suits-panel h4 { margin-bottom:.8rem; }
.suits-grid { display:grid; grid-template-columns:1fr 1fr; gap:.8rem 1.6rem; }
.suits-item { display:flex; gap:.6rem; align-items:flex-start; font-size:.86rem; color:var(--text-2); }
.suits-item .ic-dot { width:8px; height:8px; border-radius:50%; background:var(--gold); flex:none; margin-top:.4rem; }
.suits-item.warn .ic-dot { background:var(--ember); }

/* ---------- FAQ Accordion ---------- */
.faq { margin:1.6rem 0; }
.faq-item { border-bottom:1px solid var(--line-soft); }
.faq-item:first-child { border-top:1px solid var(--line-soft); }
.faq-q { width:100%; text-align:left; padding:1.2rem 0; font-family:var(--serif); font-size:1.1rem; color:var(--ink); font-weight:600; display:flex; justify-content:space-between; align-items:center; gap:1rem; transition:color .3s; }
.faq-q:hover { color:var(--gold-3); }
.faq-q .faq-icon { width:18px; height:18px; flex:none; position:relative; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content:''; position:absolute; background:var(--gold); transition:transform .35s var(--ease); }
.faq-q .faq-icon::before { top:50%; left:0; width:100%; height:1.5px; transform:translateY(-50%); }
.faq-q .faq-icon::after { top:0; left:50%; width:1.5px; height:100%; transform:translateX(-50%); }
.faq-item.open .faq-q .faq-icon::after { transform:translateX(-50%) scaleY(0); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height:400px; }
.faq-a-inner { padding:0 0 1.2rem; color:var(--text-2); font-size:.92rem; }

/* ---------- Trust Badges ---------- */
.verified-badge { display:inline-flex; align-items:center; gap:.4rem; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.verified-badge::before { content:'✓'; color:var(--gold); font-weight:700; }
.price-ref { font-size:.64rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }

/* ---------- Trust Footer ---------- */
.trust-footer { background:var(--ink-2); border-top:1px solid var(--ink-3); padding:2rem 0; }
.trust-footer p { font-size:.78rem; color:var(--ivory-dim); max-width:80ch; }
.trust-footer a { color:var(--gold-2); text-decoration:underline; text-underline-offset:2px; }

/* ---------- Inquiry Path Cards ---------- */
.inquiry-paths { display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; }
.inquiry-path { background:var(--cream); border:1px solid var(--line-soft); border-radius:var(--radius); padding:2rem; transition:transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.inquiry-path:hover { transform:translateY(-4px); border-color:var(--line); box-shadow:var(--shadow); }
.inquiry-path__icon { width:40px; height:40px; color:var(--gold); margin-bottom:1rem; }
.inquiry-path h4 { margin-bottom:.5rem; }
.inquiry-path p { font-size:.88rem; margin-bottom:1rem; }
.inquiry-path .tag { display:inline-block; font-size:.64rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); border:1px solid var(--line); border-radius:20px; padding:.3rem .8rem; margin-bottom:1rem; }

/* ---------- Guide Content Pillars ---------- */
.pillar-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:var(--radius); overflow:hidden; margin-bottom:3rem; }
.pillar { background:var(--cream); padding:2rem; transition:background .4s; }
.pillar:hover { background:var(--paper-2); }
.pillar__num { font-family:var(--serif-display); font-size:1.4rem; color:var(--gold); margin-bottom:.6rem; font-weight:700; }
.pillar h4 { margin-bottom:.4rem; }
.pillar p { font-size:.84rem; }
.pillar__topics { margin-top:.8rem; }
.pillar__topics span { display:inline-block; font-size:.68rem; color:var(--text-2); background:var(--paper-2); border-radius:20px; padding:.25rem .7rem; margin:.2rem .2rem 0 0; }

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--gold-3); border-radius: 5px; border: 2px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
html { scrollbar-color: var(--gold-3) var(--paper-2); scrollbar-width: thin; }

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  z-index: 200; transition: width .1s linear;
}

/* ---------- Ornamental Divider ---------- */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin: clamp(2rem, 4vw, 3.5rem) auto; max-width: 240px;
}
.ornament::before, .ornament::after {
  content:''; flex:1; height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament__diamond {
  width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg);
  flex: none; box-shadow: 0 0 0 4px var(--paper);
}
.ornament--dark::before, .ornament--dark::after {
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}
.ornament--dark .ornament__diamond { background: var(--gold-2); box-shadow: 0 0 0 4px var(--ink); }
section .ornament { margin-top: 0; }

/* ---------- Link underline animation ---------- */
.article a, .guide-card__body a, .featured-guide__body a,
.contact-info a, .callout a, .footer-col a {
  transition: color .3s;
}
.article p a { color: var(--gold-3); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); text-decoration-thickness: 1px; transition: text-decoration-color .3s; }
.article p a:hover { text-decoration-color: var(--gold); }

/* ---------- Image fade-in on load ---------- */
.js img { opacity: 0; transition: opacity .6s var(--ease); }
.js img.loaded, .js img[data-no-fade] { opacity: 1; }
.js .hero__bg img, .js .page-banner__bg img { opacity: 1; }
img { max-width: 100%; display: block; }

/* ---------- Nav active state enhancement ---------- */
.nav-links a.active { color: var(--gold); }
.site-header.scrolled .nav-links a.active { color: var(--gold-3); }
.nav-links a.active::after { width: 100%; background: var(--gold); }

/* ---------- Enhanced section transitions ---------- */
section { transition: background .4s; }

/* ---------- Form refinement ---------- */
.field input, .field select, .field textarea {
  background:var(--cream); border:1px solid var(--line-soft); border-radius:var(--radius);
  padding:.9rem 1rem; color:var(--text); font-family:var(--sans); font-size:.92rem;
  transition:border-color .3s, box-shadow .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(168,134,74,.14); background:var(--paper);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .7; }

/* ---------- Journey Navigator (sticky tabs) ---------- */
.journey-nav {
  position: sticky; top: 64px; z-index: 50;
  background: rgba(246,241,231,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  padding: .8rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.journey-nav::-webkit-scrollbar { display: none; }
.journey-nav__inner { display: flex; gap: .6rem; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.journey-nav__link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1.1rem; border-radius: 100px;
  border: 1px solid var(--line-soft); background: var(--cream);
  color: var(--text-2); white-space: nowrap; transition: all .3s var(--ease);
}
.journey-nav__link:hover { border-color: var(--gold); color: var(--gold-3); }
.journey-nav__link.active { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.journey-nav__link .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.journey-nav__link.active .dot { background: var(--gold-2); }

/* ---------- Full-width quote break ---------- */
.quote-break {
  background: var(--ink); color: var(--ivory);
  padding: clamp(48px, 7vw, 90px) 0; text-align: center;
  position: relative; overflow: hidden;
}
.quote-break::before {
  content:''; position:absolute; inset:0;
  background-image: var(--grain); opacity: .3; mix-blend-mode: overlay; pointer-events: none;
}
.quote-break blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.5;
  max-width: 760px; margin: 0 auto; color: var(--ivory); position: relative; z-index: 1;
}
.quote-break cite {
  display: block; margin-top: 1.4rem; font-style: normal;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2);
}

/* ---------- Visual break band ---------- */
.visual-break {
  position: relative; height: clamp(280px, 40vw, 420px);
  overflow: hidden; background: var(--ink);
}
.visual-break img { width: 100%; height: 100%; object-fit: cover; }
.visual-break::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,16,10,.3) 0%, rgba(20,16,10,.7) 100%);
}
.visual-break__text {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: clamp(24px, 4vw, 48px) var(--gut);
}
.visual-break__text .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0; }
.visual-break__text h3 {
  font-family: var(--serif-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ivory); margin-bottom: .5rem; font-weight: 700; letter-spacing: 0;
}
.visual-break__text p { color: var(--ivory-dim); font-size: .95rem; max-width: 50ch; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.1s; }
.reveal.d2 { transition-delay:.2s; }
.reveal.d3 { transition-delay:.3s; }
.reveal.d4 { transition-delay:.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .props, .stats-band { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .journey__grid, .train, .featured-guide, .contact-grid { grid-template-columns: 1fr; }
  .journey:nth-child(even) .journey__media { order: 0; }
  .train__media { position: static; }
  .guide-grid { grid-template-columns: repeat(2,1fr); }
  .included-grid { grid-template-columns: 1fr !important; }
  .inquiry-paths { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-links, .nav-cta .btn { display:none; }
  .nav-toggle { display:flex; }
  .nav-links.mobile-open {
    display:flex; flex-direction:column; position:fixed; top:0; right:0; bottom:0;
    width:min(80vw,320px); background:var(--ink); padding:6rem 2rem 2rem; gap:1.4rem;
    border-left:1px solid var(--ink-2); z-index:99; align-items:flex-start;
  }
  .nav-links.mobile-open a { font-size:1rem; color:var(--ivory); }
  .nav-links.mobile-open a:hover { color: var(--gold-2); }
  .form-grid { grid-template-columns: 1fr; }
  .hero__meta-inner { gap:1.4rem; }
  .scroll-cue { display:none; }
  .journey-nav { top: 52px; }
  .journey-nav__link { font-size: .68rem; padding: .42rem .9rem; }
}
@media (max-width: 560px){
  .props, .stats-band, .guide-grid, .train__specs { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .journey__stats { gap:1.2rem; }
  .included-list { grid-template-columns: 1fr !important; }
  section { padding: 56px 0; }
  .journey__glance { grid-template-columns:1fr 1fr; }
  .excluded-panel ul, .suits-grid, .inquiry-paths, .pillar-grid { grid-template-columns:1fr !important; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg img, .page-banner__bg img { transform: none !important; }
  .scroll-cue .line { animation: none; }
}

/* ---------- Selection ---------- */
::selection { background: var(--gold); color: #fff; }
