/* ==========================================================================
   The Hamptons Pick Up — styles.css
   Warm-editorial "coastal family" system. Hand-built, no framework.
   Sections:  1) Tokens  2) Base type  3) Layout  4) Buttons  5) Header
   6) Hero  7) Trust  8) Services  9) Sizes  10) Story  11) Service area
   12) Reviews  13) FAQ  14) Quote  15) Footer  16) Mobile call bar
   17) Responsive
   ========================================================================== */

/* -------------------------------------------------------------------------
   1) DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Color — brand navy blue + brand orange, on a clean luxe off-white.
     (Variable names kept from the first draft so every component re-themes
      at once; roles below are what actually matters.) */
  --sand:        #F6F4EF;   /* page background — warm off-white */
  --cream:       #FFFFFF;   /* cards / surfaces — clean white */
  --sand-deep:   #EAF0F5;   /* alternating bands — soft blue tint */
  --sea:         #1D68B8;   /* BRAND BLUE (royal, from the HP logo): footer, primary fills, links */
  --sea-800:     #15528F;   /* deeper brand blue — hover */
  --navy:        #12293C;   /* headings (kept near-black for readability) */
  --ink:         #26333D;   /* body text */
  --ink-60:      #61707C;   /* muted text */
  --sunset:      #E8590C;   /* BRAND ORANGE: primary CTA + highlights */
  --sunset-700:  #C2410C;   /* orange hover */
  --line:        #DCE3E9;   /* cool hairline / borders */

  /* Fonts */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.6rem, 1.6rem + 4.4vw, 4.5rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.6vw, 3rem);
  --fs-h3:      clamp(1.35rem, 1.15rem + 0.9vw, 1.7rem);
  --fs-lead:    clamp(1.15rem, 1.05rem + 0.6vw, 1.35rem);
  --fs-body:    1.125rem;
  --fs-small:   0.95rem;
  --fs-eyebrow: 0.8rem;

  /* Spacing (8px rhythm) */
  --s1: 0.5rem;  --s2: 1rem;   --s3: 1.5rem;  --s4: 2rem;
  --s5: 3rem;    --s6: 4rem;   --s7: 5rem;    --s8: 6.5rem;  --s9: 8rem;

  /* Radius / shape */
  --r-sm: 6px;  --r-md: 12px;  --r-lg: 20px;  --r-pill: 999px;

  /* Soft navy-tinted shadows — never harsh gray */
  --shadow-sm: 0 4px 14px -8px rgba(18, 58, 90, 0.28);
  --shadow-md: 0 12px 30px -12px rgba(18, 58, 90, 0.22);
  --shadow-lg: 0 26px 60px -22px rgba(18, 58, 90, 0.30);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 8rem);
  --header-h: 4.75rem;
}

/* -------------------------------------------------------------------------
   2) BASE TYPOGRAPHY
   ------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--sand);
  /* barely-there paper grain so the sand never reads flat-digital */
  background-image: url("../assets/img/paper-grain.svg");
  background-repeat: repeat;
  background-size: 220px 220px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  font-optical-sizing: auto;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 { font-size: var(--fs-display); line-height: 1.02; }
h2 { font-size: var(--fs-h2);  line-height: 1.08; }
h3 { font-size: var(--fs-h3);  line-height: 1.15; }

p { max-width: 66ch; }

a { color: var(--sea); text-underline-offset: 3px; transition: color 0.18s ease; }
a:hover { color: var(--sunset); }

strong { font-weight: 600; color: var(--navy); }

em.pull { font-family: var(--font-head); font-style: italic; color: var(--sea); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sunset-700);
  margin-bottom: var(--s2);
}

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

/* -------------------------------------------------------------------------
   3) LAYOUT
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--sand-deep { background-color: var(--sand-deep); }
.section--sea { background-color: var(--sea); color: var(--cream); }
.section--sea h2, .section--sea h3 { color: var(--cream); }

.section-head { max-width: 60ch; margin-bottom: var(--s5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-60); margin-top: var(--s2); }

.skip-link {
  position: absolute; left: var(--s2); top: -3rem;
  background: var(--sea); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: var(--r-sm); z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: var(--s2); color: var(--cream); }

/* -------------------------------------------------------------------------
   4) BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 0.9rem 1.6rem; border-radius: var(--r-pill);
  min-height: 44px; text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary { background: var(--sunset); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sunset-700); color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--phone { background: var(--sea); color: var(--cream); }
.btn--phone:hover { background: var(--sea-800); color: var(--cream); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--sea); box-shadow: inset 0 0 0 1.5px var(--sea); }
.btn--ghost:hover { background: var(--sea); color: var(--cream); }

.btn--light { background: var(--cream); color: var(--sea); }
.btn--light:hover { background: #fff; color: var(--sea-800); transform: translateY(-1px); }

/* -------------------------------------------------------------------------
   5) UTILITY BAR + HEADER / NAV
   ------------------------------------------------------------------------- */
.utility-bar {
  background: var(--sea); color: var(--cream);
  font-size: var(--fs-small);
}
.utility-bar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.4rem; gap: var(--s3);
}
.utility-bar a { color: var(--cream); font-weight: 600; }
.utility-bar a:hover { color: var(--sand); }
.utility-bar__note { display: inline-flex; align-items: center; gap: 0.5rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: color-mix(in srgb, var(--cream) 96%, transparent); }

.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: var(--s3);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand img, .brand svg { height: 2.4rem; width: auto; }
.brand__word {
  font-family: var(--font-head); font-weight: 600; font-size: 1.25rem;
  color: var(--sea); letter-spacing: -0.01em; line-height: 1;
}

.primary-nav { display: flex; align-items: center; gap: var(--s3); }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--ink); font-weight: 500; font-size: 1rem; padding-block: 1.35rem;
}
.nav-link:hover { color: var(--sunset); }
.nav-caret { opacity: 0.65; transition: transform 0.2s ease; }
.nav-item--menu:hover .nav-caret, .nav-item--menu:focus-within .nav-caret { transform: rotate(180deg); }

.nav-menu {
  position: absolute; top: 100%; left: 0; margin-top: -0.35rem;
  min-width: 16rem; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 0.5rem;
  display: grid; gap: 0.1rem; z-index: 200;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.nav-item--menu:hover .nav-menu, .nav-item--menu:focus-within .nav-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu a {
  display: block; padding: 0.55rem 0.8rem; border-radius: var(--r-sm);
  color: var(--ink); font-size: 0.98rem; white-space: nowrap; font-weight: 500;
}
.nav-menu a:hover { background: var(--sand-deep); color: var(--sea); }

.nav-menu--mega { grid-template-columns: 1fr 1fr; gap: 0.1rem 1.25rem; min-width: 30rem; left: auto; right: 0; }
.nav-menu__col h4 {
  font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.11em; color: var(--ink-60); padding: 0.5rem 0.8rem 0.35rem;
}

.header-actions { display: flex; align-items: center; gap: var(--s3); }
.header-phone { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; color: var(--sea); }
.header-phone svg { width: 1.05em; height: 1.05em; }

/* CSS-only mobile menu */
.nav-toggle, .nav-toggle-label { display: none; }
.nav-toggle-label {
  width: 44px; height: 44px; align-items: center; justify-content: center;
  color: var(--sea); border-radius: var(--r-sm);
}
.nav-toggle-label svg { width: 1.6rem; height: 1.6rem; }

/* -------------------------------------------------------------------------
   6) HERO — full-screen photographic
   ------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(90svh, 860px);
  display: flex; align-items: flex-end;
  color: #fff; background: #0a1b2b;
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

/* Crossfading slideshow */
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  object-fit: cover; object-position: center 42%;
  opacity: 0; animation: heroSlides 28s infinite;
  animation-delay: calc(var(--i) * 7s); will-change: opacity;
}
@keyframes heroSlides {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  27%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Darker, richer overlay — deeper hue while keeping text readable */
.hero__scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(6,15,25,0.58) 0%, rgba(6,15,25,0.34) 32%, rgba(6,15,25,0.56) 66%, rgba(6,15,25,0.9) 100%),
    linear-gradient(90deg, rgba(6,15,25,0.85) 0%, rgba(6,15,25,0.58) 42%, rgba(6,15,25,0.36) 72%, rgba(6,15,25,0.28) 100%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; padding-block: clamp(2.75rem, 7vh, 6rem); }

/* Respect reduced-motion: no auto-advance, show the first shot */
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 0; }
  .hero__slide:first-child { opacity: 1; }
}
.hero__copy { max-width: 44rem; }

.hero .eyebrow { color: #F6CBA6; text-shadow: 0 1px 10px rgba(6,18,30,0.5); }
.hero h1 { color: #fff; margin-bottom: var(--s3); text-shadow: 0 2px 30px rgba(6,18,30,0.35); }
.hero h1 .accent { color: #F6A15C; font-style: italic; }
.hero__lead { margin-bottom: var(--s4); color: rgba(255,255,255,0.92); max-width: 42ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s4); }

/* On the dark photo, the call button becomes glass; quote stays brand-orange */
.hero .btn--phone {
  background: rgba(255,255,255,0.14); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55);
}
.hero .btn--phone:hover { background: #fff; color: var(--sea); box-shadow: none; transform: translateY(-1px); }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem;
  font-size: var(--fs-small); color: rgba(255,255,255,0.9); font-weight: 500;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__trust li:not(:last-child)::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.5); margin-left: 1.1rem;
}

/* Photo mat frame (still used by the story section) */
.photo-frame {
  background: var(--cream); padding: 0.65rem; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transform: rotate(-1.2deg);
}
.photo-frame img { border-radius: calc(var(--r-lg) - 8px); width: 100%; height: auto; }
.photo-caption {
  font-family: var(--font-head); font-style: italic; font-size: 1.05rem;
  color: var(--ink-60); text-align: center; padding: 0.55rem 0 0.15rem;
}

/* -------------------------------------------------------------------------
   7) TRUST STRIP
   ------------------------------------------------------------------------- */
.trust { background: var(--sand-deep); border-block: 1px solid var(--line); }
.trust .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: var(--s5);
}
.trust__item {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding-inline: var(--s4); text-align: center;
}
.trust__item + .trust__item { border-left: 1px solid var(--line); }
.trust__num {
  font-family: var(--font-head); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  font-weight: 600; color: var(--sea); line-height: 1;
}
.trust__label { font-size: var(--fs-small); color: var(--ink-60); }

/* -------------------------------------------------------------------------
   8) SERVICES
   ------------------------------------------------------------------------- */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4);
}
.service-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-deep); }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__body {
  padding: var(--s4); display: flex; flex-direction: column; gap: var(--s2); flex: 1;
}
.service-card p { color: var(--ink-60); font-size: 1rem; flex: 1; }
.service-card__link {
  font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem;
}
.service-card__link svg { width: 1em; height: 1em; transition: transform 0.18s ease; }
.service-card__link:hover svg { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   9) DUMPSTER SIZES
   ------------------------------------------------------------------------- */
.sizes__scroll {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s3);
}
.size-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--s3);
  display: flex; flex-direction: column; gap: 0.6rem; position: relative;
}
.size-card.is-popular { border-color: var(--sea); box-shadow: var(--shadow-md); }
.size-card__tag {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: var(--sunset); color: var(--cream); font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill); white-space: nowrap;
}
.size-card__num {
  font-family: var(--font-head); font-weight: 600; line-height: 0.95;
  font-size: clamp(2.2rem, 1.6rem + 1.6vw, 2.8rem); color: var(--navy);
}
.size-card__num span { font-size: 0.42em; color: var(--ink-60); margin-left: 0.15em; }
.size-card__svg { color: var(--sunset); width: 100%; height: auto; opacity: 0.95; }
.size-card__use { font-size: var(--fs-small); color: var(--ink-60); }
.sizes__note { margin-top: var(--s4); color: var(--ink-60); font-size: 1rem; }

/* -------------------------------------------------------------------------
   10) STORY / WHY US
   ------------------------------------------------------------------------- */
.story .container {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.story__figure { margin: 0; }
.story__body h2 { margin-bottom: var(--s3); }
.story__body p { margin-bottom: var(--s3); color: var(--ink); }
.reasons { display: grid; gap: var(--s2); margin-top: var(--s3); }
.reasons li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 1.05rem; }
.reasons li svg { width: 1.4rem; height: 1.4rem; color: var(--sea); flex: none; margin-top: 0.15rem; }

/* -------------------------------------------------------------------------
   11) SERVICE AREA
   ------------------------------------------------------------------------- */
.area .container { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
.area .container > * { min-width: 0; }  /* let the scrollable map contain itself instead of stretching the section */
.area__intro { max-width: 64ch; }
.area__intro p { margin-top: var(--s2); color: var(--ink-60); }

.area__map-wrap {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); width: 100%; min-width: 0;
}
.map-scroll { width: 100%; min-width: 0; }
.map-stage { position: relative; width: 100%; }
.map-hint { display: none; }
.area__map { width: 100%; height: auto; display: block; border-radius: var(--r-md); }
.area__map .water { fill: #DCE8F0; }
.area__map .land { fill: #EDE4D1; stroke: rgba(18,58,90,0.55); stroke-width: 1.5; stroke-linejoin: round; }
.area__map .isle { fill: #EDE4D1; stroke: rgba(18,58,90,0.45); stroke-width: 1.2; }
.area__map .label-title { fill: var(--navy); font-family: var(--font-head); font-weight: 600; font-size: 26px; letter-spacing: 0.02em; }
.area__map .label-sound { fill: #6E93AC; font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: 22px; letter-spacing: 0.16em; }
.area__map .label-bay { fill: #6E93AC; font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: 16px; }
.area__map .label-bay--sm { font-size: 13px; letter-spacing: 0.05em; }
.area__map .label-ocean { fill: #6E93AC; font-family: var(--font-head); font-weight: 500; font-size: 24px; letter-spacing: 0.28em; }
.area__map .compass circle { fill: none; stroke: rgba(18,58,90,0.4); stroke-width: 1.5; }
.area__map .compass path { fill: var(--sunset); }
.area__map .compass text { fill: var(--navy); font-family: var(--font-body); font-weight: 600; font-size: 13px; }

/* Clickable town boxes over the map */
.map-town {
  position: absolute; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: 0.2rem 0.55rem; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.94); color: var(--navy);
  border: 1.5px solid var(--sea);
  font-size: clamp(0.6rem, 0.4rem + 0.55vw, 0.82rem); font-weight: 600; line-height: 1.1;
  box-shadow: 0 2px 8px -3px rgba(18,58,90,0.35);
  cursor: pointer; transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.map-town::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--sunset); margin-right: 0.4rem; flex: none;
}
.map-town:hover, .map-town:focus-visible {
  background: var(--sea); color: #fff; border-color: var(--sea);
  transform: translate(-50%, -50%) scale(1.06); z-index: 6;
}
.map-town:hover::before, .map-town:focus-visible::before { background: #fff; }
.map-town--up { transform: translate(-50%, -140%); }
.map-town--up:hover, .map-town--up:focus-visible { transform: translate(-50%, -140%) scale(1.06); }

.area__map-note { margin-top: var(--s3); text-align: center; font-size: var(--fs-small); color: var(--ink-60); }

.area__lists { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); max-width: 720px; }
.area__group h3 { font-size: 1.15rem; margin-bottom: var(--s2); color: var(--sea); }
.town-list li { padding-block: 0.15rem; }
.town-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: var(--ink); }
.town-link svg { width: 0.95rem; height: 0.95rem; color: var(--sunset); flex: none; }
.town-link:hover { color: var(--sunset); }
.area__note { color: var(--ink-60); }

/* -------------------------------------------------------------------------
   12) REVIEWS
   ------------------------------------------------------------------------- */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.review-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s4);
  display: flex; flex-direction: column; gap: var(--s2); box-shadow: var(--shadow-sm);
}
.review-card__mark { font-family: var(--font-head); font-size: 3rem; line-height: 0.6; color: var(--sunset); height: 1.4rem; }
.review-card__text { font-size: 1.05rem; color: var(--ink); flex: 1; }
.review-card__who { font-weight: 600; color: var(--navy); }
.review-card__meta { font-size: var(--fs-small); color: var(--ink-60); }
.reviews__empty {
  text-align: center; color: var(--ink-60); max-width: 52ch;
  margin-inline: auto; font-size: 1.05rem;
}
.google-rating {
  display: grid; justify-items: center; gap: var(--s2);
  text-align: center; max-width: 44ch; margin-inline: auto;
}
.google-rating__stars { color: #F5A623; font-size: 2.1rem; letter-spacing: 0.12em; line-height: 1; }
.google-rating__score { font-size: 1.2rem; color: var(--ink); }
.google-rating__score strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); }
.google-rating__note { font-size: var(--fs-small); color: var(--ink-60); margin-top: var(--s1); }
.reviews .google-rating { margin-bottom: var(--s5); }
.review-card__stars { color: #F5A623; letter-spacing: 0.06em; margin-right: 0.4rem; }

/* Reviews carousel — one review at a time, swipe / arrows */
.reviews__carousel-wrap { display: flex; align-items: center; gap: var(--s3); }
.reviews__carousel {
  flex: 1; min-width: 0;
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  gap: var(--s4);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; padding: 0.25rem;
}
.reviews__carousel::-webkit-scrollbar { display: none; }
.reviews__carousel .review-card { scroll-snap-align: center; padding: var(--s5); justify-content: center; }
.reviews__carousel .review-card__text { font-size: 1.12rem; }
.reviews__carousel:focus-visible { outline: 3px solid var(--sea); outline-offset: 4px; border-radius: var(--r-lg); }

.carousel-btn {
  flex: none; width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream); border: 1.5px solid var(--line); color: var(--sea);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.carousel-btn:hover { background: var(--sea); color: #fff; border-color: var(--sea); transform: translateY(-1px); }
.carousel-btn svg { width: 1.3rem; height: 1.3rem; }
.reviews__hint { text-align: center; margin-top: var(--s3); font-size: var(--fs-small); color: var(--ink-60); }

@media (max-width: 720px) {
  .carousel-btn { display: none; }
  .reviews__carousel .review-card { padding: var(--s4); }
}

/* -------------------------------------------------------------------------
   13) FAQ
   ------------------------------------------------------------------------- */
.faq__list { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: var(--s3) 2.5rem var(--s3) 0;
  font-family: var(--font-head); font-size: 1.2rem; color: var(--navy);
  position: relative; font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%;
  transform: translateY(-50%); font-size: 1.6rem; color: var(--sea);
  font-family: var(--font-body); transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--sunset); }
.faq-item__body { padding: 0 2.5rem var(--s3) 0; color: var(--ink-60); }
.faq-item__body p { max-width: 70ch; }

/* -------------------------------------------------------------------------
   14) QUOTE / FINAL CTA
   ------------------------------------------------------------------------- */
.quote .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.quote__intro p { color: color-mix(in srgb, var(--cream) 82%, transparent); margin-top: var(--s3); }
.quote__intro .quote-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: var(--s4);
  font-family: var(--font-head); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); color: var(--cream);
}
.quote__intro .quote-phone:hover { color: var(--sand); }

.quote-form {
  background: var(--cream); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg); display: grid; gap: var(--s3);
}
.quote-form h3 { color: var(--navy); }
.field { display: grid; gap: 0.4rem; }
.field.row { grid-template-columns: 1fr 1fr; gap: var(--s3); }
.field label { font-size: var(--fs-small); font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 0.7rem 0.85rem; font-size: 1rem; color: var(--ink); width: 100%;
  transition: border-color 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sea); outline: none; }
.field textarea { resize: vertical; min-height: 5.5rem; }
.quote-form__submit { justify-self: start; }
.quote-form__note { font-size: 0.85rem; color: var(--ink-60); }

/* -------------------------------------------------------------------------
   15) FOOTER
   ------------------------------------------------------------------------- */
.site-footer { background: #102438; color: rgba(255,255,255,0.68); }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: #fff; }
.footer__grid {
  display: grid; grid-template-columns: 1.9fr 1fr 1.35fr 1fr 1.1fr;
  gap: var(--s5) var(--s4); padding-block: var(--s7) var(--s5);
}
.footer__brand .brand { margin-bottom: var(--s3); }
.footer__brand .brand__mark { height: 2.2rem; width: auto; }
.footer__brand .brand__word { color: #fff; font-size: 1.25rem; }
.footer__brand p { color: rgba(255,255,255,0.6); margin-bottom: var(--s3); font-size: 1rem; max-width: 36ch; }
.footer__contact { display: grid; gap: 0.6rem; margin-bottom: var(--s3); }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.98rem; }
.footer__contact svg { width: 1.05rem; height: 1.05rem; color: var(--sunset); flex: none; margin-top: 0.15rem; }
.footer__rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.98rem; }
.footer__stars { color: #F5A623; letter-spacing: 0.06em; }

.site-footer h4 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; color: var(--sunset); margin-bottom: var(--s3); }
.footer__h4-sub { margin-top: var(--s4); }
.footer__links { display: grid; gap: 0.5rem; font-size: 0.98rem; }
.footer__links a { display: inline-flex; align-items: baseline; gap: 0.45rem; }
.footer__links a::before { content: "\203A"; color: var(--sunset); font-weight: 700; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: var(--s3); font-size: var(--fs-small);
  color: rgba(255,255,255,0.5);
  display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); justify-content: space-between;
}

/* Area chips (nearby areas on town pages, service areas on service pages) */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.section-head.center + .chip-row { justify-content: center; }
.chip {
  display: inline-flex; align-items: center; padding: 0.5rem 0.95rem;
  border-radius: var(--r-pill); background: var(--cream); border: 1.5px solid var(--line);
  color: var(--sea); font-weight: 600; font-size: 0.95rem;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.chip:hover { background: var(--sea); color: #fff; border-color: var(--sea); transform: translateY(-1px); }
.nearby__note { margin-top: var(--s3); color: var(--ink-60); font-size: 1rem; }
.nearby__note--center { text-align: center; }

/* How it works — steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); }
.step-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s4); box-shadow: var(--shadow-sm); display: grid; gap: var(--s2); align-content: start;
}
.step-card__num {
  display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--sea); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem;
}
.step-card p { color: var(--ink-60); font-size: 1rem; }
.reasons--2col { grid-template-columns: 1fr 1fr; gap: var(--s2) var(--s4); }

/* Reviews strip (inner pages) */
.reviews-strip { text-align: center; padding-block: var(--s6); }
.reviews-strip .google-rating__stars { display: block; color: #F5A623; font-size: 1.9rem; letter-spacing: 0.1em; }
.reviews-strip p:last-child { color: var(--ink-60); max-width: 62ch; margin: var(--s2) auto 0; }
.reviews-strip strong { color: var(--navy); }
.reviews-strip__quote {
  font-family: var(--font-head); font-style: italic; color: var(--navy);
  font-size: clamp(1.15rem, 1rem + 0.85vw, 1.5rem); line-height: 1.4;
  max-width: 60ch; margin: var(--s3) auto 0; padding: 0; border: none;
}

/* Dumpster size scale diagram */
.diagram-wrap {
  width: 100%; margin: 0; background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(0.75rem, 2vw, 1.25rem); box-shadow: var(--shadow-sm);
}
.diagram-wrap svg { width: 100%; height: auto; display: block; }
.diagram-cap { text-align: center; font-family: var(--font-head); font-style: italic; font-size: 0.95rem; color: var(--ink-60); margin-top: var(--s2); }
.prose__split--center { align-items: center; }

/* -------------------------------------------------------------------------
   16) STICKY MOBILE CALL BAR
   ------------------------------------------------------------------------- */
.call-bar { display: none; }
@media (max-width: 720px) {
  .call-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--cream) 94%, transparent);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .call-bar .btn { justify-content: center; padding-inline: 0.5rem; }
  body { padding-bottom: 4.75rem; }
}

/* -------------------------------------------------------------------------
   17) RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s5) var(--s4); }
  .footer__brand { grid-column: 1 / -1; }
  .sizes__scroll {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 60%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-top: 1.1rem; padding-bottom: var(--s2);
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter); scrollbar-width: thin;
  }
  .size-card { scroll-snap-align: start; }
}

/* Mobile map: scroll horizontally so town boxes never overlap */
@media (max-width: 900px) {
  .map-scroll {
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
    border-radius: var(--r-md);
  }
  .map-stage { min-width: 700px; }
  .map-hint { display: inline; color: var(--sunset-700); font-weight: 600; }
}

@media (max-width: 880px) {
  .hero { min-height: min(88svh, 720px); }
  .hero__copy { max-width: none; }
  .hero__img { object-position: center 42%; }
  .photo-frame { transform: none; }
  .story .container,
  .area .container,
  .quote .container { grid-template-columns: 1fr; }
  .story__figure { order: 2; }
  .services__grid,
  .reviews__grid { grid-template-columns: 1fr; }
  .trust .container { grid-template-columns: 1fr 1fr; gap: var(--s3); padding-block: var(--s4); }
  .trust__item { padding-inline: var(--s2); }
  .trust__item + .trust__item { border-left: none; }
  .trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--line); padding-top: var(--s3); }

  /* Mobile nav: collapse links behind the toggle */
  .nav-toggle-label { display: inline-flex; }
  .primary-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: var(--s2) var(--gutter) var(--s3);
    max-height: 80vh; overflow-y: auto;
  }
  .nav-toggle:checked ~ .primary-nav { display: flex; }
  .nav-item { width: 100%; position: static; border-bottom: 1px solid var(--line); }
  .nav-link { padding-block: 0.9rem; font-size: 1.1rem; width: 100%; justify-content: space-between; }
  .nav-caret { display: inline-flex; opacity: 0.8; }
  .nav-item.is-open > .nav-link .nav-caret { transform: rotate(180deg); }
  /* Submenus are collapsed accordions — tap the row to open (handled in enhance.js) */
  .nav-menu {
    display: none; position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; border-radius: 0;
    padding: 0 0 0.5rem 0.9rem; margin: 0; min-width: 0; grid-template-columns: 1fr;
  }
  .nav-item.is-open > .nav-menu { display: grid; }
  .nav-menu a { padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; white-space: normal; }
  .nav-menu a:last-child { border-bottom: none; }
  /* Service Area mega menu becomes a stacked accordion on mobile (all towns) */
  .nav-menu--mega { left: auto; right: auto; min-width: 0; }
  .nav-menu__col + .nav-menu__col { margin-top: var(--s2); }
  .nav-menu__col h4 { padding: 0.5rem 0 0.2rem; }
  .utility-bar { display: none; }
  /* Declutter the mobile header — the sticky bottom bar already has Call + Get Quote */
  .header-phone { display: none; }
  .header-actions > .btn--primary { display: none; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s3); }
  .footer__brand { grid-column: 1 / -1; }
  .field.row { grid-template-columns: 1fr; }
  /* Keep the town lists in two columns and the trust strip 2x2 — more compact, less scrolling */
  .area__lists { gap: var(--s3) var(--s4); }
}

/* -------------------------------------------------------------------------
   18) INNER PAGES (services, sizes, towns, about, contact, guide)
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  min-height: clamp(360px, 52vh, 560px); display: flex; align-items: flex-end;
  background: #0a1b2b;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.page-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,15,25,0.55) 0%, rgba(6,15,25,0.32) 34%, rgba(6,15,25,0.6) 74%, rgba(6,15,25,0.9) 100%),
    linear-gradient(90deg, rgba(6,15,25,0.85) 0%, rgba(6,15,25,0.5) 46%, rgba(6,15,25,0.28) 100%);
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.25rem, 5vh, 3.75rem); }
.page-hero .eyebrow { color: #F6CBA6; text-shadow: 0 1px 10px rgba(6,18,30,0.5); }
.page-hero h1 { color: #fff; max-width: 20ch; margin-bottom: var(--s3); text-shadow: 0 2px 26px rgba(6,18,30,0.35); }
.page-hero h1 .accent { color: #F6A15C; font-style: italic; }
.page-hero__lead { color: rgba(255,255,255,0.92); max-width: 54ch; margin-bottom: var(--s4); }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: var(--s2); }
.page-hero .btn--phone {
  background: rgba(255,255,255,0.14); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55);
}
.page-hero .btn--phone:hover { background: #fff; color: var(--sea); box-shadow: none; }

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
  font-size: var(--fs-small); margin-bottom: var(--s3);
  color: rgba(255,255,255,0.72);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

/* Prose + split layout */
.prose { max-width: var(--container); }
.prose > h2 { margin-top: var(--s2); margin-bottom: var(--s3); }
.prose > h2:not(:first-child) { margin-top: var(--s5); }
.prose > p { margin-bottom: var(--s3); }
.prose__split { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.prose__split h2 { margin-bottom: var(--s3); }
.prose__split p { margin-bottom: var(--s3); }
.prose__note { font-size: var(--fs-small); color: var(--ink-60); }
.prose__card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s4); box-shadow: var(--shadow-sm); position: sticky; top: 6rem;
  display: grid; gap: var(--s3);
}
.prose__card h3 { color: var(--navy); }
.prose__card .btn { justify-content: center; }

.spec-list { display: grid; gap: 0; }
.spec-list li {
  display: flex; justify-content: space-between; gap: var(--s2);
  padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 1rem;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list span { color: var(--ink-60); }
.spec-list strong { color: var(--navy); text-align: right; }

/* Why-us grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); }
.why-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s4); box-shadow: var(--shadow-sm); display: grid; gap: var(--s2);
}
.why-card__icon {
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  background: color-mix(in srgb, var(--sea) 12%, transparent); color: var(--sea);
  border-radius: var(--r-md);
}
.why-card__icon svg { width: 1.5rem; height: 1.5rem; }
.why-card p { color: var(--ink-60); font-size: 1rem; }

/* CTA band */
.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s4); }
.cta-band h2 { max-width: 22ch; }
.cta-band p { color: color-mix(in srgb, var(--cream) 82%, transparent); margin-top: var(--s2); max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* Compact service cards (town pages) */
.services__grid--compact { grid-template-columns: 1fr 1fr; }
.service-card--link { text-decoration: none; }

/* Size cards as links */
a.size-card { text-decoration: none; }
a.size-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--block { width: 100%; justify-content: center; }

/* Guide lists */
.guide-list { display: grid; gap: 0.6rem; margin: var(--s2) 0 var(--s3); }
.guide-list li { position: relative; padding-left: 1.4rem; }
.guide-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: var(--sunset); }

/* Contact page */
.quote--contact .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.quote__intro--light h2, .quote__intro--light .eyebrow { color: var(--navy); }
.quote__intro--light .eyebrow { color: var(--sunset-700); }
.contact-list { display: grid; gap: var(--s2); margin-top: var(--s3); }
.contact-list li { display: grid; grid-template-columns: 5.5rem 1fr; gap: var(--s2); padding-block: 0.5rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.contact-list span { color: var(--ink-60); font-size: var(--fs-small); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; align-self: center; }

@media (max-width: 880px) {
  .prose__split { grid-template-columns: 1fr; }
  .prose__card { position: static; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services__grid--compact { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .quote--contact .container { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .reasons--2col { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.15rem; }
  .steps-grid { grid-template-columns: 1fr; }
}
