:root{
  --olive:#829079;
  --beige:#ede6b9;
  --amber:#b9925e;

  --ink:#18201b;
  --muted:#3c463f;
  --bg0:#fbfaf6;
  --bg1:#f6f2e7;
  --card:#ffffff;
  --line:rgba(20,26,22,.10);
  --shadow:0 12px 30px rgba(20,26,22,.08);
  --radius:18px;

  --wrap:1120px;
  --header-h:72px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(237,230,185,.55), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(185,146,94,.18), transparent 60%),
    radial-gradient(900px 500px at 60% 100%, rgba(130,144,121,.14), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height:100vh;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
a:focus-visible, button:focus-visible{outline:3px solid rgba(185,146,94,.55); outline-offset:3px; border-radius:10px}

.wrap{max-width:var(--wrap); margin:0 auto; padding:0 18px}
main{padding:34px 0 56px}
.section{padding:26px 0}
.section-title{font-family: ui-serif, Georgia, "Times New Roman", Times, serif; font-weight:750; letter-spacing:-.02em}
.kicker{display:inline-flex; align-items:center; gap:10px; font-weight:650; color:var(--muted); font-size:.95rem}
.kicker:before{
  content:"";
  width:10px; height:10px; border-radius:999px;
  background:linear-gradient(180deg, var(--amber), rgba(130,144,121,.55));
  box-shadow:0 0 0 6px rgba(237,230,185,.5);
}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,250,246,.78);
  backdrop-filter:saturate(120%) blur(10px);
  border-bottom:1px solid rgba(20,26,22,.08);
}
.header-inner{
  height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand img{border-radius:10px; box-shadow:0 8px 18px rgba(20,26,22,.10)}
.brand-text{font-weight:850; letter-spacing:-.02em; font-size:1.05rem}
.site-nav{display:flex; align-items:center; gap:10px}
.nav-link{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  font-weight:650;
  color:rgba(24,32,27,.86);
  transition:background .2s ease, transform .2s ease;
}
.nav-link:hover{background:rgba(237,230,185,.55)}
.nav-link[aria-current="page"]{background:rgba(237,230,185,.8); box-shadow: inset 0 0 0 1px rgba(185,146,94,.25)}

.header-actions{display:flex; align-items:center; gap:10px}
.phone-pill{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(20,26,22,.10);
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 20px rgba(20,26,22,.06);
  font-weight:800;
}
.menu-btn{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(20,26,22,.10);
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 20px rgba(20,26,22,.06);
}
.menu-btn .i{display:grid; place-items:center}
.menu-btn svg{width:22px; height:22px}

.mobile-nav{
  padding:0 18px 14px;
}
.mobile-nav-inner{
  display:flex; flex-direction:column;
  padding:10px;
  border-radius:16px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(20,26,22,.10);
  box-shadow:0 16px 34px rgba(20,26,22,.10);
}
.mobile-nav-inner .nav-link{padding:12px 12px}

.hero{
  padding:18px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.hero-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(20,26,22,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-media img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
}
.hero-copy{padding:22px}
.h1{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.05rem, 3.2vw, 3.1rem);
  line-height:1.04;
  letter-spacing:-.03em;
  margin:10px 0 10px;
}
.lead{color:rgba(24,32,27,.78); font-size:1.05rem; line-height:1.6; margin:0 0 16px}
.hero-points{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  margin-top:16px;
}
.point{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(20,26,22,.10);
  background:rgba(237,230,185,.35);
}
.point b{display:block}
.point span{color:rgba(24,32,27,.78); font-size:.94rem}

.btn-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.btn{
  appearance:none;
  border:1px solid rgba(20,26,22,.10);
  background:rgba(255,255,255,.8);
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  text-decoration:none;
  display:inline-flex; align-items:center; gap:10px;
  min-height:44px;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 12px 22px rgba(20,26,22,.10)}
.btn-primary{
  background:linear-gradient(180deg, rgba(185,146,94,.95), rgba(185,146,94,.78));
  color:#141a16;
  border-color: rgba(185,146,94,.35);
}
.btn-ghost{background:rgba(255,255,255,.72)}
.btn .i svg{width:18px;height:18px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px;
}
.card{
  background:rgba(255,255,255,.80);
  border:1px solid rgba(20,26,22,.10);
  border-radius:var(--radius);
  box-shadow:0 14px 30px rgba(20,26,22,.08);
  padding:18px;
  display:flex;
  flex-direction:column;
  min-height: 210px;
}
.card-top{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin-bottom:10px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(237,230,185,.52);
  border:1px solid rgba(20,26,22,.10);
}
.badge svg{width:18px;height:18px}
.card h3{
  margin:6px 0 8px;
  font-size:1.05rem;
  letter-spacing:-.01em;
}
.card p{margin:0; color:rgba(24,32,27,.78); line-height:1.55}
.card .card-foot{margin-top:auto; padding-top:14px}
.card .card-link{
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none;
  font-weight:850;
  color:rgba(24,32,27,.92);
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(20,26,22,.10);
  background:rgba(255,255,255,.72);
  min-height:44px;
}
.card .card-link:hover{box-shadow:0 12px 20px rgba(20,26,22,.10); transform:translateY(-1px)}
.card .card-link svg{width:16px;height:16px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.panel{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(20,26,22,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.panel h2{margin:0 0 8px}
.list{margin:0; padding-left:18px; color:rgba(24,32,27,.85)}
.list li{margin:8px 0; line-height:1.5}

.contact-card{
  overflow:hidden;
}
.form-shell{
  padding:18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(20,26,22,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.form-shell .form-note{margin:0 0 10px; color:rgba(24,32,27,.74)}
.hs-form-wrapper{min-height:420px}
.hs-form-wrapper iframe{width:100% !important; border:0 !important; min-height:460px}
.hs-fallback{
  display:none;
  padding:12px;
  border-radius:14px;
  border:1px dashed rgba(20,26,22,.18);
  background:rgba(237,230,185,.28);
  color:rgba(24,32,27,.80);
}

.faq details{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(20,26,22,.10);
  border-radius:16px;
  box-shadow:0 10px 22px rgba(20,26,22,.06);
  margin:10px 0;
  overflow:hidden;
}
.faq summary{
  list-style:none;
  cursor:pointer;
  padding:14px 16px;
  min-height:44px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  font-weight:850;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary .i svg{width:18px;height:18px}
.faq .faq-body{padding:0 16px 14px; color:rgba(24,32,27,.78); line-height:1.6}

.site-footer{
  padding:34px 0 18px;
  background:linear-gradient(180deg, rgba(237,230,185,.18), rgba(237,230,185,.42));
  border-top:1px solid rgba(20,26,22,.08);
}
.footer-inner{
  display:flex; gap:22px; align-items:flex-start; justify-content:space-between;
}
.footer-brand{display:flex; gap:10px; align-items:center}
.footer-brand img{border-radius:10px; box-shadow:0 10px 18px rgba(20,26,22,.08)}
.footer-name{font-weight:900; letter-spacing:-.02em}
.footer-tagline{color:rgba(24,32,27,.70); margin-top:3px}
.footer-cols{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; width:min(700px, 100%)}
.footer-title{font-weight:900; margin-bottom:10px}
.footer-link{
  display:block; text-decoration:none;
  color:rgba(24,32,27,.82);
  padding:8px 10px;
  border-radius:12px;
}
.footer-link:hover{background:rgba(255,255,255,.72)}
.footer-note{margin-top:10px; color:rgba(24,32,27,.70)}
.footer-bottom{padding-top:16px; border-top:1px solid rgba(20,26,22,.08); color:rgba(24,32,27,.70)}

.cookie{
  position:fixed; left:0; right:0; bottom:0;
  z-index:80;
  padding:12px 12px calc(12px + env(safe-area-inset-bottom));
  display:flex; justify-content:center;
}
.cookie-inner{
  width:min(980px, 100%);
  background:rgba(255,255,255,.88);
  border:1px solid rgba(20,26,22,.10);
  box-shadow:0 20px 40px rgba(20,26,22,.16);
  border-radius:18px;
  padding:12px 12px;
  display:flex; gap:12px; align-items:center; justify-content:space-between;
}
.cookie-text{margin:0; color:rgba(24,32,27,.78); font-size:.95rem; line-height:1.4}
.cookie-text a{color:rgba(24,32,27,.92); font-weight:850}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap}

.fab-wrap{
  position:fixed; left:14px; bottom:14px;
  z-index:85;
  display:flex; gap:10px;
  padding-bottom: env(safe-area-inset-bottom);
}
.fab{
  width:56px; height:56px;
  border-radius:18px;
  border:1px solid rgba(20,26,22,.12);
  background:rgba(255,255,255,.78);
  box-shadow:0 16px 30px rgba(20,26,22,.16);
  display:grid; place-items:center;
  cursor:pointer;
}
.fab .i svg{width:22px;height:22px}
.fab-call{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:14px;
  width:60px; height:60px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(130,144,121,.85), rgba(130,144,121,.72));
  color:#0f1411;
  border:1px solid rgba(130,144,121,.35);
  text-decoration:none;
  display:none;
}
body.has-cookie .fab-wrap{bottom:92px}
body.has-cookie .fab-call{bottom:92px}

@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .hero-grid{grid-template-columns: 1fr}
  .footer-inner{flex-direction:column}
  .footer-cols{grid-template-columns: repeat(2, minmax(0,1fr))}
  .split{grid-template-columns: 1fr}
}
@media (max-width: 760px){
  .site-nav{display:none}
  .menu-btn{display:inline-flex; align-items:center; justify-content:center}
  .fab-call{display:grid; place-items:center}
  .cookie-inner{flex-direction:column; align-items:flex-start}
  .cookie-actions{width:100%}
  .cookie-actions .btn{flex:1}
  .footer-cols{grid-template-columns: 1fr}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn, .nav-link, .card .card-link{transition:none}
}
