/* ============================================================
   Jim's Pressure Washing — Virginia Beach, VA
   Aesthetic: "Coastal Power" — deep tidewater navy, water-bright
   aqua, warm Atlantic sand. Built up from their real logo palette
   (navy cap/shirt, cyan splash, white foam) — refined, not rebranded.
   ============================================================ */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root {
  /* --- ink / navy family (from the logo's uniform + cap) --- */
  --ink-900: #05121f;
  --ink-800: #08192a;
  --ink-700: #0b2136;
  --ink-600: #113050;
  --ink-500: #1a4166;

  /* --- water (from the logo's spray + wave) --- */
  --aqua-400: #5fd3e6;
  --aqua-500: #2bb7d4;
  --aqua-600: #1795b4;
  --aqua-glow: rgba(95, 211, 230, 0.35);

  /* --- foam / paper --- */
  --foam-50: #f6fafc;
  --foam-100: #eaf2f6;
  --foam-200: #d6e4ec;
  --foam-300: #b4c9d6;

  /* --- warm sand (Virginia Beach) — the secondary accent --- */
  --sand-300: #e8d3b0;
  --sand-400: #d4b485;
  --sand-500: #bd9a67;

  --white: #ffffff;

  --text-on-dark: #dfeaf2;
  --text-on-dark-dim: #9db3c4;
  --text-on-light: #12283c;
  --text-on-light-dim: #55707f;

  --nav-h: 72px;

  --edge: clamp(1.1rem, 4vw, 4rem);
  --maxw: 1200px;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 26px;

  --shadow-lift: 0 24px 60px -22px rgba(5, 18, 31, 0.55);
  --shadow-card: 0 14px 40px -18px rgba(5, 18, 31, 0.42);

  --font-display: "Archivo Black", "Archivo", sans-serif;
  --font-body: "Karla", sans-serif;

  --ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* ------------------------------------------------------------
   base
   ------------------------------------------------------------ */

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

img, picture, svg { display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--edge);
}

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

/* eyebrow / kicker */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow--aqua { color: var(--aqua-400); }
.eyebrow--deep { color: var(--aqua-600); }

/* ------------------------------------------------------------
   buttons
   ------------------------------------------------------------ */

.btn {
  --btn-bg: var(--aqua-500);
  --btn-fg: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.95em 1.5em;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px var(--aqua-glow);
}
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--aqua-500);
  --btn-fg: #04141c;
  box-shadow: 0 10px 26px -12px var(--aqua-glow);
}
.btn--primary:hover { --btn-bg: var(--aqua-400); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text-on-dark);
  border: 1.5px solid rgba(223, 234, 242, 0.32);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  --btn-bg: rgba(223, 234, 242, 0.1);
  --btn-fg: var(--white);
  box-shadow: none;
}

.btn--sand {
  --btn-bg: var(--sand-400);
  --btn-fg: #23180a;
}
.btn--sand:hover { --btn-bg: var(--sand-300); box-shadow: 0 12px 30px -12px rgba(212, 180, 133, 0.5); }

.btn--outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--ink-700);
  border: 1.5px solid rgba(17, 48, 80, 0.28);
}
.btn--outline-dark:hover {
  --btn-bg: var(--ink-700);
  --btn-fg: var(--white);
  box-shadow: none;
}

.btn--sm { padding: 0.7em 1.15em; font-size: 0.82rem; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--aqua-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------
   nav
   ------------------------------------------------------------ */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(5, 18, 31, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(95, 211, 230, 0.14);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--edge);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
  min-width: 0;
}
.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  background: var(--white);
  box-shadow: 0 0 0 1.5px rgba(95, 211, 230, 0.4);
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.nav__wordmark b {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav__wordmark span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-400);
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav__links a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.2s var(--ease-out);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--aqua-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { flex: none; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(223, 234, 242, 0.28);
  border-radius: 10px;
  cursor: pointer;
  flex: none;
}
.nav__toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--text-on-dark);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--text-on-dark);
  transition: transform 0.25s var(--ease-out);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer — hidden by default via display:none (not just [hidden]) */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 55;
  background: rgba(5, 18, 31, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(95, 211, 230, 0.18);
  padding: 1.1rem var(--edge) 1.6rem;
  flex-direction: column;
  gap: 0.2rem;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(223, 234, 242, 0.08);
}
.nav__mobile .btn { margin-top: 1rem; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
}

/* ------------------------------------------------------------
   hero — must fit the first viewport, complete, on every device
   ------------------------------------------------------------ */

.hero {
  container-type: inline-size;
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-block: clamp(1.5rem, 4cqi, 3.5rem);
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(43, 183, 212, 0.24) 0%, transparent 55%),
    radial-gradient(90% 70% at 8% 92%, rgba(26, 65, 102, 0.65) 0%, transparent 60%),
    linear-gradient(168deg, var(--ink-800) 0%, var(--ink-900) 62%, #030c16 100%);
  color: var(--text-on-dark);
  overflow-x: clip;
}

/* fine water-grain texture so the navy isn't a flat slab */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    repeating-linear-gradient(101deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-14deg, rgba(95,211,230,0.05) 0 1px, transparent 1px 9px);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.35) 70%, transparent 100%);
  pointer-events: none;
}

/* On mobile the real job photo becomes the hero backdrop (portrait fits portrait).
   It is the SAME file the desktop hero card uses, so it is only ever fetched once. */
.hero__photo-bg {
  display: none;
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(178deg,
      rgba(5, 18, 31, 0.86) 0%,
      rgba(5, 18, 31, 0.78) 42%,
      rgba(5, 18, 31, 0.93) 100%),
    url("assets/gallery/photo-01.webp");
  background-size: cover, cover;
  background-position: center, 50% 38%;
  background-repeat: no-repeat, no-repeat;
}

.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--edge);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(1.5rem, 5cqi, 4rem);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.7rem, 2.1cqi, 1.35rem);
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.05rem, 7.4cqi, 4.35rem);
  line-height: 0.95;
  letter-spacing: -0.026em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}
.hero h1 em {
  font-style: normal;
  color: var(--aqua-400);
  display: block;
}

.hero__sub {
  font-size: clamp(0.95rem, 1.85cqi, 1.16rem);
  line-height: 1.55;
  color: var(--text-on-dark);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* rating / proof line — must never be clipped at the fold */
.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 1.05rem;
  font-size: clamp(0.76rem, 1.42cqi, 0.9rem);
  color: var(--text-on-dark-dim);
  font-weight: 600;
}
.hero__proof b { color: var(--white); font-weight: 800; }
.hero__proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  white-space: nowrap;
}
.hero__proof-item svg {
  width: 1em;
  height: 1em;
  flex: none;
  color: var(--aqua-400);
}

/* hero side card — the real job photo, framed */
.hero__card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(95, 211, 230, 0.2);
  min-width: 0;
  max-height: calc(100svh - var(--nav-h) - 7rem);
  aspect-ratio: 526 / 701;
}
.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__card-tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  right: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  background: rgba(5, 18, 31, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(95, 211, 230, 0.22);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0.01em;
}
.hero__card-tag i {
  font-style: normal;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--aqua-400);
  box-shadow: 0 0 0 4px rgba(95, 211, 230, 0.18);
  flex: none;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__card { display: none; }
  .hero__photo-bg { display: block; }
  .hero { text-align: left; }
}

/* ------------------------------------------------------------
   section scaffolding
   ------------------------------------------------------------ */

.section { padding-block: clamp(3.6rem, 8vw, 7rem); }
.section--light { background: var(--foam-50); color: var(--text-on-light); }
.section--paper { background: var(--foam-100); color: var(--text-on-light); }
.section--dark { background: var(--ink-800); color: var(--text-on-dark); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section__head h2 {
  font-size: clamp(1.85rem, 4.6vw, 3.05rem);
  text-transform: uppercase;
  letter-spacing: -0.024em;
}
.section--light .section__head h2,
.section--paper .section__head h2 { color: var(--ink-700); }
.section--dark .section__head h2 { color: var(--white); }
.section__head p {
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  color: var(--text-on-light-dim);
  max-width: 56ch;
}
.section--dark .section__head p { color: var(--text-on-dark-dim); }

/* ------------------------------------------------------------
   services
   ------------------------------------------------------------ */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
  gap: 1.1rem;
}

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.6rem 1.5rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--foam-200);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua-500), var(--aqua-400) 60%, var(--sand-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px -24px rgba(5, 18, 31, 0.4);
  border-color: rgba(43, 183, 212, 0.4);
}
.svc:hover::after { transform: scaleX(1); }

.svc__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(43,183,212,0.16), rgba(43,183,212,0.05));
  color: var(--aqua-600);
  flex: none;
}
.svc__icon svg { width: 22px; height: 22px; }

.svc h3 {
  font-size: 1.13rem;
  color: var(--ink-700);
  letter-spacing: -0.012em;
  text-transform: uppercase;
}
.svc p {
  font-size: 0.925rem;
  color: var(--text-on-light-dim);
  line-height: 1.58;
}
.svc__note {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--aqua-600);
}

.services__foot {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-m);
  background: linear-gradient(135deg, var(--ink-700), var(--ink-600));
  color: var(--text-on-dark);
  box-shadow: var(--shadow-card);
}
.services__foot p { font-size: 0.96rem; margin-right: auto; max-width: 60ch; }
.services__foot b { color: var(--white); }

/* ------------------------------------------------------------
   stats band
   ------------------------------------------------------------ */

/* Explicit column counts rather than auto-fit: the cells share one background
   through a 1px gap, so a half-empty final row reads as a broken panel. */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(95, 211, 230, 0.16);
  border: 1px solid rgba(95, 211, 230, 0.16);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.stat {
  background: var(--ink-800);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat b {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: var(--aqua-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 0.83rem;
  color: var(--text-on-dark-dim);
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (min-width: 520px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ------------------------------------------------------------
   before / after gallery
   ------------------------------------------------------------ */

/* Two big cards per row on desktop: these are their own before/after graphics,
   which carry baked-in text, so they need the width to stay legible.
   align-items: start stops a short card stretching and leaving dead space
   below its image — every card hugs its own photo. */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.15rem;
}
@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--ink-700);
  border: 1px solid rgba(95, 211, 230, 0.16);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px -26px rgba(5, 18, 31, 0.6);
}
.shot img {
  width: 100%;
  height: auto;
  display: block;
}
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.9rem 1rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  background: linear-gradient(to top, rgba(5, 18, 31, 0.9), transparent);
}

.shot--tall { grid-row: span 1; }

/* ------------------------------------------------------------
   reviews
   ------------------------------------------------------------ */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.15rem;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.7rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--foam-200);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  position: relative;
}
.review__stars {
  display: flex;
  gap: 0.14rem;
  color: var(--sand-500);
}
.review__stars svg { width: 17px; height: 17px; }
.review blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-on-light);
  font-weight: 500;
}
.review figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.4rem;
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--ink-600), var(--ink-500));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.86rem;
  flex: none;
}
.review__who { display: flex; flex-direction: column; min-width: 0; }
.review__who b { font-size: 0.94rem; color: var(--ink-700); font-weight: 800; }
.review__who span { font-size: 0.78rem; color: var(--text-on-light-dim); }

.reviews__meta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-on-light-dim);
}
.reviews__meta b { color: var(--ink-700); }
.reviews__meta a { color: var(--aqua-600); font-weight: 700; text-decoration: none; }
.reviews__meta a:hover { text-decoration: underline; }

/* ------------------------------------------------------------
   service area / visit
   ------------------------------------------------------------ */

.visit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 1.15rem;
}

.info-card {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius-m);
  background: var(--white);
  border: 1px solid var(--foam-200);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.info-card h3 {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-700);
}
.info-card p, .info-card li {
  font-size: 0.94rem;
  color: var(--text-on-light-dim);
  line-height: 1.6;
}
.info-card a { color: var(--aqua-600); font-weight: 700; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.info-card li { display: flex; gap: 0.6rem; align-items: baseline; }
.info-card li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--aqua-500);
  flex: none;
  transform: translateY(-2px);
}
.info-card__big {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  color: var(--ink-700);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.info-card__big:hover { color: var(--aqua-600); text-decoration: none; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.area-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  background: var(--foam-100);
  border: 1px solid var(--foam-200);
  color: var(--text-on-light-dim);
}

/* ------------------------------------------------------------
   final CTA
   ------------------------------------------------------------ */

.cta-band {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background:
    radial-gradient(90% 120% at 88% 12%, rgba(43, 183, 212, 0.3) 0%, transparent 58%),
    linear-gradient(150deg, var(--ink-700) 0%, var(--ink-900) 78%);
  color: var(--text-on-dark);
  border-radius: var(--radius-l);
  padding: clamp(2.2rem, 5.5vw, 4rem);
  box-shadow: var(--shadow-lift);
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(95, 211, 230, 0.22);
  z-index: -1;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  max-width: 20ch;
}
.cta-band p {
  margin-top: 0.9rem;
  max-width: 52ch;
  color: var(--text-on-dark-dim);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}
.cta-band__actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ------------------------------------------------------------
   footer
   ------------------------------------------------------------ */

.footer {
  background: #030c16;
  color: var(--text-on-dark-dim);
  padding-block: clamp(2.6rem, 5vw, 3.8rem) 1.8rem;
  border-top: 1px solid rgba(95, 211, 230, 0.14);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr));
  gap: 2rem;
  align-items: start;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 0.9rem;
}
.footer__brand img {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  flex: none;
}
.footer__brand b {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.02rem;
}
.footer h4 {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-400);
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-weight: 800;
}
.footer p, .footer li { font-size: 0.9rem; line-height: 1.65; }
.footer ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer a { color: var(--text-on-dark-dim); text-decoration: none; transition: color 0.2s var(--ease-out); }
.footer a:hover { color: var(--aqua-400); }
.footer__bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(223, 234, 242, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ------------------------------------------------------------
   contact page
   ------------------------------------------------------------ */

.page-head {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  background:
    radial-gradient(110% 120% at 80% 0%, rgba(43, 183, 212, 0.22) 0%, transparent 58%),
    linear-gradient(165deg, var(--ink-800), var(--ink-900));
  color: var(--text-on-dark);
  padding-block: clamp(2.8rem, 7vw, 4.6rem);
}
.page-head h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0.85rem;
  max-width: 18ch;
}
.page-head p {
  margin-top: 0.95rem;
  max-width: 54ch;
  color: var(--text-on-dark-dim);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 1.4rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--foam-200);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3.5vw, 2.3rem);
}
.form-card > h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.form-card > p.form-card__lead {
  margin-top: 0.7rem;
  margin-bottom: 1.5rem;
  color: var(--text-on-light-dim);
  font-size: 0.96rem;
}

#estimate-form {
  display: grid;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-on-light);
  background: var(--foam-50);
  border: 1.5px solid var(--foam-200);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: #9bb0bd; }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--aqua-500);
  box-shadow: 0 0 0 4px rgba(43, 183, 212, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1rem;
}

#estimate-form .btn { width: 100%; padding-block: 1.05em; font-size: 0.98rem; }
#estimate-form .btn[disabled] { opacity: 1; cursor: default; transform: none; box-shadow: none; }

.form-status {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}
.form-status--ok {
  background: rgba(43, 183, 212, 0.1);
  border: 1.5px solid rgba(43, 183, 212, 0.35);
  color: #0d5a6e;
}
.form-status--err {
  background: #fdeeea;
  border: 1.5px solid #f0b7a6;
  color: #93341c;
}
.form-legal {
  font-size: 0.78rem;
  color: var(--text-on-light-dim);
  line-height: 1.55;
}

.turnstile-box { min-height: 65px; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.reach {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-m);
  background: var(--white);
  border: 1px solid var(--foam-200);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.reach:hover { transform: translateY(-3px); border-color: rgba(43, 183, 212, 0.45); }
.reach__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(43,183,212,0.16), rgba(43,183,212,0.05));
  color: var(--aqua-600);
  flex: none;
}
.reach__icon svg { width: 20px; height: 20px; }
.reach__text { display: flex; flex-direction: column; min-width: 0; }
.reach__text b {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-700);
  letter-spacing: -0.01em;
}
.reach__text span { font-size: 0.83rem; color: var(--text-on-light-dim); }

/* ------------------------------------------------------------
   scroll reveal — BELOW THE FOLD ONLY
   ------------------------------------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* === site credit (injected by credit_footer.py); do not hand-edit === */
.site-credit {
  margin: 2.25rem 0 0;
  padding-inline: 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  opacity: .65;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 128, 128, .5);
  border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  transition: border-bottom-color .25s ease;
}
.site-credit a:hover,
.site-credit a:focus-visible { border-bottom-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .site-credit a { transition: none; }
}
/* === end site credit === */
