/* ============================================================
   Cashmere Landscaping | Design System v1.0
   Tokens, type scale, and component styles
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --brand-primary: #2E7150;
  --brand-press:   #255C41;
  --brand-deep:    #18402C;
  --brand-mid:     #4F9A72;
  --brand-tint:    #DCEBE0;
  --brand-on-tint: #1E5B3E;

  /* Ink & text */
  --ink-strong: #1A1C19;
  --ink-body:   #3C403A;
  --ink-muted:  #6B6F66;
  --ink-subtle: #989C90;

  /* Surfaces & lines */
  --canvas:   #F4F2EC;
  --card:     #FFFFFF;
  --sunken:   #EDEAE2;
  --hairline: #E4E1D7;
  --field-border: #D9D6CC;

  /* Accent tints */
  --accent-sky:    #C3DBEC;
  --accent-butter: #F1CE4C;
  --accent-clay:   #DBA08B;
  --accent-sage:   #9FC1A7;
  --star:          #F1B400;

  /* Functional */
  --success: #2E7150;
  --info:    #3E78A6;
  --warning: #C2872B;
  --danger:  #B5523C;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Spacing (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Elevation */
  --elev-1: 0 1px 2px rgba(26,28,25,0.06), 0 1px 3px rgba(26,28,25,0.10);
  --elev-2: 0 6px 16px rgba(26,28,25,0.09);
  --elev-3: 0 18px 40px rgba(26,28,25,0.16);

  /* Type */
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --maxw: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--brand-tint); color: var(--brand-deep); }
img { max-width: 100%; display: block; }
a { color: inherit; }
select { appearance: none; -webkit-appearance: none; }
:focus-visible { outline: 3px solid rgba(46,113,80,0.45); outline-offset: 2px; border-radius: 4px; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Type scale ---------- */
.display-xl {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(46px, 7.2vw, 84px); line-height: 0.98;
  letter-spacing: -0.035em; color: var(--ink-strong); margin: 0;
}
.h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--ink-strong); margin: 0;
}
.h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 38px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink-strong); margin: 0;
}
.h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 27px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink-strong); margin: 0;
}
.body-lg { font-size: 20px; line-height: 1.5; color: var(--ink-body); }
.body    { font-size: 17px; line-height: 1.6; color: var(--ink-body); }
.caption { font-size: 14px; line-height: 1.45; font-weight: 500; color: var(--ink-muted); }
.overline {
  font-family: var(--font-mono); font-weight: 600; font-size: 12px;
  line-height: 1.4; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-primary);
}
.lede { font-size: clamp(18px, 2.2vw, 21px); line-height: 1.5; color: #5A5E54; }

/* ---------- Section rhythm ---------- */
.section { padding: clamp(56px, 9vw, 96px) 0; }
.section-head { max-width: 640px; }
.section-head .h2 { margin-top: 14px; }
.section-head p { margin: 14px 0 0; font-size: 18px; line-height: 1.55; color: var(--ink-muted); }
.divider { height: 1px; background: var(--hairline); }

/* ============================================================
   COMPONENTS
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  border: 0; border-radius: var(--r-md); padding: 14px 22px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all .15s ease; white-space: nowrap;
}
.btn-primary { background: var(--brand-primary); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.10); }
.btn-primary:hover { background: var(--brand-press); }
.btn-secondary { background: #fff; color: var(--ink-strong); border: 1.5px solid var(--ink-strong); padding: 12.5px 22px; }
.btn-secondary:hover { background: var(--ink-strong); color: #fff; }
.btn-ghost { background: transparent; color: var(--brand-primary); padding: 12px 14px; }
.btn-ghost:hover { background: var(--brand-tint); }
.btn:disabled, .btn[disabled] { background: var(--sunken); color: var(--ink-subtle); cursor: not-allowed; box-shadow: none; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: var(--r-sm); }
.btn-lg { padding: 18px 30px; font-size: 18px; border-radius: 12px; }
.btn .arrow { font-size: 1.1em; line-height: 1; }

/* ---------- Badges & tags ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13px; padding: 6px 12px; border-radius: var(--r-full);
}
.badge-tint   { background: var(--brand-tint); color: var(--brand-on-tint); }
.badge-solid  { background: var(--brand-primary); color: #fff; }
.badge-outline{ background: transparent; color: var(--ink-strong); border: 1.5px solid var(--ink-strong); padding: 4.5px 12px; }
.badge-sage   { background: var(--accent-sage);  color: #1F4A30; }
.badge-sky    { background: var(--accent-sky);   color: #1E4A6B; }
.badge-clay   { background: var(--accent-clay);  color: #6B3422; }
.badge-butter { background: var(--accent-butter);color: #6B5410; }
.badge .star  { color: var(--star); }

.status { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--ink-body); }
.status .dot { width: 8px; height: 8px; border-radius: var(--r-full); }

/* ---------- Card primitive ---------- */
.card {
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: 14px; overflow: hidden; box-shadow: var(--elev-1);
  transition: all .15s ease;
}
.card-hover:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,28,25,0.10); }

/* ---------- Striped placeholders ---------- */
.ph { display: flex; align-items: flex-end; padding: 12px; }
.ph-label {
  font-family: var(--font-mono); font-size: 11px; color: #5A5E54;
  background: rgba(255,255,255,0.82); padding: 4px 9px; border-radius: var(--r-sm);
}
.ph-photo {
  background-color: #E7E4DC;
  background-image: repeating-linear-gradient(45deg,#E7E4DC,#E7E4DC 11px,#EFECE5 11px,#EFECE5 22px);
}
.ph-illus {
  background-color: var(--accent-sage);
  background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.16),rgba(255,255,255,0.16) 11px,transparent 11px,transparent 22px);
}
.ph-illus .ph-label { color: #1F4A30; background: rgba(255,255,255,0.7); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,242,236,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: none; color: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--ink-strong); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-body); text-decoration: none; transition: color .15s ease; }
.nav-links a:hover { color: var(--ink-strong); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--ink-strong); text-decoration: none; white-space: nowrap; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--hairline);
  background: #fff; border-radius: var(--r-md); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink-strong); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 64px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.hero h1 { margin-top: 18px; max-width: 14ch; }
.hero .lede { margin: 22px 0 0; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; }
.hero-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--hairline); aspect-ratio: 3 / 2; box-shadow: var(--elev-2);
}
.photo-frame { display: block; padding: 0; background: var(--sunken); }
.photo-frame img,
.service-photo img,
.project-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-media .ph-label { font-size: 12px; padding: 7px 11px; border-radius: var(--r-sm); }
.hero-float {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(255,255,255,0.94); border: 1px solid var(--hairline);
  border-radius: 10px; padding: 8px 10px; box-shadow: var(--elev-2);
  display: flex; align-items: center; gap: 8px;
}
.hero-float .gmark { width: 18px; height: 18px; }
.hero-float .rating { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink-strong); }
.hero-float .badge { font-size: 11px; padding: 3px 7px; }
.hero-float .caption { font-size: 11.5px; line-height: 1.3; }

/* ---------- Stat callout ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 5vw, 46px); line-height: 1; color: var(--ink-strong); letter-spacing: -0.03em; }
.stat .num small { font-size: 0.55em; }
.stat .num .star { color: var(--star); font-size: 0.62em; }
.stat .lbl { font-size: 13.5px; color: var(--ink-muted); margin-top: 8px; line-height: 1.35; }

/* ---------- Social proof band ---------- */
.proof-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 24px; align-items: stretch; margin-top: 36px; }
.proof-panel { background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 28px; }
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ---------- Review card ---------- */
.review { background: #fff; border: 1px solid var(--hairline); border-radius: 14px; padding: 20px; box-shadow: var(--elev-1); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: var(--r-full); background: var(--brand-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; flex: none; object-fit: cover; }
.review-name { font-weight: 600; font-size: 15px; color: var(--ink-strong); }
.review-date { font-size: 12.5px; color: var(--ink-muted); }
.review .gmark { width: 22px; height: 22px; flex: none; }
.review .stars { color: var(--star); font-size: 16px; letter-spacing: 2px; margin-top: 14px; }
.review p { font-size: 15px; line-height: 1.6; color: var(--ink-body); margin: 10px 0 0; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.service-slider { margin-top: 40px; }
.service-slider-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.service-controls { display: flex; gap: 10px; }
.service-control {
  width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--hairline);
  background: #fff; color: var(--ink-strong); font-size: 28px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all .15s ease;
}
.service-control:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.service-control:disabled { opacity: .38; cursor: not-allowed; border-color: var(--hairline); color: var(--ink-muted); }
.service-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, calc((100% - 48px) / 3));
  gap: 24px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  scroll-padding-left: 2px; padding: 2px 2px 18px; scrollbar-width: thin;
}
.service-track::-webkit-scrollbar { height: 8px; }
.service-track::-webkit-scrollbar-track { background: var(--sunken); border-radius: var(--r-full); }
.service-track::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: var(--r-full); }
.service { scroll-snap-align: start; display: flex; flex-direction: column; min-width: 0; height: 100%; }
.service .ph { height: 132px; }
.service-photo { height: 132px; overflow: hidden; background: var(--sunken); }
.photo-empty { background: transparent; border-bottom: 1px solid var(--hairline); }
.service-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.service-body .h3 { font-size: 20px; margin-top: 12px; }
.service-body p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.5; margin: 8px 0 0; }
.link-arrow { margin-top: 14px; color: var(--brand-primary); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.link-arrow:hover { gap: 9px; }

/* ---------- Feature items ---------- */
.features { display: flex; flex-direction: column; gap: 22px; }
.feature { display: flex; gap: 14px; }
.feature .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--brand-tint); color: var(--brand-primary); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; }
.feature .ttl { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-strong); }
.feature .txt { font-size: 14.5px; color: var(--ink-muted); line-height: 1.5; margin-top: 4px; }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; margin-top: 40px; }
.whyus-panel { background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--elev-1); }

/* ---------- Before / after slider ---------- */
.ba-wrap { margin-top: 40px; }
.ba {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden;
  cursor: ew-resize; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
  -webkit-user-drag: none; -webkit-touch-callout: none; touch-action: none; border: 1px solid var(--hairline);
  box-shadow: var(--elev-2);
}
.ba * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}
.ba-after,
.ba-before {
  position: absolute; inset: 0; background-size: cover; background-position: center; pointer-events: none;
}
.ba-after {
  background-color: var(--accent-sage);
  background-image: linear-gradient(0deg,rgba(0,0,0,0.08),rgba(0,0,0,0.08)), url("assets/projects/backyard-transformation-after-generated.jpg");
}
.ba-before {
  background-color: #D3CFC4;
  background-image: linear-gradient(0deg,rgba(0,0,0,0.10),rgba(0,0,0,0.10)), url("assets/projects/backyard-transformation-before-generated.jpg");
}
.ba-tag { position: absolute; bottom: 14px; font-family: var(--font-mono); font-size: 11px; padding: 5px 10px; border-radius: 7px; background: rgba(255,255,255,0.82); }
.ba-tag.after { right: 14px; color: #1F4A30; z-index: 2; }
.ba-tag.before { left: 14px; color: #5A5648; }
.ba-handle { position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.12); transform: translateX(-1.5px); z-index: 3; }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: var(--r-full); background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.28); display: flex; align-items: center; justify-content: center; color: var(--ink-strong); font-size: 16px; }

/* ---------- Project cards ---------- */
.project-photo { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sunken); }
.project-ba {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.project-shot + .project-shot { border-left: 1px solid rgba(255,255,255,0.82); }
.project-label {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  color: var(--ink-strong);
  background: rgba(255,255,255,0.86);
  border-radius: 6px;
  padding: 5px 7px;
}
.project-body { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.project-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink-strong); }
.project-meta { font-size: 13px; color: var(--ink-muted); margin-top: 3px; }

/* ---------- Process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 40px; }
.step .n { font-family: var(--font-display); font-weight: 900; font-size: 34px; color: var(--accent-sage); letter-spacing: -0.02em; }
.step .t { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-strong); margin-top: 6px; }
.step .d { font-size: 14px; color: var(--ink-muted); line-height: 1.5; margin-top: 5px; }

/* ---------- Service-area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.chip { background: #fff; border: 1px solid var(--hairline); color: var(--ink-strong); font-weight: 500; font-size: 14px; padding: 9px 15px; border-radius: var(--r-full); transition: all .15s ease; cursor: default; }
.chip:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.chip-accent { background: var(--brand-tint); color: var(--brand-on-tint); font-weight: 600; border-color: transparent; }
.service-map {
  display: grid; grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr); gap: 0;
  margin-top: 28px; background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--elev-1);
}
.service-map-copy { padding: clamp(22px, 4vw, 32px); background: var(--brand-tint); }
.service-map-copy .overline { color: var(--brand-on-tint); }
.service-map-copy p:not(.overline) { margin: 10px 0 0; color: var(--ink-body); font-size: 15px; line-height: 1.55; }
.service-map-copy .link-arrow { margin-top: 18px; }
.service-map iframe {
  width: 100%; min-height: 330px; height: 100%; border: 0; display: block;
  background: var(--sunken);
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: transparent; border: 0; cursor: pointer; text-align: left; font-family: var(--font-body); font-weight: 600; font-size: 16.5px; color: var(--ink-body); transition: color .15s ease; }
.faq-item.open .faq-q { color: var(--ink-strong); }
.faq-icon { flex: none; width: 26px; height: 26px; border-radius: var(--r-full); background: var(--brand-tint); color: var(--brand-on-tint); display: flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; transition: transform .25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }
.faq-body p { margin: 0; padding: 0 20px 20px; font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* ---------- Quote form ---------- */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; margin-top: 40px; }
.form-card { background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 36px); box-shadow: var(--elev-1); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 13px; color: var(--ink-strong); margin-bottom: 6px; }
.field .hint { font-size: 13px; color: var(--ink-muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--field-border);
  border-radius: var(--r-md); background: #fff; font-family: var(--font-body);
  font-size: 16px; color: var(--ink-strong); outline: none; transition: all .15s ease;
}
textarea { resize: vertical; min-height: 96px; }
select { cursor: pointer;
  background-image: linear-gradient(45deg,transparent 50%,var(--ink-muted) 50%), linear-gradient(135deg,var(--ink-muted) 50%,transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(46,113,80,0.16); }
input:user-invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(181,82,60,0.14); }

/* ---------- CTA block ---------- */
.cta { background: var(--brand-deep); border-radius: 18px; padding: clamp(40px, 6vw, 56px) 36px; text-align: center; }
.cta .overline { color: var(--accent-sage); }
.cta h2 { color: #fff; margin: 14px 0 0; }
.cta p { font-size: 18px; line-height: 1.55; color: #C9D8CC; margin: 16px auto 0; max-width: 48ch; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.cta-call { background: var(--brand-primary); color: #fff; font-weight: 600; font-size: 18px; padding: 16px 26px; border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all .15s ease; }
.cta-call:hover { background: var(--brand-press); }
.cta-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); font-weight: 600; font-size: 18px; padding: 14.5px 26px; border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .15s ease; }
.cta-ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
.cta .fine { font-size: 13.5px; color: var(--accent-sage); margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer { padding: 0 0 40px; }
.footer-inner { background: var(--ink-strong); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 40px); }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-brand .mark { width: 30px; height: 30px; border-radius: 8px; background: none; color: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.footer-brand .mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand .name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #fff; }
.footer-col p { font-size: 14px; line-height: 1.6; color: #A7ABA2; margin: 14px 0 0; max-width: 30ch; }
.footer-lic { font-family: var(--font-mono); font-size: 12px; color: #7E827A; margin-top: 14px; }
.footer-head { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #7E827A; }
.footer-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; font-size: 14px; color: #C9CBC4; }
.footer-links a { text-decoration: none; transition: color .15s ease; }
.footer-links a:hover { color: #fff; }
.footer-links .strong { color: #fff; font-weight: 600; }
.footer-rule { height: 1px; background: #34372F; margin: 26px 0 18px; }
.footer-base { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7E827A; }
.footer-base a { text-decoration: none; }
.footer-base .social { display: flex; gap: 18px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(12px);
  opacity: 0; transition: all .2s ease; background: var(--ink-strong); color: #fff;
  font-family: var(--font-mono); font-size: 13px; padding: 11px 17px; border-radius: var(--r-md);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28); pointer-events: none; z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .proof-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-track { grid-auto-columns: minmax(260px, calc((100% - 24px) / 2)); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .service-map { grid-template-columns: 1fr; }
  .service-map iframe { min-height: 300px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .shell { padding: 0 20px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 68px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: 8px 20px 16px;
  }
  .site-header.open .nav-links a { padding: 12px 4px; border-bottom: 1px solid var(--hairline); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .service-slider-head { align-items: flex-start; }
  .service-track { grid-auto-columns: minmax(248px, 86%); gap: 16px; }
  .reviews { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .ba { aspect-ratio: 4 / 3; }
  .ba-tag.after { top: 14px; bottom: auto; }
  .service-map iframe { min-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
