/* ============================================================
   Haven Family Law — Compassionate Family & Divorce Law
   Warm sage + warm cream · gentle serif + humanist sans
   ============================================================ */

:root {
  /* Palette — soft sage greens + warm cream + clay accent */
  --sage-900: #233127;
  --sage-800: #2f4435;
  --sage-700: #3d5a47;
  --sage-600: #4f7058;
  --sage-500: #6b8e72;
  --sage-400: #8eab92;
  --sage-300: #b7cbb8;
  --sage-200: #d8e4d6;
  --sage-100: #ecf2e9;
  --clay-600: #b4663f;
  --clay-500: #c97d54;
  --clay-400: #dd9a73;
  --clay-200: #f0d6c3;
  --cream-100: #faf6ee;
  --cream-200: #f4ece0;
  --cream-300: #ece0cf;
  --paper: #fdfbf6;
  --white: #ffffff;
  --ink: #2a3329;
  --ink-soft: #51604f;
  --muted: #7c887a;
  --line: rgba(61, 90, 71, 0.12);
  --line-strong: rgba(61, 90, 71, 0.2);

  /* Type */
  --serif: "Newsreader", Georgia, serif;
  --sans: "Mona Sans", "Mona-Sans", system-ui, sans-serif;

  /* Shape & motion */
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --shadow-sm: 0 4px 18px rgba(45, 68, 53, 0.07);
  --shadow: 0 18px 50px rgba(45, 68, 53, 0.12);
  --shadow-lg: 0 40px 90px rgba(35, 49, 39, 0.2);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1230px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 400; line-height: 1.1;
  letter-spacing: -0.015em; color: var(--sage-900);
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 3.9vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
em { font-style: italic; color: var(--clay-600); }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.cream { background: var(--cream-100); }
.sage-soft { background: linear-gradient(180deg, var(--sage-100), var(--paper)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.005em; padding: 0.95rem 1.75rem; border-radius: 100px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: linear-gradient(135deg, var(--sage-700), var(--sage-500));
  color: var(--cream-100); box-shadow: 0 12px 30px rgba(61, 90, 71, 0.3);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(61, 90, 71, 0.4); }
.btn-clay {
  background: linear-gradient(135deg, var(--clay-500), var(--clay-600));
  color: #fff6ef; box-shadow: 0 12px 30px rgba(180, 102, 63, 0.28);
}
.btn-clay:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(180, 102, 63, 0.38); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--sage-800); }
.btn-ghost:hover { border-color: var(--sage-500); color: var(--sage-700); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.45); backdrop-filter: blur(6px); }
.btn-light:hover { background: var(--cream-100); color: var(--sage-800); transform: translateY(-3px); }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--sage-500), var(--clay-400)); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.sec-head { margin-bottom: clamp(2.5rem, 4vw, 3.6rem); }
.sec-head.center { text-align: center; max-width: 730px; margin-inline: auto; }
.sec-head .lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 580px; margin-top: 1rem; }
.split-head { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2rem; align-items: end; }
.split-head p { color: var(--ink-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.7rem 0;
  background: rgba(253, 251, 246, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
}
.site-header.shrink {
  padding: 0.3rem 0;
  background: rgba(253, 251, 246, 0.94);
  box-shadow: 0 8px 30px rgba(45, 68, 53, 0.08);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 500;
  color: var(--sage-800); letter-spacing: -0.01em; display: flex; align-items: center; gap: 0.45rem;
}
.brand-mark .leaf { color: var(--sage-500); display: inline-flex; }
.brand-mark .leaf svg { width: 22px; height: 22px; }
.brand-sub {
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted);
  margin-top: 0.32rem; margin-left: 2.05rem;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 500; font-size: 0.97rem; color: var(--ink-soft);
  position: relative; padding: 0.3rem 0; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--clay-500); border-radius: 2px; transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-800); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.92rem; color: var(--sage-700);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--clay-500); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--sage-800); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(1100px 620px at 78% -8%, var(--sage-100) 0%, transparent 60%),
    radial-gradient(800px 600px at 8% 100%, var(--cream-200) 0%, transparent 55%),
    var(--paper);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; z-index: 0; pointer-events: none; }
.hero-blob.a { width: 460px; height: 460px; top: -120px; right: -80px; background: radial-gradient(circle, var(--sage-300), transparent 70%); }
.hero-blob.b { width: 380px; height: 380px; bottom: -140px; left: -90px; background: radial-gradient(circle, var(--clay-200), transparent 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy h1 { margin: 0.6rem 0 1.4rem; }
.hero-tag { color: var(--ink-soft); font-size: 1.13rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-trust { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; font-size: 0.95rem; color: var(--ink-soft); }
.hero-trust .stars { color: var(--clay-500); letter-spacing: 0.1em; }
.hero-trust b { color: var(--sage-800); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 7px solid var(--white);
  aspect-ratio: 4 / 3.5;
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(35, 49, 39, 0.16));
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-badge {
  position: absolute; bottom: -26px; left: -26px; z-index: 3;
  background: var(--sage-800); color: var(--cream-100); border-radius: 22px;
  padding: 1.1rem 1.35rem; box-shadow: var(--shadow); text-align: left;
  border: 5px solid var(--white);
}
.hero-badge .n { font-family: var(--serif); font-size: 2.1rem; line-height: 1; color: var(--cream-100); }
.hero-badge .l { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--sage-300); margin-top: 0.3rem; max-width: 130px; }
.hero-float {
  position: absolute; top: 22px; right: -22px; z-index: 3;
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(253, 251, 246, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 18px; padding: 0.7rem 1rem; box-shadow: var(--shadow);
}
.hero-float .dot { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--sage-100); color: var(--sage-600); }
.hero-float .dot svg { width: 20px; height: 20px; }
.hero-float .t { display: flex; flex-direction: column; line-height: 1.2; }
.hero-float .t b { color: var(--sage-800); font-size: 1rem; }
.hero-float .t span { font-size: 0.76rem; color: var(--muted); }

/* trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-100); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; padding: 1.4rem 0; }
.trust-item { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 600; color: var(--sage-700); }
.trust-item svg { width: 19px; height: 19px; color: var(--clay-500); flex-shrink: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--sage-800); color: var(--cream-100); padding: clamp(3rem, 5vw, 4.2rem) 0; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 85% 120%, rgba(201, 125, 84, 0.18), transparent 60%); }
.stats-inner { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.3rem); line-height: 1; color: var(--cream-100); display: flex; justify-content: center; align-items: baseline; gap: 0.05em; }
.stat .n .suf { color: var(--clay-400); }
.stat .l { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage-300); margin-top: 0.7rem; }
.stat + .stat { position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -1rem; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,0.12); }

/* ============================================================
   PRACTICE / CARDS
   ============================================================ */
.sec-foot { text-align: center; margin-top: clamp(2.5rem, 4vw, 3.5rem); }

.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.3s;
  overflow: hidden;
}
.pcard::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: linear-gradient(var(--sage-500), var(--clay-400)); transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage-200); }
.pcard:hover::before { transform: scaleY(1); }
.pcard .ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--sage-100); color: var(--sage-600); margin-bottom: 1.3rem; transition: background 0.3s, color 0.3s; }
.pcard:hover .ico { background: var(--sage-600); color: var(--cream-100); }
.pcard .ico svg { width: 26px; height: 26px; }
.pcard h3 { margin-bottom: 0.6rem; }
.pcard p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1.1rem; }
.pcard .more { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--clay-600); }
.pcard .more svg { transition: transform 0.35s var(--ease); }
.pcard:hover .more svg { transform: translateX(4px); }

/* ============================================================
   SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 4.4; border: 6px solid var(--white);
}
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split-media:hover .frame img { transform: scale(1.06); }
.split-media .tab {
  position: absolute; bottom: -22px; right: -16px; z-index: 3;
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--white); border-radius: 16px; padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.split-media .tab svg { width: 26px; height: 26px; color: var(--clay-500); flex-shrink: 0; }
.split-media .tab b { display: block; font-size: 0.96rem; color: var(--sage-800); }
.split-media .tab span { font-size: 0.78rem; color: var(--muted); }
.split-copy h2 { margin-bottom: 1.2rem; }
.split-copy .lead { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 1.4rem; }

.feature-list { display: flex; flex-direction: column; gap: 1.3rem; margin: 1.6rem 0; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--clay-200); color: var(--clay-600); }
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list h4 { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--sage-800); margin-bottom: 0.25rem; }
.feature-list p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step .idx {
  font-family: var(--serif); font-size: 2.6rem; color: var(--sage-300);
  line-height: 1; display: block; margin-bottom: 0.8rem;
}
.step h4 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; color: var(--sage-800); margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ============================================================
   QUOTE / TESTIMONIALS
   ============================================================ */
.quote-band { background: linear-gradient(160deg, var(--sage-800), var(--sage-700)); position: relative; overflow: hidden; }
.quote-band::after { content: ""; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(221,154,115,0.18), transparent 70%); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.qcard {
  background: rgba(253, 251, 246, 0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.9rem; backdrop-filter: blur(4px);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.qcard:hover { transform: translateY(-5px); background: rgba(253, 251, 246, 0.1); }
.qcard .stars { color: var(--clay-400); letter-spacing: 0.1em; margin-bottom: 1rem; }
.qcard blockquote { font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; color: var(--cream-100); font-style: italic; margin-bottom: 1.4rem; }
.qmeta { display: flex; align-items: center; gap: 0.8rem; }
.qmeta .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--clay-500); color: #fff; font-weight: 700; font-family: var(--sans); }
.qmeta b { display: block; color: var(--cream-100); font-size: 0.96rem; }
.qmeta span { font-size: 0.8rem; color: var(--sage-300); }

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post { border-top: 2px solid var(--line); padding-top: 1.4rem; }
.post .meta { display: flex; align-items: center; gap: 0.7rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.9rem; }
.post .meta .type { font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-600); font-size: 0.72rem; }
.post .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clay-400); }
.post h3 { margin-bottom: 0.7rem; transition: color 0.25s; }
.post h3 a:hover { color: var(--clay-600); }
.post p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1rem; }
.post .more { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; color: var(--clay-600); }
.post .more svg { transition: transform 0.35s var(--ease); }
.post:hover .more svg { transform: translateX(4px); }

/* featured post (blog page) */
.featured-post {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.featured-post .fp-media { position: relative; overflow: hidden; min-height: 340px; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1.1s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-tag { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2; background: var(--clay-500); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 100px; }
.featured-post .fp-body { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.featured-post .fp-body .meta { display: flex; gap: 0.7rem; align-items: center; font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.featured-post .fp-body h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 1rem; }
.featured-post .fp-body p { color: var(--ink-soft); margin-bottom: 1.6rem; }

/* ============================================================
   SERVICES — filter + fees
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: clamp(2.2rem, 4vw, 3rem); }
.filter-btn {
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  padding: 0.6rem 1.3rem; border-radius: 100px; border: 1.5px solid var(--line-strong);
  background: var(--white); color: var(--ink-soft); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--sage-400); color: var(--sage-700); }
.filter-btn.active { background: var(--sage-700); border-color: var(--sage-700); color: var(--cream-100); }

.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), opacity 0.4s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage-200); }
.service-card.hide { display: none; }
.service-card .sc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.service-card .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--sage-100); color: var(--sage-600); flex-shrink: 0; }
.service-card .ico svg { width: 24px; height: 24px; }
.service-card .cat-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sage-600); background: var(--sage-100); padding: 0.32rem 0.7rem; border-radius: 100px; align-self: flex-start; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.2rem; }
.service-card .fee { display: flex; align-items: baseline; gap: 0.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.service-card .fee .from { font-size: 0.78rem; color: var(--muted); }
.service-card .fee .amt { font-family: var(--serif); font-size: 1.7rem; color: var(--sage-800); }
.service-card .fee .unit { font-size: 0.82rem; color: var(--muted); }

/* fee table */
.fee-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.fee-table th, .fee-table td { text-align: left; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); }
.fee-table thead th { background: var(--sage-100); color: var(--sage-800); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr { transition: background 0.25s; }
.fee-table tbody tr:hover { background: var(--cream-100); }
.fee-table td .price { font-family: var(--serif); font-size: 1.15rem; color: var(--sage-800); }
.fee-table td small { color: var(--muted); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  background:
    radial-gradient(900px 500px at 85% -10%, var(--sage-100), transparent 60%),
    var(--cream-100);
  border-bottom: 1px solid var(--line);
}
.page-hero .crumbs { font-size: 0.84rem; color: var(--muted); margin-bottom: 1rem; }
.page-hero .crumbs a { color: var(--sage-600); }
.page-hero .crumbs a:hover { color: var(--clay-600); }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); margin-bottom: 1rem; max-width: 13ch; }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 560px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.enquiry-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow);
}
.form-confidential { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--sage-700); font-weight: 600; margin-bottom: 1.5rem; padding: 0.7rem 1rem; background: var(--sage-100); border-radius: 12px; }
.form-confidential svg { width: 18px; height: 18px; color: var(--sage-600); flex-shrink: 0; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--sage-800); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.97rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: 12px;
  background: var(--paper); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-500); box-shadow: 0 0 0 4px rgba(107, 142, 114, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
[data-form-note] { margin-top: 1rem; font-size: 0.92rem; font-weight: 600; color: var(--sage-700); min-height: 1.2rem; }
[data-form-note].show { animation: fadeUp 0.5s var(--ease); }

.contact-aside { display: flex; flex-direction: column; gap: 1.3rem; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.info-card .nap-line { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.95rem; color: var(--ink-soft); }
.info-card .nap-line:last-child { margin-bottom: 0; }
.info-card .nap-line svg { width: 19px; height: 19px; color: var(--clay-500); flex-shrink: 0; margin-top: 0.18rem; }
.info-card .nap-line a:hover { color: var(--clay-600); }
.hours-list { display: flex; flex-direction: column; gap: 0.6rem; }
.hours-list .row { display: flex; justify-content: space-between; font-size: 0.94rem; padding-bottom: 0.55rem; border-bottom: 1px dashed var(--line); }
.hours-list .row:last-child { border-bottom: none; }
.hours-list .row span:first-child { color: var(--ink-soft); }
.hours-list .row span:last-child { font-weight: 600; color: var(--sage-800); }
.hours-list .row.today { color: var(--clay-600); }
.hours-list .row.today span { color: var(--clay-600); font-weight: 700; }

.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-card svg { display: block; width: 100%; height: auto; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  text-align: center; padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: linear-gradient(135deg, var(--clay-600), var(--clay-500));
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 400px at 15% 0%, rgba(255,255,255,0.16), transparent 60%); }
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 16ch; margin: 0 auto 1.1rem; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 540px; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--sage-900); color: var(--sage-300); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-mark { color: var(--cream-100); margin-bottom: 1rem; }
.footer-brand .brand-mark .leaf { color: var(--sage-400); }
.footer-brand p { color: var(--sage-300); font-size: 0.95rem; max-width: 320px; margin-bottom: 1.4rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.06); color: var(--sage-300); transition: background 0.3s, color 0.3s, transform 0.3s; }
.footer-social a:hover { background: var(--clay-500); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--sans); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-100); margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--sage-300); font-size: 0.95rem; margin-bottom: 0.65rem; transition: color 0.25s, padding-left 0.25s; }
.footer-col a:hover { color: var(--clay-400); padding-left: 4px; }
.footer-nap { font-style: normal; color: var(--sage-300); font-size: 0.95rem; line-height: 1.9; }
.footer-nap a:hover { color: var(--clay-400); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.6rem 0; font-size: 0.85rem; color: var(--muted); }
.footer-disclaimer { background: rgba(0,0,0,0.25); color: var(--sage-400); font-size: 0.8rem; text-align: center; padding: 1.1rem 1.5rem; line-height: 1.6; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .practice-grid, .quotes-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .stat + .stat::before { display: none; }
  .split-head { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    background: var(--cream-100); padding: 2.5rem; gap: 1.5rem;
    transform: translateX(110%); transition: transform 0.45s var(--ease);
    box-shadow: var(--shadow-lg); z-index: 90;
  }
  .nav-cta { top: auto; bottom: 0; height: auto; justify-content: flex-start; transform: translateX(110%); padding-top: 0; box-shadow: none; }
  .nav.open .nav-links { transform: none; padding-bottom: 8rem; }
  .nav.open .nav-cta { transform: none; height: 100vh; justify-content: flex-end; padding-bottom: 2.5rem; pointer-events: none; }
  .nav.open .nav-cta .btn { pointer-events: auto; }
  .nav.open .nav-cta .nav-phone { pointer-events: auto; }
  .nav-toggle { display: flex; z-index: 95; }
  .nav-links a { font-size: 1.3rem; font-family: var(--serif); }
  .hero-grid, .split, .split.flip .split-media, .contact-grid, .featured-post { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .featured-post .fp-media { min-height: 260px; }
}

@media (max-width: 560px) {
  .practice-grid, .quotes-grid, .journal-grid, .steps-grid, .stats-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-float { right: 0; }
  .hero-badge { left: 0; }
  .trust-strip .wrap { justify-content: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-frame img { transform: none !important; }
}
