/* ==========================================================================
   Lahwah Landscaping — design tokens
   ========================================================================== */

@property --pos {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}

:root {
  --forest-950: #0e2418;
  --forest-900: #123524;
  --forest-800: #17442e;
  --forest-700: #1f5638;
  --forest-600: #2c6b45;
  --forest-100: #e4ede4;

  --bone: #f6f2e8;
  --bone-soft: #efe9db;
  --paper: #fbf9f3;

  --ink: #16180f;
  --ink-soft: #4a4e3f;

  --gold: #c99a3c;
  --gold-light: #e3bc63;
  --gold-dark: #a87c26;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 36, 24, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 36, 24, 0.14);
  --shadow-lg: 0 24px 60px rgba(14, 36, 24, 0.22);

  --max-w: 1240px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Palette is locked (not swapped by OS dark mode): the dark-green hero,
   before/after, quote and footer sections are fixed brand color blocks
   alternating with light bone sections, by design, not a light/dark theme. */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Outfit", "Work Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-700);
}
@media (prefers-color-scheme: dark) { .eyebrow { color: var(--gold-light); } }

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  margin-top: 10px;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 60ch;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--gold);
  color: #241a05;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border-color: rgba(246, 242, 232, 0.42);
  color: var(--bone);
}
.btn-ghost:hover { background: rgba(246, 242, 232, 0.12); }

.btn-outline {
  background: transparent;
  border-color: rgba(22, 24, 15, 0.18);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--forest-700); background: rgba(31, 86, 56, 0.06); }

.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(14, 36, 24, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(246, 242, 232, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  height: 34px;
  width: 34px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.brand-word {
  height: 30px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(246, 242, 232, 0.82);
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--gold-light); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--bone);
}
.header-phone i { color: var(--gold-light); font-size: 17px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 26px;
  padding: 4px;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  .header-phone span { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--forest-950);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-nav a {
  padding: 16px 4px;
  font-size: 19px;
  font-weight: 500;
  color: var(--bone);
  border-bottom: 1px solid rgba(246,242,232,0.08);
}
.mobile-nav .btn { margin-top: 18px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--forest-900);
  padding: 56px 0 0;
  overflow: clip;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { padding-bottom: 56px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-pill);
  background: rgba(201, 154, 60, 0.14);
  border: 1px solid rgba(201, 154, 60, 0.35);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}
.hero-badge i { font-size: 16px; }

.hero h1 {
  color: var(--bone);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin-top: 20px;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  margin-top: 18px;
  color: rgba(246, 242, 232, 0.78);
  font-size: 18px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 242, 232, 0.12);
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  color: var(--bone);
}
.hero-stats .stat span {
  font-size: 13px;
  color: rgba(246, 242, 232, 0.62);
}

.hero-visual {
  position: relative;
  padding: 30px 0 0;
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,36,24,0) 55%, rgba(14,36,24,0.55) 100%);
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  left: -18px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.hero-float-card i {
  font-size: 26px;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-size: 14px;
  font-family: "Outfit", sans-serif;
}
.hero-float-card span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { padding-top: 8px; padding-bottom: 18px; }
  /* kept fully inside the frame on mobile: a negative offset here gets
     clipped by .hero's overflow:clip since the section has no bottom
     padding to absorb it (bit us once already — see project memory) */
  .hero-float-card { left: 12px; bottom: 16px; max-width: 210px; padding: 12px 14px; }
  .hero-copy { padding-bottom: 12px; }
}

/* Mow strip divider ------------------------------------------------------ */

.mow-strip {
  position: relative;
  height: 64px;
  overflow: hidden;
  background: var(--forest-950);
  border-top: 1px solid rgba(246,242,232,0.06);
  border-bottom: 1px solid rgba(246,242,232,0.06);
}
.mow-strip .grass-cut,
.mow-strip .grass-wild {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}
.mow-strip .grass-cut svg,
.mow-strip .grass-wild svg { width: 100%; height: 100%; display: block; }

.mow-strip .grass-wild {
  --pos: 12%;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  animation: mow-reveal 8s ease-in-out infinite;
}
.mower-icon {
  position: absolute;
  bottom: 14px;
  left: var(--pos, 12%);
  width: 46px;
  height: 30px;
  transform: translateX(-50%);
  animation: mow-travel 8s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  z-index: 2;
}

@keyframes mow-reveal {
  0%   { clip-path: inset(0 88% 0 0); }
  45%  { clip-path: inset(0 6% 0 0); }
  55%  { clip-path: inset(0 6% 0 0); }
  100% { clip-path: inset(0 88% 0 0); }
}
@keyframes mow-travel {
  0%   { left: 12%; }
  45%  { left: 94%; }
  55%  { left: 94%; }
  100% { left: 12%; }
}

@media (prefers-reduced-motion: reduce) {
  .mow-strip .grass-wild { animation: none; clip-path: inset(0 50% 0 0); }
  .mower-icon { animation: none; left: 50%; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(22,24,15,0.06);
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item i {
  font-size: 24px;
  color: var(--forest-700);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 14.5px;
}
.trust-item span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
@media (max-width: 780px) {
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Our Story
   ========================================================================== */

.story {
  padding: 92px 0;
  background: var(--bone);
}
.story .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.story-body p { color: var(--ink-soft); font-size: 16.5px; max-width: 58ch; }
.story-body h2 { font-size: clamp(28px, 3.4vw, 38px); margin-top: 10px; }

.story-services {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 22px;
}
.story-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.story-services i { color: var(--forest-700); font-size: 17px; flex-shrink: 0; }

.faves-card {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--forest-100);
  border: 1px solid rgba(31,86,56,0.14);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.faves-card i { font-size: 26px; color: var(--gold-dark); margin-top: 2px; }
.faves-card strong { display: block; font-family: "Outfit", sans-serif; font-size: 15.5px; margin-bottom: 4px; }
.faves-card span { font-size: 14px; color: var(--ink-soft); }
.faves-card a { color: var(--forest-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.story-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo .ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--gold);
  color: #241a05;
  font-family: "Caveat", cursive;
  font-size: 22px;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(8deg);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .story .wrap { grid-template-columns: 1fr; gap: 40px; }
  .story-photo { order: -1; aspect-ratio: 16/10; }
  .story-services { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
  padding: 92px 0;
  background: var(--paper);
}

.service-grid-photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.4;
  box-shadow: var(--shadow-sm);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover img { transform: scale(1.06); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,36,24,0) 40%, rgba(14,36,24,0.86) 100%);
}
.service-card .card-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}
.service-card .card-copy i {
  font-size: 20px;
  color: var(--gold-light);
}
.service-card .card-copy h3 {
  color: var(--bone);
  font-size: 18px;
  margin-top: 8px;
}
.service-card .card-copy p {
  color: rgba(246,242,232,0.72);
  font-size: 13.5px;
  margin-top: 4px;
}

.service-grid-icons {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-chip {
  background: var(--bone);
  border: 1px solid rgba(22,24,15,0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: left;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.service-chip:hover { border-color: var(--forest-700); transform: translateY(-3px); }
.service-chip .chip-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-chip .chip-icon i { font-size: 21px; color: var(--forest-700); }
.service-chip h3 { font-size: 14.5px; }
.service-chip p { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

@media (max-width: 980px) {
  .service-grid-photo { grid-template-columns: 1fr; }
  .service-grid-icons { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 981px) and (max-width: 1180px) {
  .service-grid-icons { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Before / After
   ========================================================================== */

.before-after {
  padding: 92px 0;
  background: var(--forest-950);
}
.before-after .section-head h2,
.before-after .eyebrow { color: var(--bone); }
.before-after .section-head p { color: rgba(246,242,232,0.66); }
.before-after .eyebrow { color: var(--gold-light); }

.ba-single {
  max-width: 720px;
  margin: 0 auto;
}

.ba-gallery {
  margin: 44px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ba-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-sm);
}
.ba-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-gallery-item p {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--bone);
  background: linear-gradient(0deg, rgba(14,36,24,0.85), rgba(14,36,24,0));
}
.ba-gallery-item p i { color: var(--gold-light); }

@media (max-width: 700px) {
  .ba-gallery { grid-template-columns: 1fr; }
}

.compare {
  --pos: 50%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.2;
  box-shadow: var(--shadow-lg);
  touch-action: pan-y;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.compare .compare-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare.demo .grass-wild,
.compare.demo { transition: none; }
.compare.demo .compare-before-wrap { animation: demo-sweep 2.4s var(--ease) 0.4s 1 both; }
.compare.demo .compare-handle { animation: demo-sweep-handle 2.4s var(--ease) 0.4s 1 both; }

@keyframes demo-sweep {
  0%   { clip-path: inset(0 50% 0 0); }
  35%  { clip-path: inset(0 22% 0 0); }
  70%  { clip-path: inset(0 78% 0 0); }
  100% { clip-path: inset(0 50% 0 0); }
}
@keyframes demo-sweep-handle {
  0%   { left: 50%; }
  35%  { left: 22%; }
  70%  { left: 78%; }
  100% { left: 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .compare.demo .compare-before-wrap,
  .compare.demo .compare-handle { animation: none; }
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(14,36,24,0.55);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.compare-label.before { left: 16px; }
.compare-label.after { right: 16px; }

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--bone);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.compare-handle .grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.compare-handle .grip i { color: var(--forest-800); font-size: 19px; }

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  -webkit-appearance: none;
  appearance: none;
}
.compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
}

.compare-caption {
  margin-top: 14px;
  font-size: 13.5px;
  color: rgba(246,242,232,0.6);
  text-align: center;
}

.ba-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: rgba(246,242,232,0.5);
  font-size: 13px;
}
.ba-note i { font-size: 16px; }

/* ==========================================================================
   Reviews (marquee)
   ========================================================================== */

.reviews {
  padding: 92px 0 100px;
  background: var(--bone);
  overflow: hidden;
}

.review-track-outer {
  position: relative;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.review-track-outer:hover .review-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; overflow-x: auto; }
}

.review-card {
  position: relative;
  flex: 0 0 320px;
  background: var(--paper);
  border: 1px solid rgba(22,24,15,0.07);
  border-radius: var(--radius-md);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-sm);
}
.review-card .sample-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bone-soft);
  border: 1px solid rgba(22,24,15,0.1);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.review-stars {
  color: var(--gold-dark);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-card .quote-text {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.review-who {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}
.review-who strong { display: block; font-size: 13.5px; }
.review-who span { font-size: 12px; color: var(--ink-soft); }

.reviews-note {
  margin-top: 26px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ==========================================================================
   Quote / Contact
   ========================================================================== */

.quote {
  padding: 92px 0;
  background: var(--forest-900);
}
.quote .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
}

.quote-info .eyebrow { color: var(--gold-light); }
.quote-info h2 { color: var(--bone); font-size: clamp(28px, 3.4vw, 38px); margin-top: 10px; }
.quote-info p.lead { color: rgba(246,242,232,0.72); margin-top: 14px; font-size: 16px; max-width: 44ch; }

.contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list a,
.contact-list .row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
  font-size: 15px;
}
.contact-list i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(246,242,232,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-list a:hover { color: var(--gold-light); }

.social-row {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(246,242,232,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-size: 18px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: #241a05; }

.quote-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 34px 34px 30px;
  box-shadow: var(--shadow-lg);
}
.quote-form h3 {
  font-size: 19px;
}
.quote-form .form-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.form-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input,
.field select,
.field textarea {
  border: 1px solid rgba(22,24,15,0.16);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bone);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(74,78,63,0.55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(31,86,56,0.15);
}
.field textarea { resize: vertical; min-height: 96px; }
.field .hint { font-size: 12px; color: var(--ink-soft); }

.quote-form .btn { margin-top: 22px; }

.form-note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.form-note i { color: var(--forest-700); }

@media (max-width: 940px) {
  .quote .wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 26px; }
}

/* ==========================================================================
   Map
   ========================================================================== */

.area {
  padding: 90px 0 0;
  background: var(--bone);
}
.area-inner {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.area-map {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.9);
}
.area-towns {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-towns span {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--forest-100);
  color: var(--forest-800);
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--forest-950);
  color: rgba(246,242,232,0.7);
  padding: 60px 0 26px;
  margin-top: 46px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246,242,232,0.1);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 34ch; color: rgba(246,242,232,0.55); }

.footer-col h4 {
  color: var(--bone);
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a,
.footer-col li { font-size: 14px; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(246,242,232,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   Reveal-on-scroll utility
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Small-screen tune-up (tighter gutters + rhythm on phones)
   ========================================================================== */

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-toggle { padding: 6px; margin: -6px; } /* keeps a >=44px tap target without growing visually */

  .story,
  .services,
  .before-after,
  .reviews,
  .quote { padding-top: 64px; padding-bottom: 64px; }
  .area { padding-top: 64px; }

  .section-head { margin-bottom: 30px; }

  .hero { padding-top: 40px; }
  .hero-actions .btn { flex: 1 1 auto; } /* full-width-feeling CTAs, easier thumb targets */

  /* 3 stats as an even grid instead of flex-wrap, which orphaned the 3rd
     stat onto its own ragged, left-hugging row on real phone widths */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 10px;
  }
  .hero-stats .stat strong { font-size: 19px; }
  .hero-stats .stat span { font-size: 11px; line-height: 1.35; display: block; }

  .compare-handle .grip { width: 46px; height: 46px; } /* bigger drag target for touch */

  .review-card { flex-basis: 84vw; }

  .quote-form { padding: 22px 20px; }
  .form-grid { gap: 14px; }

  .area-map { height: 300px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
