/* Soft Creek Water Co — V2
   Premium local trades: deep creek blues + restrained teal,
   refined typography, photo-forward hero, trust-first proof */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap");

:root {
  --creek-950: #061822;
  --creek-900: #0a2a3a;
  --creek-800: #0f3a4f;
  --creek-700: #154a63;
  --creek-600: #1c6080;
  --teal-700: #1f6b66;
  --teal-600: #2a7a74;
  --teal-500: #3a928b;
  --teal-100: #e8f4f2;
  --teal-50: #f2f9f8;
  --mist: #f4f7f8;
  --sand: #eef2f4;
  --white: #ffffff;
  --ink: #15202b;
  --ink-soft: #3d4d5c;
  --ink-muted: #5a6b7a;
  --border: #d5e0e6;
  --border-soft: #e4ebef;
  --shadow-sm: 0 1px 2px rgba(6, 24, 34, 0.04);
  --shadow: 0 8px 28px rgba(6, 24, 34, 0.08);
  --shadow-lg: 0 18px 50px rgba(6, 24, 34, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --max: 1140px;
  --header-h: 72px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--creek-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--teal-600); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--creek-900);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.15rem); margin: 0 0 1rem; font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.15rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.5rem; font-family: var(--font-body); font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: clamp(3.25rem, 6vw, 5rem) 0; }
.section--alt { background: var(--mist); }
.section--teal { background: linear-gradient(180deg, var(--teal-50), var(--teal-100)); }
.section--dark {
  background: var(--creek-900);
  color: #d7e4ec;
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section-intro {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal-600);
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--creek-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
  box-shadow: 0 6px 18px rgba(42, 122, 116, 0.28);
}
.btn--primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(31, 107, 102, 0.34);
}
.btn--secondary {
  background: var(--white);
  color: var(--creek-900);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  border-color: var(--creek-700);
  color: var(--creek-900);
  background: var(--mist);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.35rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 8px 30px rgba(6, 24, 34, 0.06);
  background: rgba(255,255,255,0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-height: var(--header-h);
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--creek-900);
  flex-shrink: 0;
}
.logo:hover { color: var(--creek-800); }
.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--creek-800), var(--teal-600));
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(15, 58, 79, 0.22);
}
.logo-mark svg { width: 26px; height: 26px; display: block; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-text span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  color: var(--creek-900);
  transition: background 0.15s, border-color 0.15s;
}
.nav-toggle:hover { background: var(--mist); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.nav.is-open { display: block; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-list a {
  display: block;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-radius: 8px;
}
.nav-list a:hover { background: var(--mist); color: var(--teal-700); }
.header-cta { display: none; }
.header-phone {
  font-weight: 700;
  color: var(--creek-900) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.header-phone:hover { color: var(--teal-600) !important; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }
  .nav-list a {
    padding: 0.45rem 0.7rem;
    font-size: 0.94rem;
  }
  .header-cta { display: inline-flex; padding: 0.7rem 1.1rem; font-size: 0.92rem; }
  .header-inner { gap: 1.25rem; }
  .logo { margin-right: auto; }
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--creek-900);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(6, 24, 34, 0.92) 0%, rgba(10, 42, 58, 0.82) 48%, rgba(15, 58, 79, 0.55) 100%),
    linear-gradient(0deg, rgba(6, 24, 34, 0.45), transparent 40%);
}
.hero-ornament {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: min(52vw, 520px);
  opacity: 0.14;
  pointer-events: none;
  z-index: -1;
}
.hero .container { position: relative; }
.hero .eyebrow { color: #9fd4ce; }
.hero .eyebrow::before { background: #9fd4ce; }
.hero h1 { color: var(--white); max-width: 14ch; }
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  opacity: 0.94;
  max-width: 38rem;
  margin-bottom: 0.35rem;
  line-height: 1.65;
  color: #e4eef4;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.88rem;
  font-weight: 600;
  color: #e8f2f6;
}
.hero .btn--primary {
  background: #e9f7f5;
  color: var(--creek-900);
  border-color: #e9f7f5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.hero .btn--primary:hover {
  background: var(--white);
  color: var(--creek-900);
  border-color: var(--white);
}

/* Split feature */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .split--reverse .split-media { order: -1; }
}
.split-media {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--sand);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  border-radius: inherit;
  pointer-events: none;
}

/* Cards / grids */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.card:hover { box-shadow: var(--shadow); }
.pain-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.pain-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--teal-100), #d9ebe8);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}
.pain-card .icon svg { width: 22px; height: 22px; }
.pain-card h3 { margin-bottom: 0.35rem; }

/* Pricing */
.pricing-strip .price-card {
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.price-card--featured {
  border-color: rgba(42, 122, 116, 0.35);
  background: linear-gradient(180deg, #fff, var(--teal-50));
  box-shadow: var(--shadow);
}
.price-card--featured::before {
  content: "Most common";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: rgba(42, 122, 116, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--creek-900);
  margin: 0.45rem 0 0.55rem;
  letter-spacing: -0.02em;
}
.price-card .note { font-size: 0.95rem; color: var(--ink-muted); margin: 0; line-height: 1.55; }
.price-note {
  margin-top: 1.75rem;
  padding: 1.1rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--teal-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  color: var(--creek-900);
  box-shadow: var(--shadow-sm);
}

/* Process steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: 1.65rem 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--creek-800), var(--teal-600));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 14px rgba(15, 58, 79, 0.2);
}

/* Areas */
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.area-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  color: var(--creek-900);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.15s;
}
.area-links a:hover {
  border-color: var(--teal-600);
  color: var(--teal-700);
  background: var(--teal-50);
  transform: translateY(-1px);
}

/* Trust / proof (no invented reviews) */
.trust-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 700px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.trust-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--creek-800), var(--teal-600));
  color: var(--white);
  display: grid;
  place-items: center;
}
.trust-item .icon svg { width: 22px; height: 22px; }
.trust-item h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.trust-item p { margin: 0; font-size: 0.92rem; color: var(--ink-muted); line-height: 1.5; }

.proof-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.7);
  border: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.proof-note strong { color: var(--ink-soft); }

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0.1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--creek-900);
  padding: 1.05rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal-600);
  border-bottom: 2px solid var(--teal-600);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
  margin-top: -4px;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq details p { margin: 0 0 1.05rem; color: var(--ink-muted); }

/* CTA band */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--creek-950), var(--creek-800) 55%, var(--teal-700));
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 30%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1), transparent 65%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p {
  opacity: 0.94;
  max-width: 36rem;
  margin-inline: auto;
  color: #dce8ef;
}
.cta-band .btn-row { justify-content: center; }
.cta-band .btn--primary {
  background: #e9f7f5;
  color: var(--creek-900);
  border-color: #e9f7f5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-band .btn--primary:hover {
  background: var(--white);
  color: var(--creek-900);
}

/* City page hero */
.page-hero {
  position: relative;
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--creek-900);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.45;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(6,24,34,0.94), rgba(15,58,79,0.78));
}
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero p { opacity: 0.95; max-width: 40rem; color: #e4eef4; }
.page-hero .btn--primary {
  background: #e9f7f5;
  color: var(--creek-900);
  border-color: #e9f7f5;
}
.page-hero .btn--primary:hover { background: var(--white); color: var(--creek-900); }
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  opacity: 0.85;
}
.breadcrumb a { color: #b7d7e2; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* Footer */
.site-footer {
  background: var(--creek-950);
  color: #a8bbc8;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}
.site-footer a { color: #e2eef4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.footer-heading {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.85rem;
  font-weight: 700;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}
.nap strong { color: var(--white); }

/* Utilities */
.muted { color: var(--ink-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.check-list { list-style: none; padding: 0; margin: 1.15rem 0; }
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--teal-100);
  box-shadow: inset 0 0 0 1.5px var(--teal-600);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.55rem;
  width: 0.32rem;
  height: 0.55rem;
  border: solid var(--teal-700);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Mobile sticky call bar helper (optional visual polish) */
@media (max-width: 959px) {
  body { padding-bottom: 0; }
  .nav.is-open + .header-cta,
  .header-inner .nav.is-open ~ .header-cta { /* no-op placeholder */ }
}

/* Form leftovers (if used later) */
.contact-form { display: grid; gap: 1rem; max-width: 32rem; }
.form-row { display: grid; gap: 0.35rem; }
.form-row label { font-weight: 600; font-size: 0.95rem; }
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.form-success {
  display: none;
  padding: 1rem;
  background: var(--teal-100);
  border-radius: var(--radius);
  color: var(--creek-900);
  font-weight: 600;
}
.form-success.is-visible { display: block; }
