/* ============================================================
   Heritage House Collective — design system v2
   Quiet-luxury editorial · warm ivory / evergreen / antique gold
   Mobile-first. Motion: transform + opacity only.
   ============================================================ */

:root {
  --green-950: #18231b;
  --green-900: #223027;
  --green-800: #2d3a2b;
  --green-700: #384435;
  --gold-700: #8a6b41;
  --gold-600: #9b7b4f;
  --gold-500: #ad8f62;
  --gold-300: #d1b68f;
  --gold-200: #e4d3b6;
  --ivory: #f4f2ed;
  --linen: #e9e3dc;
  --white: #fffdf9;
  --ink: #2b2e27;
  --ink-2: #4d5149;
  --muted: #6d7066;
  --border: rgba(45, 58, 43, .14);
  --border-gold: rgba(173, 143, 98, .38);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 10px rgba(24, 35, 27, .07), 0 10px 32px rgba(24, 35, 27, .08);
  --shadow-md: 0 6px 18px rgba(24, 35, 27, .09), 0 24px 64px rgba(24, 35, 27, .13);
  --radius: 1.25rem;
  --arch: 999px 999px 1.1rem 1.1rem;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --fs-display: clamp(2.85rem, 1.4rem + 6vw, 5.6rem);
  --fs-h1: clamp(2.6rem, 1.3rem + 5vw, 4.6rem);
  --fs-h2: clamp(2.1rem, 1.2rem + 3.4vw, 3.6rem);
  --fs-h3: clamp(1.45rem, 1.15rem + 1.2vw, 2rem);
  --fs-lead: clamp(1.18rem, 1rem + .9vw, 1.5rem);
  --fs-body: clamp(1rem, .96rem + .2vw, 1.1rem);
  --fs-small: .875rem;
  --fs-eyebrow: .74rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold-300); color: var(--green-950); }

h1, h2, h3, h4 { margin: 0; color: var(--green-900); font-family: var(--serif); font-weight: 600; line-height: 1.02; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.12; }
p, li, blockquote, figcaption { text-wrap: pretty; }
p { margin: 1rem 0 0; max-width: 65ch; color: var(--ink-2); }
em.accent { font-family: var(--serif); font-style: italic; color: var(--gold-700); letter-spacing: 0; }

.lead { max-width: 620px; font-family: var(--serif); font-size: var(--fs-lead); line-height: 1.42; color: var(--ink-2); }
.eyebrow {
  display: flex; align-items: center; gap: .65rem;
  margin: 0 0 1.1rem; color: var(--gold-700);
  font-size: var(--fs-eyebrow); font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--gold-500); flex: none; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 2rem; height: 1px; background: var(--gold-500); flex: none; }
.small { font-size: var(--fs-small); color: var(--muted); }

.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.section-sm { padding: clamp(3rem, 7vw, 5rem) 0; }
.section.linen { background: var(--linen); }

/* ---------- buttons ---------- */
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2.1rem; }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border: 1px solid var(--green-800); border-radius: 999px;
  background: var(--green-800); color: var(--white);
  font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
}
.button:hover { transform: translateY(-2px); background: var(--green-950); box-shadow: 0 6px 18px rgba(24,35,27,.16), 0 14px 40px rgba(24,35,27,.14); }
.button.gold { border-color: var(--gold-500); background: transparent; color: var(--green-900); }
.button.gold:hover { background: var(--gold-500); color: var(--green-950); }
.button.light { border-color: rgba(255,255,255,.55); background: transparent; color: var(--white); }
.button.light:hover { background: var(--white); color: var(--green-900); }
.button.solid-light { border-color: var(--white); background: var(--white); color: var(--green-900); }
.button.solid-light:hover { background: var(--gold-200); border-color: var(--gold-200); }
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem;
  color: var(--gold-700); font-size: .74rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none;
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- announcement + header ---------- */
.announcement {
  padding: .6rem 1rem; background: var(--green-950); color: var(--gold-200);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase;
}
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; transform: translateY(-220%); background: var(--white); padding: .75rem 1rem; border-radius: .5rem; box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; z-index: 100; top: 0;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 42px; height: 47px; }
.brand-copy { display: grid; color: var(--green-900); font-family: var(--serif); font-size: 1.12rem; font-weight: 700; letter-spacing: .04em; line-height: 1; text-transform: uppercase; }
.brand-copy small { margin-top: .3rem; color: var(--gold-600); font-family: var(--sans); font-size: .52rem; font-weight: 800; letter-spacing: .24em; }
.nav-links { display: none; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.button) {
  position: relative; padding: .3rem 0;
  font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; color: var(--green-900);
}
.nav-links a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold-600); transition: right .3s var(--ease);
}
.nav-links a:not(.button):hover::after, .nav-links a[aria-current="page"]::after { right: 0; }

/* services dropdown */
.nav-dd { position: relative; }
.nav-dd > a .caret { display: inline-block; margin-left: .35rem; transition: transform .25s var(--ease); }
.nav-dd:hover > a .caret, .nav-dd:focus-within > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + .65rem); left: 50%; z-index: 120;
  min-width: 250px; padding: .55rem; border: 1px solid var(--border); border-radius: 1rem;
  background: var(--white); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity .25s ease, transform .25s var(--ease), visibility .25s;
}
.dropdown::before { content: ""; position: absolute; top: -.7rem; left: 0; right: 0; height: .7rem; }
.dropdown::after { content: ""; position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; transform: translateX(-50%) rotate(45deg); background: var(--white); border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
.nav-dd:hover > .dropdown, .nav-dd:focus-within > .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: baseline; gap: .55rem; padding: .7rem .9rem; border-radius: .65rem;
  color: var(--green-900); font-family: var(--serif); font-size: 1.08rem; font-weight: 600; letter-spacing: 0;
  text-decoration: none; text-transform: none; transition: background .2s, color .2s;
}
.dropdown a small { color: var(--gold-600); font-family: var(--sans); font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.dropdown a:hover { background: var(--linen); color: var(--green-950); }
.menu-toggle {
  display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem;
  border: 1px solid var(--border); border-radius: 999px; background: transparent; color: var(--green-900);
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
}

/* full-screen mobile menu */
.nav-overlay {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 200; display: grid; align-content: center; justify-items: center; gap: .4rem;
  padding: 2rem; background: var(--green-950); color: var(--white);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s ease, visibility .35s;
}
.nav-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-overlay a {
  font-family: var(--serif); font-size: clamp(1.9rem, 7vw, 2.9rem); color: var(--ivory); text-decoration: none;
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s ease, transform .5s var(--ease), color .2s;
  transition-delay: calc(var(--i, 0) * 70ms);
}
.nav-overlay.open a { opacity: 1; transform: translateY(0); }
.nav-overlay a:hover { color: var(--gold-300); }
.nav-overlay .overlay-phone { font-family: var(--sans); font-size: 1rem; font-weight: 800; letter-spacing: .1em; color: var(--gold-300); margin-top: 1.4rem; text-transform: uppercase; }
.nav-overlay .overlay-close {
  position: absolute; top: 1.4rem; right: 1.4rem; width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer;
  font-size: 1.3rem; line-height: 1;
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 7.5rem) 0 clamp(4rem, 9vw, 8rem); background:
  radial-gradient(circle at 88% 12%, rgba(209,182,143,.38), transparent 34%),
  linear-gradient(150deg, var(--ivory) 30%, #ece3d6 100%); }
.hero::after { content: ""; position: absolute; right: -170px; bottom: -230px; width: 430px; height: 430px; border: 1px solid var(--border-gold); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.hero h1 { max-width: 12ch; font-size: var(--fs-display); letter-spacing: -.03em; }
.hero .lead { margin-top: 1.4rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin-top: 1.9rem; padding: 0; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: .5rem; color: var(--ink-2); font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.hero-proof svg { color: var(--gold-600); flex: none; }
.hero-media { position: relative; justify-self: center; width: min(460px, 100%); }
.hero-media .frame { position: relative; border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-media .frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-media::before {
  content: ""; position: absolute; inset: -14px 14px 14px -14px; z-index: -1;
  border: 1px solid var(--border-gold); border-radius: var(--arch);
}
.hero-badge {
  position: absolute; right: -8px; bottom: -20px; display: grid; place-content: center; gap: .1rem;
  width: 148px; height: 148px; padding: 1rem; border: 5px solid var(--ivory); border-radius: 50%;
  background: var(--green-800); color: var(--white); text-align: center; box-shadow: var(--shadow-sm);
}
.hero-badge strong { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.3rem; line-height: 1.05; color: var(--gold-200); }
.hero-badge span { font-size: .56rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* ---------- trust band ---------- */
.trust-strip { border-block: 1px solid var(--border); background: var(--white); }
.trust-items { display: grid; grid-template-columns: 1fr; }
.trust-item { display: flex; gap: .9rem; align-items: flex-start; padding: 1.3rem .4rem; border-bottom: 1px solid var(--border); }
.trust-item:last-child { border-bottom: 0; }
.trust-item svg { flex: none; margin-top: .15rem; color: var(--gold-600); }
.trust-item strong { display: block; color: var(--green-900); font-family: var(--serif); font-size: 1.22rem; font-weight: 700; line-height: 1.15; }
.trust-item span { display: block; margin-top: .15rem; color: var(--muted); font-size: .8rem; }

/* ---------- section head ---------- */
.section-head { display: grid; gap: 1.2rem; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head > p { max-width: 520px; color: var(--muted); margin: 0; align-self: end; }

/* ---------- service cards ---------- */
.cards { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.svc-card {
  display: grid; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); color: var(--ink); text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.svc-media { position: relative; margin: 1.1rem 1.1rem 0; border-radius: 999px 999px .9rem .9rem; overflow: hidden; }
.svc-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.045); }
.svc-num {
  position: absolute; top: .9rem; left: .9rem; display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(24,35,27,.82); color: var(--gold-300);
  font-family: var(--serif); font-size: 1.05rem; backdrop-filter: blur(4px);
}
.svc-body { padding: 1.5rem 1.6rem 1.8rem; }
.svc-body .svc-kicker { margin: 0 0 .4rem; color: var(--gold-700); font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.svc-body p { margin-top: .55rem; color: var(--muted); font-size: .95rem; }

/* ---------- dark mechanism / process ---------- */
.dark-section { position: relative; overflow: hidden; background: var(--green-900); color: rgba(255,255,255,.82); }
.dark-section::before { content: ""; position: absolute; left: -160px; top: -160px; width: 420px; height: 420px; border: 1px solid rgba(209,182,143,.22); border-radius: 50%; }
.dark-section h2, .dark-section h3 { color: var(--white); }
.dark-section .eyebrow { color: var(--gold-300); }
.dark-section .eyebrow::before, .dark-section .eyebrow.centered::after { background: var(--gold-500); }
.dark-section .lead { color: rgba(255,255,255,.78); }
.dark-section p { color: rgba(255,255,255,.72); }
.process-grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 7vw, 6rem); }
.steps { display: grid; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1.1rem; padding: 1.7rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: 0; }
.step-number { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--gold-500); border-radius: 50%; color: var(--gold-300); font-family: var(--serif); font-size: 1.15rem; }
.step h3 { font-size: 1.5rem; }
.step p { margin-top: .45rem; font-size: .95rem; }
.mech-quote { margin: 2.2rem 0 0; padding: 0; border-left: 2px solid var(--gold-500); padding-left: 1.4rem; font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--gold-200); max-width: 34ch; }

/* ---------- before / after slider ---------- */
.proof-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.proof-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); margin: 0; }
.ba { position: relative; overflow: hidden; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.ba img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; pointer-events: none; }
.ba .ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba .ba-after img { height: 100%; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold-300);
  transform: translateX(-1px); pointer-events: none;
}
.ba-handle::after {
  content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-800); border: 2px solid var(--gold-300); color: var(--gold-200); font-size: 1.05rem;
  box-shadow: 0 4px 16px rgba(24,35,27,.35);
}
.ba-label {
  position: absolute; bottom: .85rem; padding: .4rem .8rem; border-radius: 999px;
  background: rgba(24,35,27,.88); color: var(--ivory); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.ba-label.before { left: .85rem; }
.ba-label.after { right: .85rem; }
.proof-card figcaption { padding: 1.3rem 1.5rem 1.5rem; }
.proof-card figcaption strong { display: block; color: var(--green-900); font-family: var(--serif); font-size: 1.4rem; font-weight: 700; }
.proof-card figcaption span { display: block; margin-top: .2rem; color: var(--muted); font-size: .87rem; }
.ba-hint { margin-top: 1.2rem; color: var(--muted); font-size: .8rem; text-align: center; }

/* ---------- editorial split (about / audience) ---------- */
.split { display: grid; gap: clamp(2.4rem, 6vw, 5rem); align-items: center; }
.split-media { position: relative; width: min(440px, 100%); justify-self: center; }
.split-media .frame { border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media .frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-media::before { content: ""; position: absolute; inset: -14px -14px 14px 14px; z-index: -1; border: 1px solid var(--border-gold); border-radius: var(--arch); }

.audience { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 2.4rem; }
.audience-item { padding: 1.5rem 1.6rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--white); text-decoration: none; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.audience-item:hover { border-color: var(--gold-500); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.audience-item strong { display: block; color: var(--green-900); font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.audience-item span { display: block; margin-top: .3rem; color: var(--muted); font-size: .88rem; }

/* ---------- checklist (included / by request) ---------- */
.scope-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2rem; }
.scope-panel { padding: 1.7rem 1.7rem 1.9rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); }
.scope-panel.tint { background: var(--linen); }
.scope-panel h3 { display: flex; align-items: center; gap: .6rem; font-size: 1.35rem; }
.scope-panel h3 svg { color: var(--gold-600); flex: none; }
.scope-panel ul { margin: 1rem 0 0; padding: 0; list-style: none; display: grid; gap: .55rem; }
.scope-panel li { position: relative; padding-left: 1.4rem; color: var(--ink-2); font-size: .95rem; }
.scope-panel li::before { content: ""; position: absolute; left: 0; top: .52em; width: .55rem; height: .55rem; border: 1px solid var(--gold-600); border-radius: 50%; }
.scope-note { margin-top: 1.6rem; padding: 1.2rem 1.4rem; border-left: 2px solid var(--gold-500); background: var(--white); border-radius: 0 1rem 1rem 0; color: var(--ink-2); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); margin-top: 2rem; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  color: var(--green-900); font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; color: var(--gold-600); font-family: var(--serif); font-size: 1.5rem; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 1.4rem; color: var(--ink-2); font-size: .97rem; max-width: 62ch; }

/* ---------- final CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--green-950); color: rgba(255,255,255,.8); text-align: center; }
.cta-band::before { content: ""; position: absolute; left: 50%; top: -320px; transform: translateX(-50%); width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, rgba(173,143,98,.25), transparent 65%); }
.cta-band .container { position: relative; z-index: 1; max-width: 760px; }
.cta-band h2 { color: var(--white); font-size: clamp(2.4rem, 6vw, 4.2rem); }
.cta-band .lead { margin-inline: auto; color: rgba(255,255,255,.75); }
.cta-band .button-row { justify-content: center; }
.cta-phone { display: block; margin-top: 1.6rem; color: var(--gold-300); font-family: var(--serif); font-size: 1.4rem; text-decoration: none; }

/* ---------- interior page hero ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 0; background:
  radial-gradient(circle at 84% 8%, rgba(209,182,143,.34), transparent 32%), var(--linen); }
.page-hero::after { content: ""; position: absolute; right: -150px; top: -200px; width: 380px; height: 380px; border: 1px solid var(--border-gold); border-radius: 50%; }
.page-hero h1 { max-width: 17ch; position: relative; z-index: 1; }
.page-hero .lead { position: relative; z-index: 1; }
.page-hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(2.4rem, 6vw, 4.5rem); align-items: center; }
.page-hero-media { position: relative; width: min(360px, 82%); justify-self: center; }
.page-hero-media .frame { position: relative; border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-md); }
.page-hero-media .frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.page-hero-media::before { content: ""; position: absolute; inset: -12px 12px 12px -12px; z-index: -1; border: 1px solid var(--border-gold); border-radius: var(--arch); }
.page-badge {
  position: absolute; right: -10px; bottom: -16px; display: grid; place-content: center; gap: .05rem;
  width: 118px; height: 118px; padding: .8rem; border: 4px solid var(--linen); border-radius: 50%;
  background: var(--green-800); color: var(--white); text-align: center; box-shadow: var(--shadow-sm);
}
.page-badge strong { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.5rem; line-height: 1; color: var(--gold-200); }
.page-badge span { font-size: .52rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.hero-ghost {
  position: absolute; right: -1.5rem; bottom: -2.2rem; z-index: 0; pointer-events: none; user-select: none;
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(6rem, 14vw, 13rem);
  line-height: 1; letter-spacing: -.03em; color: rgba(139, 107, 65, .1); white-space: nowrap;
}
.breadcrumbs { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { color: var(--green-800); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-700); }

/* ---------- content + sidebar ---------- */
.content-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: 1fr; }
.content h2 { margin-top: 3.4rem; font-size: clamp(2rem, 3.6vw, 3rem); }
.content h2:first-of-type { margin-top: 0; }
.content ul { padding-left: 1.2rem; }
.content li + li { margin-top: .5rem; }
.sidebar-card { padding: 2rem 2rem 2.2rem; border-radius: var(--radius); background: var(--green-900); color: rgba(255,255,255,.75); box-shadow: var(--shadow-md); }
.sidebar-card h2 { color: var(--white); font-size: 2rem; }
.sidebar-card .eyebrow { color: var(--gold-300); }
.sidebar-card .eyebrow::before { background: var(--gold-500); }
.sidebar-card p { color: rgba(255,255,255,.72); font-size: .95rem; }
.sidebar-phone { display: block; margin-top: 1.2rem; color: var(--gold-300); font-family: var(--serif); font-size: 1.35rem; text-decoration: none; }
.related { margin-top: 2rem; padding: 1.6rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.related p.eyebrow { margin-bottom: .9rem; }
.related a { display: block; padding: .55rem 0; border-bottom: 1px solid var(--border); color: var(--green-900); font-family: var(--serif); font-size: 1.15rem; text-decoration: none; }
.related a:last-child { border-bottom: 0; }
.related a:hover { color: var(--gold-700); }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: 1fr; }
.contact-details { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-item { display: block; padding: 1.3rem 1.4rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--white); text-decoration: none; transition: border-color .3s, transform .3s var(--ease); }
.contact-item:hover { border-color: var(--gold-500); transform: translateY(-3px); }
.contact-item small { display: block; color: var(--gold-700); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-item strong { display: block; margin-top: .25rem; color: var(--green-900); font-family: var(--serif); font-size: 1.4rem; font-weight: 700; overflow-wrap: anywhere; }

.form { display: grid; gap: 1.05rem; grid-template-columns: 1fr; padding: clamp(1.6rem, 4vw, 2.8rem); border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-md); }
.field { display: grid; gap: .4rem; }
.field label { color: var(--green-900); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: .8rem .95rem;
  border: 1px solid #beb8aa; border-radius: .65rem; background: var(--white); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-600); box-shadow: 0 0 0 3px rgba(173,143,98,.18); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .8rem; }
.form-note--ok { color: var(--green-800); font-weight: 700; }
.form-note--err { color: #8a3b2e; font-weight: 700; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- footer ---------- */
.site-footer { padding: 4.5rem 0 6.5rem; background: var(--green-950); color: rgba(255,255,255,.68); }
.footer-grid { display: grid; gap: 2.6rem; grid-template-columns: 1fr; }
.footer-brand .brand-copy { color: var(--white); }
.footer-brand .brand-copy small { color: var(--gold-300); }
.footer-brand p { max-width: 40ch; font-size: .92rem; }
.footer-title { margin: 0; color: var(--gold-300); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; margin-top: 1rem; }
.footer-links a { font-size: .92rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold-200); }
.footer-bottom { display: grid; gap: .6rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--gold-200); }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; z-index: 150; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.15);
  background: var(--green-950);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 58px;
  color: var(--white); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase;
}
.callbar a + a { border-left: 1px solid rgba(255,255,255,.15); background: var(--gold-600); color: var(--green-950); }

/* ---------- reveal motion (only when JS is running — html.js) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s var(--ease); transition-delay: var(--d, 0ms); }
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- breakpoints ---------- */
@media (min-width: 640px) {
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 1.6rem 1.4rem; border-bottom: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .form { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.2fr .7fr .7fr .9fr; }
  .footer-bottom { display: flex; justify-content: space-between; gap: 1rem; }
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .page-hero-grid { grid-template-columns: 1.2fr .8fr; }
  .page-hero-media { justify-self: end; margin-right: 1rem; }
  .section-head { grid-template-columns: auto minmax(0, 420px); justify-content: space-between; align-items: end; }
  .process-grid { grid-template-columns: .85fr 1.15fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); }
  .sidebar-sticky { position: sticky; top: 108px; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; }
  .trust-items { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: 0 !important; border-right: 1px solid var(--border); }
  .trust-item:last-child { border-right: 0; }
  .site-footer { padding-bottom: 2rem; }
  .callbar { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html.js [data-reveal] { opacity: 1; transform: none; }
}
