/* =========================================================
   Oak Capital Title — Design System
   Apple-inspired · floating glass · oak green palette
   ========================================================= */

:root {
  /* Ink & ground — warm neutrals, not cold grey */
  --ink:        #1a1d19;
  --ink-soft:   #454a44;
  --muted:      #6f756c;
  --line:       rgba(23, 85, 40, 0.10);
  --bg:         #fbfbf8;
  --bg-2:       #f2f3ec;
  --white:      #ffffff;

  /* Brand — oak */
  --brand:      #175528;   /* primary deep oak green */
  --brand-mid:  #2b7a42;
  --brand-lift: #4e9160;
  --sage:       #a6ba99;
  --sage-soft:  #cfdcc4;
  --forest:     #0d2b16;   /* near-black green, dark surfaces */

  --grad-brand: linear-gradient(120deg, #113f1e 0%, #22683a 48%, #4e9160 100%);
  --grad-sage:  linear-gradient(115deg, #e7f0dd 0%, #b9cbab 48%, #f3f8ee 100%);
  --grad-ink:   linear-gradient(160deg, #0d2b16 0%, #174526 55%, #0a2412 100%);

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.66);
  --glass-brd:    rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 20px 50px -20px rgba(13, 43, 22, 0.30);

  /* Radius & motion */
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 30px;
  --r-xl: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 24px 60px -24px rgba(13, 43, 22, 0.34);
  --shadow-soft: 0 8px 30px -12px rgba(13, 43, 22, 0.20);

  --maxw: 1180px;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(23,85,40,.14); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: clamp(70px, 10vw, 130px) 0; }
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--sage); }

h1, h2, h3 { letter-spacing: -0.024em; line-height: 1.06; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); letter-spacing: -0.012em; }
p  { color: var(--ink-soft); font-size: clamp(1rem, 1.2vw, 1.12rem); }

.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--ink-soft); }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.section-head p { margin-top: 18px; font-size: clamp(1.05rem, 1.4vw, 1.22rem); }
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* On dark surfaces the gradient flips to sage */
.hero--home .text-grad, .band .text-grad, .subhero .text-grad, .cta-card .text-grad {
  background: var(--grad-sage);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600; border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  color: #fff; background: var(--grad-brand);
  box-shadow: 0 14px 34px -12px rgba(23, 85, 40, 0.62);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(23, 85, 40, 0.72); }
.btn--ghost { color: var(--ink); background: rgba(255,255,255,0.6); border-color: var(--line); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn--light { color: var(--forest); background: #fff; }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(0,0,0,0.4); }
.btn--outline-light { color: #fff; border-color: rgba(255,255,255,0.38); background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); }
.btn--outline-light:hover { transform: translateY(-3px); background: rgba(255,255,255,0.16); }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav.scrolled {
  background: rgba(251, 251, 248, 0.80);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(23,85,40,0.09);
}
/* Logo lockup: circular oak mark + stacked wordmark */
.nav__logo { display: flex; align-items: center; gap: 11px; }
.nav__logo .lock-mark { height: 46px; width: auto; }
.nav__logo .lock-word { height: 25px; width: auto; }
.nav__logo .on-light { display: none; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-brand); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav__phone svg { width: 15px; height: 15px; color: var(--brand-mid); }
.nav__burger {
  display: none; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--line);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(250,250,246,0.985); backdrop-filter: saturate(180%) blur(26px);
  -webkit-backdrop-filter: saturate(180%) blur(26px);
  padding: 24px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-140%); transition: transform .5s var(--ease);
  box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 14px 8px; font-size: 18px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ---------- Backdrop blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: 0; pointer-events: none; }
.blob--a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(23,85,40,0.40), transparent 70%); }
.blob--b { width: 460px; height: 460px; background: radial-gradient(circle, rgba(166,186,153,0.50), transparent 70%); }
.blob--c { width: 400px; height: 400px; background: radial-gradient(circle, rgba(78,145,96,0.38), transparent 70%); }

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 96px)); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; margin-bottom: 26px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--glass-brd); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft); box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #7fc98f; box-shadow: 0 0 0 4px rgba(127,201,143,0.25); }
.hero h1 { margin-bottom: 22px; }
.hero__sub { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink-soft); max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Floating animation */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.anim-float { animation: floaty 6s ease-in-out infinite; }
.anim-float.delay { animation-delay: -3s; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden; z-index: 1;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-brand); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card__ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(23,85,40,0.12), rgba(166,186,153,0.30));
  color: var(--brand); margin-bottom: 22px;
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 1rem; }
.card p + p { margin-top: 12px; }

/* Feature chips */
.feature {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-soft); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature__ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff;
}
.feature__ico svg { width: 21px; height: 21px; }
.feature b { font-size: 1.02rem; font-weight: 650; display: block; }
.feature span { font-size: 0.92rem; color: var(--muted); }

/* ---------- Split / alternating media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media {
  position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.6); aspect-ratio: 4/3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__body h2 { margin-bottom: 20px; }
.split__body p { margin-bottom: 16px; }
.badge-pill {
  position: absolute; bottom: 18px; left: 18px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.84); backdrop-filter: blur(12px); border: 1px solid var(--glass-brd);
  font-size: 13px; font-weight: 700; color: var(--forest); box-shadow: var(--shadow-soft);
}

/* Check list */
.checklist { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.04rem; color: var(--ink-soft); }
.checklist li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--brand-mid); margin-top: 2px; }
.checklist--tight li { font-size: 1rem; }

/* ---------- Dark band / CTA ---------- */
.band { position: relative; overflow: hidden; background: var(--grad-ink); color: #fff; }
.band .eyebrow { color: var(--sage); }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,0.74); }
.band .wrap { position: relative; z-index: 2; }
/* Oak canopy photo band */
.band--oak::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../img/oak-canopy.jpg") center/cover no-repeat;
  opacity: .34; filter: saturate(.85);
}
.band--oak::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,36,18,.72) 0%, rgba(10,36,18,.55) 45%, rgba(10,36,18,.86) 100%);
}

.cta-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 76px);
  background: var(--grad-ink); color: #fff; text-align: center; box-shadow: var(--shadow-card);
}
.cta-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(620px circle at 18% 0%, rgba(78,145,96,0.42), transparent 58%),
              radial-gradient(520px circle at 90% 100%, rgba(166,186,153,0.30), transparent 58%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; margin-bottom: 18px; }
.cta-card p { color: rgba(255,255,255,0.80); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Partner / WFG */
.partner { text-align: center; }
.partner__logo {
  max-width: 300px; margin: 26px auto 0; padding: 26px 34px; background: #fff;
  border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.partner__logo img { width: 100%; height: auto; }

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card {
  text-align: center; padding: 30px 20px; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.stat-card b { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; display: block; }
.stat-card b .text-grad { display: inline; }
.stat-card span { font-size: 14px; color: var(--muted); font-weight: 500; }

/* Accordion */
.accordion { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.acc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-soft); overflow: hidden; transition: box-shadow .4s var(--ease);
}
.acc:hover { box-shadow: var(--shadow-card); }
.acc__q {
  width: 100%; text-align: left; padding: 22px 26px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; background: none; border: none;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem); font-weight: 650; color: var(--ink);
}
.acc__q .ico { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); transition: transform .4s var(--ease), background .3s; }
.acc__q .ico svg { width: 16px; height: 16px; color: var(--brand-mid); }
.acc.open .acc__q .ico { transform: rotate(45deg); background: var(--grad-brand); }
.acc.open .acc__q .ico svg { color: #fff; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc__a-inner { padding: 0 26px 24px; }
.acc__a-inner p { margin-bottom: 12px; }
.acc__a-inner p:last-child { margin-bottom: 0; }

/* Two-column coverage cards */
.cover-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cover-card { padding: 34px; border-radius: var(--r-lg); box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.cover-card--yes { background: linear-gradient(180deg, #ffffff, #f1f7ee); }
.cover-card--no  { background: linear-gradient(180deg, #ffffff, #fbf5f1); }
.cover-card h3 { margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.cover-card h3 .tag { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; }
.cover-card--yes .tag { background: #2b7a42; }
.cover-card--no  .tag { background: #b56a4a; }
.cover-list { list-style: none; display: grid; gap: 11px; }
.cover-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.98rem; color: var(--ink-soft); }
.cover-list li svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 3px; }
.cover-card--yes li svg { color: #2b7a42; }
.cover-card--no  li svg { color: #b56a4a; }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: rgba(255,255,255,0.72); padding: 64px 0 32px; position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; position: relative; z-index: 2; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__logo .lock-mark { height: 52px; width: auto; }
.footer__logo .lock-word { height: 27px; width: auto; }
.footer p { color: rgba(255,255,255,0.62); font-size: 0.96rem; max-width: 320px; }
.footer h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.52); margin-bottom: 18px; font-weight: 600; }
.footer__links { display: grid; gap: 12px; }
.footer__links a, .footer__contact a, .footer__contact span { color: rgba(255,255,255,0.80); font-size: 0.96rem; transition: color .25s; display: inline-flex; align-items: flex-start; gap: 9px; }
.footer__links a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact { display: grid; gap: 12px; }
.footer__contact svg { width: 16px; height: 16px; color: var(--sage); flex: 0 0 auto; margin-top: 3px; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.13);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.86rem; color: rgba(255,255,255,0.52); position: relative; z-index: 2;
}
.footer__bottom a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .08s; }
[data-reveal].d2 { transition-delay: .16s; }
[data-reveal].d3 { transition-delay: .24s; }
[data-reveal].d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .anim-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Hero, subhero, contact, responsive
   ========================================================= */

/* Transparent nav over dark hero (top of every page) */
.nav:not(.scrolled) { background: transparent; box-shadow: none; }
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,.90); }
.nav:not(.scrolled) .nav__links a:hover,
.nav:not(.scrolled) .nav__links a.active { color: #fff; }
.nav:not(.scrolled) .nav__links a::after { background: var(--grad-sage); }
.nav:not(.scrolled) .nav__phone { color: #fff; }
.nav:not(.scrolled) .nav__phone svg { color: var(--sage); }
.nav:not(.scrolled) .on-dark { display: block; }
.nav:not(.scrolled) .on-light { display: none; }
.nav:not(.scrolled) .nav__burger { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.42); }
.nav:not(.scrolled) .nav__burger span { background: #fff; }
.nav.scrolled .on-dark { display: none; }
.nav.scrolled .on-light { display: block; }

/* Home full-bleed background hero */
.hero--home { min-height: 94svh; display: flex; align-items: center; color: #fff; overflow: hidden;
  padding-top: var(--nav-h); padding-bottom: clamp(120px, 15vh, 190px); }
.hero--home .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero--home .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%;
  animation: heroDrift 26s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: scale(1.02); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .hero--home .hero__bg img { animation: none; } }
.hero--home .hero__bg::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,14,.42) 0%, rgba(8,26,14,.14) 38%, rgba(8,26,14,.72) 100%),
    linear-gradient(100deg, rgba(8,26,14,.80) 0%, rgba(8,26,14,.34) 50%, rgba(8,26,14,0) 72%); }
.hero--home .wrap { position: relative; z-index: 2; }
.hero--home .hero__content { max-width: 720px; }
.hero--home h1 { color: #fff; margin: 18px 0 22px; text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero--home .hero__sub { color: rgba(255,255,255,.93); max-width: 610px; margin-bottom: 30px;
  text-shadow: 0 1px 18px rgba(0,0,0,.30); }
.hero--home .hero__badge { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); color: #fff; }
.hero--home .btn--ghost { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.09); }
.hero--home .btn--ghost:hover { background: rgba(255,255,255,.20); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; color: rgba(255,255,255,.93); font-weight: 500; }
.hero-badges svg { width: 20px; height: 20px; color: var(--sage); flex: none; }
.hero__scroll { position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%); z-index: 2;
  transition: opacity .4s var(--ease), transform .4s var(--ease); pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.hero__scroll .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: #fff; border-radius: 2px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } 100% { opacity: 0; } }
.hero__scroll.hide { opacity: 0; transform: translate(-50%, 14px); }
@media (max-width: 720px) { .hero__scroll { bottom: 74px; } }
/* short viewports: the cue would collide with the hero badges */
@media (max-height: 820px) { .hero__scroll { display: none; } }

/* Floating stats card overlapping hero */
.stats-float { position: relative; z-index: 5; margin-top: -58px; padding-top: 0; }
@media (max-width: 720px){ .stats-float { margin-top: -30px; } }

/* Dark subhero for interior pages */
.subhero { padding-top: calc(var(--nav-h) + clamp(52px, 7vw, 88px)); padding-bottom: clamp(40px, 6vw, 72px);
  background: var(--grad-ink); color: #fff; position: relative; overflow: hidden; }
.subhero::before { content: ""; position: absolute; inset: 0;
  background: url("../img/oak-canopy.jpg") center 30%/cover no-repeat; opacity: .22; }
.subhero::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(680px circle at 22% 0%, rgba(78,145,96,.34), transparent 60%),
              linear-gradient(180deg, rgba(10,36,18,.55), rgba(10,36,18,.80)); }
.subhero .wrap { position: relative; z-index: 2; }
.subhero .section-head { margin-bottom: 0; }
.subhero .eyebrow { color: var(--sage); }
.subhero h1 { color: #fff; }
.subhero p { color: rgba(255,255,255,.86); }

/* Expanded coverage callout */
.callout { display: flex; gap: 22px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding: 30px 34px; border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(23,85,40,.08), rgba(166,186,153,.22));
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.callout__t h3 { margin-bottom: 8px; }
.callout__t p { font-size: 1rem; max-width: 640px; margin: 0; }
.callout .btn { flex: none; }

/* Service-area chips */
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin: 0 auto; }
.areas span { padding: 9px 17px; border-radius: 999px; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); font-size: .93rem; font-weight: 550; color: var(--ink-soft);
  transition: transform .35s var(--ease), color .3s, border-color .3s; }
.areas span:hover { transform: translateY(-3px); color: var(--brand); border-color: rgba(23,85,40,.28); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--r-lg); background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.step b { counter-increment: step; display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--grad-brand); color: #fff; font-size: .95rem; margin-bottom: 16px; }
.step b::before { content: "0" counter(step); }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { font-size: .97rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.contact-card .ci { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.contact-card .ci svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: 1rem; }
.contact-card a:hover { color: var(--brand); }
.form-card { padding: clamp(26px, 4vw, 40px); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.form-card h3 { margin-bottom: 6px; }
.form-card .form-intro { font-size: .98rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--bg); transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-mid); box-shadow: 0 0 0 3px rgba(23,85,40,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { margin-top: 14px; font-size: .87rem; color: var(--muted); text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .hero__scroll { display: none; }
}
@media (max-width: 980px) {
  .split, .split--rev .split__media { grid-template-columns: 1fr; order: unset; }
  .split--rev .split__body { order: 2; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --nav-h: 66px; }
  .nav .nav__logo .lock-mark { height: 36px; }
  .nav .nav__logo .lock-word { height: 19px; }
  .nav__logo { gap: 9px; }
  .grid-2, .grid-3, .grid-4, .cover-2, .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
  .hero--home { min-height: 88svh; }
}
@media (max-width: 460px) {
  .nav__cta { gap: 10px; }
  .nav__cta .btn--sm { padding: 10px 15px; font-size: 13px; }
  .nav__cta .btn--sm svg { display: none; }
  .nav .nav__logo .lock-word { display: none; }
  .nav .nav__logo .lock-mark { height: 38px; }
}
