/* ============================================================
   AWR Skip Hire — dark industrial stylesheet
   Palette: deep black + AWR lime green + warm paper
   Type:    Archivo (display) + Inter (body)
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  /* Brand greens - punchier than logo green when used on black */
  --g:           #8BCC3F;   /* primary */
  --g-bright:    #A8E053;   /* highlight */
  --g-dark:      #5F8F22;   /* shadowed */
  --g-deep:      #2A4410;   /* deepest */
  --g-ink:       #0F1904;   /* near-black green for type on lime */

  /* Dark shell */
  --bg:          #0B0D0A;   /* page background */
  --bg-2:        #111512;   /* card / section alt */
  --bg-3:        #1A1F1A;   /* elevated */
  --bg-line:     #242A23;   /* dividers */
  --bg-line-2:   #2E3A2A;   /* subtle green-tinted divider */

  /* Text */
  --fg:          #EFEFE6;
  --fg-dim:      #B5B5A9;
  --fg-muted:    #787870;
  --fg-ink:      #0B0D0A;   /* inverted for use on green */

  /* Paper (for accent sections) */
  --paper:       #F2F0E5;

  /* Shell tokens that vary per theme */
  --nav-bg:      rgba(11, 13, 10, 0.92);

  /* Geometry - mostly sharp */
  --r:           3px;
  --r-md:        6px;
  --max-w:       1320px;

  /* Motion */
  --ease:        cubic-bezier(0.2, 0, 0, 1);
}

/* ===== LIGHT THEME (inverted) ===== */
[data-theme="light"] {
  --g:           #6FA82E;
  --g-bright:    #8BCC3F;
  --g-dark:      #4A7A1F;
  --g-deep:      #2A4410;
  --g-ink:       #0F1904;

  --bg:          #F5F3E8;
  --bg-2:        #ECEAE0;
  --bg-3:        #E0DED3;
  --bg-line:     #D6D4C7;
  --bg-line-2:   #C2C0B3;

  --fg:          #111310;
  --fg-dim:      #3E3E38;
  --fg-muted:    #787870;
  --fg-ink:      #F5F3E8;

  --paper:       #111310;

  --nav-bg:      rgba(245, 243, 232, 0.92);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; transition: color .18s var(--ease); }
::selection { background: var(--g); color: var(--g-ink); }
:focus-visible { outline: 2px solid var(--g); outline-offset: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(52px, 9.5vw, 148px); font-weight: 900; letter-spacing: -0.045em; line-height: 0.92; }
h2 { font-size: clamp(38px, 6vw, 84px); letter-spacing: -0.04em; }
h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.025em; }
h4 { font-size: 18px; letter-spacing: -0.02em; }
p  { color: var(--fg-dim); }
.lead { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.5; color: var(--fg-dim); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--g);
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 1.5px; background: var(--g);
}
.eyebrow--ink { color: var(--g-ink); }
.eyebrow--ink::before { background: var(--g-ink); }

.accent { color: var(--g); }
.fg-bright { color: var(--fg); }
.mark {
  background: var(--g); color: var(--g-ink);
  padding: 0 0.18em; font-weight: inherit;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section   { padding: clamp(72px, 11vw, 160px) 0; }
.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head p { margin-top: 20px; font-size: 18px; color: var(--fg-dim); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.sr-only:focus { position: static; width: auto; height: auto; padding: 12px;
  background: var(--g); color: var(--g-ink); z-index: 9999; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 28px;
  font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--r);
  transition: all .2s var(--ease);
  line-height: 1;
  border: 1.5px solid transparent;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary {
  background: var(--g); color: var(--g-ink);
  border-color: var(--g);
}
.btn-primary:hover { background: var(--g-bright); border-color: var(--g-bright); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--fg);
  border-color: var(--bg-line-2);
}
.btn-outline:hover { background: var(--g); color: var(--g-ink); border-color: var(--g); }
.btn-dark {
  background: var(--g-ink); color: var(--g-bright);
  border-color: var(--g-ink);
}
.btn-dark:hover { background: #000; border-color: var(--g); color: var(--g); }
.btn-lg { padding: 20px 36px; font-size: 15px; }
.btn-sm { padding: 12px 20px; font-size: 12.5px; }

/* ===== TICKER ===== */
.ticker {
  background: var(--g);
  color: var(--g-ink);
  overflow: hidden;
  border-bottom: 1.5px solid var(--g-ink);
}
.ticker-track {
  display: flex; gap: 48px;
  padding: 11px 0;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; }
.ticker-track span::after {
  content: '■'; font-size: 8px; opacity: 0.6; margin-left: 48px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--bg-line);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
  flex-shrink: 0;
  text-transform: uppercase;
}
.nav-brand-logo {
  width: 48px; height: 38px;
  display: grid; place-items: center;
  color: var(--g);
}
.nav-brand-logo svg { width: 100%; height: 100%; }
.nav-brand-name { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.nav-brand-name span:first-child { font-size: 18px; letter-spacing: 0.05em; }
.nav-brand-name span:last-child {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--g); text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; margin-right: auto;
}
.nav-links a {
  padding: 10px 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-dim);
  border-radius: var(--r);
  position: relative;
}
.nav-links a:hover { color: var(--g); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 0;
  height: 2px; background: var(--g);
}

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--fg);
  padding: 10px 14px;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--g); }
.nav-phone:hover { color: var(--g); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--g); color: var(--g-ink);
  border-radius: var(--r);
  font-family: 'Archivo', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all .2s var(--ease);
}
.nav-cta:hover { background: var(--g-bright); transform: translateY(-1px); }

.nav-theme {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r);
  border: 1px solid var(--bg-line);
  color: var(--fg-dim);
  transition: all .18s var(--ease);
  flex-shrink: 0;
}
.nav-theme:hover { color: var(--g); border-color: var(--g); }
.nav-theme svg { width: 18px; height: 18px; }
.nav-theme .icon-moon { display: none; }
[data-theme="light"] .nav-theme .icon-sun { display: none; }
[data-theme="light"] .nav-theme .icon-moon { display: inline-block; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--r);
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--g); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--g); transition: .25s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-mobile {
  display: none;
  padding: 20px 32px 28px;
  background: var(--bg);
  border-top: 1px solid var(--bg-line);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 14px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--fg); border-bottom: 1px solid var(--bg-line);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 7vw, 100px);
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(139, 204, 63, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(139, 204, 63, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--bg-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px; border-bottom: 1px solid var(--bg-line);
  font-family: 'Archivo', sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-eyebrow-row .live {
  display: inline-flex; align-items: center; gap: 8px; color: var(--g);
}
.hero-eyebrow-row .live::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--g);
  box-shadow: 0 0 0 4px rgba(139, 204, 63, 0.15);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(139, 204, 63, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(139, 204, 63, 0.03); }
}

.hero h1 {
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.hero h1 .line1 { color: var(--fg); }
.hero h1 .line2 { color: var(--g); }
.hero h1 .slash {
  color: var(--g); opacity: 0.5; font-weight: 400;
  font-size: 0.7em; vertical-align: middle;
}

.hero-bottom {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--bg-line);
}
.hero-lead {
  max-width: 560px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  color: var(--fg-dim);
}
.hero-lead strong { color: var(--fg); font-weight: 600; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

/* Hero skip mark - oversized background graphic (fallback when no image) */
.hero-mark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 54%;
  max-width: 760px;
  color: var(--g);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

/* Hero photo panel - right-hand editorial image */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-3);
  max-width: 520px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.1) brightness(0.85);
  transition: transform 0.8s var(--ease);
}
.hero-photo:hover img { transform: scale(1.03); }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(11, 13, 10, 0.25) 0%, rgba(11, 13, 10, 0) 35%, rgba(11, 13, 10, 0) 55%, rgba(11, 13, 10, 0.92) 100%),
    linear-gradient(0deg, rgba(11, 13, 10, 0) 55%, rgba(11, 13, 10, 0.5) 100%);
  pointer-events: none;
}
.split-image-photo {
  filter: saturate(0.6) contrast(1.08) brightness(0.85);
}
.hero-photo-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--g); color: var(--g-ink);
  padding: 8px 14px; border-radius: var(--r);
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-photo-tag::before {
  content: ''; width: 6px; height: 6px; background: var(--g-ink); border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
.hero-photo-cap {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  font-family: 'Archivo', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg);
}
.hero-photo-cap strong { display: block; color: var(--g); margin-bottom: 4px; font-size: 24px; letter-spacing: -0.02em; text-transform: none; }

/* Two-column hero layout switch */
.hero--with-photo .hero-inner { display: grid; grid-template-columns: 1fr; gap: 0; }
.hero--with-photo .hero-layout { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 64px; align-items: center; margin-top: 40px; }
.hero--with-photo .hero-mark { display: none; }

/* ===== RECYCLING / SPLIT IMAGE SECTION ===== */
.split-image {
  background: var(--bg);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}
.split-image-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
.split-image-photo {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.split-image-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 10, 0) 60%, var(--bg) 100%);
}
.split-image-text {
  padding: clamp(60px, 8vw, 120px) clamp(32px, 6vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
}
.split-image-text h2 {
  text-transform: uppercase;
  margin-bottom: 24px;
}
.split-image-big {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: clamp(80px, 10vw, 160px);
  color: var(--g);
  line-height: 0.9; letter-spacing: -0.05em;
  margin: 24px 0;
}
.split-image-big small { font-size: 0.35em; color: var(--fg-muted); margin-left: 0.22em; letter-spacing: 0.04em; vertical-align: top; }
.split-image-text p { font-size: 17px; color: var(--fg-dim); max-width: 480px; line-height: 1.65; }

/* Rubble texture for extras/waste */
.waste::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/rubble.jpg');
  background-size: cover; background-position: center;
  opacity: 0.06;
  filter: grayscale(1) contrast(1.1);
  pointer-events: none;
}
.waste { position: relative; overflow: hidden; }
.waste .container { position: relative; z-index: 1; }

/* ===== GOOGLE REVIEWS / MAP ===== */
.google-section {
  background: var(--bg-2);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}
.google-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  min-height: 440px;
}
.google-card {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--bg-line);
}
.google-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 24px;
}
.google-logo-mark {
  width: 20px; height: 20px;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.google-stars {
  display: flex; gap: 3px; margin-bottom: 20px;
  color: var(--g);
}
.google-stars svg { width: 24px; height: 24px; }
.google-rating {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900; color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 16px;
}
.google-rating small {
  font-size: 0.4em; color: var(--fg-muted);
  margin-left: 10px; font-weight: 600; letter-spacing: 0;
}
.google-card h3 {
  text-transform: uppercase; font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 16px;
}
.google-card p { color: var(--fg-dim); font-size: 16px; line-height: 1.6; margin-bottom: 28px; max-width: 420px; }
.google-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.google-map {
  background: var(--bg-3);
  min-height: 440px;
  position: relative;
}
.google-map iframe {
  display: block; width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05) brightness(0.9);
  position: absolute; inset: 0;
}

/* ===== PRICE STRIP ===== */
.price-strip {
  background: var(--g);
  color: var(--g-ink);
  position: relative;
}
.price-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 20px, rgba(15,25,4,0.04) 20px 22px);
  pointer-events: none;
}
.price-strip-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 48px 32px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.price-strip-head h2 {
  color: var(--g-ink);
  font-size: clamp(32px, 4vw, 54px);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.price-strip-head p { color: var(--g-deep); font-size: 16px; max-width: 420px; }
.price-strip-head a { margin-top: 24px; }

.price-table {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--g-ink);
  border: 2px solid var(--g-ink);
}
.price-tile {
  background: var(--g);
  padding: 20px 16px 18px;
  display: flex; flex-direction: column; gap: 3px;
  cursor: pointer;
  transition: background .18s;
  position: relative;
}
.price-tile:hover { background: var(--g-bright); }
.price-tile-size {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: 11px;
  color: var(--g-deep);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.price-tile-price {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: clamp(22px, 2.2vw, 28px);
  color: var(--g-ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-tile-arrow {
  position: absolute; top: 16px; right: 16px;
  color: var(--g-deep); opacity: 0;
  transition: opacity .2s;
}
.price-tile:hover .price-tile-arrow { opacity: 1; }

/* ===== STATS MARQUEE ===== */
.stats {
  background: var(--bg);
  padding: 72px 0;
  border-bottom: 1px solid var(--bg-line);
}
.stats-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bg-line);
}
.stat {
  padding: 40px 24px;
  border-right: 1px solid var(--bg-line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: clamp(56px, 7vw, 96px);
  color: var(--g);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin-bottom: 14px;
}
.stat-num small {
  font-size: 0.5em;
  color: var(--fg-muted);
  margin-left: 0.18em;
  letter-spacing: 0.04em;
}
.stat-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 600; font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== SKIP SHOWCASE ===== */
.showcase {
  background: var(--bg);
  position: relative;
}
.showcase-list {
  border-top: 1px solid var(--bg-line);
}
.skip-row {
  display: grid;
  grid-template-columns: 80px 1.3fr 1fr auto auto;
  gap: 32px;
  padding: 32px 28px;
  align-items: center;
  border-bottom: 1px solid var(--bg-line);
  transition: background .2s;
}
.skip-row:hover { background: var(--bg-2); }
.skip-row-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: 44px;
  color: var(--g);
  letter-spacing: -0.05em;
  line-height: 1;
}
.skip-row-num sup { font-size: 0.5em; color: var(--fg-muted); font-weight: 600; margin-left: 0.18em; letter-spacing: 0; }
.skip-row-meta h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.skip-row-meta p { font-size: 14.5px; color: var(--fg-muted); margin: 0; }
.skip-row-info {
  font-size: 13.5px; color: var(--fg-dim);
  display: flex; flex-direction: column; gap: 4px;
}
.skip-row-info strong { color: var(--fg); font-weight: 600; }
.skip-row-prices {
  font-family: 'Archivo', sans-serif;
  display: flex; gap: 20px;
  text-align: right;
}
.skip-row-price {
  display: flex; flex-direction: column; gap: 3px;
}
.skip-row-price small {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-muted);
}
.skip-row-price span {
  font-weight: 900; font-size: 24px;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}
.skip-row-price--road span { color: var(--g); }
.skip-row-book {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--bg-line-2);
  border-radius: var(--r);
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.skip-row-book::after {
  content: '→';
  font-size: 15px;
  line-height: 1;
  transition: transform .2s var(--ease);
}
.skip-row-book:hover::after { transform: translateX(3px); }
.skip-row-book:hover { background: var(--g); color: var(--g-ink); border-color: var(--g); }
.skip-row--feature {
  background: linear-gradient(180deg, rgba(139, 204, 63, 0.06) 0%, rgba(139, 204, 63, 0.02) 100%);
  position: relative;
}
.skip-row--feature::before {
  content: 'Most popular';
  position: absolute; top: 8px; left: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--g);
}
.skip-row--feature .skip-row-num { color: var(--g-bright); }

/* ===== PROCESS (BIG TIMELINE) ===== */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--g);
}
.process-step {
  padding: 48px 40px;
  border-right: 1px solid var(--bg-line);
  position: relative;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child { border-right: 0; padding-right: 0; }
.process-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: clamp(64px, 8vw, 112px);
  color: var(--g);
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-bottom: 20px;
}
.process-step h3 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.process-step p { color: var(--fg-dim); font-size: 15px; line-height: 1.6; }

/* ===== WHY (two-tone split) ===== */
.why {
  background: var(--bg);
  position: relative;
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
}
.why-item {
  padding: 40px 28px 36px;
  border-right: 1px solid var(--bg-line);
  position: relative;
}
.why-item:last-child { border-right: 0; }
.why-item::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 24px; height: 2px; background: var(--g);
}
.why-item-num {
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--g); margin-bottom: 24px; text-transform: uppercase;
}
.why-item h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--fg);
}
.why-item p { color: var(--fg-dim); font-size: 14.5px; line-height: 1.6; }

/* ===== AREAS (green panel) ===== */
.areas {
  background: var(--g);
  color: var(--g-ink);
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.areas::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 79px, rgba(15,25,4,0.06) 79px 80px);
  pointer-events: none;
}
.areas-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px;
  align-items: start;
}
.areas-inner h2 {
  color: var(--g-ink);
  text-transform: uppercase;
  font-size: clamp(44px, 6.5vw, 96px);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.areas-inner > div > p {
  color: var(--g-deep);
  font-size: 17px;
  max-width: 420px;
  margin-bottom: 32px;
}
.areas-list {
  columns: 2;
  column-gap: 32px;
  border-top: 2px solid var(--g-ink);
}
.areas-list li {
  padding: 14px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--g-ink);
  border-bottom: 1px solid rgba(15, 25, 4, 0.25);
  break-inside: avoid;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  text-transform: uppercase;
}
.areas-list li::after {
  content: '→'; font-size: 18px; color: var(--g-deep);
  opacity: 0.5; transition: transform .18s, opacity .18s;
}
.areas-list li:hover::after { opacity: 1; transform: translateX(4px); }
.areas-list a { color: inherit; display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* ===== WASTE GUIDE (dark 2-col) ===== */
.waste {
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) 0;
}
.waste-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--bg-line);
  border: 1px solid var(--bg-line);
}
.waste-col {
  background: var(--bg);
  padding: 44px 36px;
}
.waste-col-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--bg-line);
}
.waste-col-mark {
  width: 44px; height: 44px; border-radius: var(--r);
  display: grid; place-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-size: 22px;
}
.waste-col.yes .waste-col-mark { background: var(--g); color: var(--g-ink); }
.waste-col.no  .waste-col-mark { background: var(--bg-3); color: var(--fg-muted); border: 1px solid var(--bg-line-2); }
.waste-col h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.waste-col ul { display: grid; gap: 1px; }
.waste-col li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--bg-line);
  display: flex; align-items: center; gap: 12px;
}
.waste-col li::before {
  content: '';
  width: 6px; height: 6px; flex-shrink: 0;
}
.waste-col.yes li::before { background: var(--g); }
.waste-col.no  li::before { background: var(--fg-muted); opacity: 0.4; }

/* ===== EXTRAS ===== */
.extras {
  background: var(--bg-2);
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  padding: 64px 0;
}
.extras-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.extras-head h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.extras-head p { color: var(--fg-muted); font-size: 14.5px; max-width: 440px; }
.extras-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px;
  background: var(--bg-line);
  border: 1px solid var(--bg-line);
}
.extras-item {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.extras-item small {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-muted);
}
.extras-item strong {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 28px;
  color: var(--g);
  letter-spacing: -0.025em;
  line-height: 1;
}
.extras-item span {
  font-size: 14px; color: var(--fg-dim);
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) 0;
}
.faq-list {
  max-width: 960px; margin: 0 auto;
  border-top: 1px solid var(--bg-line);
}
.faq-item { border-bottom: 1px solid var(--bg-line); }
.faq-q {
  width: 100%; text-align: left;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: clamp(18px, 1.6vw, 24px);
  color: var(--fg);
  letter-spacing: -0.022em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--g); }
.faq-item.open .faq-q { color: var(--g); }
.faq-q-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  position: relative;
  border: 1.5px solid var(--bg-line-2);
  border-radius: var(--r);
  transition: all .2s var(--ease);
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px; background: var(--fg);
  transform: translate(-50%, -50%);
  transition: .25s var(--ease);
}
.faq-q-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q-icon { background: var(--g); border-color: var(--g); }
.faq-item.open .faq-q-icon::before,
.faq-item.open .faq-q-icon::after { background: var(--g-ink); }
.faq-item.open .faq-q-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 0 28px;
  color: var(--fg-dim); line-height: 1.65; font-size: 16px; max-width: 780px;
}

/* ===== CTA BAND (giant green) ===== */
.cta-band {
  background: var(--g);
  color: var(--g-ink);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 60px, rgba(15,25,4,0.035) 60px 62px);
  pointer-events: none;
}
.cta-band-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.cta-band h2 {
  color: var(--g-ink);
  font-size: clamp(44px, 7vw, 112px);
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.95;
  max-width: 900px;
}
.cta-band p {
  color: var(--g-deep); font-size: 18px; max-width: 520px;
  margin-top: 20px;
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--g-ink); color: var(--g); border-color: var(--g-ink); }
.cta-band .btn-primary:hover { background: #000; color: var(--g-bright); border-color: var(--g-ink); }
.cta-band .btn-outline { border-color: var(--g-ink); color: var(--g-ink); }
.cta-band .btn-outline:hover { background: var(--g-ink); color: var(--g); border-color: var(--g-ink); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  color: var(--fg-dim);
  padding: 80px 0 32px;
  border-top: 1px solid var(--bg-line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bg-line);
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  color: var(--fg);
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px;
  letter-spacing: -0.02em; text-transform: uppercase;
}
.footer-brand svg { width: 48px; height: 38px; color: var(--g); }
.footer-tagline { font-size: 14.5px; color: var(--fg-dim); max-width: 360px; line-height: 1.65; }
.footer h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--g); margin-bottom: 22px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14.5px; color: var(--fg-dim); transition: color .18s; }
.footer ul a:hover { color: var(--g); }
.footer-contact p { font-size: 14.5px; color: var(--fg-dim); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; }
.footer-contact p svg { width: 15px; height: 15px; color: var(--g); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--g); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px; color: var(--fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-social { display: flex; gap: 6px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--bg-line); border-radius: var(--r);
  color: var(--fg-dim);
  transition: all .18s var(--ease);
}
.footer-social a:hover { background: var(--g); color: var(--g-ink); border-color: var(--g); }
.footer-social svg { width: 15px; height: 15px; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--bg);
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 5vw, 80px);
  border-bottom: 1px solid var(--bg-line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(139, 204, 63, 0.1) 0%, transparent 55%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb {
  display: flex; gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 32px;
}
.page-header .breadcrumb a:hover { color: var(--g); }
.page-header h1 {
  font-size: clamp(44px, 7vw, 108px);
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--fg);
  line-height: 0.95;
}
.page-header h1 .accent { color: var(--g); }
.page-header p { font-size: 18px; color: var(--fg-dim); max-width: 680px; }

/* ===== FORMS / BOOKING ===== */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--bg-line);
  border-radius: var(--r);
  font-size: 15px;
  color: var(--fg);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--g);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(139, 204, 63, 0.18);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--fg-muted); }
.form-field small { display: block; font-size: 13px; color: var(--fg-muted); margin-top: 6px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-alert {
  padding: 16px 20px;
  background: rgba(240, 195, 75, 0.12);
  border: 1.5px solid rgba(240, 195, 75, 0.5);
  border-radius: var(--r);
  color: #F0C34B;
  margin-bottom: 20px;
  font-size: 14.5px;
}
.form-alert.error {
  background: rgba(201, 69, 57, 0.12);
  border-color: rgba(201, 69, 57, 0.5);
  color: #E87768;
}
.form-alert ul { margin-top: 6px; padding-left: 20px; list-style: disc; }

.toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.toggle-option {
  display: block; cursor: pointer;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1.5px solid var(--bg-line);
  border-radius: var(--r);
  transition: all .2s var(--ease);
  text-decoration: none; color: inherit;
}
.toggle-option.selected {
  border-color: var(--g);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px rgba(139, 204, 63, 0.15);
}
.toggle-option strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--fg); margin-bottom: 4px;
}
.toggle-option small { font-size: 13px; color: var(--fg-muted); }
.toggle-option input { display: none; }

.checkout-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px;
  align-items: start;
}
.checkout-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-md);
  padding: 32px;
}
.checkout-card legend {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 14px;
  color: var(--g);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
  display: block; padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-line);
  width: 100%;
}
.summary {
  position: sticky; top: 100px;
  background: var(--bg-2);
  border: 1px solid var(--bg-line);
  border-radius: var(--r-md);
  padding: 32px;
}
.summary h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 14px; color: var(--g);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.summary-line {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--bg-line);
  font-size: 14.5px; color: var(--fg-dim);
}
.summary-line strong { display: block; color: var(--fg); font-weight: 600; margin-bottom: 2px; font-size: 15px; }
.summary-line small { display: block; color: var(--fg-muted); font-size: 12.5px; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0 12px;
  font-family: 'Archivo', sans-serif;
}
.summary-total strong {
  font-size: 12px; color: var(--fg-dim);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.summary-total .amount {
  font-size: 40px; font-weight: 900; color: var(--g);
  letter-spacing: -0.035em;
  line-height: 1;
}
.summary .btn { width: 100%; margin-top: 16px; }
.summary-secure {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.summary-secure svg { width: 14px; height: 14px; }

.postcode-lookup {
  padding: 14px; background: var(--bg-3);
  border-radius: var(--r); margin-bottom: 16px;
  border: 1px solid var(--bg-line);
}
.postcode-lookup-row { display: flex; gap: 8px; margin-top: 6px; }
.postcode-lookup-row input { flex: 1; }
.postcode-lookup-row button {
  padding: 0 18px; background: var(--g); color: var(--g-ink);
  border-radius: var(--r);
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
}

#checkout { min-height: 500px; background: var(--fg); padding: 16px; border-radius: var(--r); }

/* ===== REVEAL ANIM ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero--with-photo .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 100%; aspect-ratio: 16 / 10; }
  .split-image-grid { grid-template-columns: 1fr; }
  .split-image-photo { min-height: 320px; }
  .split-image-photo::after { background: linear-gradient(180deg, rgba(11, 13, 10, 0) 50%, var(--bg) 100%); }
  .google-grid { grid-template-columns: 1fr; }
  .google-card { border-right: 0; border-bottom: 1px solid var(--bg-line); }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
  .hero-ctas { justify-content: flex-start; }
  .price-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .areas-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--bg-line); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--bg-line); padding: 32px 0; }
  .process-step:first-child { padding-left: 0; }
  .process-step:last-child { padding-right: 0; border-bottom: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(2) { border-right: 0; }
  .why-item:nth-child(1), .why-item:nth-child(2) { border-bottom: 1px solid var(--bg-line); }
  .waste-grid { grid-template-columns: 1fr; }
  .extras-row { grid-template-columns: 1fr 1fr; }
  .skip-row { grid-template-columns: 56px 1fr 1fr; gap: 16px; row-gap: 12px; padding: 28px 20px; }
  .skip-row-info { grid-column: 2 / 4; }
  .skip-row-prices { grid-column: 1 / 4; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--bg-line); }
  .skip-row-book { grid-column: 1 / 4; justify-self: start; margin-top: 8px; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 16px; gap: 10px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: grid; width: 40px; height: 40px; }
  .nav-right { gap: 6px; }
  .nav-cta { padding: 9px 13px; font-size: 11px; letter-spacing: 0.03em; }
  .nav-brand { font-size: 14px; gap: 8px; flex-shrink: 1; min-width: 0; }
  .nav-brand-logo { width: 34px; height: 28px; flex-shrink: 0; }
  .nav-brand-name { min-width: 0; overflow: hidden; }
  .nav-brand-name span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-brand-name span:first-child { font-size: 14px; letter-spacing: 0.02em; }
  .nav-brand-name span:last-child { display: none; }
  .nav-theme { width: 36px; height: 36px; }
  .nav-theme svg { width: 15px; height: 15px; }
  .price-table { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--bg-line); }
  .stat:last-child { border-bottom: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: 0; border-bottom: 1px solid var(--bg-line); }
  .why-item:last-child { border-bottom: 0; }
  .areas-list { columns: 1; }
  .extras-row { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-eyebrow-row { flex-wrap: wrap; gap: 12px; }
}
