/* ============================================================
   REAL Cut Mowing — styles
   Palette: brand greens + olive/cream. Signature: the "mow line".
   ============================================================ */

:root {
  --forest: #21401b;   /* deep brand green */
  --forest-2: #182f13; /* darker */
  --grass: #6ba644;    /* vibrant grass green (from logo) */
  --grass-deep: #588a35;
  --moss: #3d5e28;     /* mid green */
  --cream: #f4efe2;    /* warm page bg */
  --paper: #fbf9f2;    /* lightest surface */
  --sand: #e8dfc9;     /* alt panel / card border */
  --straw: #c8992f;    /* warm ochre — ratings only */
  --ink: #1e2419;      /* near-black text */
  --ink-soft: #4a5341;
  --line: rgba(33, 64, 27, .16);

  --font-display: "Bricolage Grotesque", "Instrument Sans", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --font-logo: "Montserrat", "Instrument Sans", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -30px rgba(24, 47, 19, .55);
  --shadow-soft: 0 12px 32px -20px rgba(24, 47, 19, .45);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--forest);
}

.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }

section { position: relative; }

/* ---------- signature: mow-line device ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moss);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 12px;
  background:
    linear-gradient(var(--grass), var(--grass)) 0 100% / 100% 2px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 12'%3E%3Cpath d='M13 12C11 6 8 3 3 1c4 4 6 7 6 11M13 12c1-7 3-10 8-11-4 3-6 6-6 11' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 12'%3E%3Cpath d='M13 12C11 6 8 3 3 1c4 4 6 7 6 11M13 12c1-7 3-10 8-11-4 3-6 6-6 11' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  background-color: var(--grass);
  flex: none;
}

/* the "cut" divider — a hairline that gets nicked by a grass tick */
.cut-line {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--line);
}
.cut-line::before, .cut-line::after {
  content: ""; height: 1px; background: currentColor; flex: 1;
}
.cut-line .tick {
  width: 18px; height: 14px; flex: none;
  background-color: var(--grass);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 12'%3E%3Cpath d='M13 12C11 6 8 3 3 1c4 4 6 7 6 11M13 12c1-7 3-10 8-11-4 3-6 6-6 11' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 12'%3E%3Cpath d='M13 12C11 6 8 3 3 1c4 4 6 7 6 11M13 12c1-7 3-10 8-11-4 3-6 6-6 11' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* mower-stripe texture, reusable */
.stripes {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,.05) 0 26px,
    rgba(0,0,0,.05) 26px 52px
  );
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--forest);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .95em 1.5em;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1.5px solid var(--bg);
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--grass { --bg: var(--grass); --fg: #123006; }
.btn--grass:hover { --bg: var(--grass-deep); }
.btn--ghost {
  --bg: transparent; --fg: var(--forest);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--forest); }
.btn--light { --bg: var(--cream); --fg: var(--forest); border-color: var(--cream); }
.btn svg { width: 1.05em; height: 1.05em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.brand { display: flex; align-items: center; color: var(--forest); }
.brand svg { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 500; font-size: .96rem; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--grass);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--forest); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-weight: 600; color: var(--forest); font-size: .98rem;
  display: inline-flex; align-items: center; gap: .5em;
}
.header-phone svg { width: 1em; height: 1em; color: var(--grass); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; color: var(--forest);
}
.nav-toggle svg { width: 100%; height: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex; align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(24,47,19,.92) 0%, rgba(24,47,19,.66) 42%, rgba(24,47,19,.12) 78%),
    linear-gradient(0deg, rgba(24,47,19,.7), rgba(24,47,19,0) 46%);
}
.hero__stripes {
  position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image: repeating-linear-gradient(
    115deg, transparent 0 44px, rgba(0,0,0,.14) 44px 88px);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(48px, 12vh, 120px);
}
.hero__eyebrow { color: #cfe6b8; }
.hero__eyebrow::before { background-color: var(--grass); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.9rem, 7.2vw, 6rem);
  margin-top: 22px;
  max-width: 15ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
}
.hero h1 em {
  font-style: normal; color: var(--grass);
  position: relative; white-space: nowrap;
}
.hero__sub {
  margin-top: 22px; max-width: 46ch;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: .92rem; color: rgba(255,255,255,.86);
}
.hero__trust .item { display: inline-flex; align-items: center; gap: .5em; }
.hero__trust svg { width: 1.1em; height: 1.1em; color: var(--grass); flex: none; }
.stars { display: inline-flex; gap: 2px; color: var(--straw); }
.stars svg { width: 1em; height: 1em; }

/* suburb marquee */
.marquee {
  background: var(--forest);
  color: rgba(255,255,255,.82);
  border-block: 1px solid rgba(255,255,255,.08);
  overflow: hidden; white-space: nowrap;
}
.marquee__track {
  display: inline-flex; gap: 0; padding: 15px 0;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee span { display: inline-flex; align-items: center; font-weight: 500; letter-spacing: .04em; font-size: .9rem; }
.marquee span::after { content: "✦"; color: var(--grass); margin: 0 26px; font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding-block: clamp(72px, 11vw, 130px); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h2, .section--forest h3 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  margin-top: 18px;
}
.section-head p { margin: 18px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.section--forest .section-head p { color: rgba(255,255,255,.78); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.service::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--grass); transition: width .45s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service:hover::before { width: 100%; }
.service__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--grass) 16%, var(--paper));
  color: var(--moss); margin-bottom: 20px;
}
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 1.32rem; letter-spacing: -.01em; }
.service p { margin: 10px 0 0; color: var(--ink-soft); font-size: .98rem; }

/* ============================================================
   ABOUT / WHY
   ============================================================ */
.about {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius); width: 100%; height: 100%;
  max-height: 560px; object-fit: cover; box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; left: -18px; bottom: -18px;
  background: var(--forest); color: var(--cream);
  border-radius: 16px; padding: 20px 24px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.about__badge .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--grass); line-height: 1; }
.about__badge span { font-size: .84rem; color: rgba(255,255,255,.85); line-height: 1.3; }
.about h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.about p { color: var(--ink-soft); margin: 20px 0 0; }
.ticks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink); }
.ticks svg { width: 22px; height: 22px; color: var(--grass); flex: none; margin-top: 1px; }
.about__sign { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.about__sign .name { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest); }
.about__sign .role { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); }

/* ============================================================
   PROCESS (numbered 01–04 = a real sequence)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.step { position: relative; padding: 34px 22px 10px; }
.step::before {
  content: ""; position: absolute; top: 44px; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0 8px, transparent 8px 16px);
}
.step:last-child::before { display: none; }
.step__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; color: #123006;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grass); display: grid; place-items: center;
  position: relative; z-index: 1; margin-bottom: 22px;
  box-shadow: 0 0 0 6px var(--forest);
}
.step h3 { font-size: 1.2rem; color: #fff; }
.step p { margin: 10px 0 0; color: rgba(255,255,255,.75); font-size: .96rem; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.ba {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: pan-y;
  cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__label {
  position: absolute; top: 16px; padding: 6px 14px; border-radius: 999px;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.ba__label--before { left: 16px; background: rgba(24,47,19,.7); color: #fff; }
.ba__label--after { right: 16px; background: var(--grass); color: #123006; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: #fff; transform: translateX(-1px);
  box-shadow: 0 0 12px rgba(0,0,0,.35);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; color: var(--forest);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.ba__grip svg { width: 24px; height: 24px; }
.ba-copy h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.ba-copy p { color: var(--ink-soft); margin: 18px 0 0; }
.ba-hint { margin-top: 18px; font-size: .86rem; color: var(--moss); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.ba-hint svg { width: 1.1em; height: 1.1em; flex: none; }

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement { padding-top: clamp(16px, 2.5vw, 40px); padding-bottom: clamp(56px, 9vw, 104px); text-align: center; }
.statement .cut-line { max-width: 240px; margin: 0 auto 36px; }
.statement__lead {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.02;
  font-size: clamp(2rem, 5.4vw, 3.7rem);
  color: var(--forest); max-width: 17ch; margin: 0 auto;
}
.statement__lead em { font-style: normal; color: var(--grass); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  color: #fff; font-size: .82rem; font-weight: 500;
  background: linear-gradient(0deg, rgba(24,47,19,.78), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--paper); border: 1px solid var(--sand);
  border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column;
}
.review .stars { margin-bottom: 16px; }
.review p { margin: 0; font-size: 1.04rem; color: var(--ink); line-height: 1.55; }
.review .who { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--moss); color: var(--cream); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.review .who b { display: block; font-size: .96rem; }
.review .who small { color: var(--ink-soft); }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.area h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.area p { color: rgba(255,255,255,.8); margin: 18px 0 0; }
.suburbs { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.suburbs li {
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  padding: 9px 16px; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.92);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.suburbs li:hover { background: rgba(255,255,255,.08); border-color: var(--grass); }
.area__map {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.16); position: relative;
  background: var(--forest-2);
}
.area__map img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.area__pin {
  position: absolute; inset: 0; display: grid; place-items: center; color: var(--grass);
}
.area__pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--grass); box-shadow: 0 0 0 0 rgba(107,166,68,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 34px rgba(107,166,68,0); } 100% { box-shadow: 0 0 0 0 rgba(107,166,68,0); } }

/* ============================================================
   QUOTE / CONTACT
   ============================================================ */
.quote { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.quote__aside h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.quote__aside p { color: var(--ink-soft); margin: 18px 0 0; }
.contact-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 4px; }
.contact-list a, .contact-list li > span {
  display: flex; align-items: center; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list .ic {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: color-mix(in srgb, var(--grass) 16%, var(--paper));
  color: var(--moss); display: grid; place-items: center;
}
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-size: 1.05rem; color: var(--forest); }
.contact-list small { color: var(--ink-soft); }

.form {
  background: var(--paper); border: 1px solid var(--sand);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 7px; color: var(--forest); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  border: 1.5px solid var(--sand); background: var(--cream);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--grass);
  box-shadow: 0 0 0 3px rgba(107,166,68,.2);
}
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form__note { margin: 14px 0 0; font-size: .82rem; color: var(--ink-soft); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-2); color: rgba(255,255,255,.72); padding-block: 64px 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand svg { height: 52px; color: var(--cream); }
.footer p { margin: 18px 0 0; font-size: .95rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a:hover { color: var(--grass); }
.footer__socials { display: flex; gap: 12px; margin-top: 22px; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.8);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.footer__socials a:hover { background: var(--grass); color: #123006; }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.5);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .step::before { display: none; }
  .reviews { grid-template-columns: 1fr; }
  .about, .ba-wrap, .area, .quote { grid-template-columns: 1fr; }
  .ba-wrap { gap: 30px; }
  .about__media { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 760px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 22px;
  }
  .nav.open a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav.open a::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .about__badge { left: 12px; bottom: 12px; }
  .hero { min-height: 88vh; }
}

/* ============================================================
   A11Y
   ============================================================ */
:focus-visible { outline: 3px solid var(--grass); outline-offset: 3px; border-radius: 4px; }
.skip {
  position: absolute; left: -999px; top: 10px; z-index: 100;
  background: var(--forest); color: #fff; padding: 10px 18px; border-radius: 8px;
}
.skip:focus { left: 10px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
