/* Soak N Wet — shared layout, chrome, and subpage templates (tokens: global.css) */

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

body.page-sub,
body.page-contact {
  color: var(--ink);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
}

body.page-sub {
  background-color: var(--white);
  background-image: var(--body-surface-bloom);
  background-repeat: no-repeat;
}

body.page-contact {
  background-color: var(--white);
  background-image: var(--body-surface-bloom);
  background-repeat: no-repeat;
}

/* Token-based accent (replaces inline color on spans) */
.accent-cyan {
  color: var(--cyan);
}

/* ——— Primary navigation — identical on every page (single source of truth) ——— */
nav[aria-label="Primary"] {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--nav-h);
  padding-left: max(var(--section-x), env(safe-area-inset-left, 0px));
  padding-right: max(var(--section-x), env(safe-area-inset-right, 0px));
  background: rgba(22, 66, 91, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-nav);
  box-shadow: var(--shadow-nav);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

nav[aria-label="Primary"] > a.logo {
  position: absolute;
  left: max(var(--section-x), env(safe-area-inset-left, 0px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

/* Raster mark: soften into dark nav (navy asset → near-white, low-contrast edge) */
nav[aria-label="Primary"] > a.logo .logo-img {
  display: block;
  height: calc(var(--nav-h) - 10px); /* letters nearly touch nav top/bottom */
  width: auto;
  max-width: min(65vw, 26rem);
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

nav[aria-label="Primary"] > a.logo:hover .logo-img {
  opacity: 0.96;
}

nav[aria-label="Primary"] .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.65rem, 1.2vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  max-width: min(56rem, 100%);
}

nav[aria-label="Primary"] .nav-links a {
  color: rgba(217, 220, 214, 0.82);
  text-decoration: none;
  font-size: clamp(0.75rem, 0.7rem + 0.35vw, var(--text-sm));
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.35rem clamp(0.45rem, 0.8vw, 0.7rem);
  border-radius: 999px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

nav[aria-label="Primary"] .nav-links a:not(.btn-n):hover,
nav[aria-label="Primary"] .nav-links a:not(.btn-n).active {
  color: var(--white);
}

nav[aria-label="Primary"] .nav-links a:not(.btn-n).active {
  background: rgba(129, 195, 215, 0.16);
  box-shadow: inset 0 0 0 1px rgba(129, 195, 215, 0.28);
}

/* Get a Quote + Call Now: primary nav + pre-footer phone-cta (identical) */
nav[aria-label="Primary"] .nav-links .btn-n,
.phone-cta-btns .btn-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.5rem clamp(0.85rem, 1.2vw, 1.25rem);
  background: rgba(129, 195, 215, 0.15);
  color: var(--white) !important;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: clamp(0.78rem, 0.72rem + 0.2vw, 0.85rem);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  border: 1px solid rgba(129, 195, 215, 0.35);
}

nav[aria-label="Primary"] .nav-links .btn-n:hover,
.phone-cta-btns .btn-n:hover {
  background: rgba(129, 195, 215, 0.25);
  transform: translateY(-1px);
}

nav[aria-label="Primary"] .nav-links .btn-call,
.phone-cta-btns .btn-call {
  background: var(--cyan);
  color: var(--ink) !important;
  border-color: var(--cyan);
  font-weight: 800;
}

nav[aria-label="Primary"] .nav-links .btn-call:hover,
.phone-cta-btns .btn-call:hover {
  background: var(--white);
  border-color: var(--white);
}

nav[aria-label="Primary"] > a.logo:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 2px;
}

nav[aria-label="Primary"] .nav-links a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

nav[aria-label="Primary"] .nav-links .btn-n:focus-visible,
.phone-cta-btns .btn-n:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

nav[aria-label="Primary"] .hamburger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

nav[aria-label="Primary"] .hamburger {
  position: absolute;
  right: max(var(--section-x), env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

nav[aria-label="Primary"] .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: background 0.3s ease;
}

/* Tablet / mobile: drawer + hamburger (prevents overflow) */
@media (max-width: 900px) {
  nav[aria-label="Primary"] .nav-links {
    display: none;
  }

  nav[aria-label="Primary"] .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    max-width: none;
    align-items: stretch;
    white-space: normal;
    background: rgba(15, 45, 61, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem max(var(--section-x), env(safe-area-inset-left, 0px)) 2rem
      max(var(--section-x), env(safe-area-inset-right, 0px));
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
    z-index: 199;
  }

  nav[aria-label="Primary"] .nav-links.open a:not(.btn-n) {
    font-size: 1.05rem;
    color: var(--white);
  }

  nav[aria-label="Primary"] .nav-links.open a:not(.btn-n):hover,
  nav[aria-label="Primary"] .nav-links.open a:not(.btn-n).active {
    color: var(--cyan);
  }

  nav[aria-label="Primary"] .nav-links.open .btn-n {
    background: var(--cyan);
    color: var(--ink) !important;
    justify-content: center;
  }

  nav[aria-label="Primary"] .nav-links.open .btn-n:hover {
    background: var(--cyan-dk);
  }

  nav[aria-label="Primary"] .hamburger {
    display: flex;
  }

  nav[aria-label="Primary"] .hamburger span {
    transition: transform 0.22s ease, opacity 0.22s ease, background 0.3s ease;
  }

  nav[aria-label="Primary"] .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  nav[aria-label="Primary"] .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  nav[aria-label="Primary"] .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ——— Page hero: subpage .ph + Home .hero — same mesh, noise, and 135° gradients ——— */
.ph,
.hero {
  padding: clamp(5.5rem, 9vw, 7.5rem) var(--section-x) clamp(2.75rem, 5vw, 4.5rem);
  background: var(--gradient-page-hero);
  border-bottom: 1px solid var(--border-ui);
  position: relative;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
}

/* After base .ph/.hero: tablet/mobile hero padding matches sticky nav + notches */
@media (max-width: 900px) {
  .ph,
  .hero {
    padding-top: 5.25rem;
    padding-left: max(var(--section-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--section-x), env(safe-area-inset-right, 0px));
  }
}

.ph::before,
.hero::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -12%;
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  background: var(--hero-mesh-bloom);
  pointer-events: none;
  z-index: 0;
}

.ph::after,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(58, 124, 165, 0.055) 40%,
      transparent 68%
    ),
    linear-gradient(
      135deg,
      rgba(129, 195, 215, 0.06) 0%,
      transparent 52%
    ),
    var(--hero-noise-tile);
  opacity: 0.04;
  pointer-events: none;
}

.ph-in {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ph-in .eyebrow {
  display: block;
  text-align: center;
}

.ph-in > p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact: centered hero column (never flush-left on any breakpoint) */
.ph--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ph--contact .ph-in {
  width: 100%;
  max-width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ph--contact .ph-in .eyebrow,
.ph--contact .ph-in h1,
.ph--contact .ph-in .sh,
.ph--contact .ph-in > p {
  text-align: center;
}

.ph .eyebrow,
.hero .ph-in .eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 45, 61, 0.78);
  margin-bottom: 1.25rem;
}

.ph h1,
.ph .sh,
.hero .ph-in h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-page-headline);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--ink);
  text-wrap: balance;
}

.ph h1 span,
.ph .sh span,
.hero .ph-in h1 span {
  color: var(--cyan-dk);
}

.ph p,
.hero .ph-in > p {
  color: rgba(15, 45, 61, 0.88);
  font-size: var(--text-lead);
  max-width: min(520px, var(--prose-width));
  line-height: 1.75;
}

.hero .ph-in .hero-lead strong {
  font-weight: 650;
  color: var(--ink);
}

/* ——— Footer (all pages) ——— */
footer {
  background: var(--ink2);
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--border);
  padding: 3.5rem var(--section-x) 2rem;
}

footer .ft-brand .logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

footer .ft-brand .logo .logo-img {
  display: block;
  height: clamp(1.75rem, 1.55rem + 0.6vw, 2.25rem);
  width: auto;
  max-width: 12.5rem;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255, 255, 255, 0.1));
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

footer .ft-brand .logo:hover .logo-img {
  opacity: 0.98;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.ft-brand p {
  color: var(--text-on-dark-muted);
  font-size: var(--text-sm);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 260px;
}

.ft-col h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.25rem;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ft-col a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

.ft-col a:hover {
  color: var(--text-on-dark);
}

footer .ft-brand .logo:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 2px;
}

.ft-col a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

.ft-muted {
  color: var(--text-on-dark-muted);
  font-size: var(--text-sm);
}

.ft-bot {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ft-bot p {
  color: var(--text-on-dark-muted);
  font-size: var(--text-xs);
}

.ft-credit a {
  color: var(--text-on-dark-muted);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.ft-credit a:hover,
.ft-credit a:focus-visible {
  color: var(--cyan);
  text-decoration-color: var(--cyan);
}

/* ——— Services template ——— */
.page-services .sec {
  padding: var(--section-y) var(--section-x);
  background: linear-gradient(
    90deg,
    rgba(217, 220, 214, 0) 0%,
    rgba(217, 220, 214, 0) 42%,
    rgba(129, 195, 215, 0.08) 84%,
    rgba(58, 124, 165, 0.06) 100%
  );
}

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: clamp(4rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--border-ui);
  scroll-margin-top: 80px;
}

.svc-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.svc-block:nth-child(even) .svc-vis {
  order: -1;
}

.svc-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-svc-num);
  line-height: 1;
  color: rgba(22, 66, 91, 0.05);
  margin-bottom: 1rem;
  display: block;
}

.svc-block h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--text-section-title);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.svc-block h2 span {
  color: var(--cyan-dk);
}

.svc-block p {
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: var(--text-body);
}

.svc-details {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.svc-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--muted2);
}

.svc-details li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan-dk);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.page-services .svc-block .btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 45, 61, 0.94);
  color: var(--text-on-ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 0.5rem;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.14);
}

.page-services .svc-block .btn-p:hover {
  background: rgba(15, 45, 61, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(15, 45, 61, 0.18);
  color: var(--text-on-ink);
}

.page-services .svc-block .btn-p:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.svc-vis {
  background: linear-gradient(
    145deg,
    rgba(129, 195, 215, 0.14),
    rgba(58, 124, 165, 0.06)
  );
  border: 1px solid rgba(129, 195, 215, 0.22);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.svc-vis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  position: relative;
  z-index: 1;
}

/* Landscaper block: primary + supporting photo side by side */
.svc-vis--dual {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  padding: 0;
}

.svc-vis--dual img {
  min-height: 0;
}

.svc-vis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    rgba(58, 124, 165, 0.06),
    transparent 72%
  );
  transition: background 0.4s ease;
}

.svc-vis:hover::before {
  background: radial-gradient(
    ellipse 70% 70% at 12% 12%,
    rgba(129, 195, 215, 0.12),
    transparent 70%
  );
}

.svc-vis-icon {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(5rem, 10vw, 9rem);
  color: rgba(22, 66, 91, 0.07);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1;
  transform: scale(1);
  transition: transform 0.4s ease, color 0.3s;
}

.svc-vis:hover .svc-vis-icon {
  transform: scale(1.08);
}

.page-services .btn-o {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(15, 45, 61, 0.18);
  background: rgba(15, 45, 61, 0.82);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.1);
}

.page-services .btn-o:hover {
  border-color: rgba(129, 195, 215, 0.55);
  background: rgba(15, 45, 61, 0.92);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(15, 45, 61, 0.14);
}

.page-services .btn-o:focus-visible {
  outline: 2px solid var(--cyan-dk);
  outline-offset: 3px;
}

.phone-cta-head {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--white);
}

/* ——— About template ——— */
.page-about .sec {
  padding: var(--section-y) var(--section-x);
}

/* Stats strip (home #stats-sec + about; shared) */
.stats-sec {
  background: var(--ink2);
  color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-sec .stats-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  border: 1px solid var(--border);
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.stats-sec .sb {
  padding: clamp(2.5rem, 4vw, 4rem);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: rgba(15, 45, 61, 0.35);
}

.stats-sec .sb:last-child {
  border-right: none;
}

.stats-sec .sb:first-child {
  border-left: 3px solid var(--cyan);
}

.stats-sec .sb:not(:first-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stats-sec .sb:not(:first-child):hover::after {
  opacity: 1;
}

.stats-sec .sb-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-sb-num);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stats-sec .sb-num span {
  color: var(--cyan);
}

.stats-sec .sb-num--text {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  color: var(--cyan);
}

.stats-sec .sb-label {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.story-text h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--text-story-title);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.story-text h2 span {
  color: var(--cyan-dk);
}

.story-text p {
  color: var(--ink4);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: var(--text-body);
}

.story-text p strong {
  color: var(--ink);
  font-weight: 600;
}

.story-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aside-card {
  background: linear-gradient(
    135deg,
    rgba(129, 195, 215, 0.1),
    rgba(58, 124, 165, 0.04)
  );
  border: 1px solid rgba(129, 195, 215, 0.22);
  border-left: 2px solid var(--cyan-dk);
  padding: 1.75rem;
}

.aside-card h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.aside-card p {
  color: var(--muted2);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.values-sec {
  background: var(--ink2);
  color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.values-sec .eyebrow {
  color: var(--cyan);
}

/* Values block title (replaces inline style) */
.values-sec > .sh {
  color: var(--white);
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--text-values-title);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: var(--border);
}

.val-block {
  background: var(--ink3);
  padding: 3rem 2.5rem;
  position: relative;
}

.val-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.val-block:first-child::before {
  background: var(--cyan);
}

.val-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-val-num);
  color: rgba(129, 195, 215, 0.07);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.val-block h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.val-block p {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Photo gallery (about page — "On the Job") */
.gallery-sec {
  background: var(--ink2);
  color: var(--white);
}
.gallery-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.gallery-head .sh {
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  max-width: 72rem;
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.gallery-item--main {
  grid-row: 1 / -1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}
.gallery-item:hover img {
  transform: scale(1.03);
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--main {
    grid-row: auto;
  }
  .gallery-item img {
    height: 220px;
  }
}

/* Photo strip (reusable — area pages) */
.photo-strip {
  width: 100%;
  overflow: hidden;
  max-height: 420px;
  border-bottom: 1px solid var(--border-ui);
}
.photo-strip-inner {
  width: 100%;
  height: 100%;
}
.photo-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
@media (max-width: 640px) {
  .photo-strip,
  .photo-strip img {
    max-height: 260px;
    height: 260px;
  }
}

/* About: stats section → light (breaks dark streak before CTA/footer) */
body.page-about .stats-sec {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-ui);
}
body.page-about .stats-sec .sb {
  background: rgba(129, 195, 215, 0.06);
  border-right-color: var(--border-ui);
}
body.page-about .stats-sec .sb:first-child {
  border-left: 3px solid var(--cyan-dk);
}
body.page-about .stats-sec .sb-num {
  color: var(--ink);
}
body.page-about .stats-sec .sb-num--text {
  color: var(--cyan-dk);
}
body.page-about .stats-sec .sb-label {
  color: var(--muted2);
}

.bigstat-sec {
  background: var(--ink2);
  color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bigstat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bigstat-left {
  padding: clamp(4rem, 7vw, 7rem) var(--section-x);
  border-right: 1px solid var(--border);
}

.bigstat-left .eyebrow {
  color: var(--cyan);
}

.bigstat-left .sh {
  font-size: var(--text-stat-hero);
  line-height: 0.9;
  color: var(--white);
}

.bigstat-left p {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 400px;
}

.bigstat-right {
  padding: clamp(4rem, 7vw, 7rem) var(--section-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.bs-num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.bs-num span {
  color: var(--cyan);
}

.bs-label {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.bs-divider {
  height: 1px;
  background: var(--border);
}

.page-about .btn-p,
.page-home .hero .btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 45, 61, 0.94);
  color: var(--text-on-ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.14);
}

.page-about .btn-p:hover,
.page-home .hero .btn-p:hover {
  background: rgba(15, 45, 61, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(15, 45, 61, 0.18);
}

.page-about .btn-p:focus-visible,
.page-home .hero .btn-p:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.page-about .btn-o,
.page-home .hero .btn-o {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(15, 45, 61, 0.18);
  background: rgba(15, 45, 61, 0.82);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.1);
}

.page-about .btn-o:hover,
.page-home .hero .btn-o:hover {
  border-color: rgba(129, 195, 215, 0.55);
  background: rgba(15, 45, 61, 0.92);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(15, 45, 61, 0.14);
}

.page-about .btn-o:focus-visible,
.page-home .hero .btn-o:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.phone-cta-tagline {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

/* ——— Contact template ——— */
.contact-sec {
  padding: var(--section-y) var(--section-x);
  background: linear-gradient(
    180deg,
    rgba(129, 195, 215, 0.08) 0%,
    transparent 50%,
    transparent 100%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.cl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-card {
  background: var(--cyan);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  color: var(--ink);
}

.call-card h2 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.call-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.call-num {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--cyan);
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 1.6rem;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.call-num:hover {
  background: var(--ink2);
}

.call-num:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.call-num svg {
  flex-shrink: 0;
}

.info-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--white);
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(129, 195, 215, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.info-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.info-val {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.info-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.hours-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  padding: 2rem;
  color: var(--white);
}

.hours-card h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(129, 195, 215, 0.08);
  font-size: var(--text-sm);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--muted);
}

.hours-time {
  color: var(--white);
  font-weight: 500;
}

.hours-time.avail {
  color: var(--cyan);
}

.form-wrap {
  background: var(--ink2);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: var(--radius-sm);
  color: var(--white);
}

.form-wrap h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.form-wrap > p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-label .req {
  color: var(--cyan);
  margin-left: 0.15rem;
}

.form-control {
  display: flex;
  width: 100%;
  min-height: 2.75rem;
  background: var(--ink3);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-control::placeholder {
  color: rgba(217, 220, 214, 0.4);
}

.form-control:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(129, 195, 215, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding-top: 0.75rem;
  line-height: 1.5;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(1.05em),
    calc(100% - 11px) calc(1.05em);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field.is-invalid .form-control {
  border-color: rgba(248, 113, 113, 0.85);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.form-field.is-invalid .form-label {
  color: #f8a8a8;
}

.form-message {
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.4rem;
  min-height: 1.1em;
  display: none;
}

.form-field.is-invalid .form-message {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-actions {
  margin-top: 0.25rem;
}

.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 1rem;
  padding: 0 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--cyan-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(129, 195, 215, 0.22);
}

.form-submit:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-note {
  color: var(--muted);
  font-size: var(--text-xs);
  text-align: center;
  margin-top: 0.75rem;
}

.form-success-panel {
  text-align: center;
  padding: 3rem 1rem;
}

.form-success-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 2rem;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.form-success-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-success-text a {
  color: var(--cyan);
  text-decoration: none;
}

.form-success-text a:hover {
  text-decoration: underline;
}

/* ——— Responsive (shared) ——— */
@media (max-width: 900px) {
  .stats-sec .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-sec .sb:nth-child(2) {
    border-right: none;
  }

  .stats-sec .sb:nth-child(3) {
    border-right: none;
    border-top: 1px solid var(--border);
    grid-column: span 2;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .bigstat-inner {
    grid-template-columns: 1fr;
  }

  .bigstat-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .svc-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .svc-block:nth-child(even) .svc-vis {
    order: 0;
  }
}

@media (max-width: 640px) {
  .stats-sec .stats-inner {
    grid-template-columns: 1fr;
  }

  .stats-sec .sb {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .stats-sec .sb:first-child {
    border-top: none;
  }

  .stats-sec .sb:nth-child(3) {
    grid-column: auto;
  }

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

  .form-wrap {
    padding: 2rem;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ft-bot {
    flex-direction: column;
    text-align: center;
  }
}

/* ——— Services page: intro hero (centered, matches contact hero rhythm) ——— */
.svc-page-hdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5rem) max(var(--section-x), env(safe-area-inset-left, 0px))
    clamp(2rem, 3vw, 2.5rem) max(var(--section-x), env(safe-area-inset-right, 0px));
  background: var(--gradient-page-hero);
  border-bottom: 1px solid var(--border-ui);
  position: relative;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
}

.svc-page-hdr::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -12%;
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  background: var(--hero-mesh-bloom);
  pointer-events: none;
  z-index: 0;
}

.svc-page-hdr .eyebrow,
.svc-page-hdr h1,
.svc-page-hdr > p {
  position: relative;
  z-index: 2;
}

.svc-page-hdr h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: var(--text-page-headline);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.svc-page-hdr h1 span {
  color: var(--cyan-dk);
}

.svc-page-hdr > p {
  color: var(--muted2);
  font-size: var(--text-body);
  max-width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ——— Services accordion ——— */
.accord-sec {
  background: var(--white);
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--section-x) clamp(3rem, 6vw, 5rem);
}

.accord-item {
  border-bottom: 1px solid var(--border-ui);
  scroll-margin-top: 80px;
}

.accord-item:first-child {
  border-top: 1px solid var(--border-ui);
}

.accord-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  transition: color 0.2s ease;
}

.accord-head:hover {
  color: var(--cyan-dk);
}

.accord-num {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  color: var(--cyan-dk);
  text-transform: uppercase;
  flex-shrink: 0;
  width: 2rem;
}

.accord-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw + 0.4rem, 1.85rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  flex-grow: 1;
}

.accord-icon {
  flex-shrink: 0;
  color: var(--cyan-dk);
  transition: transform 0.35s var(--ease-out-expo);
}

.accord-item.is-open .accord-icon {
  transform: rotate(180deg);
}

.accord-item--emergency .accord-title {
  color: var(--cyan-dk);
}

/* Smooth height animation using grid-template-rows trick */
.accord-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out-expo);
}

.accord-item.is-open .accord-body {
  grid-template-rows: 1fr;
}

.accord-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 0 3.25rem; /* indent under the number */
}

.accord-item.is-open .accord-inner {
  padding-bottom: 2rem;
}

.accord-inner p {
  color: var(--muted2);
  font-size: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 60ch;
}

.accord-inner .svc-details {
  margin-bottom: 1.5rem;
}

.accord-inner .btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 45, 61, 0.94);
  color: var(--text-on-ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.12);
}

.accord-inner .btn-p:hover {
  background: rgba(15, 45, 61, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(15, 45, 61, 0.18);
  color: var(--text-on-ink);
}

.accord-inner .btn-p:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.accord-head:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (max-width: 640px) {
  .accord-inner {
    padding-left: 0;
  }
  .accord-title {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
  }
}

/* ——— Services 3×3 Grid ——— */
.svc-grid-sec {
  background: var(--ink);
  padding: var(--section-y) var(--section-x);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(129, 195, 215, 0.10);
  border: 1px solid rgba(129, 195, 215, 0.10);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.svc-card {
  background: var(--ink2);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: background 0.22s ease;
  min-height: 20rem;
  scroll-margin-top: 80px;
}

.svc-card:hover {
  background: var(--ink3);
}

.svc-card-num {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.svc-card-title {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.8vw + 0.5rem, 2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
  flex-shrink: 0;
  text-transform: uppercase;
}

.svc-card-desc {
  font-size: var(--text-sm);
  line-height: 1.72;
  color: var(--text-on-dark-muted);
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-b);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-dk);
  transition: color 0.2s ease, gap 0.2s ease;
  flex-shrink: 0;
}

.svc-card:hover .svc-card-cta {
  color: var(--cyan);
  gap: 0.7rem;
}

.svc-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -3px;
  z-index: 2;
}

/* Emergency card — accent treatment for urgency */
.svc-card--emergency {
  background: linear-gradient(145deg, rgba(22, 66, 91, 0.95) 0%, var(--ink2) 100%);
  box-shadow: inset 0 0 0 1px rgba(129, 195, 215, 0.18);
}

.svc-card--emergency .svc-card-title {
  color: var(--cyan);
}

.svc-card--emergency:hover {
  background: linear-gradient(145deg, var(--ink3) 0%, var(--ink2) 100%);
}

@media (max-width: 920px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-card {
    min-height: 17rem;
  }
}

@media (max-width: 540px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    min-height: auto;
    padding: 1.75rem 1.5rem;
  }
}

/* ——— Area landing pages (water-delivery-*.html) ——— */
.page-area .area-detail-sec {
  background: var(--surface);
}

.area-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}

.area-detail-text h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--text-section-title);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.area-detail-text h2 span {
  color: var(--cyan-dk);
}

.area-detail-text > p {
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: var(--text-body);
}

.area-services-quick h3 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.area-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.area-cta-row .btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 45, 61, 0.94);
  color: var(--text-on-ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-cta);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 10px 34px rgba(15, 45, 61, 0.14);
}

.area-cta-row .btn-p:hover {
  background: rgba(15, 45, 61, 0.98);
  transform: translateY(-2px);
}

.area-cta-row .btn-p--outline-light {
  background: transparent;
  border: 1.5px solid var(--ink2);
  color: var(--ink2);
  box-shadow: none;
}

.area-cta-row .btn-p--outline-light:hover {
  background: rgba(22, 66, 91, 0.06);
  border-color: var(--ink);
  color: var(--ink);
}

.area-nbhd-card,
.area-hours-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem 1.75rem;
  color: var(--white);
}

.area-nbhd-card {
  margin-bottom: 1.25rem;
}

.area-nbhd-card h3,
.area-hours-card h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.area-nbhd-card .tags {
  margin-top: 0;
}

.area-hours-card .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}

.area-hours-card .hours-row:last-child {
  border-bottom: none;
}

.area-hours-card .hours-day {
  color: var(--text-on-dark-muted);
}

.area-hours-card .hours-time {
  color: var(--text-on-dark-muted);
  font-weight: 600;
}

.area-hours-card .hours-time.avail {
  color: var(--cyan);
}

/* "Other areas" cross-links */
.area-other-sec {
  background: var(--ink2);
  color: var(--white);
  text-align: center;
}

.area-other-sec .sh {
  color: var(--white);
}

.area-other-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.area-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  background: rgba(129, 195, 215, 0.08);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.area-link:hover {
  border-color: rgba(129, 195, 215, 0.5);
  background: rgba(129, 195, 215, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .area-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .area-cta-row {
    flex-direction: column;
  }
  .area-cta-row .btn-p {
    width: 100%;
    justify-content: center;
  }
}
