/* ==========================================================================
   Cuts on the Coast Lawn and Landscape LLC
   Palette sampled directly from the logo artwork (assets/brand/logo-badge.png)
   ========================================================================== */

:root {
  /* Brand — from logo histogram */
  --teal-900: #12302E;
  --teal-800: #1B403C;
  --teal-700: #254A46;   /* dominant logo teal */
  --teal-600: #2D5653;
  --teal-500: #335B57;
  --teal-400: #3D7570;
  --teal-300: #5A8480;

  --cream:     #FFEEC2;  /* logo background — 61% of the mark */
  --cream-50:  #FFFAEE;
  --cream-100: #FDF3DE;
  --sand:      #F3DDB2;
  --banner:    #FDFCE7;  /* logo banner fill */

  --ink:      #2B2607;   /* dark olive-brown from the logo lettering */
  --ink-soft: #4A4416;
  --ink-mute: #6B6438;

  --orange-700: #984903; /* mower body */
  --orange-600: #B0570A;
  --orange-500: #C96B10;
  --orange-400: #E08320;

  /* Roles */
  --bg:        var(--cream-50);
  --surface:   #FFFFFF;
  --text:      var(--ink);
  --text-mute: var(--ink-mute);
  --accent:    var(--orange-600);
  --accent-h:  var(--orange-500);

  --shadow-sm: 0 1px 2px rgba(18,48,46,.08), 0 2px 6px rgba(18,48,46,.06);
  --shadow-md: 0 4px 12px rgba(18,48,46,.10), 0 10px 28px rgba(18,48,46,.08);
  --shadow-lg: 0 12px 32px rgba(18,48,46,.14), 0 28px 64px rgba(18,48,46,.12);

  --radius:    14px;
  --radius-lg: 22px;

  --wrap: 1200px;
  --header-h: 84px;

  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-script:  "Caveat", "Segoe Script", cursive;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

/* Deliberately no overflow-x here: setting it on the root makes overflow-y
   compute to auto, which turns <html> into a scroll container and stops the
   sticky header from sticking. The off-canvas nav is kept out of layout
   instead (see .nav in the max-width:900px block). */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
}

p { margin: 0 0 1em; }

a { color: var(--teal-700); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--teal-900); color: var(--cream);
  padding: .75rem 1.25rem; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------- type -- */
.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .7rem;
}

.section__title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 900;
  color: var(--teal-800);
}

.section__lede {
  font-size: 1.1rem;
  color: var(--text-mute);
  max-width: 58ch;
  margin-inline: auto;
}

.section__head { text-align: center; margin-bottom: 3.25rem; }

.section__head--light .section__title { color: var(--cream); }
.section__head--light .section__lede  { color: rgba(255,238,194,.82); }
.section__head--light .eyebrow        { color: var(--orange-400); }

/* --------------------------------------------------------------- buttons -- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  letter-spacing: .01em;
  border: 2px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { --btn-bg: var(--accent); }
.btn--primary:hover { --btn-bg: var(--accent-h); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border-color: rgba(255,238,194,.55);
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: rgba(255,238,194,.14); border-color: var(--cream); }

.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--teal-800);
  border-color: rgba(37,74,70,.28);
  box-shadow: none;
}
.btn--outline:hover { --btn-bg: var(--cream); --btn-fg: var(--teal-800); border-color: var(--teal-600); }

.btn--sm { padding: .6rem 1.15rem; font-size: .85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------- topbar -- */
.topbar {
  background: var(--teal-900);
  color: rgba(255,238,194,.85);
  font-size: .82rem;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 40px;
}
.topbar__area { margin: 0; letter-spacing: .01em; }
.topbar__links { display: flex; align-items: center; gap: 1rem; }
.topbar__links a { color: rgba(255,238,194,.85); text-decoration: none; display: inline-flex; align-items: center; }
.topbar__links a:hover { color: var(--orange-400); }
.topbar__links svg { width: 16px; height: 16px; }

/* Brand marks keep their own colours, so hover shifts opacity rather than
   `color` — currentColor has nothing to bite on here. */
.topbar__social svg { width: 18px; height: 18px; display: block; }
.topbar__social { opacity: .92; transition: opacity .2s ease, transform .2s ease; }
.topbar__social:hover { opacity: 1; transform: translateY(-1px); }
.topbar__phone { font-weight: 700; letter-spacing: .02em; }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,250,238,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37,74,70,.10);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); background: rgba(255,250,238,.985); }

.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}

/* The full badge carries its own banner lettering, which turns to mush at
   header size — so the header pairs the medallion with typeset name, and the
   complete lockup is used in the footer and as the favicon. */
.brand {
  flex: none; display: flex; align-items: center; gap: .72rem;
  text-decoration: none;
}
.brand img {
  height: 54px; width: auto; flex: none;
  transition: height .25s ease;
}
.site-header.is-stuck .brand img { height: 46px; }

.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.16rem; letter-spacing: -.015em;
  text-transform: uppercase; color: var(--teal-800);
  white-space: nowrap;
}
.brand__sub {
  margin-top: .28rem;
  font-size: .62rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  white-space: nowrap;
}
.brand:hover .brand__name { color: var(--accent); }

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 1.35rem; }
.nav a {
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  color: var(--teal-800); text-decoration: none;
  letter-spacing: .01em; white-space: nowrap;
  position: relative; padding: .35rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2.5px;
  background: var(--accent); border-radius: 2px;
  transition: right .25s ease;
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { right: 0; }

.site-header__cta { display: flex; align-items: center; gap: 1rem; flex: none; }

.phone-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 800; font-size: .98rem;
  color: var(--teal-800); text-decoration: none; white-space: nowrap;
}
.phone-link svg { width: 17px; height: 17px; color: var(--accent); }
.phone-link:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; flex: none;
  background: var(--teal-700); border: 0; border-radius: 12px;
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2.5px; background: var(--cream); border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: center;
  padding: 5rem 0 6.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(18,48,46,.95) 0%, rgba(18,48,46,.86) 38%, rgba(18,48,46,.52) 70%, rgba(18,48,46,.38) 100%),
    linear-gradient(to top, rgba(18,48,46,.75), transparent 45%);
}

.hero__inner { position: relative; max-width: 700px; }


.hero__title {
  font-size: clamp(2.6rem, 6.6vw, 4.7rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -.03em;
  margin: 0 0 .35em;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero__title em { font-style: normal; color: var(--orange-400); }

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sand);
  margin: -.4rem 0 1rem;
  transform: rotate(-1.2deg);
  transform-origin: left center;
}

.hero__lede {
  font-size: 1.13rem;
  color: rgba(255,250,238,.9);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: .55rem 1.6rem;
  font-size: .87rem; font-weight: 600;
  color: rgba(255,238,194,.88);
}
.hero__trust li { display: flex; align-items: center; gap: .5rem; }
.hero__trust li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange-400); flex: none;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; z-index: 2;
  transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255,238,194,.35);
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
.hero__scroll:hover { background: rgba(255,238,194,.15); color: var(--cream); }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* --------------------------------------------------------------- trustbar -- */
.trustbar { background: var(--teal-800); padding: 2.75rem 0; }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.trustbar__item { text-align: center; padding: 0 .5rem; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--orange-400); margin-bottom: .6rem; }
.trustbar__item h3 {
  font-size: 1rem; font-weight: 800; color: var(--cream);
  margin: 0 0 .3rem; letter-spacing: 0;
}
.trustbar__item p { font-size: .87rem; color: rgba(255,238,194,.72); margin: 0; }

/* --------------------------------------------------------------- sections -- */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--cream { background: var(--cream-50); }
.section--teal  { background: var(--teal-700); }
.section--teal-800 { background: var(--teal-800); }
.section--sand  {
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-100) 55%, var(--cream-50) 100%);
}

.section--teal p,
.section--teal-800 p { color: rgba(255,250,238,.86); }

/* About and Contact set their headings inline rather than in a .section__head,
   so they need the light treatment applied directly. */
.section--teal .section__title,
.section--teal-800 .section__title { color: var(--cream); }
.section--teal .eyebrow,
.section--teal-800 .eyebrow { color: var(--orange-400); }

/* --------------------------------------------------------------- cards -- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--surface);
  border: 1px solid rgba(37,74,70,.09);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--orange-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,74,70,.16); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--cream), var(--sand));
  color: var(--teal-700);
  margin: 0 auto 1.15rem;
  transition: background .3s ease, color .3s ease;
}
.card:hover .card__icon { background: linear-gradient(150deg, var(--teal-600), var(--teal-800)); color: var(--cream); }
.card__icon svg { width: 32px; height: 32px; }

.card h3 { font-size: 1.22rem; font-weight: 800; color: var(--teal-800); margin-bottom: .45rem; }
.card p { font-size: .95rem; color: var(--text-mute); margin: 0; }

/* --------------------------------------------------------------- also -- */
.also {
  margin-top: 3rem;
  background: linear-gradient(140deg, var(--cream), var(--cream-100));
  border: 1px solid rgba(37,74,70,.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
}
.also__title {
  font-size: .82rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-700); margin-bottom: 1.1rem;
}
.also__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin-bottom: 1.25rem;
}
.also__list li {
  background: var(--surface);
  border: 1px solid rgba(37,74,70,.13);
  border-radius: 999px;
  padding: .45rem 1.05rem;
  font-size: .88rem; font-weight: 600; color: var(--teal-800);
}
.also__cta { margin: 0; font-size: .95rem; color: var(--text-mute); }

/* --------------------------------------------------------------- before/after -- */
.ba { max-width: 940px; margin-inline: auto; }
.ba__stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--teal-900);
  user-select: none;
}
.ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
/* Revealed with clip-path so the inner photo keeps the full stage size
   (a percentage width would scale the image down instead of masking it). */
.ba__clip {
  position: absolute; inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.ba__divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--cream);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0,0,0,.35);
  will-change: left;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream); color: var(--teal-800);
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.32);
}
.ba__knob svg { width: 30px; height: 30px; }

.ba__tag {
  position: absolute; top: 1rem;
  font-family: var(--font-display); font-weight: 800; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .38rem .9rem; border-radius: 999px;
  background: rgba(18,48,46,.78); color: var(--cream);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba__tag--before { left: 1rem; }
.ba__tag--after  { right: 1rem; background: rgba(176,87,10,.9); }

/* the range input is the real control — visually hidden but fully operable */
.ba__range {
  display: block;
  width: 100%;
  margin: 1.25rem 0 0;
  accent-color: var(--orange-500);
  cursor: ew-resize;
}

.ba__notes,
.equip__points {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin-top: 2rem;
}
.ba__notes li,
.equip__points li {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,238,194,.1);
  border: 1px solid rgba(255,238,194,.28);
  border-radius: 999px;
  padding: .45rem 1.05rem;
  font-size: .88rem; font-weight: 600; color: var(--cream);
}
.ba__notes li::before,
.equip__points li::before { content: "✓"; color: var(--orange-400); font-weight: 800; }

/* --------------------------------------------------------------- gallery -- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.gallery__item {
  position: relative; margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  background: var(--teal-800);
}
/* Feature tiles fill a full 2x2 block, so the two tiles beside them stack
   cleanly instead of leaving a half-height row of dead space.
   The grid is sized for 9 photos: 2 feature tiles + 7 standard. */
.gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__more { text-align: center; margin-top: 2rem; color: var(--text-mute); }

/* Pager for the mobile carousel. Hidden until the gallery actually scrolls. */
.gallery-dots { display: none; justify-content: center; gap: .45rem; margin-top: 1.1rem; }
.gallery-dots button {
  width: 8px; height: 8px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgba(37,74,70,.22);
  cursor: pointer;
  transition: background-color .25s ease, transform .25s ease;
}
.gallery-dots button.is-active { background: var(--accent); transform: scale(1.35); }

/* --------------------------------------------------------------- equipment -- */
.equip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}
.equip__item {
  display: flex; flex-direction: column;
  background: rgba(255,238,194,.05);
  border: 1px solid rgba(255,238,194,.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.equip__item:hover { transform: translateY(-5px); border-color: rgba(255,238,194,.34); }

.equip__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--teal-900); }
.equip__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.equip__item:hover .equip__media img { transform: scale(1.05); }

.equip__body { padding: 1.7rem 1.6rem 1.9rem; }
.equip__step {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: .55rem;
}
.equip__body h3 { font-size: 1.28rem; font-weight: 800; color: var(--cream); margin-bottom: .5rem; }
.equip__body p { font-size: .95rem; color: rgba(255,250,238,.78); margin: 0; }

.equip__points { margin-top: 2.5rem; }

/* --------------------------------------------------------------- reviews -- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
/* Collapses cleanly while there are no real reviews to show yet. */
.reviews:empty { display: none; margin: 0; }

.review {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: .85rem;
  background: var(--surface);
  border: 1px solid rgba(37,74,70,.1);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review::before {
  content: "\201C";
  position: absolute; top: -.6rem; right: 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem; line-height: 1;
  color: rgba(37,74,70,.08);
  pointer-events: none;
}
.review__stars { color: var(--orange-500); font-size: 1.02rem; letter-spacing: .14em; }
.review__text {
  margin: 0; font-size: .97rem; line-height: 1.6; color: var(--text-mute);
}
.review__by { display: flex; align-items: center; gap: .75rem; margin-top: auto; padding-top: .3rem; }
.review__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
  color: var(--cream);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
}
.review__by strong { display: block; font-size: .93rem; color: var(--teal-800); }
.review__by em { font-style: normal; font-size: .76rem; color: var(--text-mute); }

.reviews-invite {
  max-width: 720px; margin-inline: auto;
  background: var(--surface);
  border: 1px solid rgba(37,74,70,.12);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.reviews-invite__icon {
  display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  margin: 0 auto 1.1rem;
  background: linear-gradient(150deg, var(--cream), var(--sand));
  color: var(--orange-600);
}
.reviews-invite__icon svg { width: 32px; height: 32px; }
.reviews-invite h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); color: var(--teal-800); }
.reviews-invite p { color: var(--text-mute); max-width: 48ch; margin-inline: auto; }
.reviews-invite__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
  margin: 1.6rem 0 1.2rem;
}
.reviews-invite__note { font-size: .88rem; margin: 0; }

/* --------------------------------------------------------------- about -- */
.about {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.about__media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* the gala shot is portrait — keep it from towering over the copy beside it */
  max-width: 420px; margin-inline: auto;
}
.about__media img { width: 100%; }

.about__script {
  font-family: var(--font-script);
  font-size: 1.85rem; color: var(--orange-400);
  transform: rotate(-1deg); transform-origin: left center;
  margin: 1.4rem 0 1.6rem;
}

.about__stats { display: flex; flex-wrap: wrap; gap: 2.4rem; }
.about__stats div { display: flex; flex-direction: column; }
.about__stats strong {
  font-family: var(--font-display); font-size: 2.3rem; font-weight: 900;
  color: var(--cream); line-height: 1;
}
.about__stats span { font-size: .84rem; color: rgba(255,250,238,.7); font-weight: 600; }

/* --------------------------------------------------------------- areas -- */
.areas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem;
  max-width: 900px; margin-inline: auto;
}
.areas li {
  background: var(--surface);
  border: 1px solid rgba(37,74,70,.14);
  border-radius: 999px;
  padding: .7rem 1.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  color: var(--teal-800);
  box-shadow: var(--shadow-sm);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.areas li:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.areas__more {
  background: transparent !important; box-shadow: none !important;
  border-style: dashed !important; color: var(--text-mute) !important;
}

.areas__note { text-align: center; margin-top: 2rem; color: var(--text-mute); }
.areas__note a { color: var(--accent); font-weight: 600; }
.areas__note a:hover { color: var(--teal-700); }

/* --------------------------------------------------------------- contact -- */
.contact {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__lede { font-size: 1.05rem; margin-bottom: 2rem; }

.contact__list { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--cream), var(--sand));
  color: var(--teal-700);
}
.contact__ico svg { width: 22px; height: 22px; }
.contact__label {
  display: block;
  font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,250,238,.6); margin-bottom: .1rem;
}
.contact__list a,
.contact__list li > div > span:not(.contact__label) {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--cream); text-decoration: none;
}
.contact__list a:hover { color: var(--orange-400); }

.contact__social { display: flex; gap: .75rem; }
.social {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(37,74,70,.14);
  border-radius: 999px;
  font-weight: 600; font-size: .9rem; color: var(--teal-800); text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--accent); }
.social svg { width: 18px; height: 18px; }

/* form */
.form {
  background: var(--surface);
  border: 1px solid rgba(37,74,70,.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.form__title { font-size: 1.35rem; font-weight: 800; color: var(--teal-800); margin-bottom: 1.4rem; }
.form__row { margin-bottom: 1.05rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }

.form label {
  display: block;
  font-size: .82rem; font-weight: 700; color: var(--teal-800);
  margin-bottom: .35rem;
}
.form label span { color: var(--accent); }

.form input, .form select, .form textarea {
  width: 100%;
  padding: .8rem .95rem;
  font-family: var(--font-body); font-size: .97rem; color: var(--text);
  background: var(--cream-50);
  border: 1.5px solid rgba(37,74,70,.16);
  border-radius: 11px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(45,86,83,.12);
}
.form textarea { resize: vertical; min-height: 110px; }
.form input[aria-invalid="true"] { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.1); }

.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* The form card is white but sits inside a dark section, so these need to
   outrank `.section--teal p` — without the extra class they inherit cream
   and vanish against the card. */
.form .form__note { margin: 1rem 0 0; font-size: .85rem; color: var(--text-mute); text-align: center; }
.form .form__status { margin: .85rem 0 0; font-size: .9rem; font-weight: 600; text-align: center; min-height: 1.2em; color: var(--text); }
.form__status.is-ok  { color: #1e7a4a; }
.form__status.is-err { color: #c0392b; }

/* --------------------------------------------------------------- footer -- */
.site-footer { background: var(--teal-900); color: rgba(255,250,238,.72); padding: 4rem 0 0; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer__brand img { width: 200px; margin-bottom: .6rem; }
.site-footer__script {
  font-family: var(--font-script); font-size: 1.5rem; color: var(--orange-400);
  margin: 0; transform: rotate(-1deg); transform-origin: left center;
}
.site-footer__phone {
  display: inline-block; margin-top: .7rem;
  font-family: var(--font-display); font-weight: 900; font-size: 1.35rem;
  letter-spacing: .01em; color: var(--cream); text-decoration: none;
}
.site-footer__phone:hover { color: var(--orange-400); }

.site-footer__col h4 {
  font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1rem;
}
.site-footer__col ul { display: grid; gap: .55rem; margin-bottom: 1.25rem; }
.site-footer__col li { font-size: .92rem; }
.site-footer__col a { color: rgba(255,250,238,.72); text-decoration: none; }
.site-footer__col a:hover { color: var(--orange-400); }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,238,194,.14);
  font-size: .84rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: var(--orange-400); text-decoration: none; }
.site-footer__bottom a:hover { color: var(--cream); text-decoration: underline; }

/* --------------------------------------------------------------- call fab -- */
.callfab {
  display: none;
  position: fixed; z-index: 95;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  width: 58px; height: 58px;
  border-radius: 50%;
  place-items: center;
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 20px rgba(18,48,46,.38), 0 2px 6px rgba(18,48,46,.24);
  transition: transform .2s ease, background-color .2s ease;
}
.callfab svg { width: 26px; height: 26px; }
.callfab:hover, .callfab:focus-visible { background: var(--accent-h); color: #fff; transform: translateY(-2px); }
.callfab:active { transform: scale(.96); }

/* --------------------------------------------------------------- lightbox -- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(9,26,25,.95);
  display: grid; place-items: center;
  padding: 3.5rem 1rem 4.5rem;
  opacity: 0; transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(1100px, 100%); max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.lightbox__caption {
  position: absolute; left: 0; right: 0; bottom: 1.5rem;
  text-align: center; color: rgba(255,238,194,.85); font-size: .95rem; margin: 0;
  padding: 0 1rem;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,238,194,.12);
  border: 1px solid rgba(255,238,194,.3);
  color: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background-color .2s ease, transform .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,238,194,.26); }
.lightbox__close { top: 1.1rem; right: 1.1rem; width: 46px; height: 46px; font-size: 2rem; line-height: 1; padding-bottom: 5px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2.2rem; line-height: 1; padding-bottom: 5px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 1.1rem; }
.lightbox__nav--next { right: 1.1rem; }

/* --------------------------------------------------------------- reveal --
   Scoped to .js (set by main.js on first run) so that with JavaScript
   disabled — or if the script fails to load — every section stays visible
   instead of being stranded at opacity 0.
-------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* The header packs brand + nav + phone + CTA onto one row inside a 1200px
   wrap, so the spacing steps down before it can overflow. The phone number is
   still in the top bar, the hero and the mobile call bar. */
@media (max-width: 1300px) {
  .nav ul { gap: 1.15rem; }
  .nav a { font-size: .85rem; }
  .phone-link { display: none; }
}

@media (max-width: 1120px) {
  .nav ul { gap: .95rem; }
  .nav a { font-size: .82rem; }
  .brand img { height: 48px; }
  .brand__name { font-size: 1.05rem; }
  .brand__sub { display: none; }
}

@media (max-width: 1080px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; }

  .nav-toggle { display: flex; }
  /* Hidden at 1120px because the header row was tight there; once the links
     collapse into the hamburger there is room for it again. */
  .brand__sub { display: block; }

  /* backdrop-filter makes .site-header the containing block for the fixed
     drawer nested inside it, so `inset: 0 0 0 auto` resolved against the 75px
     header instead of the viewport and clipped the menu to its top ~128px.
     The header is 94% opaque anyway, so drop the blur at this size. */
  .site-header,
  .site-header.is-stuck {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream-50);
  }

  .site-header__cta { margin-left: auto; }
  .site-header__cta .phone-link { display: none; }

  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(86vw, 360px);
    background: var(--teal-800);
    padding: 6rem 2rem 2rem;
    transform: translateX(102%);
    transition: transform .34s cubic-bezier(.2,.7,.3,1);
    box-shadow: -12px 0 40px rgba(0,0,0,.28);
    overflow-y: auto;
    margin-left: 0;
    /* Taken out of layout while closed. Parked off-canvas it would stretch the
       document scroll width and let the page drag sideways; it also keeps the
       links out of the tab order until the menu is actually open.
       main.js mounts it a frame before sliding it in so the transition runs. */
    display: none;
  }
  .nav.is-mounted { display: block; }
  .nav.is-open { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav a {
    display: block; padding: .95rem .25rem; font-size: 1.05rem;
    color: var(--cream);
    border-bottom: 1px solid rgba(255,238,194,.12);
  }
  .nav a::after { display: none; }
  .nav a:hover { color: var(--orange-400); }

  body.nav-open { overflow: hidden; }
  .nav-scrim {
    position: fixed; inset: 0; z-index: 89;
    background: rgba(9,26,25,.55);
    opacity: 0; transition: opacity .3s ease;
  }
  .nav-scrim.is-on { opacity: 1; }

  .trustbar__grid { gap: 2rem 1rem; }

  .about, .contact { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  /* Stacked layout centres the photo, so centre the stats under it too —
     including inside each one, or the number hangs left of its label. */
  .about__stats { justify-content: center; }
  .about__stats div { align-items: center; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 9; }

  .callfab { display: grid; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 2rem, var(--wrap)); }

  .topbar__area { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__links { gap: 1.25rem; }

  .site-header__cta .btn { display: none; }
  .brand img { height: 44px; }
  .site-header.is-stuck .brand img { height: 40px; }
  .brand { gap: .55rem; }
  .brand__name { font-size: .98rem; }
  .brand__sub { font-size: .55rem; letter-spacing: .16em; }

  .hero { min-height: auto; padding: 3.5rem 0 4.5rem; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .hero__trust { gap: .4rem 1.1rem; font-size: .82rem; }

  .trustbar__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .trustbar__item { display: grid; grid-template-columns: 34px 1fr; gap: .3rem .9rem; text-align: left; align-items: center; }
  .trustbar__item svg { grid-row: span 2; margin: 0; }
  .trustbar__item h3 { margin: 0; }

  /* Nine stacked 4:3 tiles is a very long scroll on a phone, so Recent Jobs
     becomes a swipeable carousel instead. */
  .gallery {
    display: flex;
    grid-template-columns: none;
    gap: .8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }

  .gallery__item,
  .gallery__item--wide {
    flex: 0 0 86%;              /* the next tile peeks, which signals "swipe" */
    grid-column: auto; grid-row: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }

  .gallery-dots { display: flex; }

  .form__grid { grid-template-columns: 1fr; gap: 0; }

  .about__stats { gap: 1.6rem; }
  .about__stats strong { font-size: 1.9rem; }

  /* Single column on a phone, so centre the whole footer rather than leaving
     four stacked blocks ragged against the left edge. */
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .site-footer__brand img { margin-inline: auto; }
  .site-footer__script { transform-origin: center; }
  .site-footer__col ul { justify-items: center; }
  .site-footer__bottom { flex-direction: column; text-align: center; }

  .lightbox__nav { width: 42px; height: 42px; font-size: 1.8rem; }
  .lightbox__nav--prev { left: .5rem; }
  .lightbox__nav--next { right: .5rem; }
}

/* --------------------------------------------------------------- a11y -- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .callfab, .hero__scroll, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
}
