/* ============================================================
   Treemate — simple.css
   Stripped-back overrides layered on top of style.css.
   Loaded AFTER style.css. Calmer, more typographic, less
   dependent on photography. Nothing in style.css is changed;
   this only overrides for the /index-simple.html preview.
   ============================================================ */

/* ── Global calm-down ──────────────────────────────────────── */
/* Softer, fewer shadows; no lift-on-hover gimmicks */
:root {
  --shadow:    0 1px 2px rgba(0,0,0,.05);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.06);
}

/* ── Hero: keep the original full-bleed photo hero from style.css ──
   (No overrides here — Mick wants the photo hero retained.)
   Thin brand accent line under it to tie into the calmer look. */
.hero-photo { border-bottom: 3px solid var(--green); }

/* ── Service cards: solid green boxes, no photos ───────────── */
.card {
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
  background: var(--green);
  transition: background .18s;
}
.card:hover { box-shadow: none; transform: none; background: var(--green-700); text-decoration: none; }
.card img { display: none; }
.card-body { padding: 28px 24px; }
.card-body h3 { font-size: 1.12rem; color: #fff; }
.card-body p { color: rgba(255,255,255,.9); }
.card-link { color: #fff; }
.card:hover .card-link { text-decoration: underline; }
/* Thin white accent tab where the photo used to be */
.card-body::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── Reviews: keep the original slider, just slowed down ───── */
.marquee-track { animation-duration: 60s; }
/* Softer cards to match the calmer look */
.marquee-card { box-shadow: none; border: 1px solid var(--border); }

/* ── Section rhythm: a touch more air, less busy ───────────── */
.section-title { font-weight: 700; }
.eyebrow { letter-spacing: .12em; }

/* Before/after and Blue Tree are kept as-is: real photos, real proof. */

/* ============================================================
   Service-page template — clean, low-photo, matches the
   simplified homepage. Namespaced .svc-* / .callout so it
   never collides with homepage overrides above.
   ============================================================ */

/* Hero: text-forward dark band, no photo dependency */
.svc-hero{ position:relative; background:var(--dark-deep); color:#fff; padding:82px 0 66px; overflow:hidden; }
.svc-hero::before{ content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(60% 95% at 84% 12%, rgba(79,145,51,.30), transparent 62%); }
.svc-hero .container{ position:relative; max-width:780px; }
.svc-hero .eyebrow{ color:#8ad066; }
.svc-hero h1{ color:#fff; font-size:2.3rem; font-weight:800; line-height:1.12; margin:0 0 16px; text-wrap:balance; }
.svc-hero p.lead{ color:rgba(255,255,255,.84); font-size:1.12rem; line-height:1.6; max-width:560px; margin:0 0 26px; }
.svc-hero .btn-row{ margin-bottom:22px; }
.svc-hero .btn-outline{ border-color:rgba(255,255,255,.6); color:#fff; }
.svc-hero .btn-outline:hover{ background:rgba(255,255,255,.14); border-color:#fff; color:#fff; }
.svc-trust{ font-size:.9rem; color:rgba(255,255,255,.62); font-weight:600; }
@media(max-width:640px){ .svc-hero{ padding:60px 0 48px; } .svc-hero h1{ font-size:1.8rem; } }

/* Section rhythm */
.svc-section{ padding:62px 0; }
.svc-section.alt{ background:var(--bg-alt); }
.svc-section .container{ max-width:940px; }
.svc-section h2{ font-size:1.6rem; font-weight:800; margin:0 0 16px; text-wrap:balance; }
.svc-lead{ font-size:1.1rem; line-height:1.7; color:var(--ink-soft); max-width:700px; margin:0 0 8px; }
.svc-section p{ line-height:1.7; color:var(--ink); margin:0 0 16px; max-width:700px; }
.svc-section p:last-child{ margin-bottom:0; }
.svc-foot{ font-size:.8rem; color:var(--ink-muted); margin-top:14px; }

/* Feature grid */
.svc-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px 48px; margin-top:6px; }
.svc-feat{ display:flex; gap:16px; align-items:flex-start; }
.svc-feat .ic{ flex:none; width:44px; height:44px; border-radius:12px; background:#fff;
  display:flex; align-items:center; justify-content:center; color:var(--green-700); box-shadow:var(--shadow); }
.svc-feat .ic svg{ width:22px; height:22px; }
.svc-feat h3{ font-size:1.02rem; margin:0 0 5px; }
.svc-feat p{ font-size:.94rem; line-height:1.6; color:var(--ink-soft); margin:0; max-width:none; }
@media(max-width:720px){ .svc-grid{ grid-template-columns:1fr; gap:22px; } }

/* Two-column card group */
.svc-cols{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:6px; }
.svc-col{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:26px 26px 22px; }
.svc-col h3{ font-size:1.08rem; margin:0 0 14px; color:var(--green-800); }
.svc-col ul{ list-style:none; padding:0; margin:0; }
.svc-col li{ position:relative; padding:0 0 12px 22px; font-size:.95rem; line-height:1.55; color:var(--ink-soft); }
.svc-col li:last-child{ padding-bottom:0; }
.svc-col li::before{ content:""; position:absolute; left:0; top:8px; width:9px; height:9px; border-radius:50%; background:var(--green); }
.svc-col li strong{ color:var(--ink); }
@media(max-width:720px){ .svc-cols{ grid-template-columns:1fr; } }

/* Callout panel — standards / compliance / warnings */
.callout{ border-radius:var(--radius-lg); padding:22px 24px; margin:22px 0 0;
  background:rgba(79,145,51,.08); border:1px solid rgba(79,145,51,.25); border-left:4px solid var(--green); }
.callout > *:first-child{ margin-top:0; }
.callout p{ margin:0; max-width:none; font-size:.97rem; }
.callout p + p{ margin-top:10px; }
.callout h3{ font-size:1.05rem; margin:0 0 8px; }
.callout ul{ margin:6px 0 0; padding-left:20px; }
.callout li{ margin-bottom:8px; line-height:1.55; color:var(--ink); }
.callout--warn{ background:rgba(232,160,32,.10); border-color:rgba(232,160,32,.30); border-left-color:var(--amber-dark); }

/* Numbered process steps */
.svc-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:6px; }
.svc-step .n{ display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%;
  background:var(--green); color:#fff; font-weight:800; margin-bottom:14px; }
.svc-step h3{ font-size:1.02rem; margin:0 0 6px; }
.svc-step p{ font-size:.93rem; color:var(--ink-soft); line-height:1.6; margin:0; max-width:none; }
@media(max-width:720px){ .svc-steps{ grid-template-columns:1fr; gap:20px; } }

/* In-context figure */
.svc-figure{ margin:26px 0 0; }
.svc-figure img{ width:100%; border-radius:var(--radius-lg); max-height:440px; object-fit:cover; display:block; }
.svc-figure figcaption{ font-size:.85rem; color:var(--ink-soft); padding-top:10px; }

/* Photo variant of the service hero — full-bleed image behind text,
   dark scrim keeps white text readable. */
.svc-hero--photo{ background-size:cover; background-position:center 30%; background-repeat:no-repeat; }
.svc-hero--photo::before{ background:
  linear-gradient(to right, rgba(20,24,21,.82) 0%, rgba(20,24,21,.55) 45%, rgba(20,24,21,.18) 100%),
  linear-gradient(to top, rgba(20,24,21,.45), transparent 40%); }
.svc-hero--photo{ padding:108px 0 92px; }
@media(max-width:640px){
  .svc-hero--photo{ padding:38vh 0 44px; }
  .svc-hero--photo p.lead{ font-size:.98rem; line-height:1.55; margin-bottom:20px; }
  .svc-hero--photo .svc-trust{ font-size:.8rem; }
}

/* ============================================================
   Contact page — booking-form-first layout
   ============================================================ */
.contact-panel{ background:rgba(79,145,51,.07); border:1px solid rgba(79,145,51,.28);
  border-radius:var(--radius-lg); padding:40px 34px 34px; text-align:center; max-width:660px; margin:0 auto; }
.contact-panel h2{ margin:0 0 10px; font-size:1.5rem; }
.contact-panel p{ color:var(--ink-soft); max-width:480px; margin:0 auto 24px; }
.contact-panel .btn{ font-size:1.06rem; padding:16px 36px; }
.contact-panel .fine{ font-size:.85rem; color:var(--ink-muted); margin:16px auto 0; }
.contact-alt-intro{ text-align:center; font-weight:700; color:var(--ink); margin:40px 0 16px; }
.contact-alt{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; max-width:600px; margin:38px auto 0; }
.contact-alt a{ display:block; background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:22px 18px; text-align:center; text-decoration:none; color:var(--ink); box-shadow:var(--shadow); }
.contact-alt a:hover{ border-color:var(--green); text-decoration:none; transform:translateY(-2px); transition:all .15s ease; }
.contact-alt .t{ display:block; font-weight:700; margin-bottom:5px; }
.contact-alt .d{ display:block; font-size:.9rem; color:var(--ink-soft); }
.contact-area{ max-width:660px; text-align:center; }
.contact-area p{ margin-left:auto; margin-right:auto; }
@media(max-width:720px){ .contact-alt{ grid-template-columns:1fr; max-width:420px; } }

/* Contact hero — split layout, portrait photo right */
.hero-split-contact{ background:var(--dark-deep); color:#fff; padding:64px 0; position:relative; overflow:hidden; }
.hero-split-contact::before{ content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(60% 95% at 84% 12%, rgba(79,145,51,.30), transparent 62%); }
.hero-split-contact .container{ position:relative; display:flex; gap:48px; align-items:center; }
.hero-split-contact .txt{ flex:1 1 55%; }
.hero-split-contact .eyebrow{ color:#8ad066; }
.hero-split-contact h1{ color:#fff; font-size:2.3rem; font-weight:800; line-height:1.12; margin:0 0 16px; text-wrap:balance; }
.hero-split-contact p.lead{ color:rgba(255,255,255,.84); font-size:1.12rem; line-height:1.6; max-width:520px; margin:0 0 26px; }
.hero-split-contact figure{ flex:0 0 340px; margin:0; }
.hero-split-contact img{ width:100%; display:block; border-radius:16px; box-shadow:0 18px 44px rgba(0,0,0,.45); }
@media(max-width:760px){ .hero-split-contact{ padding:48px 0; } .hero-split-contact .container{ flex-direction:column; } .hero-split-contact figure{ flex:none; width:100%; max-width:320px; } .hero-split-contact h1{ font-size:1.8rem; } }

/* Button hierarchy — one big obvious CTA, quiet alternatives */
.btn-cta{ font-size:1.1rem; font-weight:800; padding:18px 40px; border-radius:12px;
  box-shadow:0 8px 24px rgba(79,145,51,.38); transition:transform .15s ease, box-shadow .15s ease; }
.btn-cta:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(79,145,51,.48); }
.btn-quiet{ display:inline-flex; align-items:center; padding:18px 6px; font-weight:600; color:inherit;
  text-decoration:none; opacity:.85; border:none; background:none; }
.btn-quiet:hover{ opacity:1; text-decoration:underline; color:inherit; }
