/* ============================================================
   AP LANDSCAPING — STYLESHEET
   Fonts: Oswald (bold condensed headlines) + Inter (body)
   Palette: bold grass green + dark forest green + white
   ============================================================ */

/* -------------------------------------------------------
   CUSTOM PROPERTIES
------------------------------------------------------- */
:root {
  /* Brand palette — AP Landscaping: vivid grass green + dark forest */
  --g-950: #0c1908;
  --g-900: #142310;   /* footer bg */
  --g-800: #1c3414;
  --g-700: #254a1c;
  --g-600: #2e6020;   /* primary brand — buttons, icons, CTA */
  --g-500: #3d7828;   /* hover / secondary accent */
  --g-400: #529838;   /* mid green */
  --g-300: #72b452;   /* lighter green */
  --g-200: #98cc78;   /* light */
  --g-100: #c4e4aa;   /* pale */

  --cream:      #f2f6ee;
  --cream-mid:  #e0ebd4;
  --cream-dark: #ccdabc;
  --white:      #ffffff;
  --black:      #0a1008;

  --text-1: #152010;   /* primary text — deep forest */
  --text-2: #374a28;   /* secondary text */
  --text-3: #607050;   /* muted/caption text */

  --header-h:   72px;
  --pad-y:      96px;
  --max-w:      1200px;
  --gutter:     24px;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --sh-sm:      0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:      0 4px 16px rgba(0,0,0,0.10);
  --sh-lg:      0 12px 40px rgba(0,0,0,0.14);
  --sh-xl:      0 24px 64px rgba(0,0,0,0.20);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
}

/* -------------------------------------------------------
   RESET & BASE
------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-1);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* -------------------------------------------------------
   GLOBAL UTILITIES
------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
}

/* Section header block */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-500);
  margin-bottom: 0.875rem;
}

.section-header { max-width: 620px; margin-bottom: 56px; }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--text-1);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* Honour the HTML hidden attribute */
[hidden] { display: none !important; }

/* Scroll-reveal elements are visible by default.
   GSAP applies the hidden starting state at runtime via .from() — only if GSAP loads.
   If GSAP fails to load, content remains visible with no JS dependency. */

/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.125rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--g-600);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--g-500);
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.38);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background-color: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.7);
}

/* -------------------------------------------------------
   HEADER
------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 52px; width: auto; object-fit: contain; }

/* Footer logo — white pill gives contrast on dark bg without distorting colors */
.logo-img--footer {
  height: 44px;
  background: var(--white);
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

/* Main nav */
.main-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--g-600); background-color: var(--cream); }

.nav-link.nav-cta {
  background-color: var(--g-600);
  color: var(--white);
  padding: 0.45rem 1.125rem;
  margin-left: 0.25rem;
}
.nav-link.nav-cta:hover { background-color: var(--g-500); color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  transition: transform 0.28s var(--ease), opacity 0.18s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------
   HERO
------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  /* Rich dark forest — punchy and bold */
  background: linear-gradient(155deg, #0c1908 0%, #142310 30%, #1c3414 65%, #0c1908 100%);
  background-size: 300% 300%;
  animation: heroPulse 20s ease-in-out infinite;
  overflow: hidden;
}

@keyframes heroPulse {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

/* Radial vignette keeps text readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse at 55% 45%, rgba(12,25,8,0.2) 0%, rgba(12,25,8,0.6) 100%);
}


.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 72px;
  padding-bottom: 72px;
  max-width: 740px;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g-200);
  margin-bottom: 1.375rem;
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7.5vw, 5.75rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.625rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  margin-bottom: 2.75rem;
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* Animated chevron scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.28);
  animation: scrollBounce 2.8s ease-in-out infinite;
  transition: color 0.2s;
}
.hero-scroll-hint:hover { color: rgba(255,255,255,0.55); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* -------------------------------------------------------
   SERVICES
------------------------------------------------------- */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--r-lg);
  padding: 2.375rem 2.125rem;
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
  will-change: transform;
}
.service-card:hover {
  border-color: var(--g-300);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  color: var(--g-600);
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--g-600);
  color: var(--white);
}

.service-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.625rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.78;
}


/* -------------------------------------------------------
   SERVICE AREA
------------------------------------------------------- */
.service-area-section { background: var(--cream); }

.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-area-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.region-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6875rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}
.region-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--g-500);
}
.region-item strong { color: var(--text-1); font-weight: 600; }

.service-area-cta { margin-top: 2.25rem; }

/* Map embed */
.service-area-visual {
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-dark);
}

.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* -------------------------------------------------------
   QUOTE FORM
------------------------------------------------------- */
.quote-section { background: var(--white); }

.quote-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}

.quote-intro .section-title { margin-bottom: 0.875rem; }

.quote-body {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.quote-trust {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-2);
}
.trust-item svg { color: var(--g-500); flex-shrink: 0; }

/* Honeypot — visually off-screen but present in DOM for bot detection */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-1);
}

.required { color: var(--g-500); }

.form-input {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-1);
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus {
  border-color: var(--g-500);
  box-shadow: 0 0 0 3px rgba(46,96,32,0.12);
}
.form-input.is-invalid { border-color: #c0392b; }
.form-input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(192,57,43,0.11); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23607050' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.field-error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1.1em;
}

.btn-submit {
  align-self: flex-start;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  position: relative;
}
.btn-loading { display: none; }
.btn-submit.is-loading .btn-text    { display: none; }
.btn-submit.is-loading .btn-loading { display: inline; }
.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success / error states */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 3rem 2.5rem;
  background: #edf5e8;
  border: 1.5px solid var(--g-300);
  border-radius: var(--r-lg);
  color: var(--g-700);
}
.success-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--g-600);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}
.success-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--g-900);
  letter-spacing: 0.01em;
}
.success-body { font-size: 1rem; color: var(--g-600); line-height: 1.6; }

.form-error-msg {
  padding: 0.875rem 1.125rem;
  background: #fdf2f2;
  border: 1.5px solid #e0503a;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  color: #b93024;
}

/* -------------------------------------------------------
   CONTACT
------------------------------------------------------- */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--g-600);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color 0.25s var(--ease);
}
.contact-item:hover .contact-icon { background: var(--g-500); }

.contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.375rem;
}

.contact-value {
  font-size: 0.9375rem;
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.65;
  display: block;
}
a.contact-value:hover { color: var(--g-600); }

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.site-footer { background: var(--g-900); color: rgba(255,255,255,0.62); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 3.5rem;
  align-items: start;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.42);
  margin-top: 1.25rem;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.125rem;
}

.footer-nav ul,
.footer-services-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-services-col li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.42);
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.28);
}

/* -------------------------------------------------------
   BEFORE/AFTER SLIDER GALLERY
------------------------------------------------------- */
.gallery-section { background: var(--g-950); }

.gallery-section .section-label { color: var(--g-200); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-sub   { color: rgba(255,255,255,0.42); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}

.ba-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--g-900);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  will-change: transform;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-xl);
}

.ba-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding: 1rem 1.25rem 0.75rem;
}

.ba-slider {
  position: relative;
  aspect-ratio: 840 / 967;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ba-before { z-index: 1; }

.ba-after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 10;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  opacity: 0.9;
  transform: translateX(-50%);
}

.ba-handle-circle {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
  color: var(--g-700);
  flex-shrink: 0;
}

.ba-label {
  position: absolute;
  top: 10px;
  z-index: 5;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.48);
  padding: 3px 7px;
  border-radius: 3px;
  pointer-events: none;
}
.ba-label--before { left: 10px; }
.ba-label--after  { right: 10px; }

/* -------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------- */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--cream);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--r-lg);
  padding: 2rem 1.875rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.stars {
  display: flex;
  gap: 3px;
  color: #e9a500;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.82;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonial-meta { margin-top: auto; }

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* -------------------------------------------------------
   RESPONSIVE — TABLET  ≤ 1024px
------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --pad-y: 72px; }

  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-grid        { grid-template-columns: repeat(2, 1fr); }

  .quote-inner         { grid-template-columns: 1fr 1.5fr; gap: 3.5rem; }

  .service-area-inner  { gap: 3.5rem; }

  .footer-inner        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand        { grid-column: 1 / -1; }
}

/* -------------------------------------------------------
   RESPONSIVE — MOBILE  ≤ 768px
------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --pad-y:    56px;
    --header-h: 64px;
    --gutter:   20px;  /* was 18px — adds 2px breathing room each side across every section */
  }

  /* Mobile nav drawer */
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 1.25rem var(--gutter);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform 0.3s var(--ease);
    z-index: 190;
    border-top: 1px solid var(--cream-mid);
  }
  .main-nav.is-open { transform: translateX(0); }

  .nav-list  { flex-direction: column; align-items: stretch; gap: 3px; }
  .nav-link  { padding: 0.875rem 1rem; font-size: 1rem; border-radius: var(--r-md); }
  .nav-link.nav-cta { text-align: center; padding: 0.9rem 1rem; margin-left: 0; margin-top: 0.5rem; }

  .nav-toggle { display: flex; }

  /* Hero */
  .hero-content { padding-top: 56px; padding-bottom: 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Section headers — reduce intro-to-grid gap from 56px to 36px on mobile */
  .section-header { margin-bottom: 36px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card  { padding: 1.875rem 1.5rem; }

  /* Gallery — match services gap for consistency */
  .gallery-grid      { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Service area */
  .service-area-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-area-visual { display: none; }

  /* Quote */
  .quote-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row    { grid-template-columns: 1fr; }
  .btn-submit  { width: 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
  .footer-brand { grid-column: auto; }
}

/* -------------------------------------------------------
   RESPONSIVE — SMALL MOBILE  ≤ 480px
------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --gutter: 20px;  /* explicit at small mobile — holds 20px at 375px/390px/414px */
  }
  .section-title  { font-size: 1.75rem; }
  .hero-headline  { font-size: clamp(2.25rem, 10vw, 3rem); }
  .contact-grid   { grid-template-columns: 1fr; }
}
