/* ==========================================================================
   Quick Gas Repair — style.css
   Design tokens: Ink Navy / Flame Amber / Ember / Warm Paper / Steel
   Signature motif: the stove dial — circular knob shapes with a tick mark
   ========================================================================== */

:root {
  --ink: #14213d;
  --ink-2: #1d2f52;
  --flame: #ff7a1a;
  --flame-2: #ffa552;
  --ember: #c2410c;
  --paper: #fbf8f3;
  --steel: #eef2f6;
  --steel-2: #dde5ed;
  --text: #20242b;
  --muted: #5b6572;
  --line: #e4e0d6;
  --white: #ffffff;
  --success: #1c7c4c;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-s: 0 2px 10px rgba(20, 33, 61, 0.08);
  --shadow-m: 0 10px 30px rgba(20, 33, 61, 0.12);
  --container: 1180px;
}

/* -------------------------------------------------- reset -------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--muted); }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
@media (max-width: 720px) {
  section { padding: 44px 0; }
}

:focus-visible {
  outline: 3px solid var(--flame);
  outline-offset: 2px;
}

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

/* -------------------------------------------------- eyebrow / labels --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--flame);
  border-radius: 2px;
}

/* -------------------------------------------------- dial badge --------- */
/* Signature element: a stove-knob dial used as icon backdrop / numbering */
.dial {
  --dial-rot: 0deg;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #24345c, var(--ink) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08), var(--shadow-s);
}
.dial::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 12px;
  background: var(--flame);
  border-radius: 2px;
  transform: translateX(-50%) rotate(var(--dial-rot));
  transform-origin: 50% 22px;
}
.dial svg { width: 24px; height: 24px; color: var(--white); position: relative; z-index: 1; }
.dial-sm { width: 40px; height: 40px; }
.dial-sm::before { height: 9px; top: 5px; transform-origin: 50% 15px; }
.dial-sm svg { width: 18px; height: 18px; }

/* -------------------------------------------------- buttons ------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }
.btn-call {
  background: var(--flame);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35);
}
.btn-call:hover { background: var(--ember); box-shadow: 0 10px 24px rgba(194, 65, 12, 0.4); }
.btn-whatsapp {
  background: var(--white);
  color: var(--ink);
  border-color: var(--steel-2);
}
.btn-whatsapp:hover { border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* -------------------------------------------------- header -------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.logo .flame-mark { width: 34px; height: 34px; color: var(--flame); }
.logo-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a.active { color: var(--ember); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--flame);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-s);
}
.hamburger span, .hamburger::before, .hamburger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger::before { top: -7px; position: absolute; }
.hamburger::after { top: 7px; position: absolute; }
.hamburger.is-open span { opacity: 0; }
.hamburger.is-open::before { transform: rotate(45deg) translate(0); top: 0; }
.hamburger.is-open::after { transform: rotate(-45deg); top: 0; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px 18px;
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-family: var(--font-display);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav .header-cta { margin-top: 12px; }

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* -------------------------------------------------- hero --------------- */
.hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,122,26,0.25), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0 64px;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow { color: var(--flame-2); }
.hero-copy .eyebrow::before { background: var(--flame-2); }
.hero h1 {
  color: var(--white);
  font-size: clamp(30px, 4.2vw, 46px);
  margin-bottom: 18px;
}
.hero-copy p.lead {
  color: #cdd6e6;
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 26px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  color: #b9c3d6;
}
.hero-areas span {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}
.hero-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  aspect-ratio: 4/3.1;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .badge-float {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(20,33,61,0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-m);
  font-family: var(--font-display);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-media { order: -1; }
}

/* -------------------------------------------------- trust cards -------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
}
.trust-card h3 { font-size: 17px; margin: 12px 0 6px; }
.trust-card p { font-size: 14.5px; margin: 0; }
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- section heading ---- */
.section-head { max-width: 700px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); }
.section-head p { font-size: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* -------------------------------------------------- service cards ------ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-s); transform: translateY(-3px); }
.service-card h3 { font-size: 16.5px; margin-top: 12px; }
.service-card p { font-size: 14px; flex-grow: 1; }
.service-card .btn { margin-top: 10px; align-self: flex-start; padding: 9px 16px; font-size: 13.5px; }
@media (max-width: 980px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------- slider -------------- */
.slider {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  background: var(--ink);
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.65,0,.35,1);
  aspect-ratio: 16/8.2;
}
.slider-slide {
  min-width: 100%;
  position: relative;
}
.slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 22px;
  background: linear-gradient(0deg, rgba(20,33,61,0.88), transparent);
  color: #fff;
}
.slider-caption .eyebrow { color: var(--flame-2); margin-bottom: 6px; }
.slider-caption .eyebrow::before { background: var(--flame-2); }
.slider-caption h3 { color: #fff; margin: 0; font-size: 20px; }
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  z-index: 2;
}
.slider-nav svg { width: 20px; height: 20px; }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-dots {
  position: absolute;
  bottom: 14px; right: 20px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.slider-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  padding: 0;
}
.slider-dots button.is-active { background: var(--flame); width: 20px; border-radius: 6px; }

/* -------------------------------------------------- content / prose ---- */
.prose-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: start;
}
.prose h2 { font-size: clamp(22px, 2.8vw, 28px); }
.prose h3 { font-size: 18px; margin-top: 26px; }
.prose p { font-size: 15.5px; }
.prose ul { margin: 10px 0 18px; }
.prose li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--flame);
}
.side-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 30px 26px;
}
.side-card h3 { color: #fff; }
.side-card p { color: #cdd6e6; font-size: 14.5px; }
.side-card .btn-call { width: 100%; margin-bottom: 10px; }
.side-card .btn-ghost { width: 100%; }
@media (max-width: 900px) { .prose-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------- locations ---------- */
.location-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 18px;
}
.location-card h3 { font-size: 16px; display: flex; align-items: center; gap: 8px; }
.location-card h3 svg { width: 16px; height: 16px; color: var(--flame); }
.location-card p { font-size: 13.5px; margin: 0; }
@media (max-width: 980px) {
  .location-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .location-strip { grid-template-columns: 1fr 1fr; }
}

/* -------------------------------------------------- why-us ------------- */
.why-panel {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.why-panel h2 { color: #fff; }
.why-panel > p { color: #cdd6e6; max-width: 42ch; }
.why-list { display: grid; gap: 14px; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-item svg { width: 20px; height: 20px; color: var(--flame-2); flex-shrink: 0; margin-top: 2px; }
.why-item span { color: #dde5f2; font-size: 15px; }
@media (max-width: 900px) {
  .why-panel { grid-template-columns: 1fr; padding: 30px 24px; }
}

/* -------------------------------------------------- FAQ ----------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq-q .plus {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--steel);
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.faq-q .plus::before { top: 50%; left: 6px; right: 6px; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 6px; bottom: 6px; width: 2px; transform: translateX(-50%); transition: opacity 0.2s ease; }
.faq-item.is-open .plus::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p { padding: 0 4px 20px; font-size: 15px; }

/* -------------------------------------------------- final CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #fff;
  border-radius: var(--radius-l);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 4px; font-size: 24px; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-band .btn-call { background: #fff; color: var(--ember); box-shadow: none; }
.cta-band .btn-call:hover { background: var(--ink); color: #fff; }
.cta-band .btn-whatsapp { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn-whatsapp:hover { background: rgba(255,255,255,0.25); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------------------------------------------------- footer -------------- */
.site-footer {
  background: var(--ink);
  color: #b9c3d6;
  padding: 50px 0 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { color: #97a3ba; font-size: 14px; margin-top: 12px; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col li { display: block; color: #b9c3d6; font-size: 14.5px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #7c88a0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- sticky mobile bar -- */
.sticky-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(20,33,61,0.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
}
.sticky-call-bar a svg { width: 18px; height: 18px; }
.sticky-call-bar .bar-call { background: var(--flame); color: #fff; }
.sticky-call-bar .bar-whatsapp { background: #25d366; color: #fff; }
@media (max-width: 720px) {
  .sticky-call-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* -------------------------------------------------- breadcrumb ---------- */
.breadcrumb {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb span { margin: 0 6px; }

/* -------------------------------------------------- page hero (inner) -- */
.page-hero {
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  color: #fff;
  padding: 40px 0 54px;
}
.page-hero h1 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 10px; }
.page-hero p { color: #cdd6e6; max-width: 62ch; font-size: 16px; margin: 0 0 22px; }

/* -------------------------------------------------- safety note --------- */
.safety-note {
  display: flex;
  gap: 14px;
  background: #fff4ec;
  border: 1px solid #ffd9b8;
  border-radius: var(--radius-m);
  padding: 20px;
  margin: 26px 0;
}
.safety-note svg { width: 26px; height: 26px; color: var(--ember); flex-shrink: 0; }
.safety-note p { margin: 0; color: #6b3d1c; font-size: 14.5px; }
.safety-note strong { color: var(--ember); }

/* -------------------------------------------------- commercial band ----- */
.commercial-band {
  background: var(--steel);
  border-radius: var(--radius-l);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.commercial-band p { margin: 0; max-width: 56ch; }
@media (max-width: 760px) { .commercial-band { grid-template-columns: 1fr; text-align: center; } .commercial-band > div:last-child{ justify-content:center; } }

/* -------------------------------------------------- contact page -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
}
.contact-quick { display: grid; gap: 14px; margin-bottom: 24px; }
.contact-quick a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.contact-quick a svg { width: 20px; height: 20px; color: var(--flame); }
.contact-quick a:hover { border-color: var(--flame); }
.contact-areas-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.contact-areas-list span {
  padding: 6px 12px;
  background: var(--steel);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-display);
  color: var(--ink);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--steel-2);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--paper);
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--flame);
  outline: none;
  background: #fff;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d64545; }
.field-error { color: #d64545; font-size: 12.5px; margin-top: 5px; display: none; }
.field.has-error .field-error { display: block; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* -------------------------------------------------- map/local area note - */
.local-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .local-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px) { .local-grid { grid-template-columns: 1fr 1fr; } }

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.bg-steel { background: var(--steel); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
