/* ============================================================
   Legacy Law — Wills, Probate & Estate Planning
   Heritage green · cream · antique gold · classic serif
   ============================================================ */

:root {
  /* Palette — deep heritage green + cream + antique gold */
  --green-950: #11231b;
  --green-900: #16301f;
  --green-800: #1d3d29;
  --green-700: #244c33;
  --green-600: #2f6041;
  --green-500: #3f7a53;
  --green-300: #7fa98c;
  --green-100: #d7e4db;

  --gold-700: #9a7727;
  --gold-600: #b08b34;
  --gold-500: #c4a049;
  --gold-400: #d6b66a;
  --gold-200: #ecdcb4;

  --cream-50: #fbf8f1;
  --cream-100: #f6f1e6;
  --cream-200: #efe7d6;
  --cream-300: #e4d8c1;

  --paper: #fcfaf4;
  --white: #ffffff;
  --ink: #1a2a21;
  --ink-soft: #41544a;
  --muted: #6c7d72;
  --line: rgba(29, 61, 41, 0.12);
  --line-gold: rgba(154, 119, 39, 0.30);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Spectral", Georgia, serif;
  --sans: "Spectral", Georgia, serif;

  /* Shape & motion */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 6px 22px rgba(17, 35, 27, 0.08);
  --shadow: 0 22px 56px rgba(17, 35, 27, 0.14);
  --shadow-lg: 0 44px 100px rgba(17, 35, 27, 0.26);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1220px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  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: 600;
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: var(--green-900);
}
h1 { font-size: clamp(3rem, 6.6vw, 5.6rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
em { font-style: italic; color: var(--gold-700); }

.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); }
.cream-grad { background: linear-gradient(180deg, var(--cream-100), var(--paper)); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px;
  background: var(--gold-600);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 30px; height: 1px; background: var(--gold-600);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em; padding: 0.95rem 1.9rem; border-radius: var(--radius);
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid {
  background: var(--green-800); color: var(--cream-50);
  box-shadow: 0 14px 34px rgba(29, 61, 41, 0.28);
}
.btn-solid:hover { background: var(--green-900); transform: translateY(-3px); box-shadow: 0 22px 46px rgba(29, 61, 41, 0.34); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--green-950); box-shadow: 0 14px 34px rgba(154, 119, 39, 0.30);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(154, 119, 39, 0.40); }
.btn-ghost {
  background: transparent; color: var(--green-800); border-color: var(--line-gold);
}
.btn-ghost:hover { border-color: var(--gold-600); background: rgba(196, 160, 73, 0.08); transform: translateY(-3px); }
.btn-light {
  background: var(--cream-50); color: var(--green-900);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline-light {
  background: transparent; color: var(--cream-50); border-color: rgba(236, 220, 180, 0.4);
}
.btn-outline-light:hover { border-color: var(--gold-400); background: rgba(236, 220, 180, 0.08); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252, 250, 244, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
}
.site-header.shrink { box-shadow: 0 8px 30px rgba(17, 35, 27, 0.10); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.25rem 0; transition: padding 0.4s var(--ease);
}
.site-header.shrink .nav { padding: 0.7rem 0; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--serif); font-weight: 600; font-size: 1.6rem;
  color: var(--green-900); letter-spacing: 0.01em; display: flex; align-items: center; gap: 0.4rem;
}
.brand-mark .crest { width: 26px; height: 26px; color: var(--gold-600); }
.brand-sub {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
  margin-top: 0.35rem; margin-left: 2.55rem;
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.03em; color: var(--ink-soft); position: relative; padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold-600); transition: width 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-900); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--green-800);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--gold-600); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--green-900); transition: transform 0.35s var(--ease), opacity 0.3s; }
.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;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(196, 160, 73, 0.10), transparent 60%),
    linear-gradient(180deg, var(--cream-50), var(--paper));
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 7rem);
}
.hero-rule {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 46px; mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; position: relative;
}
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero-tag {
  font-size: 1.18rem; color: var(--ink-soft); max-width: 32rem; margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-trust {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.hero-trust .badge-reg {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.86rem; color: var(--ink-soft); font-weight: 600;
}
.hero-trust .badge-reg svg { width: 30px; height: 30px; color: var(--gold-600); }
.hero-trust .stars { color: var(--gold-500); letter-spacing: 0.12em; font-size: 1rem; }
.hero-trust .rate { font-family: var(--sans); font-size: 0.88rem; color: var(--ink-soft); }
.hero-trust .rate b { color: var(--green-900); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-gold);
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 6px rgba(252, 250, 244, 0.6), inset 0 0 0 7px var(--line-gold);
  border-radius: var(--radius-lg);
}
.hero-frame img { width: 100%; aspect-ratio: 5/4.3; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--green-900); color: var(--cream-50);
  padding: 1.1rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--gold-700);
}
.hero-badge .n { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--gold-400); }
.hero-badge .l { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-100); margin-top: 0.3rem; }
.hero-seal {
  position: absolute; right: -20px; top: 28px;
  background: var(--cream-50); border: 1px solid var(--line-gold);
  border-radius: 50%; width: 104px; height: 104px;
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow); padding: 0.6rem;
}
.hero-seal svg { width: 28px; height: 28px; color: var(--gold-600); margin-bottom: 0.2rem; }
.hero-seal span { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-800); font-weight: 600; line-height: 1.3; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-900); padding: 1.4rem 0; }
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.trust-strip-inner span {
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-100); display: inline-flex; align-items: center; gap: 0.6rem; opacity: 0.9;
}
.trust-strip-inner svg { width: 18px; height: 18px; color: var(--gold-400); }

/* ---------- Stats ---------- */
.stats { background: var(--cream-100); border-block: 1px solid var(--line); }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(2.6rem, 5vw, 4rem) 0;
}
.stat { text-align: center; padding: 0.5rem 1rem; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--line-gold);
}
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--green-800); line-height: 1; }
.stat .n .suf { color: var(--gold-600); }
.stat .l { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem; }

/* ---------- Section headings ---------- */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head.center { text-align: center; max-width: 44rem; margin-inline: auto; }
.sec-head.split-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; }
.sec-head.split-head p { color: var(--ink-soft); font-size: 1.08rem; }
.sec-head h2 { margin-top: 0.2rem; }

/* ---------- Services grid (home) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.3rem 2rem; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400)); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-100); border: 1px solid var(--line-gold); margin-bottom: 1.4rem;
}
.svc-ico svg { width: 26px; height: 26px; color: var(--green-700); }
.svc-card h3 { margin-bottom: 0.6rem; }
.svc-card p { color: var(--ink-soft); font-size: 0.99rem; margin-bottom: 1.2rem; }
.svc-card .price-from {
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 600; display: flex; align-items: baseline; gap: 0.4rem;
}
.svc-card .price-from b { font-family: var(--serif); font-size: 1.5rem; color: var(--green-900); letter-spacing: 0; }
.svc-card .more {
  margin-top: 1.3rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; color: var(--green-700);
}
.svc-card .more svg { transition: transform 0.4s var(--ease); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { position: relative; }
.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 5/4.6; border: 1px solid var(--line-gold);
}
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 6px rgba(252, 250, 244, 0.55), inset 0 0 0 7px var(--line-gold);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.tab {
  position: absolute; bottom: 24px; left: -18px;
  background: var(--cream-50); border: 1px solid var(--line-gold);
  border-radius: var(--radius); padding: 0.85rem 1.2rem; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 0.85rem;
}
.tab svg { width: 26px; height: 26px; color: var(--gold-600); flex-shrink: 0; }
.tab b { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--green-900); }
.tab span { font-family: var(--sans); font-size: 0.78rem; color: var(--muted); }
.split-copy .lead { font-size: 1.16rem; color: var(--ink-soft); margin-bottom: 1.4rem; line-height: 1.7; }
.split-copy h2 { margin-bottom: 1.2rem; }

.feature-list { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-800); display: grid; place-items: center;
}
.feature-list .ico svg { width: 20px; height: 20px; color: var(--gold-400); }
.feature-list h4 { font-size: 1.18rem; margin-bottom: 0.2rem; }
.feature-list p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Process (numbered) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.proc {
  position: relative; padding: 2.2rem 1.6rem 1.8rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.proc:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.proc .idx {
  font-family: var(--serif); font-size: 3rem; color: var(--gold-400); line-height: 1;
  display: block; margin-bottom: 0.8rem;
}
.proc h4 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.proc p { color: var(--ink-soft); font-size: 0.94rem; }
.proc::after {
  content: ""; position: absolute; right: -0.95rem; top: 50%; width: 1.5rem; height: 1px;
  background: var(--line-gold); display: none;
}

/* ---------- Quote band ---------- */
.quote-band {
  background:
    radial-gradient(120% 90% at 10% 0%, rgba(196, 160, 73, 0.10), transparent 55%),
    var(--green-900);
}
.quote-band .eyebrow { color: var(--gold-400); }
.quote-band .eyebrow::before, .quote-band .eyebrow::after { background: var(--gold-400); }
.quote-band h2 { color: var(--cream-50); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.qcard {
  background: rgba(252, 250, 244, 0.04); border: 1px solid rgba(236, 220, 180, 0.16);
  border-radius: var(--radius-lg); padding: 2.1rem 1.9rem; position: relative;
}
.qcard .mark { font-family: var(--serif); font-size: 4rem; line-height: 0.6; color: var(--gold-500); opacity: 0.5; }
.qcard .stars { color: var(--gold-400); letter-spacing: 0.1em; font-size: 0.95rem; margin: 0.6rem 0 1rem; }
.qcard blockquote { font-family: var(--serif); font-size: 1.22rem; font-style: italic; color: var(--cream-100); line-height: 1.5; margin-bottom: 1.5rem; }
.qmeta { display: flex; align-items: center; gap: 0.85rem; }
.qmeta .av {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-600); color: var(--green-950); font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
}
.qmeta b { display: block; font-family: var(--sans); font-size: 0.94rem; color: var(--cream-50); }
.qmeta span { font-family: var(--sans); font-size: 0.8rem; color: var(--green-300); }

/* ---------- Agent split (cream) ---------- */
.sand-band { background: linear-gradient(180deg, var(--cream-100), var(--cream-50)); }

/* ---------- Insights teaser ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post {
  border-top: 2px solid var(--green-800); padding-top: 1.4rem;
  transition: border-color 0.4s;
}
.post:hover { border-color: var(--gold-600); }
.post .meta { display: flex; align-items: center; gap: 0.6rem; font-family: var(--sans); font-size: 0.78rem; color: var(--muted); margin-bottom: 0.8rem; }
.post .meta .type { color: var(--gold-700); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.post .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-gold); }
.post h3 { font-size: 1.4rem; margin-bottom: 0.6rem; transition: color 0.3s; }
.post:hover h3 { color: var(--green-700); }
.post p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1rem; }
.post .more, .more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.84rem; color: var(--green-700);
}
.post .more svg { transition: transform 0.4s var(--ease); }
.post:hover .more svg { transform: translateX(4px); }
.sec-foot { text-align: center; margin-top: 3rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(100% 120% at 90% 10%, rgba(196, 160, 73, 0.14), transparent 55%),
    var(--green-950);
  text-align: center; padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.cta-band .eyebrow { justify-content: center; color: var(--gold-400); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--gold-400); }
.cta-band h2 { color: var(--cream-50); max-width: 22rem; margin: 0 auto 1.2rem; }
.cta-band p { color: var(--green-100); max-width: 34rem; margin: 0 auto 2.2rem; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 90% at 80% -20%, rgba(196, 160, 73, 0.10), transparent 55%),
    linear-gradient(180deg, var(--green-950), var(--green-900));
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  color: var(--cream-50);
}
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.page-hero h1 { color: var(--cream-50); font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin-bottom: 1.1rem; }
.page-hero p { color: var(--green-100); max-width: 38rem; font-size: 1.14rem; }
.crumbs { font-family: var(--sans); font-size: 0.82rem; color: var(--green-300); margin-bottom: 1.6rem; letter-spacing: 0.04em; }
.crumbs a:hover { color: var(--gold-400); }
.crumbs span { color: var(--gold-400); }

/* ---------- Filter bar (services) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em;
  padding: 0.6rem 1.3rem; border-radius: 100px; border: 1.5px solid var(--line-gold);
  background: transparent; color: var(--green-800); cursor: pointer;
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.filter-btn:hover { transform: translateY(-2px); border-color: var(--gold-600); }
.filter-btn.active { background: var(--green-800); color: var(--cream-50); border-color: var(--green-800); }

.fee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fee-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s, opacity 0.4s;
  position: relative; overflow: hidden;
}
.fee-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.fee-card.is-hidden { display: none; }
.fee-card .cat-tag {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700; margin-bottom: 0.9rem;
}
.fee-card .svc-ico { margin-bottom: 1.1rem; }
.fee-card h3 { font-size: 1.5rem; margin-bottom: 0.55rem; }
.fee-card > p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.3rem; }
.fee-card ul.incl { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.6rem; }
.fee-card ul.incl li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-soft); font-family: var(--sans);
}
.fee-card ul.incl li svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; margin-top: 0.25rem; }
.fee-foot { margin-top: auto; padding-top: 1.3rem; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.fee-foot .price { font-family: var(--serif); font-size: 2rem; color: var(--green-900); line-height: 1; }
.fee-foot .price small { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; font-weight: 600; }
.fee-foot .fixed-pill {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-700); font-weight: 700; background: var(--green-100); padding: 0.35rem 0.7rem; border-radius: 100px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4rem); 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-sm);
}
.enquiry-form h3 { margin-bottom: 0.4rem; }
.enquiry-form .form-intro { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-800); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--cream-50); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-600); box-shadow: 0 0 0 3px rgba(196, 160, 73, 0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.hp { position: absolute; left: -9999px; opacity: 0; }
[data-form-note] {
  margin-top: 1rem; font-family: var(--sans); font-size: 0.94rem; font-weight: 600;
  color: var(--green-700); min-height: 1.2rem; display: flex; align-items: center; gap: 0.5rem;
}
[data-form-note].show { animation: fadeUp 0.6s var(--ease) both; }

.info-card {
  background: var(--green-900); color: var(--cream-50); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.5rem;
}
.info-card h3 { color: var(--cream-50); margin-bottom: 1.4rem; }
.info-line { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid rgba(236, 220, 180, 0.14); }
.info-line:last-child { border-bottom: none; }
.info-line svg { width: 20px; height: 20px; color: var(--gold-400); flex-shrink: 0; margin-top: 0.25rem; }
.info-line .lab { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-300); }
.info-line .val { font-size: 1rem; color: var(--cream-100); }
.info-line a:hover { color: var(--gold-400); }

.hours-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.5rem;
}
.hours-card h3 { margin-bottom: 1.2rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-family: var(--sans); font-size: 0.94rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--ink-soft); }
.hours-row .time { color: var(--green-900); font-weight: 600; }
.hours-row.closed .time { color: var(--muted); font-weight: 400; }

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

/* ---------- Blog ---------- */
.featured-post {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: clamp(3rem, 6vw, 5rem);
}
.featured-post .fp-media { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.featured-post .fp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.featured-post:hover .fp-media img { transform: scale(1.05); }
.featured-post .fp-body { padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3rem) 0; }
.featured-post .fp-tag {
  display: inline-block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-950); background: var(--gold-400); padding: 0.35rem 0.8rem; border-radius: 100px; font-weight: 700; margin-bottom: 1rem;
}
.featured-post h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.9rem; }
.featured-post p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.fp-meta { display: flex; align-items: center; gap: 0.7rem; font-family: var(--sans); font-size: 0.84rem; color: var(--muted); margin-bottom: 1.6rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.blog-card .bc-media { aspect-ratio: 3/2; overflow: hidden; position: relative; background: var(--green-800); }
.blog-card .bc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.blog-card:hover .bc-media img { transform: scale(1.06); }
.blog-card .bc-media.illus { display: grid; place-items: center; }
.blog-card .bc-media.illus svg { width: 40%; height: auto; color: var(--gold-400); opacity: 0.85; }
.blog-card .bc-body { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { display: flex; align-items: center; gap: 0.55rem; font-family: var(--sans); font-size: 0.76rem; color: var(--muted); margin-bottom: 0.7rem; }
.blog-card .meta .type { color: var(--gold-700); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.blog-card .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-gold); }
.blog-card h3 { font-size: 1.32rem; margin-bottom: 0.5rem; }
.blog-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.1rem; }
.blog-card .more { margin-top: auto; }

/* Newsletter inset */
.newsletter {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 3.6rem);
  text-align: center; color: var(--cream-50); margin-top: clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.newsletter .eyebrow { justify-content: center; color: var(--gold-400); }
.newsletter .eyebrow::before, .newsletter .eyebrow::after { background: var(--gold-400); }
.newsletter h2 { color: var(--cream-50); margin-bottom: 0.8rem; }
.newsletter p { color: var(--green-100); max-width: 32rem; margin: 0 auto 1.8rem; }
.newsletter form { display: flex; gap: 0.7rem; max-width: 26rem; margin: 0 auto; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 180px; font-family: var(--body); font-size: 1rem; padding: 0.9rem 1.1rem;
  border-radius: var(--radius); border: 1.5px solid rgba(236, 220, 180, 0.3); background: rgba(252, 250, 244, 0.08); color: var(--cream-50);
}
.newsletter input::placeholder { color: var(--green-300); }
.newsletter input:focus { outline: none; border-color: var(--gold-400); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: var(--green-100); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(236, 220, 180, 0.14); }
.footer-brand .brand-mark { color: var(--cream-50); }
.footer-brand .brand-mark .crest { color: var(--gold-400); }
.footer-brand p { margin: 1.2rem 0 1.4rem; color: var(--green-300); font-size: 0.96rem; max-width: 26rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(236, 220, 180, 0.2); transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.footer-social a svg { width: 17px; height: 17px; color: var(--green-100); }
.footer-social a:hover { background: var(--gold-600); border-color: var(--gold-600); transform: translateY(-3px); }
.footer-social a:hover svg { color: var(--green-950); }
.footer-col h4 { color: var(--gold-400); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.2rem; }
.footer-col a { display: block; padding: 0.4rem 0; color: var(--green-100); font-size: 0.95rem; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 6px; }
.footer-nap { font-style: normal; color: var(--green-100); font-size: 0.95rem; line-height: 2; }
.footer-nap a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding: 1.8rem 0; font-family: var(--sans); font-size: 0.82rem; color: var(--green-300);
}
.footer-disclaimer {
  background: var(--green-900); text-align: center; padding: 1.1rem 1.5rem;
  font-family: var(--sans); font-size: 0.78rem; color: var(--green-300); line-height: 1.6;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; }
[data-d="1"] { --rd: 0.12s; } [data-d="2"] { --rd: 0.24s; } [data-d="3"] { --rd: 0.36s; } [data-d="4"] { --rd: 0.48s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream-50); border-bottom: 1px solid var(--line);
    padding: 1rem 1.3rem 1.5rem; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav { position: relative; }
  .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: 540px; }
  .svc-grid, .process-grid, .quotes-grid, .journal-grid, .fee-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .sec-head.split-head { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .stat:nth-child(3)::before { display: none; }
  .featured-post .fp-body { padding: 2rem; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .svc-grid, .process-grid, .quotes-grid, .journal-grid, .fee-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge { left: 8px; }
  .hero-seal { right: 8px; }
  .tab { left: 8px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc-card, .proc, .blog-card, .fee-card { transition: none !important; }
  [data-parallax] { transform: none !important; }
}
