/* ==========================================================================
   Mills Maintenance — site styles
   Palette taken from the leaflet & logo: vibrant grass green, deep forest
   green, stone grey and warm autumn accents on a soft cream ground.
   ========================================================================== */

:root {
  --green:        #3f9d2c;
  --green-bright: #5cbf35;
  --green-mid:    #2b7a22;
  --green-dark:   #1c5a21;
  --green-deep:   #113a17;
  --lime:         #a7d94f;

  --amber:        #e8a33d;
  --rust:         #a9541f;

  --ink:          #14201a;
  --body:         #45514a;
  --muted:        #6f7c74;
  --stone:        #7a8288;

  --cream:        #f6f4ec;
  --cream-2:      #eceadf;
  --white:        #ffffff;
  --line:         #e0ddd0;

  --radius:   16px;
  --radius-s: 10px;
  --radius-l: 26px;

  --shadow-s: 0 2px 8px rgba(17, 58, 23, .07);
  --shadow:   0 10px 30px rgba(17, 58, 23, .10);
  --shadow-l: 0 24px 60px rgba(17, 58, 23, .18);

  --wrap: 1200px;
  --gut: clamp(18px, 4vw, 40px);

  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-mid); text-decoration: none; }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); }
p  { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .35em; }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout helpers ---------- */
.wrap { width: min(var(--wrap), 100% - var(--gut) * 2); margin-inline: auto; }
.section { padding: clamp(52px, 8vw, 96px) 0; }
.section--tight { padding: clamp(38px, 5vw, 62px) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark  { background: var(--green-deep); color: #d7e6d5; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green-mid);
  margin-bottom: .9em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green-bright), var(--lime));
}
.section--dark .eyebrow { color: var(--lime); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); max-width: 62ch; }
.section--dark .lede { color: #c3d8c1; }
.head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head--center .lede { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .92em 1.55em;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  color: #fff; box-shadow: 0 8px 22px rgba(63, 157, 44, .35);
}
.btn--primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(63, 157, 44, .45); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(20, 32, 26, .22); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); background: rgba(63,157,44,.07); }
.btn--light { background: #fff; color: var(--green-dark); }
.btn--light:hover { color: var(--green-deep); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.12); }
.btn--wa { background: #25d366; color: #063; box-shadow: 0 8px 22px rgba(37, 211, 102, .32); }
.btn--wa:hover { color: #042; }
.btn--sm { padding: .7em 1.15em; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--green-deep);
  color: #b9d3b6;
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__badges { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__badges span { display: inline-flex; align-items: center; gap: .45em; }
.topbar__badges svg { width: 14px; height: 14px; color: var(--lime); flex: none; }
.topbar__socials { display: flex; align-items: center; gap: 12px; }
.topbar__socials a { color: #b9d3b6; display: inline-flex; }
.topbar__socials a:hover { color: #fff; }
.topbar__socials svg { width: 17px; height: 17px; }
@media (max-width: 760px) { .topbar__badges span:nth-child(n+3) { display: none; } }
@media (max-width: 460px) { .topbar__badges span:nth-child(n+2) { display: none; } }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__in { display: flex; align-items: center; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 56px; width: auto; }
@media (max-width: 420px) { .brand img { height: 42px; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: .6em .85em; border-radius: 999px;
  font-weight: 600; color: var(--ink); font-size: .97rem;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: rgba(63,157,44,.10); color: var(--green-dark); }
.nav a[aria-current="page"] { color: var(--green-mid); background: rgba(63,157,44,.12); }
.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }

.burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: .2s;
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .burger { display: flex; margin-left: 12px; }
  .header__cta { margin-left: auto; }
  .header__cta .btn--ghost { display: none; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 14px var(--gut) 26px;
    margin-left: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 120px); overflow-y: auto;
    visibility: hidden; opacity: 0;
    transform: translateY(-12px);
    transition: transform .24s ease, opacity .24s ease, visibility .24s;
  }
  .nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .nav a { padding: .85em 1em; font-size: 1.08rem; }
  .nav .btn { margin-top: 10px; }
}

/* skip link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--green-dark); color: #fff; padding: .8em 1.2em;
  border-radius: 0 0 10px 0; font-weight: 700;
}
.skip:focus { left: 0; color: #fff; }
@media (min-width: 981px) { .nav .btn--nav { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(9, 38, 15, .93) 0%, rgba(12, 48, 19, .84) 42%, rgba(14, 56, 22, .48) 72%, rgba(16, 60, 24, .34) 100%);
}
.hero__in { padding: clamp(60px, 9vw, 118px) 0 clamp(52px, 7vw, 96px); max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .38em; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero__sub { font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: #d5e7d2; max-width: 54ch; margin-bottom: 1.7em; }
.hero .btn-row { margin-bottom: clamp(28px, 4vw, 44px); }

.trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust span {
  display: inline-flex; align-items: center; gap: .5em;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: .5em .95em; border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: #eaf5e8;
  backdrop-filter: blur(4px);
}
.trust svg { width: 15px; height: 15px; color: var(--lime); flex: none; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(63,157,44,.35); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

.icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(92,191,53,.18), rgba(63,157,44,.10));
  color: var(--green-mid);
  border: 1px solid rgba(63,157,44,.18);
}
.icon svg { width: 27px; height: 27px; }

.tick-list { list-style: none; padding: 0; }
.tick-list li { position: relative; padding-left: 1.85em; margin-bottom: .55em; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 1.15em; height: 1.15em; border-radius: 50%;
  background: var(--green-bright) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.72em no-repeat;
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 4px; }
.stat { text-align: center; padding: 22px 12px; }
.stat b { display: block; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--lime); line-height: 1; letter-spacing: -.03em; }
.stat span { font-size: .9rem; color: #b6cfb3; }

/* ---------- before / after slider ---------- */
.ba {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: var(--cream-2);
  aspect-ratio: 1 / 1;
  cursor: ew-resize; touch-action: pan-y;
  user-select: none; -webkit-user-select: none;
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none; -webkit-user-drag: none;
}
.ba__before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); z-index: 2; }
.ba__after  { z-index: 1; }
.ba__line {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 3px; margin-left: -1.5px; background: #fff; z-index: 4;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18);
  pointer-events: none;
}
.ba__grip {
  position: absolute; top: 50%; left: var(--pos, 50%);
  width: 46px; height: 46px; margin: -23px 0 0 -23px;
  border-radius: 50%; background: #fff; z-index: 5;
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  pointer-events: none;
  transition: transform .15s ease;
}
.ba:hover .ba__grip { transform: scale(1.07); }
.ba__grip svg { width: 22px; height: 22px; color: var(--green-mid); }
.ba__tag {
  position: absolute; top: 12px; z-index: 6;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .45em .85em; border-radius: 999px; color: #fff;
  background: rgba(9, 32, 14, .72); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: opacity .18s ease;
}
.ba__tag:hover { background: rgba(9, 32, 14, .92); }
.ba__tag--before { left: 12px; }
.ba__tag--after  { right: 12px; background: rgba(63,157,44,.85); border-color: rgba(255,255,255,.3); }
.ba__zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 6;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(9, 32, 14, .72); color: #fff; cursor: pointer;
  display: grid; place-items: center; backdrop-filter: blur(4px);
}
.ba__zoom:hover { background: rgba(63,157,44,.9); }
.ba__zoom svg { width: 17px; height: 17px; }

.shot { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-s); }
.shot__body { padding: 18px 20px 20px; }
.shot__body h3 { font-size: 1.08rem; margin-bottom: .25em; }
.shot__body p { font-size: .93rem; color: var(--muted); margin: 0; }
.shot__cat {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: .55em;
}

/* ---------- service cards ---------- */
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-s); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc__body { padding: clamp(20px, 2.4vw, 28px); display: flex; flex-direction: column; flex: 1; }
.svc__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.svc__head .icon { margin: 0; width: 48px; height: 48px; border-radius: 13px; flex: none; }
.svc__head .icon svg { width: 24px; height: 24px; }
.svc__head h3 { margin: 0; font-size: 1.16rem; }
.svc .tick-list { margin-bottom: 0; margin-top: auto; padding-top: 6px; font-size: .95rem; }

/* ---------- callout note ---------- */
.note {
  background: linear-gradient(120deg, rgba(232,163,61,.14), rgba(232,163,61,.06));
  border: 1px solid rgba(232,163,61,.4);
  border-radius: var(--radius); padding: clamp(20px, 2.6vw, 28px);
  display: flex; gap: 16px; align-items: flex-start;
}
.note svg { width: 26px; height: 26px; color: var(--rust); flex: none; margin-top: 2px; }
.note p { margin: 0; }
.note b { color: var(--ink); }

/* ---------- how it works ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(18px, 2.4vw, 28px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(140deg, var(--green-bright), var(--green-mid));
  color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(63,157,44,.3);
}
.step h3 { font-size: 1.15rem; margin-bottom: .35em; }
.step p { margin: 0; }
.section--dark .step p { color: #bcd4ba; }

/* ---------- gallery filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: clamp(24px, 3vw, 36px); }
.chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--body);
  padding: .58em 1.15em; border-radius: 999px; font-size: .92rem; font-weight: 600;
  font-family: inherit; cursor: pointer; transition: .16s ease;
}
.chip:hover { border-color: var(--green); color: var(--green-dark); }
.chip[aria-pressed="true"] { background: var(--green-mid); border-color: var(--green-mid); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 420px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 20, 10, .93);
  display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.is-open { display: flex; }
.lightbox__inner { width: min(1100px, 100%); }
.lightbox .ba { aspect-ratio: auto; height: min(76vh, 820px); background: #0a1a0e; cursor: ew-resize; }
.lightbox__cap { color: #d3e6d1; text-align: center; margin-top: 16px; }
.lightbox__cap h3 { color: #fff; font-size: 1.2rem; margin-bottom: .2em; }
.lightbox__cap p { margin: 0; font-size: .95rem; }
.lightbox__close {
  position: absolute; top: 16px; right: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center;
}
.lightbox__close:hover { background: rgba(255,255,255,.24); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer; display: grid; place-items: center;
}
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }
@media (max-width: 700px) { .lightbox__nav { top: auto; bottom: 14px; transform: none; } }

/* ---------- reviews ---------- */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--shadow-s);
  display: flex; flex-direction: column;
}
.review__stars { color: var(--amber); letter-spacing: .12em; font-size: 1.02rem; margin-bottom: .7em; }
.review p { font-size: .98rem; }
.review p:last-of-type { margin-bottom: 1.2em; }
.review__who { margin-top: auto; display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); }
.review__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .95rem;
  background: linear-gradient(140deg, var(--green-bright), var(--green-mid));
}
.review__who small { display: block; font-weight: 500; color: var(--muted); font-size: .82rem; }
.reviews-masonry { columns: 3 320px; column-gap: clamp(16px, 2.2vw, 26px); }
.reviews-masonry .review { break-inside: avoid; margin-bottom: clamp(16px, 2.2vw, 26px); display: block; }
.reviews-masonry .review__who { margin-top: 1.2em; display: flex; }

/* ---------- split ---------- */
.split { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide { grid-template-columns: 1.15fr .85fr; } }
.split--top { align-items: start; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-l); box-shadow: var(--shadow); width: 100%; }

.portrait {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 22px 10px 10px; box-shadow: var(--shadow-s);
  width: fit-content;
}
.portrait img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.portrait b { display: block; color: var(--ink); }
.portrait span { font-size: .88rem; color: var(--muted); }

/* ---------- areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .5em 1.05em; font-size: .93rem; font-weight: 600; color: var(--body);
}
.section--dark .areas span { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #d7e6d5; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-dark), var(--green-mid) 60%, var(--green) 100%);
  color: #fff; border-radius: var(--radius-l);
  padding: clamp(30px, 4.5vw, 56px);
  display: grid; gap: 24px; align-items: center;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.4fr auto; } }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: #dcefd9; margin: 0; max-width: 52ch; }
.cta-band .btn-row { position: relative; z-index: 1; }

/* ---------- contact ---------- */
.contact-cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.ccard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-s); display: block;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(63,157,44,.35); }
.ccard .icon { width: 46px; height: 46px; margin-bottom: 14px; }
.ccard .icon svg { width: 23px; height: 23px; }
.ccard b { display: block; color: var(--ink); font-size: 1.06rem; margin-bottom: .1em; word-break: break-word; }
.ccard span { font-size: .9rem; color: var(--muted); }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field label span { color: var(--rust); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .82em 1em; border: 1.5px solid var(--line); border-radius: var(--radius-s);
  background: #fff; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(63,157,44,.16);
}
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: .86rem; color: var(--muted); margin: 0; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: .9em 1.1em; border-radius: var(--radius-s); font-size: .95rem; display: none; }
.form-status.is-ok   { display: block; background: rgba(63,157,44,.12); color: var(--green-dark); border: 1px solid rgba(63,157,44,.3); }
.form-status.is-err  { display: block; background: rgba(169,84,31,.10); color: var(--rust); border: 1px solid rgba(169,84,31,.28); }

/* ---------- footer ---------- */
.footer { background: var(--green-deep); color: #a9c6a7; padding: clamp(46px, 6vw, 72px) 0 0; }
.footer a { color: #cfe3cd; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 34px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer h4 { color: #fff; font-size: 1rem; letter-spacing: .02em; margin-bottom: .9em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5em; }
/* the logo has a transparent background, so it sits straight on the green —
   no white panel needed */
.footer__logo { margin-bottom: 20px; }
.footer__logo img { height: 72px; width: auto; }
@media (max-width: 520px) { .footer__logo img { height: 58px; } }
.footer__socials { display: flex; gap: 10px; margin-top: 16px; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: grid; place-items: center; color: #cfe3cd;
}
.footer__socials a:hover { background: var(--green); color: #fff; }
.footer__socials svg { width: 19px; height: 19px; }
.footer__bar {
  margin-top: clamp(34px, 4vw, 54px); border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0 26px; font-size: .85rem;
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
}
/* agency credit — a normal followed link, so it passes SEO value */
.footer__credit a {
  color: #cfe3cd;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, .35);
}
.footer__credit a:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px; background: rgba(0,0,0,.1);
  box-shadow: 0 -6px 20px rgba(0,0,0,.16);

  /* iOS Safari only repaints a position:fixed element when a scroll gesture
     ENDS, unless the element sits on its own compositing layer. Without this
     the bar drifts with the page mid-scroll and snaps back when you stop,
     which reads as it floating up and down. Promoting it to its own layer
     hands it to the compositor so it stays welded to the bottom edge. */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;

  /* sit above the iPhone home indicator rather than under it */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5em;
  padding: .95em .5em; font-weight: 700; font-size: .95rem; color: #fff;
}
.callbar a:first-child { background: var(--green-mid); color: #fff; }
.callbar a:last-child  { background: #25d366; color: #04331a; }
.callbar svg { width: 18px; height: 18px; }
@media (max-width: 780px) {
  .callbar { display: flex; }
  /* keep the last of the page clear of the bar, home indicator included */
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- page hero (inner pages) ---------- */
.phero { background: linear-gradient(120deg, var(--green-deep), var(--green-dark) 70%, var(--green-mid)); color: #fff; position: relative; overflow: hidden; }
.phero::after {
  content: ""; position: absolute; right: -80px; bottom: -120px;
  width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.055);
}
.phero__in { padding: clamp(44px, 6vw, 80px) 0; max-width: 720px; position: relative; z-index: 1; }
.phero h1 { color: #fff; margin-bottom: .3em; }
.phero p { color: #cfe4cd; font-size: clamp(1.02rem, 1.5vw, 1.16rem); margin: 0; max-width: 56ch; }
.crumbs { font-size: .85rem; color: #9dbd9b; margin-bottom: 1.1em; }
.crumbs a { color: #9dbd9b; }
.crumbs a:hover { color: #fff; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card--link:hover, .ccard:hover { transform: none; }
}
