/* assets/css/styles.css */

:root{
  /* Premium light sage + earth palette */
  --bg: #FBF8F2;          /* warm bone */
  --bg2: #F0F5F0;         /* sage wash */
  --surface: #FFFFFF;     /* clean surface */
  --text: #18231E;        /* evergreen charcoal */
  --muted: #4A5A52;       /* calm gray-green */
  --sage: #6F8F7A;        /* primary */
  --sage2: #587865;       /* hover */
  --earth: #B08B5A;       /* accent */
  --clay: #C27B63;        /* highlight */
  --border: rgba(24,35,30,.12);
  --shadow: 0 14px 36px rgba(24,35,30,.10);
  --radius: 18px;
  --radius2: 24px;

  --container: 1100px;
  --space: 1rem;

  --focus: 0 0 0 4px rgba(111,143,122,.22);
}
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(107,143,113,0.18), transparent 60%),
    radial-gradient(900px 520px at 88% 18%, rgba(176,139,90,0.16), transparent 58%),
    radial-gradient(700px 420px at 70% 85%, rgba(193,124,92,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.55;
}
body.no-scroll{ overflow: hidden; }

a{ color: inherit; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: #fff; color: #000;
  padding: .6rem .8rem; border-radius: 10px;
}
.skip-link:focus{ left: 1rem; top: 1rem; z-index: 9999; }

.sr-only{
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.site-header{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247,243,234,0.78);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0;
}
.brand{
  display: flex; align-items: center; gap: .6rem;
  font-weight: 650;
}
.brand-mark{
  display: grid; place-items: center;
/*  border: 1px solid rgba(31,42,36,0.14);
  background: var(--accent);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);*/
}
.brand-mark img{
  height: 48px;
  display: block;
}
.brand-name{ letter-spacing: .2px; }

.nav{ position: relative; }
.nav-toggle{
  display: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: 12px;
  padding: .55rem .7rem;
}
.nav-menu{
  display: flex; gap: 1rem; align-items: center;
}
.nav-menu a{
  text-decoration: none;
  color: var(--muted);
  padding: .4rem .3rem;
}
.nav-menu a:hover{ color: var(--text); }

.btn{
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(31,42,36,0.10);
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  padding: .8rem 1.05rem;
  box-shadow: 0 10px 22px rgba(17,24,19,0.12);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); background: var(--accentDark); }
.btn:active{ transform: translateY(0px); }
.btn-full{ width: 100%; }
.btn-small{ padding: .6rem .85rem; font-size: .95rem; }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(107,143,113,0.12); }

.hero{
  position: relative;
  overflow: hidden;
}
.hero-bg{
  position: absolute; inset: -120px -120px auto -120px;
  height: 520px;
  background: radial-gradient(700px 380px at 25% 25%, rgba(107,143,113,0.20), transparent 60%),
              radial-gradient(620px 360px at 75% 20%, rgba(176,139,90,0.16), transparent 55%),
              radial-gradient(780px 420px at 80% 80%, rgba(193,124,92,0.10), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: start;
}
.kicker{ color: var(--muted2); margin: 0 0 .8rem; }
.hero h1{
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lede{
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-cta{ display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.1rem 0 1.2rem; }

.trust{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .35rem;
  color: var(--muted2);
}
.trust li::before{ content: "• "; color: rgba(255,255,255,0.45); }

.hero-media{ display: grid; gap: 1rem; }
.hero-image img{
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 6px);
  display: block;
}
.hero-thumbs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.thumb{
  padding: 0;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}
.thumb img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  display: block;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.muted{ color: var(--muted); }
.micro{ font-size: .9rem; }

.divider{
  height: 1px; background: var(--border);
  margin: 1rem 0;
}

.strip{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(107,143,113,0.08);
}
.strip-inner{ padding: 0; color: var(--muted); }

.section{ padding: 3.6rem; }
.section.alt{ background: rgba(176,139,90,0.06); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head{ margin-bottom: 1.6rem; }
.section-head h2{ margin: 0 0 .4rem; font-size: 1.8rem; letter-spacing: -0.01em; }
.subhead{ margin: 0; color: var(--muted); }

.grid-2{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.grid-3{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

.price{ margin: .8rem 0 .4rem; }
.amount{ font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.unit{ color: var(--muted2); }

.bullets{ margin: .6rem 0 1rem; padding-left: 1.1rem; color: var(--muted); }
.bullets li{ margin: .25rem 0; }

.featured{
  border-color: rgba(107,143,113,0.28);
  background: linear-gradient(180deg, rgba(107,143,113,0.18), rgba(255,255,255,0.88));
}
.badge{
  display: inline-block;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(31,42,36,0.14);
  background: rgba(107,143,113,0.14);
  color: var(--text);
  font-size: .85rem;
  margin-bottom: .6rem;
}

.faq details summary{
  cursor: pointer;
  font-weight: 650;
}
.faq details p{ color: var(--muted); margin: .8rem 0 0; }

.form .field{ margin-bottom: .9rem; }
label{ display: block; margin-bottom: .35rem; color: var(--muted); }
input, textarea{
  width: 100%;
  padding: .8rem .85rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.90);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{ border-color: rgba(255,255,255,0.25); }

.check{ display: flex; gap: .6rem; align-items: flex-start; }
.check input{ width: auto; margin-top: .2rem; }
.error{ margin: .35rem 0 0; color: rgba(167,54,54,0.95); min-height: 1em; }

.hp{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer{
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: rgba(31,42,36,0.04);
}
.footer-inner{
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  padding:10px;
}

.sticky-cta{
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  display: none;
}

.fineprint{ margin-top: 1rem; }

/* Masonry gallery */
.masonry{
  columns: 3;
  column-gap: 1rem;
}
.masonry-item{
  width: 100%;
  padding: 0;
  margin: 0 0 1rem;
  break-inside: avoid;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.masonry-item img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}
.chip{
  position: absolute;
  left: .85rem;
  bottom: .85rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  font-size: .85rem;
  backdrop-filter: blur(10px);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
}
.lightbox[hidden]{ display: none; }
.lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.lightbox-panel{
  position: relative;
  width: min(980px, calc(100vw - 2rem));
  padding: 1rem;
}
.lightbox-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}
.lightbox-close{
  position: absolute;
  right: .75rem;
  top: .75rem;
}

@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .sticky-cta{ display: block; }
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    display: none;
    position: absolute;
    right: 0;
    top: 52px;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    background: rgba(247,243,234,0.96);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: min(320px, calc(100vw - 2rem));
  }
  .nav-menu.open{ display: flex; }
  .masonry{ columns: 1; }
}


/* --- UX/AEO upgrade overrides (2026-03) --- */

body{
  background: radial-gradient(1200px 600px at 15% 0%, var(--bg2), var(--bg)) fixed;
  color: var(--text);
}

a{ color: inherit; }
a:hover{ color: var(--sage2); }

.container{ max-width: var(--container); }

.site-header{
  background: rgba(251,248,242,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand-name{ letter-spacing: .2px; }

.nav-menu a{ font-weight: 600; }

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn{
  background: var(--sage);
  border: 1px solid transparent;
  color: #fff;
  border-radius: 999px;
  padding: .9rem 1.1rem;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
}
.btn:hover{ background: var(--sage2); }
.btn:focus{ outline: none; box-shadow: var(--focus); }

.btn-ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: rgba(24,35,30,.22);
  background: rgba(111,143,122,.08);
}

.btn-small{ padding: .6rem .85rem; font-weight: 700; }
.btn-full{ width: 100%; text-align: center; }

.kicker{
  color: var(--muted);
  background: rgba(111,143,122,.10);
  border: 1px solid rgba(111,143,122,.16);
  display: inline-block;
  padding: .25rem .55rem;
  border-radius: 999px;
}

.hero{ padding: 1rem; }
.hero h1{ letter-spacing: -0.02em; }
.hero .lede{ color: var(--muted); font-size: 1.06rem; line-height: 1.6; }
.hero-cta{ display:flex; gap:.65rem; flex-wrap: wrap; align-items: center; }
.hero-cta .btn{ white-space: nowrap; }

.hero-mini{ display:grid; grid-template-columns: 1fr 1fr; gap:.75rem; margin-top:.85rem; }
.mini-card{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem .85rem;
}
.mini-title{ font-size: .8rem; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.mini-list{ font-size: .95rem; color: var(--text); font-weight: 650; margin-top: .2rem; line-height: 1.35; }

.strip{ background: rgba(240,245,240,.65); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);  padding-left:10px;  padding-right:10px; }
.strip p{ color: var(--text); }

.section-head .subhead{ color: var(--muted); }

.quote blockquote{
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
}
.quote figcaption{ margin-top: .75rem; }

.cta-row{
  margin-top: 1.1rem;
  display:flex;
  gap:.75rem;
  flex-wrap: wrap;
}

.trust-badges{
  margin-top: 1.1rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:.75rem;
}
.badge-card{
  background: rgba(255,255,255,.72);
  border: 1px dashed rgba(24,35,30,.20);
  border-radius: 999px;
  padding: .65rem .9rem;
  text-align: center;
  font-weight: 750;
  color: var(--text);
}

.featured{
  border-color: rgba(111,143,122,.35);
  box-shadow: 0 18px 46px rgba(24,35,30,.12);
}

.faq details summary{
  font-weight: 800;
}
.faq details[open] summary{
  color: var(--sage2);
}
.faq p{ color: var(--muted); }

.phone-link{
  font-weight: 900;
  font-size: 1.15rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-actions{ display:grid; gap:.6rem; margin-top: .85rem; }

.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

.sticky-cta{
  position: sticky;
  bottom: 0;
  z-index: 50;
  background: rgba(251,248,242,.90);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: .7rem .75rem;
  display:flex;
  gap:.6rem;
  justify-content:center;
}
@media (min-width: 900px){
  .sticky-cta{ display:none; }
}

@media (max-width: 720px){
  .hero-mini{ grid-template-columns: 1fr; }
  .trust-badges{ grid-template-columns: 1fr; }
  .nav-menu .btn{ width:100%; justify-content:center; }
}
