/* ═══════════════════════════════════════════════════════════════
   OKAWARI SPA — Main Stylesheet v1.0
   Design: Dark Forest Green + Gold + Cream
   Inspired by: en.ceoljapan.com
   Target: US investors, B2B luxury wellness
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --black:     #060c06;
  --forest:    #0d1a0d;
  --moss:      #1a2e1a;
  --pine:      #2c4a2c;
  --gold:      #c8a44a;
  --gold-l:    #e2c06a;
  --gold-d:    #8a6e2a;
  --cream:     #f2eeea;
  --mist:      #e0dbd4;
  --slate:     #8a9aa4;
  --smoke:     #6a7870;
  --white:     #ffffff;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --jp:        'Noto Serif JP', serif;
  --sans:      'Jost', sans-serif;
  --nav-h:     68px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --max-w:     1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--forest); color: var(--cream); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 2.5rem; }

/* ── Page Overlay (transition) ──────────────────────────────── */
.page-overlay {
  position: fixed; inset: 0; background: var(--forest);
  z-index: 9999; pointer-events: none;
  opacity: 0; transition: opacity .35s var(--ease);
}
.page-overlay.active { opacity: 1; pointer-events: all; }

/* ── Typography ─────────────────────────────────────────────── */
.sec-eye {
  font-family: var(--sans); font-size: .6875rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-d);
  margin-bottom: .75rem;
}
.sec-title {
  font-family: var(--serif); font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300; line-height: 1.05; color: var(--cream);
}
.sec-rule {
  width: 2.25rem; height: 1px; background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.sec-body {
  font-size: .9375rem; font-weight: 300; line-height: 1.85; color: var(--smoke);
  max-width: 480px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold, .btn-ghost, .btn-dark, .btn-ghost-dark {
  display: inline-block; font-family: var(--sans);
  font-size: .6875rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; padding: .875rem 2rem;
  transition: all .25s var(--ease); cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--forest); border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(242,238,234,.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--forest); color: var(--gold); border: 1px solid var(--gold); }
.btn-dark:hover { background: var(--black); }
.btn-ghost-dark { background: transparent; color: var(--ink, #141416); border: 1px solid rgba(13,26,13,.2); }
.btn-ghost-dark:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ── Reveal Animation ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ══════════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); transition: background .4s var(--ease), border-color .4s;
}
.site-header.scrolled {
  background: rgba(6,12,6,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,164,74,.1);
}
.header-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(200,164,74,.4);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark--sm { width: 34px; height: 34px; }
.logo-kanji { font-family: var(--jp); font-size: 1rem; color: var(--gold); line-height: 1; }
.logo-text { display: flex; flex-direction: column; gap: .1rem; }
.logo-name { font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); }
.logo-sub  { font-size: .5625rem; font-weight: 300; letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); }

/* Nav links */
.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2.25rem; }
.nav-list a {
  font-size: .6875rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--smoke);
  position: relative; transition: color .2s;
}
.nav-list a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-list a:hover, .nav-list .current-menu-item > a { color: var(--gold-l); }
.nav-list a:hover::after, .nav-list .current-menu-item > a::after { width: 100%; }

/* Header CTA */
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-enquire {
  font-size: .6875rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; padding: .625rem 1.375rem;
  border: 1px solid var(--gold); color: var(--gold);
  transition: all .25s var(--ease);
}
.nav-enquire:hover { background: var(--gold); color: var(--forest); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--cream); transition: transform .3s var(--ease), opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 99;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner { padding: 3rem 2.5rem; display: flex; flex-direction: column; }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-list li { border-bottom: 1px solid rgba(200,164,74,.08); }
.mobile-nav-list a {
  display: block; padding: 1.25rem 0;
  font-family: var(--serif); font-size: 2.25rem; font-weight: 300; color: var(--cream);
  transition: color .2s;
}
.mobile-nav-list a:hover { color: var(--gold); }
.mobile-enquire {
  display: inline-block; margin-top: 2rem;
  font-size: .6875rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; padding: .875rem 2rem;
  border: 1px solid var(--gold); color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; overflow: hidden;
  background: var(--black);
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,12,6,.85) 0%, rgba(6,12,6,.4) 60%, rgba(6,12,6,.2) 100%);
}
.hero-kanji-watermark {
  position: absolute; right: -1rem; bottom: -3rem;
  font-family: var(--jp); font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 200; color: rgba(200,164,74,.04);
  line-height: 1; user-select: none; pointer-events: none;
}
.hero-gold-wave {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 280px;
  opacity: .3; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem;
  padding-top: var(--nav-h);
}
.hero-vline {
  position: absolute; left: 2rem; top: var(--nav-h); bottom: 0;
  width: 1px; background: rgba(200,164,74,.1);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: .625rem; font-weight: 400; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold-d); margin-bottom: 1.75rem;
  animation: fadeUp .8s .1s both;
}
.hero-eyebrow-dash { display: block; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-h1 {
  font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300; line-height: .95; color: var(--white);
  animation: fadeUp .8s .25s both;
}
.hero-h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-jp {
  font-family: var(--jp); font-size: .8125rem; font-weight: 200;
  letter-spacing: .35em; color: rgba(200,164,74,.45); margin-top: .875rem;
  animation: fadeUp .8s .4s both;
}
.hero-rule { width: 2.25rem; height: 1px; background: rgba(200,164,74,.3); margin: 1.75rem 0; animation: fadeUp .8s .5s both; }
.hero-body {
  font-size: .9375rem; font-weight: 300; line-height: 1.8; color: var(--smoke);
  max-width: 440px; margin-bottom: 2.5rem;
  animation: fadeUp .8s .6s both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .75s both; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  animation: fadeUp .8s 1s both;
}
.hero-scroll span {
  font-size: .5rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--smoke);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: rgba(200,164,74,.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{height:24px;opacity:.3} 50%{height:44px;opacity:.7} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════════ */
.marquee-band {
  background: var(--black); overflow: hidden; padding: .875rem 0;
  border-top: 1px solid rgba(200,164,74,.07);
  border-bottom: 1px solid rgba(200,164,74,.07);
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-size: .625rem; font-weight: 300; letter-spacing: .2em;
  text-transform: uppercase; color: var(--smoke); padding: 0 1.75rem;
  display: inline-flex; align-items: center; gap: 1.75rem;
}
.marquee-sep { color: var(--gold); font-size: .4rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-band:hover .marquee-track { animation-play-state: paused; }

/* ══════════════════════════════════════════════════════════════
   CONCEPT INTRO
   ══════════════════════════════════════════════════════════════ */
.concept-intro { background: var(--forest); padding: 7rem 0; }
.concept-intro-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
}
.concept-intro-left .sec-title { color: var(--cream); }
.concept-pillars { display: flex; flex-direction: column; gap: 0; }
.concept-pillar {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid rgba(200,164,74,.1);
}
.concept-pillar:first-child { border-top: 1px solid rgba(200,164,74,.1); }
.pillar-kanji {
  font-family: var(--jp); font-size: 2rem; font-weight: 200;
  color: rgba(200,164,74,.3); line-height: 1; flex-shrink: 0; margin-top: .25rem;
}
.pillar-name {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  color: var(--cream); margin-bottom: .5rem; line-height: 1.2;
}
.pillar-desc { font-size: .8125rem; font-weight: 300; line-height: 1.8; color: var(--smoke); }

/* ══════════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════════ */
.stats-section { background: var(--moss); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(200,164,74,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--jp); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 200; color: var(--gold); line-height: 1; margin-bottom: .625rem;
}
.stat-label {
  font-size: .5625rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--pine); line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   FOR WHO
   ══════════════════════════════════════════════════════════════ */
.for-who { background: var(--cream); padding: 7rem 0; }
.for-who .sec-title { color: var(--forest); }
.for-who .sec-eye { color: var(--gold-d); }
.for-who-head { margin-bottom: 4rem; }
.for-who-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid rgba(13,26,13,.1); }
.for-who-card {
  padding: 2.75rem 2.25rem; border-right: 1px solid rgba(13,26,13,.1);
  transition: background .3s var(--ease);
}
.for-who-card:last-child { border-right: none; }
.for-who-card:hover { background: var(--mist); }
.for-who-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: rgba(13,26,13,.08); line-height: 1; margin-bottom: 1rem;
}
.for-who-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--forest); margin-bottom: .625rem; line-height: 1.2;
}
.for-who-rule { width: 1.5rem; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.for-who-body { font-size: .8125rem; font-weight: 300; line-height: 1.85; color: var(--pine); }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--black); padding: 7rem 0; }
.hiw-head { margin-bottom: 4rem; }
.hiw-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0;
}
.hiw-step {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200,164,74,.1);
  background: rgba(200,164,74,.02);
}
.hiw-connector {
  width: 40px; height: 1px; background: rgba(200,164,74,.2);
  flex-shrink: 0; margin: 0 .5rem;
}
.hiw-step-num {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  color: rgba(200,164,74,.15); line-height: 1; margin-bottom: .75rem;
}
.hiw-step-title {
  font-family: var(--serif); font-size: 1.125rem; font-weight: 400;
  color: var(--cream); margin-bottom: .625rem; line-height: 1.25;
}
.hiw-step-desc { font-size: .75rem; font-weight: 300; line-height: 1.8; color: var(--smoke); }

/* ══════════════════════════════════════════════════════════════
   JOURNAL
   ══════════════════════════════════════════════════════════════ */
.journal-section { background: var(--mist); padding: 7rem 0; }
.journal-section .sec-title { color: var(--forest); }
.journal-section .sec-eye { color: var(--gold-d); }
.journal-head { margin-bottom: 4rem; }
.journal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.journal-card {
  background: var(--cream); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.journal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.journal-card-img { display: block; aspect-ratio: 4/3; overflow: hidden; }
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.journal-card:hover .journal-card-img img { transform: scale(1.04); }
.journal-card-body { padding: 1.75rem; }
.journal-card-date {
  font-size: .5625rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--smoke); margin-bottom: .5rem;
}
.journal-card-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 300; color: var(--forest); line-height: 1.3; }
.journal-card-title a { transition: color .2s; }
.journal-card-title a:hover { color: var(--pine); }
.journal-card-rule { width: 1.25rem; height: 1px; background: var(--gold); margin: .875rem 0; }
.journal-card-excerpt { font-size: .8125rem; font-weight: 300; line-height: 1.75; color: var(--pine); margin-bottom: 1.25rem; }
.journal-card-link {
  font-size: .5625rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--forest); transition: color .2s;
}
.journal-card-link:hover { color: var(--pine); }
.journal-cta { text-align: center; margin-top: 3.5rem; }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.cta-section { background: var(--gold); padding: 6rem 0; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; padding: 0 2.5rem; }
.cta-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300; color: var(--forest); line-height: 1.05; margin-bottom: .5rem;
}
.cta-rule { width: 2.25rem; height: 1px; background: rgba(13,26,13,.25); margin: 1.5rem auto; }
.cta-body { font-size: .9375rem; font-weight: 300; line-height: 1.8; color: rgba(13,26,13,.6); margin-bottom: 2.5rem; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--black); padding: 4.5rem 0 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem 3.5rem;
  display: grid; grid-template-columns: 260px 1fr; gap: 4rem;
  border-bottom: 1px solid rgba(200,164,74,.07);
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-tagline {
  font-family: var(--serif); font-size: .9375rem; font-style: italic;
  font-weight: 300; color: var(--pine); line-height: 1.65; margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .625rem; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(200,164,74,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: .5625rem; font-weight: 500; color: var(--smoke);
  transition: all .2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.footer-col-title {
  font-size: .5625rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pine); margin-bottom: 1.25rem;
}
.footer-link {
  display: block; font-size: .8125rem; font-weight: 300;
  color: var(--smoke); margin-bottom: .75rem; transition: color .2s;
}
.footer-link:hover { color: var(--gold); }
.footer-consult {
  display: block; font-size: .8125rem; font-weight: 400;
  color: var(--smoke); margin-top: .25rem; transition: color .2s, gap .2s;
}
.footer-consult:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 1.375rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .5625rem; font-weight: 300; color: rgba(106,120,112,.5); }
.footer-ceol { font-size: .5625rem; font-weight: 300; color: rgba(106,120,112,.4); }
.footer-ceol a { color: rgba(106,120,112,.5); transition: color .2s; }
.footer-ceol a:hover { color: var(--smoke); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .5625rem; font-weight: 300; color: rgba(106,120,112,.4); transition: color .2s; }
.footer-legal a:hover { color: var(--smoke); }

/* ══════════════════════════════════════════════════════════════
   SINGLE POST
   ══════════════════════════════════════════════════════════════ */
.single-post { background: var(--cream); }
.post-header { background: var(--forest); padding: calc(var(--nav-h) + 4rem) 0 4rem; text-align: center; }
.post-meta {
  font-size: .5625rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--smoke);
  display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 1.25rem;
}
.meta-sep { color: var(--gold); }
.post-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--cream); line-height: 1.05; margin-bottom: .5rem;
}
.post-rule { width: 2.25rem; height: 1px; background: var(--gold); margin: 1.5rem auto; }
.post-excerpt { font-size: 1.0625rem; font-weight: 300; color: var(--smoke); line-height: 1.7; }
.post-hero-img { max-height: 540px; overflow: hidden; }
.post-hero-img img { width: 100%; height: 540px; object-fit: cover; }
.post-content {
  padding: 4rem 0; font-size: 1.0625rem; font-weight: 300;
  line-height: 1.9; color: var(--pine);
}
.post-content h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--forest); margin: 3rem 0 1.25rem; }
.post-content h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--forest); margin: 2.5rem 0 1rem; }
.post-content p { margin-bottom: 1.75rem; }
.post-content a { color: var(--forest); border-bottom: 1px solid rgba(13,26,13,.2); transition: border-color .2s; }
.post-content a:hover { border-color: var(--forest); }
.post-content blockquote { border-left: 2px solid var(--gold); padding-left: 1.75rem; margin: 2.5rem 0; font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--pine); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 0; border-top: 1px solid var(--mist); margin-top: 2rem; }
.post-nav a { font-size: .75rem; font-weight: 400; color: var(--pine); line-height: 1.5; transition: color .2s; }
.post-nav a:hover { color: var(--forest); }
.post-nav div:last-child { text-align: right; }
.related-posts { background: var(--mist); padding: 5rem 0; }
.related-posts .sec-eye { margin-bottom: 2.5rem; }

/* Archive */
.archive-header { background: var(--forest); padding: calc(var(--nav-h) + 4rem) 0 4rem; text-align: center; }
.archive-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 300; color: var(--cream); }
.archive-sub { font-size: .9375rem; font-weight: 300; color: var(--smoke); margin-top: .5rem; }
.archive-posts { background: var(--mist); padding: 5rem 0; }
.no-posts { font-size: .9375rem; color: var(--smoke); text-align: center; padding: 3rem 0; }
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; }
.pagination .page-numbers {
  font-size: .6875rem; font-weight: 400; letter-spacing: .1em;
  padding: .5rem .875rem; border: 1px solid rgba(13,26,13,.15); color: var(--pine); transition: all .2s;
}
.pagination .current, .pagination .page-numbers:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .hiw-connector { display: none; }
  .concept-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container, .container--narrow { padding: 0 1.5rem; }
  .primary-nav, .nav-enquire { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-content { padding: 0 1.5rem; padding-top: var(--nav-h); }
  .hero-h1 { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero-vline { display: none; }
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(200,164,74,.08); }
  .concept-intro, .for-who, .how-it-works, .journal-section { padding: 4.5rem 0; }
  .for-who-grid { grid-template-columns: 1fr; }
  .for-who-card { border-right: none; border-bottom: 1px solid rgba(13,26,13,.1); }
  .hiw-steps { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }
  .header-inner { padding: 0 1.5rem; }
}
