/* ═══════════════════════════════════════════════════════════════════
   Experience Asia — Visual Redesign
   Aesthetic reference: Aman Resorts (restraint, whitespace, hairlines)
                      + The Sybarite (editorial, full-bleed, italic serif)
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  /* Palette */
  --bg:            #FAFAF8;       /* near-pure white, barely warm      */
  --bg-cream:      #F3EFE8;       /* cream for alternate sections       */
  --dark:          #0C0C0A;       /* near-pure black                    */
  --dark-alt:      #161614;       /* slightly lifted dark               */
  --gold:          #8B7355;       /* stone gold, muted                  */
  --gold-light:    #A68C68;       /* lighter stone                      */
  --gold-pale:     rgba(139,115,85,0.06);
  --text:          #1A1A18;       /* primary text                       */
  --muted:         #7C7870;       /* secondary text                     */
  --line:          #DDD8D0;       /* hairline: warm light gray          */
  --dark-line:     rgba(220,215,205,0.1);
  --white:         #FFFFFF;

  /* Type */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Scale */
  --nav-h:         68px;
  --max-w:         1380px;
  --content-w:     760px;
  --gap-v:         clamp(80px, 10vw, 140px);
  --pad-h:         clamp(1.5rem, 5vw, 4rem);
}

/* ── 2. RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── 3. CONTAINERS ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}
.container--narrow {
  max-width: 920px;
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}
.container--content {
  max-width: var(--content-w);
  margin: 0 auto;
  padding-left: var(--pad-h);
  padding-right: var(--pad-h);
}

/* ── 4. TYPE SCALE ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--text);
}

h1 { font-size: clamp(3rem, 6.5vw, 7rem); font-style: italic; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.5rem); font-style: italic; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-style: italic; }
h4 { font-size: 1.15rem; font-style: italic; }

p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* Eyebrow / label */
.label {
  display: block;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.text-center { text-align: center; }

/* ── 5. BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.32s ease;
  cursor: pointer;
  white-space: nowrap;
}

/* Gold outline */
.btn--outline-gold {
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* White outline (on dark) */
.btn--outline-white {
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.38);
  color: var(--white);
}
.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}

/* Gold fill — one per page */
.btn--gold {
  padding: 0.9rem 2.2rem;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Text / arrow */
.btn--text {
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  padding: 0 0 0.12rem;
  border-bottom: 1px solid rgba(139,115,85,0.28);
}
.btn--text:hover { border-color: var(--gold); }

.btn--text-dark {
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 0 0 0.12rem;
}
.btn--text-dark:hover { color: var(--text); border-color: var(--text); }

/* Nav CTA */
.btn-nav-cta {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.6rem 1.3rem;
  transition: all 0.3s ease;
}
.btn-nav-cta:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.site-header.scrolled .btn-nav-cta {
  color: var(--gold);
  border-color: rgba(139,115,85,0.35);
}
.site-header.scrolled .btn-nav-cta:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.btn--full { width: 100%; justify-content: center; }

/* ── 6. NAVIGATION ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(12,12,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--dark-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  gap: 2.5rem;
}

/* Logo */
.site-logo a { display: flex; align-items: center; }
.site-logo__text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--white);
}
.site-logo .custom-logo { max-height: 40px; width: auto; }

/* Desktop nav links */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.primary-nav a {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s ease;
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.primary-nav a:hover,
.primary-nav a.current-menu-item { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a.current-menu-item::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.75);
  transition: all 0.3s ease;
}
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Full-screen mobile menu — Aman style */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--pad-h) calc(var(--pad-h) * 2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.nav-mobile.is-open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding: 0.2rem 0;
  transition: color 0.25s ease;
  border-bottom: 1px solid rgba(220,215,205,0.06);
  width: 100%;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .btn-nav-cta {
  margin-top: 2.5rem;
  align-self: flex-start;
  color: var(--gold);
  border-color: rgba(139,115,85,0.35);
}
.nav-mobile-close {
  position: absolute;
  top: calc(var(--nav-h) / 2);
  right: var(--pad-h);
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.25s ease;
  font-weight: 300;
  line-height: 1;
}
.nav-mobile-close:hover { color: var(--white); }

/* ── 7. HOMEPAGE HERO — Aman: full-bleed, type at bottom-left ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--dark) center/cover no-repeat;
  animation: heroPan 12s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes heroPan {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

/* Gradient only at bottom — lets photography breathe */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,10,0.82) 0%,
    rgba(12,12,10,0.28) 45%,
    rgba(12,12,10,0.04) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--max-w) + var(--pad-h) * 2);
  margin: 0 auto;
  padding: 0 var(--pad-h) clamp(3.5rem, 8vh, 7rem);
}

.hero__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 12ch;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.5s ease forwards;
}

.hero__subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  max-width: 40ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.75s ease forwards;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 1s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Vertical scroll text — right side */
.hero__scroll {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  right: var(--pad-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s ease forwards;
}
.hero__scroll span:first-child {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(139,115,85,0.7), transparent);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50%       { opacity: 0.2; transform: scaleY(0.6); }
}

/* ── 8. PAGE HERO — interior pages ──────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(4rem, 9vw, 9rem));
  padding-bottom: clamp(4rem, 7vw, 8rem);
}

.page-hero--slim {
  padding-top: calc(var(--nav-h) + clamp(3rem, 5vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.page-hero--dark {
  background: var(--dark);
  color: var(--white);
}
.page-hero--dark .label   { color: var(--gold-light); }
.page-hero--dark h1       { color: var(--white); font-style: italic; }
.page-hero--dark p        { color: rgba(250,250,248,0.52); }

.page-hero .label { color: var(--gold); }
.page-hero h1     { margin-bottom: 1.5rem; font-style: italic; }
.page-hero p {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.9;
  color: var(--muted);
  max-width: 50ch;
  margin: 0;
}

/* ── 9. STATEMENT ────────────────────────────────────────────────── */
.section-statement {
  padding: var(--gap-v) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--text);
  text-align: center;
}

/* ── 10. SECTION HEADER ──────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.section-header__left h2 { font-style: italic; }
.section-header__left .label { margin-bottom: 0.4rem; }
.section-header h2 { margin: 0; }

/* ── 11. PILLARS ─────────────────────────────────────────────────── */
.section-pillars {
  padding: var(--gap-v) 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.pillars-header h2 { margin-top: 0.5rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.pillar {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 3.5vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar__number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: rgba(139,115,85,0.18);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pillar h3 { margin-bottom: 0.9rem; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.pillar p {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}

/* ── 12. JOURNEY SECTION ─────────────────────────────────────────── */
.section-journeys { padding: var(--gap-v) 0; }

/* ── 13. JOURNEY CARD — editorial style ─────────────────────────── */
.journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.journey-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.journey-card__image-link { display: block; overflow: hidden; }
.journey-card__image {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--dark-alt);
  position: relative;
}
.journey-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.journey-card:hover .journey-card__image img { transform: scale(1.06); }

.journey-card__status {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
}

.journey-card__body {
  padding: 1.75rem clamp(1.25rem, 2.5vw, 2rem) 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.journey-card__region { margin-bottom: 0; }
.journey-card__title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  margin: 0;
}
.journey-card__title a { color: var(--text); transition: color 0.25s ease; }
.journey-card__title a:hover { color: var(--gold); }
.journey-card__desc {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.journey-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.journey-card__meta span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.journey-card__meta span:last-child { color: var(--text); font-weight: 400; }
.journey-card__link { margin-top: auto; padding-top: 1rem; }

/* Bespoke block */
.journeys-bespoke { border-top: 1px solid var(--line); }
.bespoke-card {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  align-items: center;
}
.bespoke-card .label { margin-bottom: 0.5rem; }
.bespoke-card h3 { font-style: italic; font-weight: 300; font-size: clamp(1.3rem, 2.5vw, 2rem); margin-bottom: 0.5rem; }
.bespoke-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.85; max-width: 46ch; margin: 0; }

/* ── 14. MEMBERSHIP SIGNAL — dark section ────────────────────────── */
.section-membership-signal {
  background: var(--dark);
  padding: var(--gap-v) 0;
  border-top: 1px solid rgba(220,215,205,0.06);
}
.membership-signal__label { color: var(--gold-light); margin-bottom: 2.5rem; }
.membership-signal__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.12;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.membership-signal__text {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,250,248,0.42);
  max-width: 46ch;
  margin: 0 auto 4rem;
  letter-spacing: 0.02em;
}

/* Three tiers preview — separated by hairlines */
.membership-tiers-preview {
  display: flex;
  justify-content: center;
  border-left: 1px solid var(--dark-line);
  max-width: 600px;
  margin: 0 auto 4rem;
}
.tier-preview {
  flex: 1;
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.tier-preview__name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,248,0.8);
}
.tier-preview__price {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── 15. INTELLIGENCE / EDITORIAL GRID ───────────────────────────── */
.section-intelligence      { padding: var(--gap-v) 0; }
.section-intelligence-listing { padding: var(--gap-v) 0; }

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

/* ── 16. INTELLIGENCE CARD — The Sybarite editorial ──────────────── */
.intel-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.intel-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark-alt);
}
.intel-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.intel-card:hover .intel-card__image img { transform: scale(1.05); }
.intel-card__body {
  padding: 1.75rem clamp(1.25rem, 2vw, 2rem) 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.intel-card__date {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.intel-card__title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
}
.intel-card__title a { color: var(--text); transition: color 0.25s ease; }
.intel-card__title a:hover { color: var(--gold); }
.intel-card__excerpt {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
  flex: 1;
}

/* ── 17. CTA STRIP ───────────────────────────────────────────────── */
.section-cta-strip {
  background: var(--dark);
  padding: clamp(5rem, 10vw, 11rem) 0;
  border-top: 1px solid rgba(220,215,205,0.06);
}
.cta-strip__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.cta-strip__subtitle {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(250,250,248,0.38);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

/* ── 18. FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: #080806;
  border-top: 1px solid rgba(220,215,205,0.07);
  padding: clamp(4rem, 7vw, 8rem) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--dark-line);
}
.footer-brand .site-logo__text { font-size: 1.25rem; }
.footer-brand__tagline {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(250,250,248,0.28);
  margin-top: 1.5rem;
}
.footer-heading {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.2);
  margin-bottom: 1.5rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(250,250,248,0.42);
  transition: color 0.25s ease;
}
.footer-nav a:hover { color: rgba(250,250,248,0.8); }
.footer-contact a,
.footer-contact span {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(250,250,248,0.42);
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}
.footer-contact a:hover { color: rgba(250,250,248,0.8); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
}
.footer-copyright {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(250,250,248,0.18);
}
.footer-social a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.28);
  transition: color 0.25s ease;
}
.footer-social a:hover { color: rgba(250,250,248,0.65); }

/* ── 19. ABOUT PAGE ──────────────────────────────────────────────── */
.section-about-statement {
  padding: var(--gap-v) 0;
  border-bottom: 1px solid var(--line);
}
.section-founder { padding: var(--gap-v) 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.founder-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-cream);
}
.founder-image img { width: 100%; height: 100%; object-fit: cover; }
.founder-image__placeholder {
  width: 100%; height: 100%; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.founder-image__placeholder span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  text-align: center;
  line-height: 1.8;
}
.founder-bio {
  padding: clamp(3rem, 5vw, 6rem) clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border-left: 1px solid var(--line);
}
.founder-bio h2 { font-style: italic; margin-bottom: 0; }
.founder-bio p { font-family: var(--sans); font-size: 0.86rem; line-height: 1.9; color: var(--muted); margin: 0; }

.section-hubs { padding: var(--gap-v) 0; background: var(--bg-cream); border-top: 1px solid var(--line); }
.hubs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: clamp(3rem, 5vw, 5rem);
}
.hub-card {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}
.hub-card__city {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hub-card__role { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1.5rem; display: block; }
.hub-card p { font-family: var(--sans); font-size: 0.85rem; line-height: 1.9; color: var(--muted); margin: 0; }

.section-principles { padding: var(--gap-v) 0; }
.principles-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}
.principles-list { display: flex; flex-direction: column; }
.principle {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.principle__number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(139,115,85,0.18);
  line-height: 1;
}
.principle h3 { margin-bottom: 0.75rem; font-size: clamp(1.2rem, 2vw, 1.6rem); }
.principle p { font-size: 0.86rem; color: var(--muted); line-height: 1.9; margin: 0; }

/* ── 20. MEMBERSHIP TIERS PAGE ───────────────────────────────────── */
.section-mem-philosophy {
  padding: var(--gap-v) 0;
  border-bottom: 1px solid var(--line);
}
.section-membership-tiers { padding: var(--gap-v) 0; }
.tiers-header { margin-bottom: clamp(3rem, 5vw, 5rem); }

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.membership-card {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.75rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.membership-card--featured { background: var(--dark); }
.membership-card--featured .membership-card__header { border-color: var(--dark-line); }
.membership-card--featured .membership-card__tier { color: var(--white); }
.membership-card--featured .membership-card__desc,
.membership-card--featured .membership-card__features li { color: rgba(250,250,248,0.55); }
.membership-card--featured .price-amount { color: var(--gold-light); }
.membership-card--featured .price-period { color: rgba(250,250,248,0.3); }
.membership-card--featured .membership-card__features li::before { background: var(--gold-light); }

.membership-card__badge {
  position: absolute;
  top: 0; right: 2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  transform: translateY(-50%);
}

.membership-card__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.membership-card__tier {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.membership-card__price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.25rem; }
.price-amount {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}
.price-period {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.membership-card__body { flex: 1; display: flex; flex-direction: column; gap: 1.75rem; }
.membership-card__desc {
  font-family: var(--sans);
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.membership-card__features { flex: 1; display: flex; flex-direction: column; gap: 0.7rem; }
.membership-card__features li {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}
.membership-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.58em;
  width: 5px; height: 1px;
  background: var(--gold);
}
.membership-card__apply { margin-top: auto; }

.section-membership-faq { padding: var(--gap-v) 0; background: var(--bg-cream); border-top: 1px solid var(--line); }
.faq-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: clamp(1.75rem, 3vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); margin-bottom: 0.75rem; }
.faq-item p { font-size: 0.86rem; color: var(--muted); line-height: 1.9; margin: 0; }

/* ── 21. CONSULTATION PAGE ───────────────────────────────────────── */
.section-consultation { padding-bottom: var(--gap-v); }
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  border-top: 1px solid var(--line);
}
.consultation-form-col {
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 5rem) clamp(3rem, 5vw, 5rem) 0;
  border-right: 1px solid var(--line);
}
.consultation-context-col {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 4rem);
}

/* Form */
.consultation-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  outline: none;
  width: 100%;
  letter-spacing: 0.02em;
  -webkit-appearance: none;
  transition: border-color 0.25s ease;
}
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238B7355'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.5rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }

.form-field--privacy { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.form-field--privacy input[type="checkbox"] {
  width: 14px; height: 14px;
  flex-shrink: 0; margin-top: 0.2rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-field--privacy label {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  line-height: 1.7;
}

.form-success, .form-error {
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
}
.form-success h3 { font-family: var(--serif); font-style: italic; font-weight: 300; margin-bottom: 0.5rem; }
.form-success p, .form-error p { font-size: 0.86rem; color: var(--muted); margin: 0; }
.form-error { border-color: rgba(192,57,43,0.5); }

/* Context */
.consultation-context { display: flex; flex-direction: column; gap: 1.75rem; }
.consultation-context h3 { font-style: italic; font-weight: 300; font-size: clamp(1.3rem, 2vw, 1.8rem); }
.consultation-context p { font-size: 0.84rem; color: var(--muted); line-height: 1.9; margin: 0; }
.consultation-contact-block { padding-top: 2rem; border-top: 1px solid var(--line); }
.consultation-email {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}
.consultation-email:hover { color: var(--gold-light); }
.consultation-discretion { padding: 1.5rem; background: var(--bg-cream); }
.consultation-discretion p { font-size: 0.78rem; color: var(--muted); line-height: 1.85; font-style: italic; margin: 0; }

/* ── 22. CONTACT PAGE ────────────────────────────────────────────── */
.section-contact { padding-bottom: var(--gap-v); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.contact-office {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem) 0;
}
.contact-office:last-child {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  border-left: 1px solid var(--line);
}
.contact-office__city {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.contact-office__role { margin: 0.75rem 0 2.5rem; display: block; }
.contact-detail { display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 1.5rem; }
.contact-detail__label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.55;
}
.contact-detail__value {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.25s ease;
}
a.contact-detail__value:hover { color: var(--gold); }
.contact-office__hours p { font-family: var(--sans); font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.65; }
.contact-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}
.contact-social .label { margin-bottom: 0.75rem; }
.contact-social a { font-family: var(--sans); font-size: 0.86rem; font-weight: 300; color: var(--gold); transition: color 0.25s ease; }
.contact-social a:hover { color: var(--gold-light); }
.contact-consultation-cta { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.contact-consultation-cta p { font-size: 0.86rem; color: var(--muted); line-height: 1.85; margin: 0; }

/* ── 23. JOURNEY FILTER ──────────────────────────────────────────── */
.section-filter { border-bottom: 1px solid var(--line); }
.journey-filters { display: flex; flex-wrap: wrap; border-left: 1px solid var(--line); }
.filter-btn {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: all 0.25s ease;
  margin-top: -1px;
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active { color: var(--gold); }
.section-journeys-listing { padding-bottom: var(--gap-v); }

/* ── 24. SINGLE JOURNEY HERO ─────────────────────────────────────── */
.journey-hero {
  position: relative;
  height: 78vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.journey-hero__bg { position: absolute; inset: 0; background: var(--dark-alt); }
.journey-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.journey-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,10,0.82) 0%, rgba(12,12,10,0.2) 55%, transparent 100%);
}
.journey-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--max-w) + var(--pad-h) * 2);
  margin: 0 auto;
  padding: 0 var(--pad-h) clamp(3rem, 7vh, 5rem);
}
.journey-hero__region { color: var(--gold-light); margin-bottom: 0.75rem; }
.journey-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.journey-hero__desc {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255,255,255,0.52);
  max-width: 46ch;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* Journey detail layout */
.section-journey-detail { padding: var(--gap-v) 0; }
.journey-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  border-top: 1px solid var(--line);
}
.journey-detail-body {
  padding: clamp(3rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem) 0;
  border-right: 1px solid var(--line);
}
.journey-detail-sidebar {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4vw, 3.5rem);
}

.journey-sidebar-card { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-meta { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-meta__row {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.sidebar-meta__row:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-meta__label { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); opacity: 0.65; }
.sidebar-meta__value { font-family: var(--sans); font-size: 0.88rem; font-weight: 300; color: var(--text); }
.sidebar-meta__value--price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
}
.sidebar-meta__value--status { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.sidebar-cta { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-cta__note { font-family: var(--sans); font-size: 0.8rem; line-height: 1.8; color: var(--muted); margin: 0; }
.sidebar-cta__privacy { font-family: var(--sans); font-size: 0.7rem; line-height: 1.75; color: var(--muted); opacity: 0.55; margin: 0; }

.sidebar-includes { padding-top: 2rem; border-top: 1px solid var(--line); }
.sidebar-includes .label { margin-bottom: 1rem; }
.sidebar-includes ul { display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-includes li {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.sidebar-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 1px;
  background: var(--gold);
}

.section-related-journeys { padding: var(--gap-v) 0; background: var(--bg-cream); border-top: 1px solid var(--line); }

/* ── 25. SINGLE ARTICLE — The Sybarite editorial ─────────────────── */
.article-hero {
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 7vw, 7rem));
  padding-bottom: 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.article-meta__sep { color: var(--line); }
.article-meta__cat { color: var(--muted); }

.article-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.article-excerpt {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

/* Full-bleed hero image — The Sybarite signature */
.article-hero-image {
  margin-top: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.article-hero-image img { width: 100%; max-height: 65vh; object-fit: cover; }

.article-body { padding: var(--gap-v) 0; }

/* Prose content */
.prose { line-height: 1.9; }
.prose p { font-size: 0.96rem; font-weight: 300; color: var(--text); margin-bottom: 1.5rem; letter-spacing: 0.01em; }
.prose h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-style: italic; margin: 3.5rem 0 1.25rem; }
.prose h3 { font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-style: italic; margin: 2.5rem 0 1rem; }
.prose img { margin: 2.5rem 0; }
.prose blockquote {
  border-left: 1px solid var(--gold);
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}
.prose ul, .prose ol { margin-bottom: 1.5rem; }
.prose li {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 5px; height: 1px;
  background: var(--gold);
}
.prose ol { counter-reset: ol-c; }
.prose ol li::before {
  content: counter(ol-c) '.';
  counter-increment: ol-c;
  position: absolute; left: 0;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold);
}
.prose a { color: var(--gold); border-bottom: 1px solid rgba(139,115,85,0.3); transition: border-color 0.25s ease; }
.prose a:hover { border-color: var(--gold); }

.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.article-tag {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.35rem 0.85rem;
}

.article-author-note {
  margin-top: 3rem;
  padding: 1.75rem;
  background: var(--bg-cream);
}
.article-author-note p { font-size: 0.8rem; color: var(--muted); line-height: 1.9; font-style: italic; margin: 0; }

.article-nav-section { padding: clamp(3rem, 5vw, 5rem) 0; border-top: 1px solid var(--line); }
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.article-nav__item .label { margin-bottom: 0.5rem; }
.article-nav__item a { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.6rem); font-style: italic; font-weight: 300; color: var(--text); transition: color 0.25s ease; }
.article-nav__item a:hover { color: var(--gold); }
.article-nav__item--next { text-align: right; }

/* ── 26. MISC / SHARED ───────────────────────────────────────────── */
.entry-content p { font-size: 0.92rem; line-height: 1.9; font-weight: 300; margin-bottom: 1.25rem; }
.section-content { padding: var(--gap-v) 0; }

.empty-state { text-align: center; padding: clamp(4rem, 8vw, 9rem) var(--pad-h); }
.empty-state h3 { font-family: var(--serif); font-style: italic; font-weight: 300; margin: 1rem 0; }
.empty-state p { font-size: 0.86rem; color: var(--muted); margin-bottom: 0; }

/* Pagination */
.pagination, .wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: var(--gap-v);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.pagination .page-numbers,
.wp-pagenavi a,
.wp-pagenavi span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.6rem 1rem;
  transition: color 0.25s ease;
  background: none;
  border: none;
}
.pagination .page-numbers:hover,
.wp-pagenavi a:hover { color: var(--text); }
.pagination .page-numbers.current,
.wp-pagenavi .current { color: var(--gold); font-weight: 400; }

/* ── 27. SCROLL REVEAL ANIMATION ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger children in grid */
.pillars-grid .pillar:nth-child(2) { transition-delay: 0.12s; }
.pillars-grid .pillar:nth-child(3) { transition-delay: 0.24s; }
.journeys-grid .journey-card:nth-child(2) { transition-delay: 0.1s; }
.journeys-grid .journey-card:nth-child(3) { transition-delay: 0.2s; }
.intelligence-grid .intel-card:nth-child(2) { transition-delay: 0.1s; }
.intelligence-grid .intel-card:nth-child(3) { transition-delay: 0.2s; }

/* ── 28. RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pillars-grid        { grid-template-columns: 1fr; }
  .journeys-grid       { grid-template-columns: 1fr 1fr; }
  .intelligence-grid   { grid-template-columns: 1fr 1fr; }
  .membership-grid     { grid-template-columns: 1fr; }
  .founder-grid        { grid-template-columns: 1fr; }
  .founder-bio         { border-left: none; border-top: 1px solid var(--line); padding: clamp(2.5rem,4vw,4rem) 0; }
  .hubs-grid           { grid-template-columns: 1fr; }
  .consultation-grid   { grid-template-columns: 1fr; }
  .consultation-form-col { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); }
  .consultation-context-col { padding-left: 0; }
  .contact-grid        { grid-template-columns: 1fr; }
  .contact-office:last-child { border-left: none; border-top: 1px solid var(--line); padding-left: 0; }
  .contact-footer      { grid-template-columns: 1fr; gap: 2rem; }
  .journey-detail-layout { grid-template-columns: 1fr; }
  .journey-detail-body { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); }
  .journey-detail-sidebar { padding-left: 0; }
  .article-nav         { grid-template-columns: 1fr; gap: 2rem; }
  .article-nav__item--next { text-align: left; }
}

@media (max-width: 860px) {
  .primary-nav, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero__title { font-size: clamp(3rem, 12vw, 6rem); }
  .hero__subtitle { display: none; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .journeys-grid { grid-template-columns: 1fr; }
  .intelligence-grid { grid-template-columns: 1fr; }

  .membership-tiers-preview { flex-direction: column; max-width: 260px; border-left: none; }
  .tier-preview { border-right: none; border-bottom: 1px solid var(--dark-line); }
  .tier-preview:last-child { border-bottom: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .bespoke-card { flex-direction: column; }
  .form-row--two { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root {
    --pad-h:  1.25rem;
    --nav-h:  60px;
  }
  .hero__title    { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero__scroll   { display: none; }
  .hero__cta      { flex-direction: column; }
  .article-title  { font-size: clamp(2rem, 10vw, 3.5rem); }
}
