:root {
  --navy-950: oklch(10% 0.022 255);
  --navy-900: oklch(14% 0.035 255);
  --navy-800: oklch(20% 0.063 254);
  --blue-700: oklch(47% 0.19 254);
  --blue-600: oklch(54% 0.21 253);
  --blue-500: oklch(68% 0.17 228);
  --blue-100: oklch(97% 0.015 225);
  --blue-050: oklch(99% 0.008 220);
  --teal-500: oklch(67% 0.13 200);
  --mint: oklch(86% 0.092 168);
  --text: oklch(11% 0.022 254);
  --muted: oklch(50% 0.044 247);
  --line: oklch(91% 0.022 230);
  --surface: oklch(99.5% 0.004 255);
  --shadow: 0 22px 60px oklch(20% 0.063 254 / 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family:
    "Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: oklch(13% 0.03 254);
  background: var(--mint);
  font-size: 14px;
  font-weight: 700;
}

.topbar a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: white;
  background: oklch(10% 0.022 255 / 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(100% 0 0 / 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue-500);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-mark path:last-child {
  fill: none;
  stroke: white;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.brand strong {
  display: block;
  font-size: 25px;
  line-height: 0.95;
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: oklch(86% 0.08 225);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.nav-links a {
  color: oklch(100% 0 0 / 0.82);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:focus-visible {
  color: white;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    color: white;
  }
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    background 160ms var(--ease-out),
    border-color 160ms var(--ease-out);
}

.button:active,
.header-cta:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

.header-cta {
  color: white;
  background: var(--blue-600);
  box-shadow: 0 10px 28px oklch(54% 0.21 253 / 0.28);
  white-space: nowrap;
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .header-cta:hover {
    transform: translateY(-2px);
  }
}

.button.primary {
  color: white;
  background: var(--blue-600);
  box-shadow: 0 12px 28px oklch(54% 0.21 253 / 0.28);
}

.button.secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid oklch(100% 0 0 / 0.2);
  border-radius: 12px;
  background: oklch(100% 0 0 / 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, oklch(68% 0.17 228 / 0.35), transparent 28%),
    linear-gradient(135deg, oklch(9% 0.018 255) 0%, oklch(16% 0.046 254) 46%, oklch(97% 0.012 225) 54%, oklch(99.5% 0.004 255) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  align-self: center;
  padding: clamp(72px, 9vw, 130px) clamp(24px, 7vw, 76px);
  color: white;
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: 0.93;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: oklch(100% 0 0 / 0.86);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.48;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .secondary {
  color: white;
  background: oklch(100% 0 0 / 0.08);
  border-color: oklch(100% 0 0 / 0.42);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: oklch(100% 0 0 / 0.82);
  background: oklch(100% 0 0 / 0.08);
  border: 1px solid oklch(100% 0 0 / 0.14);
  font-size: 14px;
}

.hero-proof strong {
  color: white;
}

.hero-media {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: stretch;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 -18%;
  z-index: 1;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, oklch(16% 0.046 254) 0%, oklch(16% 0.046 254 / 0) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.category-band,
.delivery-section,
.reviews-section,
.location-section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 54px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading h2,
.delivery-form h2,
.review-copy h2,
.location-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p,
.delivery-form p,
.review-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

/* Solution section */
.solution-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.water-types-col {
  padding: clamp(28px, 4vw, 48px);
  background: var(--blue-050);
  border-right: 1px solid var(--line);
}

.service-methods-col {
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}

.col-label {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.water-option {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}

.water-badge {
  flex: 0 0 auto;
  width: 56px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--blue-700);
  color: white;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.water-badge.alt {
  background: var(--teal-500);
}

.water-option h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.water-option p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.service-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
}

.service-num {
  flex: 0 0 auto;
  padding-top: 2px;
  min-width: 28px;
  color: var(--blue-700);
  font-size: 18px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.service-method h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.service-method p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.sol-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  scroll-margin-top: 106px;
  background:
    linear-gradient(135deg, oklch(97% 0.015 225 / 0.7), oklch(99.5% 0.004 255 / 0.96)),
    radial-gradient(circle at 15% 20%, oklch(86% 0.092 168 / 0.25), transparent 24%);
}

.steps-panel,
.delivery-form,
.location-card,
.store-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.steps-panel {
  display: grid;
  align-content: space-between;
  gap: clamp(24px, 3.2vw, 36px);
  padding: clamp(28px, 4vw, 54px);
}

.delivery-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.delivery-value {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--blue-050);
}

.delivery-value span {
  min-width: 48px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  color: white;
  background: var(--blue-700);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.delivery-value strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
}

.delivery-value p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.delivery-checklist {
  padding: 22px;
  border: 1px solid oklch(91% 0.022 230);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.72), oklch(97% 0.015 225 / 0.7)),
    var(--surface);
}

.delivery-checklist h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.delivery-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-checklist li {
  position: relative;
  padding-left: 24px;
  color: oklch(26% 0.06 252);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 780;
}

.delivery-checklist li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--mint);
  border: 3px solid var(--blue-700);
  border-radius: 50%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  background: var(--surface);
}

.step + .step {
  border-left: 1px solid var(--line);
}

.step span {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.step h3 {
  grid-column: 2;
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 900;
  min-width: 0;
}

.step p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  min-width: 0;
}

.delivery-form {
  padding: clamp(24px, 3.5vw, 38px);
}

.delivery-form h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 22px;
}

.delivery-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: oklch(26% 0.06 252);
  font-size: 14px;
  font-weight: 850;
}

.delivery-form input,
.delivery-form select,
.delivery-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  color: var(--text);
  background: oklch(99% 0.005 225);
  outline: none;
  font-size: 15px;
  transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}

.delivery-form textarea {
  resize: vertical;
}

.delivery-form input:focus,
.delivery-form select:focus,
.delivery-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px oklch(54% 0.21 253 / 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.label-optional {
  color: var(--muted);
  font-weight: 700;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 42px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 750;
}

.reviews-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.rating-card {
  padding: 30px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.google-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: white;
  background: conic-gradient(from 220deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  border-radius: 50%;
  font-size: 27px;
  font-weight: 900;
}

.rating-card strong {
  display: block;
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

.stars {
  margin: 8px 0 12px;
  color: oklch(78% 0.17 72);
  font-size: 24px;
  letter-spacing: 0;
}

.rating-card a {
  color: var(--blue-700);
  font-weight: 850;
}

.review-copy h2 {
  max-width: 770px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

blockquote {
  margin: 0;
  min-height: 178px;
  padding: 24px;
  color: oklch(22% 0.055 253);
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 720;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 28px;
  background: var(--blue-050);
}

.store-visual,
.location-card {
  min-height: 430px;
  padding: clamp(24px, 4vw, 40px);
}

.storefront-illustration {
  position: relative;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.12) 0 45%, transparent 45%),
    linear-gradient(135deg, oklch(93% 0.022 225), oklch(99.5% 0.004 255) 46%, oklch(91% 0.026 225) 47%, oklch(97% 0.016 225));
}

.storefront-illustration::before {
  position: absolute;
  inset: auto 7% 12% 7%;
  height: 48%;
  content: "";
  background:
    linear-gradient(90deg, oklch(14% 0.035 255 / 0.9) 0 2%, transparent 2% 31%, oklch(14% 0.035 255 / 0.9) 31% 33%, transparent 33% 64%, oklch(14% 0.035 255 / 0.9) 64% 66%, transparent 66% 98%, oklch(14% 0.035 255 / 0.9) 98%),
    linear-gradient(180deg, oklch(68% 0.17 228 / 0.18), oklch(100% 0 0 / 0.65));
  border: 5px solid oklch(19% 0.055 254);
  border-radius: 4px;
}

.awning {
  position: absolute;
  top: 21%;
  left: 7%;
  right: 7%;
  height: 60px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  border-radius: 10px 10px 3px 3px;
  box-shadow: 0 14px 30px oklch(47% 0.19 254 / 0.25);
}

.sign {
  position: absolute;
  top: 8%;
  left: 8%;
  max-width: 84%;
  color: var(--blue-700);
  font-size: clamp(16px, 2.3vw, 31px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.door {
  position: absolute;
  bottom: 12%;
  left: 43%;
  width: 16%;
  height: 48%;
  border: 4px solid oklch(19% 0.055 254);
  border-bottom: 0;
  background: oklch(100% 0 0 / 0.52);
}

.jug {
  position: absolute;
  bottom: 9%;
  width: 70px;
  height: 112px;
  background:
    radial-gradient(circle at 36% 28%, oklch(100% 0 0 / 0.72), transparent 14%),
    linear-gradient(135deg, oklch(80% 0.12 215 / 0.88), oklch(40% 0.18 254 / 0.92));
  border: 3px solid oklch(45% 0.17 254 / 0.9);
  border-radius: 22px 22px 18px 18px;
}

.jug::before {
  position: absolute;
  top: -22px;
  left: 20px;
  width: 26px;
  height: 28px;
  content: "";
  background: oklch(52% 0.17 254);
  border-radius: 8px 8px 4px 4px;
}

.jug-one {
  right: 16%;
}

.jug-two {
  right: 29%;
  transform: scale(0.82);
  transform-origin: bottom center;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: oklch(26% 0.06 252);
  font-size: 17px;
  font-weight: 700;
}

.contact-list svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--blue-700);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list a {
  color: var(--blue-700);
}

.contact-list .address-link {
  color: inherit;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  color: white;
  background:
    radial-gradient(circle at 84% 16%, oklch(68% 0.17 228 / 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  padding: clamp(44px, 6vw, 70px) clamp(18px, 4vw, 54px) 0;
}

.footer-water-note {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 70px);
  padding-bottom: clamp(34px, 5vw, 54px);
  border-bottom: 1px solid oklch(100% 0 0 / 0.12);
}

.footer-kicker {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-water-note h2 {
  margin: 0;
  max-width: 430px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-water-copy > p {
  max-width: 760px;
  margin: 0;
  color: oklch(93% 0.022 225);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  font-weight: 560;
}

.footer-water-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: var(--radius-md);
  background: oklch(100% 0 0 / 0.12);
}

.footer-water-points div {
  padding: 20px;
  background: oklch(100% 0 0 / 0.07);
}

.footer-water-points strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.footer-water-points span {
  display: block;
  margin-top: 8px;
  color: oklch(86% 0.08 225);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.footer-features {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  background: oklch(100% 0 0 / 0.1);
}

.footer-feature,
.footer-brand {
  min-height: 118px;
  padding: 26px clamp(18px, 3vw, 40px);
  background: oklch(100% 0 0 / 0.04);
}

.footer-feature strong,
.footer-brand strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.footer-feature span,
.footer-brand a {
  display: block;
  margin-top: 5px;
  color: oklch(86% 0.08 225);
  font-size: 14px;
  font-weight: 650;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 16px;
}

.footer-legal-links a {
  margin-top: 0;
  color: oklch(94% 0.04 225);
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, oklch(98% 0.012 230), white 34%),
    var(--surface);
}

.legal-header {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 54px);
}

.legal-main {
  max-width: 900px;
  margin: 0 auto clamp(48px, 7vw, 88px);
  padding: clamp(32px, 6vw, 70px) clamp(20px, 5vw, 64px);
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main h1 {
  margin: 0 0 22px;
  color: var(--navy-950);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
}

.legal-main > p {
  margin: 0 0 28px;
  color: oklch(31% 0.06 250);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  font-weight: 650;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 900;
}

.legal-section p,
.legal-section li {
  color: oklch(34% 0.045 250);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 560;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-section a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
  background: oklch(97% 0.012 230);
  color: var(--navy-900);
  font-size: 0.92em;
}

.legal-footer {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0 clamp(20px, 5vw, 64px) clamp(38px, 6vw, 64px);
}

.legal-footer a {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 850;
}

.legal-footer a[aria-current="page"] {
  color: var(--navy-950);
}

@media (max-width: 1040px) {
  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: sticky;
    top: 76px;
    z-index: 18;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--navy-950);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms var(--ease-out), opacity 200ms ease-out;
  }

  .mobile-nav.open {
    max-height: 500px;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 16px 24px;
    color: white;
    background: var(--navy-900);
    font-weight: 800;
  }

  .hero {
    grid-template-columns: 1fr;
    background: oklch(12% 0.037 254);
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 40px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media::before {
    inset: -1px 0 auto 0;
    width: auto;
    height: 140px;
    background: linear-gradient(180deg, oklch(12% 0.037 254), oklch(12% 0.037 254 / 0));
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .water-types-col {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .delivery-section,
  .reviews-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step + .step {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-water-note {
    grid-template-columns: 1fr;
  }

  .footer-water-points,
  .footer-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    height: auto;
    min-height: 40px;
    padding: 8px 14px;
    text-align: center;
    font-size: 13px;
  }

  .site-header {
    height: 70px;
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 21px;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 56px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .hero-media {
    min-height: 310px;
  }

  .category-band,
  .delivery-section,
  .reviews-section,
  .location-section {
    padding: 58px 16px;
  }

  .solution-grid {
    border-radius: var(--radius-md);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .delivery-value-grid,
  .delivery-checklist ul {
    grid-template-columns: 1fr;
  }

  .steps-panel {
    gap: 22px;
  }

  .store-visual,
  .location-card {
    min-height: 0;
  }

  .storefront-illustration {
    min-height: 280px;
  }

  .footer-water-points,
  .footer-features {
    grid-template-columns: 1fr;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main h1 {
    font-size: clamp(38px, 13vw, 60px);
  }
}
