/* ===========================================================
   Ridgeline Heating and Air — Technical/Precision
   =========================================================== */

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

:root {
  --ink: #0F172A;
  --ink-muted: #475569;
  --surface: #FFFFFF;
  --bg: #F8FAFC;
  --rule: #E2E8F0;
  --rule-soft: #F1F5F9;

  --slate-deep: #0B1220;
  --slate-mid: #1E293B;
  --slate-300: #CBD5E1;

  --teal: #0F766E;
  --teal-bright: #14B8A6;
  --teal-glow: #5EEAD4;
  --amber: #F59E0B;

  --max: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section: clamp(4rem, 8vw, 6rem);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.6em;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; letter-spacing: 0; }
p { margin: 0 0 1em; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only:focus { position: static; width: auto; height: auto; clip: auto; background: var(--amber); padding: .5rem 1rem; }

.tabular { font-variant-numeric: tabular-nums; }
.mono { font-family: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace; font-weight: 500; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
  gap: 1rem;
}
.brand {
  display: inline-flex; flex-direction: column; gap: 2px;
  color: var(--ink); text-decoration: none;
}
.brand-mark {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 1.0625rem; letter-spacing: -0.025em; line-height: 1.1;
}
.brand-mark .brandname { color: var(--ink); }
.brand-mark .pulse {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-bright); margin-left: 6px; vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}
.brand-tag {
  font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  color: var(--ink); font-size: 15px; font-weight: 600;
  padding-block: 8px;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover { color: var(--teal); border-bottom-color: var(--teal-bright); text-decoration: none; }
.nav-list a[aria-current="page"] { color: var(--teal); border-bottom-color: var(--teal); }

.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  min-height: 44px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.btn-call:hover { background: #0c615b; text-decoration: none; transform: translateY(-1px); }
.btn-call svg { width: 16px; height: 16px; }
.btn-call .num { font-family: "IBM Plex Mono", monospace; font-variant-numeric: tabular-nums; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--rule);
  border-radius: 8px; padding: 8px; cursor: pointer; color: var(--ink);
  min-width: 44px; min-height: 44px;
}
.nav-toggle svg { width: 20px; height: 20px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav { display: none; }

@media (max-width: 780px) {
  .nav-list { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header .wrap { gap: 0.625rem; }
  .nav { gap: 0.625rem; }
  .btn-call { padding: 10px 14px; }
  .mobile-nav {
    display: none;
    border-top: 1px solid var(--rule);
    background: #fff;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
  .mobile-nav li { border-bottom: 1px solid var(--rule-soft); }
  .mobile-nav a {
    display: block; padding: 18px var(--gutter);
    color: var(--ink); font-weight: 600; font-size: 16px;
  }
  .mobile-nav a:hover { background: var(--rule-soft); text-decoration: none; }
}

@media (max-width: 460px) {
  .brand-tag { display: none; }
  .brand-mark { font-size: 1rem; }
  .btn-call { padding: 10px 12px; font-size: 13px; }
  .btn-call .num { font-size: 13px; }
  .site-header .wrap { gap: 0.5rem; padding-block: 12px; }
}

/* ---------- HERO ---------- */
.hero {
  background: var(--slate-deep);
  color: #E2E8F0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.15), transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(11, 18, 32, 1) 100%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding-block: clamp(4rem, 9vw, 7rem);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-glow);
  margin-bottom: 1.25rem;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright);
  box-shadow: 0 0 12px var(--teal-bright);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.hero h1 { color: #F8FAFC; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--teal-glow); }
.hero-lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: #94A3B8;
  max-width: 38ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal-bright); color: #0B1220;
  padding: 14px 22px; border-radius: 10px;
  font-weight: 700; font-size: 16px;
  border: 1px solid transparent;
  min-height: 48px;
  transition: background .15s ease, transform .15s ease;
}
.btn-primary:hover { background: #2DD4BF; text-decoration: none; transform: translateY(-1px); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #E2E8F0;
  padding: 14px 22px; border-radius: 10px;
  font-weight: 600; font-size: 16px;
  border: 1px solid rgba(226, 232, 240, 0.2);
  min-height: 48px;
}
.btn-ghost:hover { background: rgba(94, 234, 212, 0.08); border-color: var(--teal-glow); color: var(--teal-glow); text-decoration: none; }

/* Hero stat card */
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 16px;
  padding: 1.75rem;
  display: grid;
  gap: 0;
}
.stat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(94, 234, 212, 0.12);
}
.stat-row:last-child { border-bottom: 0; padding-bottom: 0; }
.stat-row:first-child { padding-top: 0; }
.stat-num {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 2.5rem; letter-spacing: -0.04em; color: #F8FAFC;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.stat-num.accent { color: var(--teal-glow); }
.stat-label {
  font-size: 13px; font-weight: 600; color: #94A3B8;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.stat-sub {
  font-size: 12px; color: #64748B;
  display: block; margin-top: 4px;
}
.stars { color: var(--amber); letter-spacing: 0.05em; font-size: 14px; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 4rem; }
}

/* ---------- SECTIONS ---------- */
.section { padding-block: var(--section); }
.section.alt { background: var(--surface); }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.section-num {
  font-family: "IBM Plex Mono", monospace; font-weight: 500;
  font-size: 12px; color: var(--ink-muted);
  letter-spacing: 0.1em;
  align-self: start;
  padding-top: 8px;
}
.section-title h2 { margin: 0 0 0.5em; }
.section-title p { margin: 0; color: var(--ink-muted); max-width: 60ch; font-size: 1.0625rem; }

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.service {
  background: #fff;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: background .15s ease;
}
.service:hover { background: var(--rule-soft); }
.service-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 22px; height: 22px; }
.service h3 { margin-bottom: 0.5rem; font-size: 1.1875rem; }
.service p { color: var(--ink-muted); font-size: 15px; margin: 0; flex-grow: 1; }
.service .more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 1.25rem;
  font-size: 13px; font-weight: 600;
  color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Spec strip — data row under hero */
.specs {
  background: #fff;
  border-block: 1px solid var(--rule);
  padding-block: 2rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.specs-item { border-left: 2px solid var(--teal); padding-left: 1rem; }
.specs-num {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 1.875rem; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink); line-height: 1;
}
.specs-label {
  font-size: 12px; font-weight: 600; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Why us — process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: #fff;
  padding: 1.75rem;
  border: 1px solid var(--rule);
  border-radius: 12px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "IBM Plex Mono", monospace; font-weight: 500;
  font-size: 12px; color: var(--teal);
  display: block; margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}
.step h4 { margin-bottom: 0.5rem; font-family: "Space Grotesk", sans-serif; font-size: 1.0625rem; }
.step p { color: var(--ink-muted); font-size: 14px; margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* Reviews band */
.review-band {
  background: var(--slate-mid);
  color: #E2E8F0;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.review-band .wrap {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 3rem;
  align-items: center;
}
.review-headline h2 { color: #F8FAFC; }
.review-headline p { color: #94A3B8; margin: 0; }
.review-stat {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.review-stat .big {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 3.5rem; letter-spacing: -0.04em;
  color: var(--teal-glow); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.review-stat .stars { font-size: 1.25rem; }
.review-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(94, 234, 212, 0.14);
  border-radius: 10px;
  padding: 1.25rem;
}
.review-card .stars { font-size: 13px; margin-bottom: 0.5rem; display: block; }
.review-card p { font-size: 14px; color: #CBD5E1; margin: 0 0 0.75rem; line-height: 1.55; font-style: italic; }
.review-card .who {
  font-size: 12px; color: #94A3B8; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .review-band .wrap { grid-template-columns: 1fr; gap: 2rem; }
  .review-cards { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.faq-item { background: #fff; }
.faq-item summary {
  cursor: pointer; padding: 1.25rem 1.5rem;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 1.0625rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 12px; height: 12px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(45deg); transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.5rem; color: var(--ink-muted); font-size: 15px; }
.faq-item .faq-body p { margin: 0; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--slate-deep) 0%, var(--slate-mid) 100%);
  color: #fff;
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(20, 184, 166, 0.2), transparent 50%);
  pointer-events: none;
}
.cta-strip > * { position: relative; }
.cta-strip h2 { color: #F8FAFC; margin-bottom: 0.5rem; }
.cta-strip p { color: #94A3B8; margin: 0; }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-self: end; }
@media (max-width: 780px) {
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip .actions { justify-self: start; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #0B1220;
  color: #94A3B8;
  padding-block: 3rem 2rem;
  border-top: 1px solid rgba(94, 234, 212, 0.12);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.foot-brand .brand-mark { color: #F8FAFC; font-size: 1.1875rem; }
.foot-brand .brand-tag { color: #64748B; margin-block: 8px; }
.foot-brand p { margin-top: 0.75rem; color: #94A3B8; font-size: 14px; max-width: 36ch; }
.foot-col h4 {
  color: #CBD5E1;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  font-family: "IBM Plex Sans", sans-serif;
  margin-bottom: 1rem;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 8px; font-size: 14px; }
.foot-col a { color: #94A3B8; }
.foot-col a:hover { color: var(--teal-glow); text-decoration: none; }
.foot-bottom {
  border-top: 1px solid rgba(94, 234, 212, 0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 13px; color: #64748B;
}
.foot-bottom a { color: var(--teal-glow); }
@media (max-width: 780px) {
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Services page ---------- */
.page-head {
  background: var(--slate-deep);
  color: #E2E8F0;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(94, 234, 212, 0.18);
}
.page-head .eyebrow {
  font-family: "IBM Plex Mono", monospace; font-size: 12px;
  color: var(--teal-glow); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1rem; display: block;
}
.page-head h1 { color: #F8FAFC; max-width: 22ch; }
.page-head p { color: #94A3B8; max-width: 60ch; font-size: 1.0625rem; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-block: 3rem;
  border-bottom: 1px solid var(--rule);
}
.service-detail:last-child { border-bottom: 0; }
.service-detail .ix {
  font-family: "IBM Plex Mono", monospace; font-size: 12px;
  color: var(--teal); letter-spacing: 0.12em; margin-bottom: 0.5rem;
}
.service-detail h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
.service-detail .desc { color: var(--ink-muted); font-size: 1.0625rem; max-width: 30ch; }
.service-detail-body p { color: var(--ink); margin-bottom: 1rem; }
.service-detail-body ul {
  list-style: none; padding: 0; margin: 1.25rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1.5rem;
}
.service-detail-body li {
  position: relative; padding-left: 1.5rem;
  font-size: 15px; color: var(--ink-muted);
}
.service-detail-body li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 2px; background: var(--teal);
}
@media (max-width: 780px) {
  .service-detail { grid-template-columns: 1fr; gap: 1rem; padding-block: 2rem; }
  .service-detail-body ul { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  padding-block: var(--section);
}
.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.contact-row:last-child { border-bottom: 0; }
.contact-label {
  font-family: "IBM Plex Mono", monospace; font-size: 12px;
  color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase;
  padding-top: 4px;
}
.contact-value { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.25rem; }
.contact-value.tabular { font-family: "IBM Plex Mono", monospace; font-weight: 500; }
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--teal); text-decoration: none; }
.contact-value .sub { display: block; font-family: "IBM Plex Sans", sans-serif; font-weight: 400; font-size: 14px; color: var(--ink-muted); margin-top: 4px; }
.hours-table { display: grid; gap: 6px; font-size: 15px; }
.hours-table .row { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; }
.hours-table .row .day { color: var(--ink-muted); font-weight: 600; }
.hours-table .row .time { font-family: "IBM Plex Mono", monospace; font-weight: 500; font-variant-numeric: tabular-nums; }
.hours-table .row .time.closed { color: #94A3B8; }

.contact-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.contact-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-card .lede { color: var(--ink-muted); margin-bottom: 1.5rem; font-size: 15px; }
.contact-card .btn-primary { background: var(--teal); color: #fff; width: 100%; justify-content: center; }
.contact-card .btn-primary:hover { background: #0c615b; }
.contact-card .or { display: block; text-align: center; font-size: 12px; color: var(--ink-muted); margin: 1rem 0; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-card form { display: grid; gap: 1rem; }
.contact-card label {
  display: block; font-size: 12px; font-weight: 600; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.contact-card input, .contact-card textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--rule); border-radius: 8px;
  font-family: inherit; font-size: 15px;
  background: var(--bg);
  min-height: 44px;
}
.contact-card textarea { resize: vertical; min-height: 110px; }
.contact-card input:focus, .contact-card textarea:focus {
  outline: 2px solid var(--teal-bright); outline-offset: 0;
  border-color: var(--teal-bright); background: #fff;
}
.contact-card button {
  background: var(--teal); color: #fff;
  padding: 14px 22px; border-radius: 10px;
  font-weight: 700; font-size: 16px;
  border: 0; cursor: pointer;
  min-height: 48px;
  font-family: inherit;
}
.contact-card button:hover { background: #0c615b; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 3.5rem; }
}

/* Service areas list (footer-style chip cluster) */
.areas {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 1rem;
}
.areas .chip {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-muted);
  background: var(--rule-soft);
  border: 1px solid var(--rule);
  border-radius: 100px;
}
.areas .chip.primary { background: rgba(15,118,110,0.06); color: var(--teal); border-color: rgba(15,118,110,0.2); font-weight: 600; }

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