:root {
  --charcoal: #17191c;
  --ink: #24272b;
  --muted: #66717c;
  --navy: #203449;
  --tan: #c6a473;
  --saw: #d98b2b;
  --paper: #ffffff;
  --soft: #f4f2ee;
  --line: #dedbd4;
  --shadow: 0 24px 70px rgba(23, 25, 28, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

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

.demo-bar {
  padding: 0.55rem 1rem;
  color: white;
  background: var(--charcoal);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(8.8rem, 15vw, 12.5rem);
  height: auto;
  max-height: 4rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.35rem);
}

.site-nav a,
.header-cta {
  font-weight: 850;
  text-decoration: none;
}

.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--charcoal); }

.header-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  color: white;
  background: var(--saw);
  border-radius: 6px;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5rem);
  color: white;
  background: var(--charcoal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(10,12,15,0.93) 0%, rgba(23,25,28,0.72) 45%, rgba(32,52,73,0.58) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 18px);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--tan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: 0; }

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

h3 { margin-bottom: 0.5rem; font-size: 1.12rem; }

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 45rem;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 1.05rem;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary { color: white; background: var(--saw); border-color: var(--saw); }
.button.light { color: var(--charcoal); background: white; }
.button.dark { color: white; background: var(--navy); border-color: var(--navy); }
.button.ghost { color: white; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.26); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 44rem;
}

.trust-grid span {
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 4px solid var(--tan);
  border-radius: 6px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: min(67vh, 43rem);
  min-height: 28rem;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  width: min(22rem, calc(100% - 2rem));
  padding: 1rem;
  color: var(--charcoal);
  background: rgba(255,255,255,0.95);
  border-left: 5px solid var(--saw);
  border-radius: 6px;
}

.quote-card span { color: var(--muted); }

.section {
  padding: clamp(3.8rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.about-section,
.quote-section,
.contact-section,
.hours-section,
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.about-section,
.services-section {
  background: var(--soft);
}

.about-copy p,
.section-heading > p,
.service-grid p,
.gallery-grid p,
.quote-copy p,
.proof-grid p,
.form-status {
  color: var(--muted);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.about-points span {
  padding: 0.9rem 1rem;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--tan);
  border-radius: 6px;
  font-weight: 850;
}

.proof-section {
  background: white;
}

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

.proof-grid article {
  min-height: 13rem;
  padding: 1.15rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-top: 5px solid var(--tan);
  border-radius: 6px;
}

.proof-grid span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--navy);
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.85fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow,
.section-heading h2 { grid-column: 1; }
.section-heading > p { grid-column: 2; font-size: 1.05rem; }

.service-grid,
.gallery-grid,
.why-grid,
.water-grid,
.reviews-grid {
  display: grid;
  gap: 1rem;
}

.service-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }
.water-grid { grid-template-columns: repeat(3, 1fr); }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }

.service-grid article,
.gallery-grid article,
.water-grid article,
.reviews-grid article,
.quote-form,
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(23,25,28,0.08);
}

.service-grid article {
  min-height: 16rem;
  padding: 1.2rem;
}

.service-grid span {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1.1rem;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 6px;
  font-weight: 950;
}

.gallery-section {
  background: var(--charcoal);
  color: white;
}

.gallery-section h2 { color: white; }
.gallery-section .section-heading > p { color: rgba(255,255,255,0.74); }

.gallery-grid article {
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.gallery-grid div {
  min-height: 8.8rem;
  padding: 1rem;
  color: var(--charcoal);
}

.gallery-grid span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--saw);
  font-weight: 950;
}

.reviews-section {
  background: white;
}

.reviews-grid article {
  display: grid;
  align-content: start;
  min-height: 17rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-top: 5px solid var(--saw);
}

.stars {
  margin-bottom: 1rem;
  color: var(--saw);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.reviews-grid p {
  color: var(--ink);
  font-size: 1.02rem;
}

.reviews-grid span {
  align-self: end;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 950;
}

.website-section {
  background: var(--navy);
  color: white;
}

.website-section h2 { color: white; }
.website-section .eyebrow { color: var(--tan); }

.why-grid div {
  min-height: 8rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-left: 4px solid var(--tan);
  border-radius: 6px;
  font-weight: 950;
}

.water-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  color: white;
  background:
    linear-gradient(120deg, rgba(18,35,50,0.94), rgba(20,23,28,0.92)),
    url("https://images.unsplash.com/photo-1585157603973-62f56161055f?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.water-section h2 {
  color: white;
}

.water-copy p {
  max-width: 44rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
}

.water-panel {
  padding: clamp(1rem, 3vw, 2rem);
  color: var(--ink);
  background: rgba(255,255,255,0.96);
  border-top: 5px solid var(--saw);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.water-panel ol {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: water-step;
}

.water-panel li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.35rem 0.85rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  counter-increment: water-step;
}

.water-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.water-panel li::before {
  content: counter(water-step);
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 6px;
  font-weight: 950;
}

.water-panel strong,
.water-panel span {
  grid-column: 2;
}

.water-panel span {
  color: var(--muted);
}

.water-details-section {
  background: #eef5f8;
}

.water-grid article {
  min-height: 12.5rem;
  padding: 1.15rem;
  border-left: 5px solid #4d9fc1;
}

.water-grid h3 {
  color: var(--navy);
}

.water-grid p {
  color: var(--muted);
}

.hours-section {
  background: var(--soft);
}

.hours-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--saw);
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(23,25,28,0.08);
}

.hours-card strong,
.hours-card a {
  display: block;
}

.hours-card strong {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.hours-card a {
  margin-top: 0.45rem;
  color: var(--navy);
  font-weight: 850;
}

.hours-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  font-weight: 950;
}

.hours-list dd {
  color: var(--muted);
  font-weight: 850;
  text-align: right;
}

.quote-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(32,52,73,0.97), rgba(23,25,28,0.98));
}

.quote-section h2 { color: white; }
.quote-copy p { color: rgba(255,255,255,0.78); }
.quote-links { display: grid; gap: 0.55rem; margin-top: 1.5rem; font-weight: 950; }

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  color: var(--ink);
}

.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
label { display: grid; gap: 0.4rem; font-weight: 950; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd5dc;
  border-radius: 6px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}
textarea { resize: vertical; }
.form-status { min-height: 1.4rem; margin: 0; font-weight: 950; }

.contact-card {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 3vw, 2rem);
  border-left: 5px solid var(--saw);
}

.contact-card strong { font-size: 1.25rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1fr;
  gap: 1.2rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 5rem);
  color: #cdd8e3;
  background: #0b0d10;
}

.site-footer strong,
.site-footer a { color: white; }
.site-footer span,
.site-footer a { display: block; }
.footer-logo {
  width: min(13rem, 72vw);
  height: auto;
  margin-bottom: 0.75rem;
  padding: 0.35rem;
  background: white;
  border-radius: 4px;
}
.site-footer nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.4rem 1rem; }
.footer-disclaimer,
.footer-credit { grid-column: 1 / -1; margin: 0; font-size: 0.92rem; }

@media (max-width: 1120px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 0.28rem;
    width: 2.8rem;
    height: 2.8rem;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 1.25rem; height: 2px; background: var(--charcoal); }
  .site-nav, .header-cta { display: none; }
  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open a { padding: 0.75rem 0; }
  .hero,
  .about-section,
  .quote-section,
  .contact-section,
  .hours-section,
  .water-section,
  .proof-section { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .gallery-grid,
  .proof-grid,
  .water-grid,
  .reviews-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(2.9rem, 14vw, 5rem); }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .brand img { width: 8.2rem; }
  .hero { min-height: auto; }
  .hero-visual img { height: 24rem; min-height: 24rem; }
  .trust-grid,
  .service-grid,
  .gallery-grid,
  .why-grid,
  .proof-grid,
  .water-grid,
  .reviews-grid,
  .about-points,
  .field-grid,
  .hours-card { grid-template-columns: 1fr; }
  .hours-list div { grid-template-columns: 1fr; gap: 0.2rem; }
  .hours-list dd { text-align: left; }
  .button { width: 100%; }
  .site-footer nav { grid-template-columns: 1fr; }
}
