/* ==========================================================================
   Hazelwood Editing — site stylesheet
   Single combined stylesheet for every page. Loaded once via includes/head.php.
   Sections: Tokens · Base · Nav · Image hero · Section shell · Home blocks ·
             Forms · Footer · Inner-page helpers · Responsive
   ========================================================================== */

/* ---------- SELF-HOSTED FONTS ----------
   Variable woff2 files served from /assets/fonts — no third-party Google Fonts
   request (faster, private, and works even if Google is blocked/unreachable).
   The "latin" subset covers all English + Spanish text and the site's
   typographic punctuation (curly quotes, en/em dashes, ·, €, ™, …). One file
   per family spans weights 400–700. font-display:optional lets the browser use
   the webfont if it's ready in time (they're preloaded, so almost always) and
   otherwise keep the fallback for that view — never a mid-view size reflow. */
@font-face{
  font-family:'Source Serif 4';
  font-style:normal;
  font-weight:400 700;
  font-display:optional;
  src:url('/assets/fonts/source-serif-4-latin.woff2') format('woff2');
}
@font-face{
  font-family:'Mulish';
  font-style:normal;
  font-weight:400 700;
  font-display:optional;
  src:url('/assets/fonts/mulish-latin.woff2') format('woff2');
}

/* ---------- DESIGN TOKENS ---------- */
:root{
  --paper:#FAF6EC;        /* parchment base */
  --sage:#E7ECDF;         /* soft sage tint */
  --ink:#2B2A24;          /* warm near-black text */
  --ink-soft:#5C5A4E;     /* muted body */
  --green:#3F6B3A;        /* forest primary */
  --green-d:#2F5230;      /* deep forest */
  --bark:#6E4A2A;         /* bark brown */
  --line:#E2DAC6;         /* hairlines */
  --radius:4px;
  --wrap:1120px;
  --serif:"Source Serif 4",Georgia,serif;
  --sans:"Mulish",system-ui,sans-serif;
}
*{box-sizing:border-box;}
/* scroll-padding-top keeps in-page anchor targets clear of the sticky header
   for the NATIVE smooth scroll (keyboard users, reduced-motion, no-JS). The
   JS glide in scripts.js is now purely a progressive enhancement on top. */
html{scroll-behavior:smooth;scroll-padding-top:104px;}
/* Paired with the inline script at the top of includes/head.php: hides the
   page for the instant between first paint and js/scripts.js applying the
   visitor's saved Spanish preference, so English never flashes first. */
html[data-lang-pending="es"] body{visibility:hidden;}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--sans);font-size:18px;line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:var(--serif);font-weight:600;line-height:1.12;margin:0;color:var(--ink);}
p{margin:0 0 1.1em;color:var(--ink-soft);}
a{color:var(--green);text-decoration:none;}
/* Text links only (not .btn/.ico, whose own hover backgrounds already mask
   the native tap flash): kill the harsh default tap highlight and let color
   changes ease in instead of snapping, so mobile taps feel soft, not abrupt. */
a:not(.btn):not(.ico){-webkit-tap-highlight-color:transparent;transition:color .15s ease;}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 40px;}
.eyebrow{font-family:var(--sans);font-weight:700;font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color:var(--bark);margin:0 0 18px;}

/* ---------- NAV ---------- */
header.site{position:sticky;top:0;z-index:50;background:rgba(250,246,236,.92);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);transition:box-shadow .25s ease, border-color .25s ease;}
/* .scrolled is added by scripts.js once the page scrolls a little, lifting the bar */
header.site.scrolled{box-shadow:0 10px 30px -18px rgba(43,42,36,.45);border-bottom-color:transparent;}
.nav{display:flex;align-items:center;justify-content:space-between;height:88px;}
.brand{display:flex;align-items:center;gap:12px;}
.brand img{height:74px;width:auto;display:block;}
nav.menu{display:flex;align-items:center;gap:38px;}
nav.menu a:not(.btn){display:block;color:var(--ink);font-weight:600;font-size:1rem;padding:6px 0;position:relative;}
nav.menu a:not(.btn):hover{color:var(--green);}
nav.menu a.active{color:var(--green);}
/* every link reserves the same underline strip (transparent unless active), so
   the active page's marker doesn't make the other links look mismatched.
   Uses ::before (not ::after) because the Services link's dropdown caret below
   already occupies ::after — reusing it here would merge both pseudo-elements'
   styles onto one box. */
nav.menu a:not(.btn)::before{content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:transparent;}
nav.menu a.active::before{background:var(--green);}
.dropdown{position:relative;}
/* caret after the Services parent link (suppressed when it is the active page) */
.dropdown>a:not(.active)::after{content:"";display:inline-block;margin-left:7px;border:5px solid transparent;border-top-color:currentColor;transform:translateY(3px);}
.submenu{position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(8px);background:#fff;border:1px solid var(--line);border-top:3px solid var(--green);min-width:230px;padding:10px 0;box-shadow:0 24px 50px -24px rgba(43,42,36,.35);opacity:0;visibility:hidden;transition:.18s ease;}
/* Invisible bridge over the 14px gap between the trigger and the menu, so the
   cursor never leaves .dropdown's hoverable area while crossing it — without
   this, that empty gap breaks :hover mid-crossing and the menu flickers. */
.submenu::before{content:"";position:absolute;left:0;right:0;top:-14px;height:14px;}
.dropdown:hover .submenu,.dropdown:focus-within .submenu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
nav.menu .dropdown .submenu a{display:block;padding:11px 26px 11px 29px;font-weight:600;color:var(--ink);}
.submenu a:hover{background:var(--sage);color:var(--green-d);}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--sans);font-weight:700;font-size:1rem;border-radius:var(--radius);padding:13px 26px;cursor:pointer;transition:.18s ease;border:1.5px solid transparent;}
.btn-primary{background:var(--green);color:#fff;}
.btn-primary:hover{background:var(--green-d);}
.btn-ghost{background:transparent;color:var(--green-d);border-color:var(--green);}
.btn-ghost:hover{background:var(--green);color:#fff;}
.btn-bark{background:var(--bark);color:#fff;}
.btn-bark:hover{background:#573a20;}

/* language toggle — pill */
.lang-toggle{display:inline-flex;border:1.5px solid var(--green);border-radius:999px;overflow:hidden;line-height:1;}
.lang-toggle button{font-family:var(--sans);font-weight:700;font-size:.8rem;letter-spacing:.05em;padding:7px 15px;background:transparent;color:var(--green-d);border:none;cursor:pointer;transition:.16s ease;}
.lang-toggle button + button{border-left:1.5px solid var(--green);}
.lang-toggle button:hover{background:var(--sage);}
.lang-toggle button.active{background:var(--green);color:#fff;}

/* display:contents — .nav-actions adds no box, so the language pill + Contact button
   sit as direct flex children of nav.menu. The mobile media query re-promotes it
   to a real flex row inside the open menu. */
.nav-actions{display:contents;}

/* hamburger (mobile) */
.nav-toggle{display:none;width:48px;height:48px;align-items:center;justify-content:center;border:1.5px solid var(--green);border-radius:var(--radius);background:transparent;color:var(--green-d);cursor:pointer;padding:0;}
.nav-toggle:hover{background:var(--sage);}
.nav-toggle svg{width:24px;height:24px;}
.nav-toggle .ico-x{display:none;}
header.site.nav-open .nav-toggle .ico-bars{display:none;}
header.site.nav-open .nav-toggle .ico-x{display:block;}

/* ---------- IMAGE HERO (home) ---------- */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;padding:120px 0;}
/* full-bleed photographic background — swap in your own Hazelwood tree photo */
.hero .bg{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover;object-position:center 40%;background:#33402c;}
/* legibility scrim — a focused pool of shade behind the text, plus a soft vignette,
   so the copy reads clearly while the foliage stays bright toward the edges.
   Painted as a pseudo-element (no empty <div> needed in the markup). */
.hero::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:
  radial-gradient(ellipse 72% 60% at 50% 45%, rgba(8,18,9,.70) 0%, rgba(8,18,9,.44) 46%, rgba(8,18,9,.10) 78%, transparent 100%),
  linear-gradient(180deg, rgba(8,18,9,.42) 0%, rgba(8,18,9,.20) 38%, rgba(8,18,9,.66) 100%);}
.hero .inner{position:relative;z-index:3;max-width:980px;padding:0 40px;}
.hero h1{color:#fff;font-size:clamp(3.4rem,7.5vw,6rem);letter-spacing:-.015em;line-height:1.04;margin:0 auto;text-shadow:0 1px 2px rgba(6,14,6,.6), 0 3px 16px rgba(6,14,6,.7), 0 6px 44px rgba(6,14,6,.5);}
.hero .tagline{font-family:var(--sans);font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:#EAF3E2;font-size:clamp(.85rem,1.4vw,1.05rem);margin:26px 0 30px;text-shadow:0 1px 2px rgba(6,14,6,.6), 0 2px 14px rgba(6,14,6,.65);}
.hero .oneliner{font-family:var(--serif);font-style:italic;font-weight:500;font-size:clamp(1.7rem,3.6vw,3rem);color:#fff;line-height:1.18;margin:0 auto;max-width:18ch;text-shadow:0 1px 2px rgba(6,14,6,.6), 0 3px 18px rgba(6,14,6,.6);min-height:3.55em;display:flex;flex-direction:column;justify-content:center;align-items:center;}
.hero-cta{display:flex;gap:16px;margin-top:42px;flex-wrap:wrap;justify-content:center;}
.hero .btn-ghost{color:#fff;border-color:rgba(255,255,255,.7);}
.hero .btn-ghost:hover{background:#fff;color:var(--green-d);}
/* One-time hero photo fade-in on load — pure CSS (no JS). The image dissolves in
   (opacity only); the copy rests in place. Under reduced-motion the animation is
   not applied, so the photo simply shows at full opacity. */
@media (prefers-reduced-motion: no-preference){
  .hero .bg{animation:heroFade 1.4s ease both;}
}
@keyframes heroFade{from{opacity:0;}to{opacity:1;}}

/* intro band below the image hero */
.intro{padding:56px 0;}
.intro .wrap{max-width:760px;text-align:center;}
.intro .lead{font-family:var(--serif);font-size:clamp(1.3rem,2.2vw,1.7rem);font-style:italic;color:var(--green-d);line-height:1.4;margin:0 0 26px;}
.intro .body{font-size:1.08rem;}
.intro .igot{font-family:var(--serif);font-style:italic;font-size:1.3rem;color:var(--bark);margin-top:6px;}

.ico{display:flex;align-items:center;justify-content:center;}
.ico svg{width:34px;height:34px;}

/* ---------- SECTION SHELL ---------- */
section{padding:53px 0;}
.sec-head{max-width:62ch;margin:0 0 52px;}
.sec-head h2{font-size:clamp(2rem,3.6vw,2.9rem);margin:0 0 20px}
.sec-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.sec-head.center p{max-width:60ch;margin-left:auto;margin-right:auto;}

/* scroll-reveal — content-safe: visible by default, only hides once scripts.js
   "arms" it (and never under reduced-motion) */
@media (prefers-reduced-motion: no-preference){
  .reveal.armed{opacity:0;transform:translateY(26px);}
  .reveal.armed.in{opacity:1;transform:none;transition:opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);}
}

/* Automatic alternating section backgrounds: the first <section> on every page is a
   hero — both the home ".hero" and the inner ".page-hero2" carry "hero" in their
   class and are excluded via [class*="hero"]. The content sections below alternate
   paper / sage by document order, so adding, removing, or reordering a section
   re-flows the rhythm on its own — no per-section class edits needed. */
body > section:not([class*="hero"]):nth-of-type(odd){background:var(--sage);}

/* 3-col value (home) */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.vcard{text-align:left;}
.vcard .vico{width:104px;height:104px;border-radius:50%;background:var(--paper);border:1.5px solid var(--green);color:var(--green-d);display:flex;align-items:center;justify-content:center;margin:0 0 24px;}
.vcard .vico svg{width:46px;height:46px;}
.vcard h3{font-size:1.45rem;margin-bottom:10px;}
.vcard p{font-size:1rem;margin:0;}

/* "You need an editor if" two-up panel */
.need{display:grid;grid-template-columns:1fr 1fr;gap:0;border-radius:6px;overflow:hidden;border:1px solid var(--line);}
.need .col{padding:56px 52px;}
.need .left{background:#fff;}
.need .right{background:var(--green-d);color:#EAF1E4;}
.need .right h3,.need .right p{color:#fff;}
.need h3{font-size:1.7rem;margin-bottom:26px;}
.need ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:18px;}
.need li{position:relative;padding-left:34px;color:var(--ink-soft);font-size:1.05rem;}
.need li::before{content:"";position:absolute;left:0;top:9px;width:14px;height:14px;border-radius:50%;background:var(--sage);border:2px solid var(--green);}
.need li b{color:var(--ink);}
.need .right .lead{font-family:var(--serif);font-size:1.5rem;font-style:italic;line-height:1.3;margin-bottom:20px;}

/* How to work — 3 numbered steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:44px;text-align:left;}
.step .badge{width:84px;height:84px;border-radius:50%;background:var(--paper);border:1.5px solid var(--green);color:var(--green-d);margin:0 0 22px;}
.step h3{font-size:1.3rem;margin-bottom:10px;}
.step p{font-size:.98rem;}
.step .num{font-family:var(--serif);font-weight:700;color:var(--bark);font-size:.85rem;letter-spacing:.12em;text-transform:uppercase;margin-bottom:8px;display:block;}
/* numeral variant of the circle badge (next-steps.php) — same circle, a digit instead of an icon */
.step .badge.badge-num{font-family:var(--serif);font-weight:700;font-size:2rem;}
.next-closing{max-width:640px;margin:50px auto 0;text-align:center;font-family:var(--serif);font-style:italic;font-size:1.25rem;color:var(--green-d);}
.cta-row{display:flex;gap:16px;justify-content:center;margin-top:52px;flex-wrap:wrap;}

/* centered prose block */
.prose{max-width:64ch;margin:0 auto;text-align:center;}
.prose h2{font-size:clamp(1.8rem,3vw,2.5rem);margin-bottom:20px;}
.prose p{font-size:1.18rem; text-align: left;}

/* à la carte add-ons block (services.php): left-aligned, centered as a column */
.alacarte{max-width:64ch;margin:0 auto;}
.alacarte h3{margin-bottom:14px;}
.alacarte p{font-size:1.08rem;}
.alacarte .factlist{margin-top:20px;}

/* services cards */
.svc{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.svc .card{background:#fff;border:1px solid var(--line);border-radius:6px;padding:38px 34px;display:flex;flex-direction:column;}
.svc .ico{width:64px;height:64px;border-radius:50%;background:var(--sage);color:var(--green-d);margin-bottom:22px;}
.svc .ico:hover{background:var(--green-d);color:#fff;}
.svc h3{font-size:1.55rem;margin-bottom:14px;}
.svc h3 a{color:inherit;}
.svc h3 a:hover{color:var(--green);}
.svc p{font-size:1rem;flex:1;}
#services .note{padding-left:34px;}
.seemore{font-weight:700;color:var(--bark);margin-top:14px;display:inline-block;}
.seemore:hover{color:var(--green);}

/* testimonials — hanging quote marks that hug the text. NOTE: these quotes are
   deliberately left out of the EN/ES toggle (client reviews stay as written), so
   ".quote" elements carry no data-es. */
.quotes{display:grid;grid-template-columns:1fr 1fr;gap:40px 104px;align-items:start;}
.quote{position:relative;display:flex;flex-direction:column;}
.quote:not(.is-img){max-width:32rem;}
.quote p{font-family:var(--serif);font-size:1.3rem;font-style:italic;color:var(--ink);margin-bottom:14px;}
/* first line indents to clear the hanging opening quote */
.quote:not(.is-img) p:not(.who){text-indent:11px;}
.quote:not(.is-img)::before{content:"\201C";position:absolute;left:-2px;top:.06em;font-family:var(--serif);font-size:2.25rem;line-height:1;color:var(--green-d);}
.quote:not(.is-img) p:not(.who)::after{content:"\201D";font-family:var(--serif);font-size:2.5rem;line-height:0;color:var(--green-d);position:relative;top:13px;left:-3px;}
.quote .who{font-family:var(--sans);font-weight:700;font-style:normal;color:var(--bark);font-size:.95rem;margin:0;}
/* image testimonial: the screenshot does not get the hanging quote marks (generated
   on .quote:not(.is-img) only) */
.quote .shot{width:100%;height:auto;max-width:100%;display:block;border:1px solid var(--line);border-radius:4px;}

/* about-me teaser (home) */
.about2{display:grid;grid-template-columns:.85fr 1.15fr;gap:54px;align-items:center;}
.about2-photo img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;object-position:center 20%;display:block;border-radius:6px;border:1px solid var(--line);box-shadow:0 24px 50px -28px rgba(43,42,36,.4);}
.about2-copy .eyebrow{margin-bottom:14px;}
.about2-copy h2{font-size:clamp(1.9rem,3.4vw,2.7rem);margin-bottom:18px;}
.about2-copy p{font-size:1.06rem;}
.about2-copy p.lede{font-size:1.16rem;color:var(--ink);}
.about2-copy .seemore{margin-top:6px;}

/* blog teaser (home) */
.posts{display:grid;grid-template-columns:1fr 1fr;gap:40px;}
.post{border-top:3px solid var(--green);padding-top:26px;}
.post .meta{font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:var(--bark);font-weight:700;margin-bottom:12px;}
.post h3{font-size:1.55rem;margin-bottom:12px;}
.post h3 a{color:var(--ink);}
.post h3 a:hover{color:var(--green);}
.post p{font-size:1rem;}

/* ---------- CONTACT FORM ---------- */
.contact .wrap{max-width:760px;}
form.lead-form{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:8px;}
.field{display:flex;flex-direction:column;position:relative;}
.field.full{grid-column:1/-1;}
label{font-weight:700;font-size:.92rem;margin-bottom:8px;color:var(--ink);}
label .opt{font-weight:500;color:var(--ink-soft);}
input,textarea,select{font-family:var(--sans);font-size:1rem;color:var(--ink);background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);padding:13px 15px;width:100%;transition:.16s ease;}
/* custom dropdown chevron: native arrow hidden via appearance:none, replaced by an
   inline SVG caret painted into the field background */
select{appearance:none;-webkit-appearance:none;cursor:pointer;padding-right:42px;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232F5230' stroke-width='2.2'><path d='M5 8l7 7 7-7'/></svg>");background-repeat:no-repeat;background-position:right 15px center;}
select:invalid{color:var(--ink-soft);}
textarea{resize:vertical;min-height:140px;}
input:focus,textarea:focus,select:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px rgba(63,107,58,.14);}
/* field validity marks: only shown when filled AND not focused */
.field .mark{position:absolute;right:14px;top:42px;width:22px;height:22px;display:none;align-items:center;justify-content:center;border-radius:50%;font-size:.8rem;font-weight:800;}
input:not(:placeholder-shown):not(:focus):valid ~ .mark.ok{display:flex;background:var(--green);color:#fff;}
input:not(:placeholder-shown):not(:focus):invalid ~ .mark.bad{display:flex;background:#fff;color:var(--bark);border:2px solid var(--bark);}
input:not(:placeholder-shown):not(:focus):valid,
select:valid{border-color:var(--green);}
input:not(:placeholder-shown):not(:focus):invalid{border-color:var(--bark);}
input:-webkit-autofill,input:-webkit-autofill:hover,input:-webkit-autofill:focus,
textarea:-webkit-autofill,select:-webkit-autofill{-webkit-text-fill-color:var(--ink);-webkit-box-shadow:0 0 0 1000px #fff inset;box-shadow:0 0 0 1000px #fff inset;caret-color:var(--ink);}
.field .hint{display:none;font-size:.82rem;color:var(--bark);font-weight:600;margin-top:7px;}
input:not(:placeholder-shown):not(:focus):invalid ~ .hint{display:block;}
/* optional writing-sample upload — matches the text inputs, with a tinted button */
.file-input{cursor:pointer;padding:10px 13px;}
.file-input::file-selector-button{font-family:var(--sans);font-weight:700;font-size:.85rem;color:#fff;background:var(--green);border:none;border-radius:calc(var(--radius));padding:9px 16px;margin-right:14px;cursor:pointer;transition:background .15s ease;}
.file-input::file-selector-button:hover{background:var(--green-d);}
.file-hint{font-size:.82rem;color:var(--ink-soft);margin-top:8px;line-height:1.5;}
/* optional service checkboxes — multi-select, no validity gating */
.check-group{border:none;padding:0;margin:0;min-width:0;}
.check-group legend{font-weight:700;font-size:.92rem;margin-bottom:10px;color:var(--ink);padding:0;}
.check-group legend .opt{font-weight:500;color:var(--ink-soft);}
.checks{display:flex;flex-wrap:wrap;gap:10px;}
.check{display:flex;align-items:center;gap:9px;font-weight:500;font-size:.92rem;margin:0;color:var(--ink);cursor:pointer;border:1px solid var(--line);border-radius:var(--radius);padding:11px 15px;transition:border-color .15s ease,background .15s ease;}
.check:hover{border-color:var(--green);}
.check input{width:18px;height:18px;accent-color:var(--green);cursor:pointer;margin:0;}
.check:has(input:checked){border-color:var(--green);background:rgba(63,107,58,.07);}
.send{grid-column:1/-1;margin-top:6px;}
.send-btn{width:100%;font-size:1.05rem;padding:16px;opacity:.45;pointer-events:none;}
/* CSS-only form gating: Send stays dimmed + unclickable until NO field is :invalid */
form.lead-form:not(:has(:invalid)) .send-btn{opacity:1;pointer-events:auto;}
.send-note{font-size:.85rem;color:var(--ink-soft);margin-top:12px;text-align:center;}
/* success banner shown after a message is sent (send.php → contact.php?sent=1) */
.form-status{grid-column:1/-1;background:#EAF1E4;border:1.5px solid var(--green);color:var(--green-d);border-radius:var(--radius);padding:16px 20px;font-weight:600;margin-bottom:6px;}
.form-status.error{background:#F6ECE2;border-color:var(--bark);color:var(--bark);}

/* ---------- FOOTER ---------- */
footer.site{background:var(--green-d);color:#D9E4D2;padding:56px 0 40px;}
footer.site .top{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:48px;align-items:start;}
footer.site img.flogo{height:120px;width:auto;}
footer.site h4{color:#fff;font-family:var(--serif);font-size:1.3rem;margin-bottom:6px;}
footer.site .name{font-size:.95rem;color:#BFD0B6;margin:0 0 20px;}
footer.site .fbrand{display:flex;align-items:center;gap:18px;}
footer.site .fbrand .flogo{height:74px;}
footer.site .fbrand-txt h4{margin-bottom:3px;}
footer.site .fbrand .name{margin:0;}
footer.site .fcol h5{font-family:var(--sans);font-weight:700;letter-spacing:.12em;text-transform:uppercase;font-size:.78rem;color:#A9BE9F;margin:0 0 16px;}
footer.site ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px;}
footer.site a{color:#E7EFE2;font-weight:500;}
footer.site a:hover{color:#fff;text-decoration:underline;}
footer.site .copy{margin-top:52px;padding-top:24px;border-top:1px solid rgba(255,255,255,.16);font-size:.85rem;color:#9BB291;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;}

/* ---------- INNER-PAGE HELPERS ---------- */
.page-hero2{background:var(--green-d);color:#fff;padding:60px 0 46px;text-align:center;}
.page-hero2 h1{color:#fff;font-size:clamp(2.6rem,5vw,4.2rem);letter-spacing:-.01em;}
.page-hero2 .lead{font-family:var(--serif);font-style:italic;font-size:clamp(1.3rem,2.3vw,1.8rem);color:#E7EFE2;line-height:1.32;margin:20px auto 0;max-width:34ch;}
.twocol2{display:grid;grid-template-columns:1.5fr .9fr;gap:56px;align-items:start;}
.aside-card{background:#fff;border:1px solid var(--line);border-radius:6px;padding:32px 30px;position:sticky;top:108px;}
.aside-card h4{font-family:var(--serif);font-size:1.3rem;margin-bottom:14px;}
.aside-card .btn{width:100%;margin-top:18px;}
/* about-page portrait inside the sticky aside card */
.aside-photo{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;object-position:center 20%;border:1px solid var(--line);border-radius:4px;display:block;margin-bottom:22px;}
.factlist{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:13px;}
.factlist li{position:relative;padding-left:28px;color:var(--ink-soft);font-size:1rem;}
.factlist li::before{content:"";position:absolute;left:0;top:8px;width:13px;height:13px;border-radius:50%;background:var(--sage);border:2px solid var(--green);}
.prose-left{max-width:64ch;text-align:left;margin:0;}
.prose-left p{font-size:1.08rem;}
.prose-left p.lede{font-size:1.24rem;color:var(--ink);}
.prose-left h3{font-size:1.5rem;margin:36px 0 12px;}
.pkgs{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;}
.pkg{background:#fff;border:1px solid var(--line);border-radius:6px;padding:32px 28px;display:flex;flex-direction:column;}
.pkg h3{font-size:1.4rem;margin-bottom:6px;}
.pkg .price{font-family:var(--serif);font-style:italic;color:var(--bark);font-size:1.12rem;margin-bottom:18px;}
.pkg ul{list-style:none;margin:0 0 24px;padding:0;display:flex;flex-direction:column;gap:10px;}
.pkg li{position:relative;padding-left:22px;font-size:.96rem;color:var(--ink-soft);}
.pkg li::before{content:"\2013";position:absolute;left:0;color:var(--green);}
.pkg .btn{margin-top:auto;}
.faq .qa{padding:26px 0;border-bottom:1px solid var(--line);}
.faq .qa:first-child{border-top:1px solid var(--line);}
.faq h4{font-family:var(--serif);font-size:1.3rem;margin-bottom:8px;}
.faq p{margin:0;font-size:1.02rem;}
.note{font-size:.92rem;color:var(--ink-soft);margin-top:20px;}
.cta-band{background:var(--green-d);color:#fff;border-radius:8px;padding:56px 48px;text-align:center;}
.cta-band h2{color:#fff;font-size:clamp(1.9rem,3vw,2.5rem);margin-bottom:14px;}
.cta-band p{color:#D9E4D2;max-width:48ch;margin:0 auto 28px;}
.cta-band .btn-primary{background:var(--paper);color:var(--green-d);}
.cta-band .btn-primary:hover{background:#fff;}
.cta-band .btn-ghost{color:#fff;border-color:rgba(255,255,255,.7);}
.cta-band .btn-ghost:hover{background:#fff;color:var(--green-d);}
.postlist{display:flex;flex-direction:column;}
.postrow{border-top:3px solid var(--green);padding:30px 0;}
.postrow .meta{font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:var(--bark);font-weight:700;margin-bottom:12px;}
.postrow h3{font-size:1.7rem;margin-bottom:12px;}
.postrow h3 a{color:var(--ink);}
.postrow h3 a:hover{color:var(--green);}
.postrow p{font-size:1.04rem;max-width:70ch;margin:0;}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px){
  .grid3,.steps,.svc,.quotes,.posts,.need,footer.site .top,.about2,.twocol2,.pkgs{grid-template-columns:1fr;}
  .about2-photo{max-width:380px;}
  .aside-card{position:static;}
  .cta-band{padding:40px 26px;}
  .nav-toggle{display:flex;}
  nav.menu{position:absolute;top:100%;left:0;right:0;display:none;flex-direction:column;align-items:stretch;gap:0;background:var(--paper);border-bottom:1px solid var(--line);box-shadow:0 26px 40px -26px rgba(43,42,36,.4);padding:8px 24px 22px;}
  header.site.nav-open nav.menu{display:flex;}
  nav.menu a:not(.btn){display:block;padding:13px 2px;border-bottom:1px solid var(--line);}
  nav.menu a:not(.btn)::before{display:none;}
  .dropdown{position:static;}
  .dropdown>a:not(.active)::after{display:none;}
  .submenu{position:static;transform:none;opacity:1;visibility:visible;background:transparent;border:none;box-shadow:none;min-width:0;padding:0;}
  .submenu::before{display:none;}
  nav.menu .dropdown .submenu a{padding:13px 2px 13px 24px;}
  .nav-actions{display:flex;flex-direction:row;align-items:center;gap:14px;flex-wrap:wrap;margin-top:14px;}
  nav.menu .lang-toggle{margin:0;align-self:auto;}
  nav.menu .btn-bark{margin-top:0;}
  .need{gap:40px;border:none;border-radius:0;overflow:visible;}
  .need .col{border-radius:6px;}
  .need .left{border:1px solid var(--line);}
  .reveal.armed{transform:translateY(14px);}
  .reveal.armed.in{transition:opacity .42s ease, transform .42s ease;}
  form.lead-form{grid-template-columns:1fr;}
  .field .mark{top:42px;}
}
@media(max-width:560px){
  .nav-actions{flex-direction:column;align-items:stretch;gap:12px;}
  nav.menu .lang-toggle{align-self:flex-start;width:max-content;}
}