/* ==========================================================================
   Idaho Hydro Wash — static build
   Design tokens ported 1:1 from the Next.js app's Tailwind theme.
   ========================================================================== */

:root {
  --font-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, serif;

  /* Deep evergreen — the grounding dark, warm rather than technical */
  --ink-950: #16302a;
  --ink-900: #1f4038;
  --ink-800: #2b5347;
  --ink-700: #3d6a5b;
  --ink-600: #55836f;

  /* Water blue from the logo, softened toward daylight */
  --brand-700: #27739b;
  --brand-600: #3389b4;
  --brand-500: #4ba0c9;
  --brand-400: #74bcdd;
  --brand-300: #a3d5ea;
  --brand-100: #dcedf5;
  --brand-50: #f1f8fb;

  /* Warm sand neutrals carry the page instead of white */
  --cream-50: #fbf9f4;
  --cream-100: #f5f1e7;
  --cream-200: #ebe4d5;

  /* Sage, for quiet accents */
  --moss-600: #5b8a6c;
  --moss-400: #8fb69b;
  --moss-200: #cfe0d2;

  /* Warm gold for review stars */
  --sun-500: #dda23f;

  --shadow-lift: 0 20px 50px -24px rgb(22 48 42 / 0.28);
  --shadow-card: 0 1px 2px rgb(22 48 42 / 0.04), 0 14px 32px -22px rgb(22 48 42 / 0.22);
}

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  /* Clears the fixed header (h-32 / md:h-38) */
  scroll-padding-top: 10.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream-50);
  color: var(--ink-900);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100%;
  display: flex;
  flex-direction: column;

  /* Fraunces and DM Sans both carry an optical-size axis. Left on `auto`,
     the browser drives opsz from the font size and Fraunces swaps in its
     decorative display ampersand on the big headings. Pinning this to the
     fonts' default optical size keeps the plain "&" and matches the rest of
     the type exactly. Inherited, so it covers every section. */
  font-optical-sizing: none;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.container-page {
  width: 100%;
  margin-inline: auto;
  max-width: 80rem;
  padding-inline: 1.25rem;
}
@media (min-width: 48rem) { .container-page { padding-inline: 2rem; } }

.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;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 100; width: auto; height: auto;
  clip: auto; margin: 0; overflow: visible; white-space: normal;
  background: var(--ink-900); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; font-weight: 500; letter-spacing: -0.01em;
  border: 0; cursor: pointer; transition: background-color 0.2s;
  padding: 0.625rem 1.25rem; font-size: 0.875rem;
}
.btn:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-primary { background: var(--brand-600); color: #fff; }
.btn-primary:hover { background: var(--brand-500); }
.btn-primary:active { background: var(--brand-700); }
.btn-secondary {
  background: rgb(255 255 255 / 0.12); color: #fff;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.3); backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgb(255 255 255 / 0.22); }
.btn-ghost {
  background: #fff; color: var(--ink-900);
  box-shadow: inset 0 0 0 1px var(--cream-200);
}
.btn-ghost:hover { background: var(--cream-50); box-shadow: inset 0 0 0 1px var(--moss-400); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.icon { width: 1rem; height: 1rem; flex: none; }

/* ---------------------------------------------------------------- navbar */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background-color 0.3s;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.55), transparent);
}
.site-header.is-scrolled {
  background: rgb(22 48 42 / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgb(22 48 42 / 0.1);
}
.nav-row {
  margin-inline: auto; display: flex; height: 8rem; width: 100%;
  max-width: 120rem; align-items: center; justify-content: space-between;
  gap: 1rem; padding-inline: 1rem;
}
@media (min-width: 48rem) { .nav-row { height: 9.5rem; padding-inline: 2rem; } }

.brand { display: flex; align-items: center; gap: 0.75rem; border-radius: 0.75rem; }
.brand:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 4px; }
.brand-logo {
  height: 5.5rem; width: auto;
  filter: drop-shadow(0 0 6px rgb(255 255 255 / 0.55)) drop-shadow(0 0 18px rgb(116 188 221 / 0.5));
}
@media (min-width: 48rem) { .brand-logo { height: 8rem; } }
.brand-text { display: none; line-height: 1.2; }
@media (min-width: 40rem) { .brand-text { display: block; } }
.brand-name {
  display: block; font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 600; letter-spacing: -0.01em; color: #fff;
}
.brand-tag {
  display: block; font-size: 0.68rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--brand-300);
}

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 64rem) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.875rem; font-weight: 600; color: rgb(255 255 255 / 0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: none; align-items: center; gap: 0.5rem; font-size: 0.875rem;
  font-weight: 600; color: #fff; transition: color 0.2s;
}
.nav-phone:hover { color: var(--brand-300); }
.nav-phone .icon { color: var(--brand-400); }
@media (min-width: 48rem) { .nav-phone { display: flex; } }
.nav-cta { display: none; }
@media (min-width: 40rem) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; width: 2.75rem; height: 2.75rem; align-items: center;
  justify-content: center; border-radius: 9999px; color: #fff; background: none;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.25); cursor: pointer;
  transition: background-color 0.2s;
}
.nav-toggle:hover { background: rgb(255 255 255 / 0.1); }
@media (min-width: 64rem) { .nav-toggle { display: none; } }

.mobile-menu { border-top: 1px solid rgb(255 255 255 / 0.1); background: rgb(22 48 42 / 0.98); }
.mobile-menu[hidden] { display: none; }
@media (min-width: 64rem) { .mobile-menu { display: none !important; } }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; padding-block: 1rem; }
.mobile-menu nav > a {
  border-radius: 0.75rem; padding: 0.875rem 0.75rem; font-size: 1rem;
  font-weight: 600; color: rgb(255 255 255 / 0.85); transition: background-color 0.2s, color 0.2s;
}
.mobile-menu nav > a:hover { background: rgb(255 255 255 / 0.1); color: #fff; }
.mobile-actions {
  margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.75rem;
  border-top: 1px solid rgb(255 255 255 / 0.1); padding-top: 1rem;
}

/* ------------------------------------------------------------------ hero */
.hero { position: relative; isolation: isolate; background: var(--ink-950); }
.hero-grid { display: grid; }
@media (min-width: 48rem) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-panel {
  position: relative; isolation: isolate; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; background: var(--ink-950);
  min-height: 70svh;
}
@media (min-width: 48rem) { .hero-panel { min-height: 92svh; } }
.hero-bg { position: absolute; inset: 0; z-index: -10; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.92), rgb(0 0 0 / 0.55), rgb(0 0 0 / 0.25));
}
.hero-bg .top-scrim {
  position: absolute; inset-inline: 0; top: 0; height: 10rem; z-index: 1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.6), transparent);
}
.hero-body { padding: 8rem 1.5rem 3rem; }
@media (min-width: 40rem) { .hero-body { padding-inline: 2.5rem; } }
@media (min-width: 48rem) { .hero-body { padding-top: 10rem; padding-bottom: 4rem; } }
@media (min-width: 64rem) { .hero-body { padding-inline: 3.5rem; } }

.rating-pill {
  margin-bottom: 1.5rem; display: inline-flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem 0.75rem; border-radius: 9999px; background: rgb(255 255 255 / 0.12);
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; color: #fff;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.25); backdrop-filter: blur(4px);
}
.rating-pill.is-spacer { visibility: hidden; }

.eyebrow {
  margin-bottom: 0.75rem; font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand-300);
}
.hero-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  line-height: 1.1; letter-spacing: -0.015em; color: #fff; text-wrap: balance;
}
@media (min-width: 40rem) { .hero-title { font-size: 2.6rem; } }
@media (min-width: 64rem) { .hero-title { font-size: 3rem; } }

.hero-services {
  margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.625rem 1.25rem;
}
.hero-services li {
  display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem;
  font-weight: 500; color: rgb(245 241 231 / 0.85);
}
.hero-services .icon { color: var(--brand-400); }
.hero-body .btn { margin-top: 2rem; }

.trust-bar { position: relative; border-top: 1px solid rgb(255 255 255 / 0.1); background: var(--ink-950); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); padding-block: 1.5rem; }
@media (min-width: 48rem) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { padding: 0.75rem 0.5rem; text-align: center; }
@media (min-width: 48rem) {
  .trust-item { padding: 0.25rem 1.5rem; }
  .trust-item + .trust-item { border-left: 1px solid rgb(255 255 255 / 0.1); }
}
.trust-value {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff;
}
@media (min-width: 48rem) { .trust-value { font-size: 1.875rem; } }
.trust-label {
  margin-top: 0.25rem; font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: rgb(163 213 234 / 0.8);
}

/* -------------------------------------------------------------- sections */
.section { padding-block: 5rem; }
@media (min-width: 48rem) { .section { padding-block: 7rem; } }
.bg-cream-50 { background: var(--cream-50); }
.bg-cream-100 { background: var(--cream-100); }

.section-head { max-width: 48rem; }
.section-eyebrow {
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--moss-600);
}
.section-eyebrow::before {
  content: ""; height: 1px; width: 2rem; background: var(--moss-400);
}
.section-title {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 600;
  line-height: 1.12; letter-spacing: -0.01em; color: var(--ink-900); text-wrap: balance;
}
@media (min-width: 40rem) { .section-title { font-size: 3rem; } }
@media (min-width: 48rem) { .section-title { font-size: 3.4rem; } }
.section-title em { font-style: italic; color: var(--brand-600); }
.section-intro {
  margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.7;
  color: rgb(61 106 91 / 0.8); text-wrap: pretty;
}

/* ------------------------------------------------------------- services */
.service-cards { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 48rem) { .service-cards { grid-template-columns: 1fr 1fr; } }
.service-card {
  position: relative; isolation: isolate; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; border-radius: 1.5rem;
  background: var(--ink-900); box-shadow: var(--shadow-card); min-height: 26rem;
}
@media (min-width: 48rem) { .service-card { min-height: 30rem; } }
.service-card > .media { position: absolute; inset: 0; z-index: -10; overflow: hidden; }
.service-card .media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.7s ease-out;
}
.service-card:hover .media img { transform: scale(1.04); }
.service-card .media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.9), rgb(0 0 0 / 0.55), rgb(0 0 0 / 0.05));
}
.service-card .body { padding: 1.75rem; }
@media (min-width: 48rem) { .service-card .body { padding: 2.25rem; } }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: -0.01em; color: #fff;
}
@media (min-width: 48rem) { .service-card h3 { font-size: 1.75rem; } }
.service-card p {
  margin-top: 0.75rem; max-width: 28rem; font-size: 0.975rem; line-height: 1.7;
  color: rgb(245 241 231 / 0.85);
}
.service-bullets { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.service-bullets li {
  display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem;
  font-weight: 600; color: rgb(255 255 255 / 0.85);
}
.service-bullets .icon { color: var(--brand-400); }

.also-panel {
  margin-top: 4rem; border-radius: 2rem; background: var(--cream-100);
  padding: 2rem; box-shadow: inset 0 0 0 1px var(--cream-200);
}
@media (min-width: 48rem) { .also-panel { padding: 3rem; } }
.also-head { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 48rem) {
  .also-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.also-head h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink-900);
}
@media (min-width: 48rem) { .also-head h3 { font-size: 1.875rem; } }
.also-head p { margin-top: 0.5rem; max-width: 36rem; color: rgb(61 106 91 / 0.75); }
.also-grid {
  margin-top: 2.25rem; display: grid; gap: 1.5rem 2rem;
}
@media (min-width: 40rem) { .also-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .also-grid { grid-template-columns: repeat(4, 1fr); } }
.also-grid li { display: flex; gap: 0.75rem; }
.also-grid .icon { margin-top: 0.125rem; width: 1.25rem; height: 1.25rem; color: var(--moss-600); }
.also-grid h4 { font-weight: 600; color: var(--ink-900); }
.also-grid p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.6; color: rgb(61 106 91 / 0.7); }

/* ----------------------------------------------------------- pull quote */
.pull-quote { padding-block: 4rem; }
@media (min-width: 48rem) { .pull-quote { padding-block: 5rem; } }
.pull-quote figure { margin-inline: auto; max-width: 48rem; text-align: center; }
.pull-quote blockquote {
  margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 500; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--ink-900); text-wrap: balance;
}
@media (min-width: 40rem) { .pull-quote blockquote { font-size: 1.875rem; } }
@media (min-width: 48rem) { .pull-quote blockquote { font-size: 2.15rem; } }
.pull-quote figcaption { margin-top: 1.5rem; font-size: 0.875rem; }
.pull-quote .who { font-weight: 600; color: var(--ink-900); }
.pull-quote .meta {
  margin-top: 0.25rem; display: block; font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--moss-600);
}

/* --------------------------------------------------------- before/after */
.ba-head { display: grid; align-items: end; gap: 2rem; }
@media (min-width: 64rem) { .ba-head { grid-template-columns: 1.4fr 1fr; } }
.ba-frame {
  position: relative; isolation: isolate; width: 100%; touch-action: none;
  user-select: none; overflow: hidden; border-radius: 2rem;
  background: var(--ink-900); box-shadow: var(--shadow-lift); margin-top: 3rem;
}
.ba-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; }
.ba-tag {
  position: absolute; top: 1rem; border-radius: 9999px; padding: 0.375rem 0.75rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: #fff; backdrop-filter: blur(4px); z-index: 3;
}
@media (min-width: 40rem) { .ba-tag { top: 1.5rem; } }
.ba-tag-before { left: 1rem; background: rgb(22 48 42 / 0.75); }
.ba-tag-after { right: 1rem; background: rgb(75 160 201 / 0.9); }
@media (min-width: 40rem) { .ba-tag-before { left: 1.5rem; } .ba-tag-after { right: 1.5rem; } }
.ba-divider {
  position: absolute; inset-block: 0; width: 4px; transform: translateX(-50%);
  background: rgb(255 255 255 / 0.9); box-shadow: 0 0 20px rgb(0 0 0 / 0.45); z-index: 2;
}
.ba-handle {
  position: absolute; top: 50%; display: grid; width: 3rem; height: 3rem;
  transform: translate(-50%, -50%); place-items: center; cursor: ew-resize;
  border-radius: 9999px; background: #fff; color: var(--ink-900); border: 0;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 0 0 4px rgb(255 255 255 / 0.25); z-index: 4;
}
.ba-handle:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 4px; }
.ba-caption { margin-top: 1.25rem; text-align: center; font-size: 0.875rem; color: rgb(61 106 91 / 0.65); }

/* ----------------------------------------------------------------- about */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 64rem) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-media { position: relative; overflow: hidden; border-radius: 2rem; box-shadow: var(--shadow-card); order: 2; }
@media (min-width: 64rem) { .about-media { order: 1; } }
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-copy { order: 1; }
@media (min-width: 64rem) { .about-copy { order: 2; } }
.about-copy .prose { margin-top: 1.25rem; display: grid; gap: 1rem; line-height: 1.7; color: rgb(61 106 91 / 0.8); }
.about-points { margin-top: 2rem; display: grid; gap: 0.75rem; }
.about-points li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--ink-800); }
.check-dot {
  margin-top: 0.125rem; display: grid; width: 1.25rem; height: 1.25rem; flex: none;
  place-items: center; border-radius: 9999px; background: var(--moss-600); color: #fff;
}
.check-dot .icon { width: 0.875rem; height: 0.875rem; stroke-width: 2.6; }
.about-foot {
  margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.25rem;
  border-top: 1px solid var(--cream-200); padding-top: 1.75rem;
}
@media (min-width: 40rem) {
  .about-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
.about-rating { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgb(61 106 91 / 0.8); }

/* --------------------------------------------------------------- gallery */
.gallery-grid {
  margin-top: 3.5rem; display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; grid-auto-rows: 13rem;
}
@media (min-width: 40rem) { .gallery-grid { grid-auto-rows: 16rem; } }
@media (min-width: 64rem) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid .wide { grid-column: span 2; }
.gallery-item {
  position: relative; display: block; width: 100%; height: 100%; overflow: hidden;
  border-radius: 1rem; background: var(--ink-900); text-align: left; border: 0;
  padding: 0; cursor: pointer; box-shadow: var(--shadow-card);
}
.gallery-item:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; opacity: 0.8; transition: opacity 0.3s;
  background: linear-gradient(to top, rgb(0 0 0 / 0.85), rgb(0 0 0 / 0.1), transparent);
}
.gallery-item:hover::after { opacity: 0.95; }
.gallery-cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: 1rem; z-index: 1;
  font-weight: 600; color: #fff; font-size: 0.875rem;
}
.wide .gallery-cap { font-size: 1rem; }
@media (min-width: 48rem) { .wide .gallery-cap { font-size: 1.125rem; } }

.lightbox {
  position: fixed; inset: 0; z-index: 70; display: flex; flex-direction: column;
  background: rgb(22 48 42 / 0.95); padding: 1rem; backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
@media (min-width: 40rem) { .lightbox { padding: 2rem; } }
.lightbox-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-bottom: 1rem; color: #fff;
}
.lightbox-bar p { font-size: 0.875rem; font-weight: 600; }
.lightbox-count { margin-left: 0.75rem; color: rgb(255 255 255 / 0.5); }
.lightbox-close, .lightbox-nav button {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9999px; color: #fff; background: none; cursor: pointer;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.25); transition: background-color 0.2s;
}
.lightbox-close { width: 2.75rem; height: 2.75rem; flex: none; }
.lightbox-close:hover, .lightbox-nav button:hover { background: rgb(255 255 255 / 0.1); }
.lightbox-stage { position: relative; min-height: 0; flex: 1; }
.lightbox-stage img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-nav { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding-top: 1rem; }
.lightbox-nav button {
  background: rgb(255 255 255 / 0.1); padding: 0.75rem 1.5rem;
  font-size: 0.875rem; font-weight: 600;
}

/* --------------------------------------------------------------- process */
.process-grid { display: grid; gap: 3.5rem; }
@media (min-width: 64rem) { .process-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 5rem; } }
.process-side { position: static; }
@media (min-width: 64rem) { .process-side { position: sticky; top: 8rem; } }
.process-media { display: none; margin-top: 2.5rem; overflow: hidden; border-radius: 2rem; box-shadow: var(--shadow-card); }
@media (min-width: 64rem) { .process-media { display: block; } }
.process-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.process-steps {
  position: relative; display: grid; gap: 3rem;
  border-left: 1px solid var(--cream-200); padding-left: 2rem;
}
@media (min-width: 48rem) { .process-steps { gap: 4rem; padding-left: 2.5rem; } }
.process-steps li { position: relative; }
.step-num {
  position: absolute; left: -3.05rem; top: 0; display: grid; width: 2.75rem;
  height: 2.75rem; place-items: center; border-radius: 9999px;
  background: var(--moss-600); font-family: var(--font-display); font-size: 0.875rem;
  font-weight: 600; color: #fff; box-shadow: 0 1px 2px rgb(0 0 0 / 0.1);
}
@media (min-width: 48rem) { .step-num { left: -3.55rem; } }
.process-steps h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink-900);
}
@media (min-width: 48rem) { .process-steps h3 { font-size: 1.5rem; } }
.process-steps p { margin-top: 0.75rem; line-height: 1.7; color: rgb(61 106 91 / 0.8); }

/* ------------------------------------------------------------ reviews */
.reviews-head { display: grid; align-items: end; gap: 2rem; }
@media (min-width: 64rem) { .reviews-head { grid-template-columns: 1.5fr 1fr; } }
.reviews-masonry { margin-top: 3.5rem; }
@media (min-width: 48rem) { .reviews-masonry { column-count: 2; column-gap: 1.25rem; } }
@media (min-width: 64rem) { .reviews-masonry { column-count: 3; } }
@media (min-width: 80rem) { .reviews-masonry { column-count: 4; } }
.reviews-masonry li { margin-bottom: 1.25rem; break-inside: avoid; }
.review-card {
  display: flex; flex-direction: column; border-radius: 1rem; background: #fff;
  padding: 1.5rem; box-shadow: var(--shadow-card), inset 0 0 0 1px var(--cream-200);
}
.review-card blockquote { margin-top: 1rem; font-size: 0.95rem; line-height: 1.7; color: rgb(43 83 71 / 0.85); }
.review-card figcaption { margin-top: 1.5rem; border-top: 1px solid var(--cream-200); padding-top: 1rem; }
.review-card .who { display: block; font-weight: 600; color: var(--ink-900); }
.review-card .meta {
  margin-top: 0.125rem; display: block; font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--moss-600);
}

.stars { display: inline-flex; align-items: center; gap: 0.125rem; }
.stars svg { width: 1rem; height: 1rem; fill: var(--sun-500); }
.stars.on-dark svg { fill: var(--sun-500); }

/* ----------------------------------------------------------------- quote */
.quote-grid { display: grid; gap: 3rem; }
@media (min-width: 64rem) { .quote-grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; } }
.promises { margin-top: 2.25rem; display: grid; gap: 0.875rem; }
.promises li { display: flex; align-items: flex-start; gap: 0.75rem; }
.promises span:last-child { font-weight: 500; color: var(--ink-800); }
.hours-card { margin-top: 2.5rem; border-radius: 1.75rem; background: var(--ink-900); padding: 1.75rem; color: #fff; }
.hours-card .label {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brand-300);
}
.hours-card .note { margin-top: 0.75rem; font-size: 1.125rem; line-height: 1.7; color: rgb(245 241 231 / 0.85); }
.hours-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 40rem) { .hours-actions { flex-direction: row; } }
.hours-mail {
  margin-top: 1.25rem; border-top: 1px solid rgb(255 255 255 / 0.1); padding-top: 1.25rem;
  font-size: 0.875rem; color: rgb(245 241 231 / 0.7);
}
.hours-mail a {
  display: inline-flex; align-items: center; gap: 0.375rem; font-weight: 500;
  color: var(--brand-300); text-decoration: underline; text-underline-offset: 4px;
}
.hours-mail a:hover { color: var(--brand-100); }

.quote-form {
  border-radius: 2rem; background: #fff; padding: 1.5rem;
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--cream-200);
  scroll-margin-top: 9rem;
}
@media (min-width: 40rem) { .quote-form { padding: 2rem; } }
@media (min-width: 48rem) { .quote-form { padding: 2.5rem; scroll-margin-top: 11rem; } }
.field-grid { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field-wide { grid-column: 1 / -1; }
.field-label-row {
  margin-bottom: 0.5rem; display: flex; align-items: baseline;
  justify-content: space-between; gap: 0.75rem;
}
.field-label-row label { font-size: 0.875rem; font-weight: 500; color: var(--ink-900); }
.field-hint { font-size: 0.75rem; font-weight: 500; color: rgb(61 106 91 / 0.5); }
.field {
  width: 100%; border-radius: 0.75rem; border: 0; background: var(--cream-50);
  padding: 0.75rem 1rem; color: var(--ink-900); font: inherit;
  box-shadow: inset 0 0 0 1px var(--cream-200); transition: box-shadow 0.2s, background-color 0.2s;
}
.field::placeholder { color: rgb(61 106 91 / 0.4); }
.field:focus { outline: 0; background: #fff; box-shadow: inset 0 0 0 2px var(--brand-500); }
textarea.field { resize: vertical; min-height: 7rem; }
.field-error { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 500; color: #b91c1c; }
.honeypot { display: none; }
.form-foot {
  margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 40rem) {
  .form-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}
.form-foot p { font-size: 0.875rem; line-height: 1.6; color: rgb(61 106 91 / 0.65); }
.form-foot a { font-weight: 600; color: var(--brand-600); text-decoration: underline; text-underline-offset: 4px; }

.form-done { border-radius: 2rem; background: #fff; padding: 2rem; text-align: center;
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--cream-200);
  scroll-margin-top: 9rem; }
@media (min-width: 48rem) { .form-done { scroll-margin-top: 11rem; } }
@media (min-width: 48rem) { .form-done { padding: 3rem; } }
.form-done[hidden] { display: none; }
.done-dot {
  margin-inline: auto; display: grid; width: 3.5rem; height: 3.5rem; place-items: center;
  border-radius: 9999px; background: var(--brand-600); color: #fff;
}
.done-dot .icon { width: 1.75rem; height: 1.75rem; }
.form-done h3 {
  margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 600; letter-spacing: -0.01em; color: var(--ink-900);
}
@media (min-width: 48rem) { .form-done h3 { font-size: 1.875rem; } }
.form-done > p { margin-inline: auto; margin-top: 1rem; max-width: 28rem; line-height: 1.7; color: rgb(61 106 91 / 0.75); }
.done-actions { margin-top: 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }
@media (min-width: 40rem) { .done-actions { flex-direction: row; } }
.done-more { margin-inline: auto; margin-top: 2rem; max-width: 28rem; text-align: left; }
.done-more summary { cursor: pointer; font-size: 0.875rem; font-weight: 500; color: rgb(61 106 91 / 0.7); }
.done-more pre {
  margin-top: 0.75rem; max-height: 14rem; overflow: auto; white-space: pre-wrap;
  border-radius: 0.75rem; background: var(--cream-50); padding: 1rem; font-size: 0.75rem;
  line-height: 1.7; color: var(--ink-800); box-shadow: inset 0 0 0 1px var(--cream-200);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.done-more .row { margin-top: 0.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.restart {
  margin-top: 2rem; background: none; border: 0; cursor: pointer; font-size: 0.875rem;
  font-weight: 500; color: rgb(61 106 91 / 0.6); text-decoration: underline; text-underline-offset: 4px;
}
.restart:hover { color: var(--ink-900); }

/* ------------------------------------------------------------------- CTA */
.cta { position: relative; isolation: isolate; overflow: hidden; background: var(--ink-950); }
.cta-bg { position: absolute; inset: 0; z-index: -10; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgb(0 0 0 / 0.6), transparent, rgb(0 0 0 / 0.6)),
    rgb(0 0 0 / 0.5);
}
.cta-body { padding-block: 5rem; text-align: center; }
@media (min-width: 48rem) { .cta-body { padding-block: 7rem; } }
.cta-body h2 {
  margin-inline: auto; max-width: 48rem; font-family: var(--font-display);
  font-size: 2.25rem; font-weight: 600; line-height: 1.1; letter-spacing: -0.015em;
  color: #fff; text-wrap: balance;
}
@media (min-width: 40rem) { .cta-body h2 { font-size: 3rem; } }
@media (min-width: 48rem) { .cta-body h2 { font-size: 3.4rem; } }
.cta-body > p {
  margin-inline: auto; margin-top: 1.5rem; max-width: 36rem; font-size: 1.125rem;
  line-height: 1.7; color: rgb(245 241 231 / 0.85); text-wrap: pretty;
}
.cta-actions {
  margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.75rem;
}
@media (min-width: 40rem) { .cta-actions { flex-direction: row; } }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink-950); color: rgb(245 241 231 / 0.7); margin-top: auto; }
.footer-grid { display: grid; gap: 3rem; padding-block: 4rem; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .footer-grid { grid-template-columns: repeat(4, 1fr); padding-block: 5rem; } }
.footer-logo {
  height: 5rem; width: auto;
  filter: drop-shadow(0 0 6px rgb(255 255 255 / 0.5)) drop-shadow(0 0 18px rgb(116 188 221 / 0.45));
}
.footer-blurb { margin-top: 1.25rem; max-width: 20rem; font-size: 0.875rem; line-height: 1.7; }
.footer-rating { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: #fff; }
.site-footer h2 {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: #fff;
}
.footer-list { margin-top: 1.25rem; display: grid; gap: 0.75rem; font-size: 0.875rem; }
.footer-list a { display: flex; align-items: center; gap: 0.625rem; transition: color 0.2s; }
.footer-list a:hover { color: #fff; }
.footer-list .icon { flex: none; color: var(--brand-400); }
.footer-cities { margin-top: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1rem; font-size: 0.875rem; }
.footer-explore { margin-top: 2rem; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / 0.1); }
.footer-bottom .row {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding-block: 1.5rem; font-size: 0.75rem;
}
@media (min-width: 40rem) { .footer-bottom .row { flex-direction: row; } }
.break-all { word-break: break-all; }
