
:root{
  --bg:#fbf8f3;
  --surface:#ffffff;
  --ink:#2a2622;
  --ink-soft:#5b554f;
  --line:#e8e1d4;
  --brand:#6b8e5a;        /* sage */
  --brand-dark:#4f6f43;
  --accent:#c98a4b;       /* warm wood */
  --accent-dark:#a16d36;
  --call:#d35400;
  --call-dark:#b04500;
  --radius:14px;
  --shadow:0 6px 24px rgba(60,45,30,0.08);
  --maxw:1180px;
  --serif:"Fraunces", Georgia, serif;
  --sans:"Inter","Helvetica Neue",Arial,sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Inter:wght@400;500;600;700&display=swap');
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--sans);color:var(--ink);background:var(--bg);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand-dark);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3,h4{font-family:var(--serif);font-weight:700;line-height:1.2;color:var(--ink);margin:.4em 0 .5em}
h1{font-size:clamp(2rem,4.5vw,3.4rem)}
h2{font-size:clamp(1.6rem,3vw,2.3rem)}
h3{font-size:1.3rem}
p{margin:.6em 0}
.container{max-width:var(--maxw);margin:0 auto;padding:0 1.25rem}
.section{padding:4rem 0}
.section.alt{background:var(--surface)}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.4rem;border-radius:999px;font-weight:600;font-size:.95rem;border:2px solid transparent;cursor:pointer;transition:transform .15s,box-shadow .15s,background .15s;text-decoration:none}
.btn:hover{text-decoration:none;transform:translateY(-1px);box-shadow:0 6px 18px rgba(0,0,0,.12)}
.btn-call{background:var(--call);color:#fff}
.btn-call:hover{background:var(--call-dark);color:#fff}
.btn-outline{background:transparent;color:var(--ink);border-color:var(--ink)}
.btn-outline:hover{background:var(--ink);color:#fff}
.btn-primary{background:var(--brand);color:#fff}
.btn-primary:hover{background:var(--brand-dark);color:#fff}
.btn-lg{padding:1rem 1.7rem;font-size:1.05rem}

/* Header */
.site-header{position:sticky;top:0;z-index:100;background:var(--surface);box-shadow:0 2px 12px rgba(0,0,0,.06)}
.topbar{background:var(--ink);color:#f6efe2;font-size:.85rem}
.topbar-row{display:flex;justify-content:space-between;align-items:center;padding:.45rem 1.25rem}
.topbar-phone{color:#ffd9a8;font-weight:700}
.topbar-phone:hover{color:#fff}
.header-row{display:flex;align-items:center;gap:1rem;padding:.7rem 1.25rem}
.brand{display:flex;align-items:center;gap:.7rem;text-decoration:none;color:var(--ink)}
.brand:hover{text-decoration:none}
.brand-logo{width:54px;height:54px;border-radius:12px;background:#f0e9d8;padding:4px}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{font-family:var(--serif);font-weight:700;font-size:1.25rem;color:var(--brand-dark)}
.brand-tag{font-size:.72rem;color:var(--ink-soft);letter-spacing:.04em;text-transform:uppercase}
.main-nav{margin-left:auto}
.nav-list{display:flex;list-style:none;margin:0;padding:0;gap:.2rem;align-items:center}
.nav-list a{display:block;padding:.55rem .8rem;color:var(--ink);font-weight:500;font-size:.95rem;border-radius:8px}
.nav-list a:hover{background:#f3ecdb;text-decoration:none;color:var(--brand-dark)}
.has-dropdown{position:relative}
.dropdown{position:absolute;top:100%;left:0;background:#fff;min-width:240px;list-style:none;margin:0;padding:.4rem;border-radius:10px;box-shadow:0 12px 30px rgba(0,0,0,.12);opacity:0;visibility:hidden;transform:translateY(6px);transition:.18s;z-index:101}
.has-dropdown:hover>.dropdown,.has-dropdown:focus-within>.dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{padding:.55rem .75rem;font-size:.9rem;border-radius:6px}
.header-cta{margin-left:.5rem}
.nav-toggle{display:none;background:none;border:0;width:42px;height:42px;flex-direction:column;justify-content:center;gap:5px;align-items:center;cursor:pointer;margin-left:auto}
.nav-toggle span{display:block;width:24px;height:2.5px;background:var(--ink);border-radius:2px}

/* Sticky call (mobile) */
.sticky-call{display:none;position:fixed;bottom:0;left:0;right:0;background:var(--call);color:#fff;text-align:center;padding:.95rem;font-weight:700;z-index:99;box-shadow:0 -4px 18px rgba(0,0,0,.18)}
.sticky-call:hover{color:#fff;background:var(--call-dark);text-decoration:none}

/* Hero */
.hero{position:relative;background:linear-gradient(135deg,#f6eedc 0%,#efe2c5 100%);overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:2.5rem;align-items:center;padding:3.5rem 0 4rem}
.hero h1{margin-top:0}
.hero-eyebrow{display:inline-block;background:var(--brand);color:#fff;padding:.3rem .9rem;border-radius:999px;font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.4rem}
.hero-trust{display:flex;gap:1.4rem;flex-wrap:wrap;margin-top:1.5rem;color:var(--ink-soft);font-size:.9rem}
.hero-trust strong{color:var(--ink)}
.hero-img{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);aspect-ratio:16/10}
.hero-img img{width:100%;height:100%;object-fit:cover}

/* Cards */
.grid{display:grid;gap:1.4rem}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:.2s}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.card-img{aspect-ratio:4/3;overflow:hidden;background:#eee}
.card-img img{width:100%;height:100%;object-fit:cover;transition:.4s}
.card:hover .card-img img{transform:scale(1.04)}
.card-body{padding:1.2rem 1.25rem 1.4rem;display:flex;flex-direction:column;flex:1}
.card-body h3{margin:0 0 .35rem;font-size:1.18rem}
.card-body p{flex:1;color:var(--ink-soft);font-size:.94rem}
.card-link{margin-top:.7rem;color:var(--brand-dark);font-weight:600;font-size:.9rem}

/* CTA band */
.cta-band{background:linear-gradient(135deg,var(--brand-dark),var(--brand));color:#fff;padding:3rem 0}
.cta-band h2{color:#fff;margin:0}
.cta-band p{opacity:.92;margin:.4rem 0 0}
.cta-row{display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap}
.cta-actions{display:flex;gap:.7rem;flex-wrap:wrap}
.cta-band .btn-outline{color:#fff;border-color:#fff}
.cta-band .btn-outline:hover{background:#fff;color:var(--ink)}

/* Sections */
.section-head{text-align:center;max-width:760px;margin:0 auto 2.4rem}
.section-head p{color:var(--ink-soft);font-size:1.05rem}
.lead{font-size:1.15rem;color:var(--ink-soft);max-width:780px}

/* Two-col */
.two-col{display:grid;grid-template-columns:1.1fr 1fr;gap:3rem;align-items:center}
.two-col img{border-radius:var(--radius);box-shadow:var(--shadow)}

/* FAQ */
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:.7rem}
.faq-item{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:1rem 1.15rem}
.faq-item summary{cursor:pointer;font-weight:600;font-family:var(--serif);font-size:1.1rem;list-style:none;display:flex;justify-content:space-between;align-items:center}
.faq-item summary::after{content:"+";font-size:1.4rem;color:var(--brand);transition:.2s}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{margin:.7rem 0 0;color:var(--ink-soft)}

/* Testimonials */
.testimonial{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem;display:flex;flex-direction:column;gap:.7rem}
.testimonial .stars{color:#e2a73b;letter-spacing:2px}
.testimonial blockquote{margin:0;font-style:italic;color:var(--ink)}
.testimonial cite{font-style:normal;color:var(--ink-soft);font-size:.9rem;font-weight:600}

/* Page header */
.page-header{background:linear-gradient(135deg,#efe2c5 0%,#f6eedc 100%);padding:3rem 0 2.5rem;text-align:center}
.page-header h1{margin:0}
.page-header p{color:var(--ink-soft);max-width:680px;margin:.7rem auto 0}

/* Lists */
.bullets{list-style:none;padding:0}
.bullets li{padding:.45rem 0 .45rem 1.7rem;position:relative;color:var(--ink)}
.bullets li::before{content:"✓";position:absolute;left:0;color:var(--brand);font-weight:700}

/* Areas grid */
.areas-grid{columns:3;column-gap:1.8rem}
.areas-grid li{break-inside:avoid;padding:.35rem 0;list-style:none}

/* Footer */
.site-footer{background:#231f1c;color:#d8cfc1;padding:3rem 0 0;margin-top:3rem}
.site-footer h4{color:#fff;font-family:var(--sans);font-size:.9rem;letter-spacing:.06em;text-transform:uppercase;margin-top:0}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2rem;padding-bottom:2.4rem}
.footer-brand{display:flex;align-items:center;gap:.6rem;margin-bottom:.5rem}
.footer-brand strong{font-family:var(--serif);font-size:1.2rem;color:#fff}
.footer-brand img{width:48px;height:48px;background:#fff;border-radius:10px;padding:4px}
.footer-list{list-style:none;padding:0;margin:0;font-size:.92rem}
.footer-list li{padding:.18rem 0}
.footer-list a{color:#d8cfc1}
.footer-list a:hover{color:#fff}
.site-footer a{color:#ffd9a8}
.footer-bottom{border-top:1px solid #3a3431;padding:1.2rem 0;font-size:.85rem;color:#9a9087}

/* Map */
.map-wrap{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);aspect-ratio:16/9}
.map-wrap iframe{border:0;width:100%;height:100%}

/* Form */
.contact-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:2.5rem}
.form-row{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1rem}
.form-row label{font-weight:600;font-size:.9rem}
.form-row input,.form-row textarea,.form-row select{padding:.75rem .9rem;border:1px solid var(--line);border-radius:10px;font:inherit;background:#fff}
.form-row input:focus,.form-row textarea:focus{outline:2px solid var(--brand);border-color:var(--brand)}

/* Article (resources) */
.article{max-width:780px;margin:0 auto;padding:0 1rem}
.article h2{margin-top:2rem}
.article img{margin:1.5rem 0;border-radius:var(--radius)}
.article ul{padding-left:1.3rem}

/* Responsive */
@media (max-width:1024px){
  .nav-list{gap:0}
  .nav-list a{padding:.5rem .55rem;font-size:.88rem}
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:880px){
  .nav-toggle{display:flex}
  .header-cta{order:3}
  .main-nav{position:fixed;top:0;right:-100%;width:84%;max-width:340px;height:100vh;background:#fff;padding:5rem 1.2rem 6rem;box-shadow:-8px 0 30px rgba(0,0,0,.18);overflow-y:auto;transition:right .25s;z-index:120}
  .main-nav.open{right:0}
  .nav-list{flex-direction:column;align-items:stretch;gap:.1rem}
  .nav-list a{padding:.85rem 1rem;border-radius:8px;font-size:1rem}
  .dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;background:#f7f1e3;margin:.3rem 0 .6rem;padding:.3rem .5rem;display:none}
  .has-dropdown.open>.dropdown{display:block}
  .has-dropdown>a::after{content:" ▾";color:var(--brand)}
  .nav-overlay{position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:90;display:none}
  .nav-overlay.show{display:block}
  .hero-grid,.two-col,.contact-grid{grid-template-columns:1fr;gap:2rem}
  .grid-3,.grid-4{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .areas-grid{columns:2}
  .sticky-call{display:block}
  body{padding-bottom:64px}
  .topbar-text{display:none}
  .topbar-row{justify-content:center}
  .cta-row{flex-direction:column;text-align:center;align-items:stretch}
}
@media (max-width:520px){
  .footer-grid{grid-template-columns:1fr}
  .areas-grid{columns:1}
  .brand-tag{display:none}
  .header-cta{padding:.6rem .9rem;font-size:.85rem}
}


/* ===== FIXES v2 ===== */
/* Topbar with contact info */
.topbar-row{flex-wrap:wrap;gap:.4rem 1.2rem;padding:.55rem 1.25rem}
.topbar-contact{display:flex;flex-wrap:wrap;gap:.3rem 1.2rem;align-items:center;font-size:.85rem}
.topbar-contact a{color:#f6efe2}
.topbar-contact a:hover{color:#ffd9a8;text-decoration:none}
.topbar-contact .sep{opacity:.4}
.topbar-phone{color:#ffd9a8;font-weight:700;white-space:nowrap}

/* Nav alignment - equal height items, consistent caret */
.nav-list{align-items:stretch}
.nav-list>li{display:flex;align-items:center}
.nav-list>li>a{display:inline-flex;align-items:center;gap:.25rem;height:42px;line-height:1;white-space:nowrap}
.has-dropdown>a{position:relative;padding-right:.7rem !important}
.has-dropdown>a .caret{display:inline-block;font-size:.7rem;margin-left:.15rem;transition:transform .2s;color:var(--brand-dark)}
.has-dropdown:hover>a .caret{transform:rotate(180deg)}

/* Header CTA - vertically aligned, refined */
.header-row{align-items:center}
.header-cta{margin-left:.6rem;height:42px;padding:0 1.15rem;font-size:.92rem;box-shadow:0 4px 12px rgba(211,84,0,.25);white-space:nowrap}
.header-cta:hover{box-shadow:0 6px 16px rgba(211,84,0,.35)}

/* Areas list - clean styled chips, no pseudo-element marker */
.areas-grid.bullets li::before{content:none !important;display:none !important}
.areas-grid.bullets li{padding:.5rem .25rem !important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:1rem;color:var(--ink);border-bottom:1px solid #eee4cf}
.areas-grid.bullets li a{color:var(--brand-dark);font-weight:600;text-decoration:none}
.areas-grid.bullets li a:hover{color:var(--call);text-decoration:underline}

/* Full-screen hero */
.hero.hero-full{
  background:linear-gradient(rgba(20,15,10,.55),rgba(20,15,10,.65)),url('../images/hero.jpg') center/cover no-repeat;
  min-height:88vh;
  display:flex;
  align-items:center;
  color:#fff;
  padding:5rem 0;
}
.hero.hero-full .hero-grid{grid-template-columns:1fr;max-width:820px;gap:1.2rem;padding:0}
.hero.hero-full h1{color:#fff;font-size:clamp(2.2rem,5.5vw,4rem);text-shadow:0 2px 20px rgba(0,0,0,.4)}
.hero.hero-full .lead{color:#f3ece0;font-size:1.25rem;max-width:680px}
.hero.hero-full .hero-eyebrow{background:rgba(255,255,255,.18);backdrop-filter:blur(6px)}
.hero.hero-full .hero-trust{color:#f3ece0}
.hero.hero-full .hero-trust strong{color:#fff}
.hero.hero-full .btn-outline{color:#fff;border-color:#fff}
.hero.hero-full .btn-outline:hover{background:#fff;color:var(--ink)}
.hero.hero-full .hero-img{display:none}

@media (max-width:880px){
  .topbar-contact{justify-content:center;font-size:.78rem;gap:.2rem .7rem}
  .topbar-contact .sep{display:none}
  .hero.hero-full{min-height:72vh;padding:4rem 0}
}
