/* =========================================================
   Senok Air Medevac — Redesign Design System
   Brand colors kept exactly as on the live site:
   Red #ce070e / Yellow #ffcc02 / Green #008000
   ========================================================= */

:root {
  --red: #ce070e;
  --red-dark: #a10509;
  --red-tint: #fdeceb;
  --yellow: #ffcc02;
  --yellow-dark: #e0b400;
  --green: #008000;
  --green-dark: #036b03;
  --green-tint: #e7f3e7;

  --ink: #15181d;
  --ink-soft: #545b66;
  --ink-faint: #899099;

  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --border: #e9e9ec;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 18, 20, 0.06), 0 1px 1px rgba(15, 18, 20, 0.04);
  --shadow-md: 0 12px 24px -12px rgba(15, 18, 20, 0.22);
  --shadow-lg: 0 28px 60px -20px rgba(15, 18, 20, 0.28);

  --container: 1180px;
  --font-head: 'Poppins', 'Lato', sans-serif;
  --font-body: 'Lato', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section--green { background: var(--green); color: #fff; }
.section--ink { background: var(--ink); color: #fff; }

@media (max-width: 860px) {
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 30px; }
  .section-head p { font-size: 15px; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--ink); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--yellow); display: inline-block; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }
.section--green .section-head p,
.section--ink .section-head p { color: rgba(255,255,255,0.82); }
.section--green .eyebrow, .section--ink .eyebrow { color: var(--yellow); }
.section--green h2, .section--ink h2 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-red:hover { background: var(--red-dark); box-shadow: var(--shadow-md); }
.btn-outline-white { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-outline-ink { border-color: var(--border); color: var(--ink); }
.btn-outline-ink:hover { border-color: var(--ink); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Header ----------
   One slim sticky bar, everything inside the same 1180px container as the
   rest of the page: brand — inline nav — hotline + quote CTA.
   Below 1024px the nav collapses into a plain drop-down panel. */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 30px; height: 74px; }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px; flex-shrink: 0;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -6px rgba(206, 7, 14, 0.75);
}
.brand-mark svg { width: 17px; height: 17px; fill: currentColor; }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-family: var(--font-head); font-weight: 800; font-size: 17px; letter-spacing: -0.015em; color: var(--ink); }
.brand-name small { font-family: var(--font-head); font-weight: 700; font-size: 9.5px; letter-spacing: 0.17em; text-transform: uppercase; color: var(--red); }

/* Inline links */
.nav-menu { display: flex; align-items: center; gap: 2px; margin-right: auto; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--ink-soft); background: none; border: none;
  padding: 9px 13px; border-radius: var(--radius-pill);
  transition: color .18s ease, background .18s ease;
}
.nav-link:hover { color: var(--ink); background: var(--bg-alt); }
.nav-link.active { color: var(--red); background: var(--red-tint); }
.nav-link .chev { width: 10px; height: 7px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; opacity: .65; transition: transform .2s ease; }

/* Services dropdown */
.nav-drop { position: relative; }
.nav-drop-panel {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 262px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-drop-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink);
  white-space: nowrap;
}
.nav-drop-panel a:hover { background: var(--bg-alt); color: var(--red); }
.sd { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sd-red { background: var(--red); }
.sd-green { background: var(--green); }
.sd-yellow { background: var(--yellow); }
.nav-drop-sep { display: block; height: 1px; background: var(--border); margin: 8px 12px; }
.nav-drop-all { justify-content: space-between; color: var(--red) !important; font-size: 13px !important; }

@media (min-width: 1025px) {
  .nav-drop:hover .nav-drop-panel,
  .nav-drop:focus-within .nav-drop-panel { opacity: 1; visibility: visible; transform: none; }
  .nav-drop:hover .chev, .nav-drop:focus-within .chev { transform: rotate(180deg); }
  /* Invisible bridge over the 10px gap, so travelling from the
     button to the panel does not drop the hover. */
  .nav-drop-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
}

/* Right-hand actions */
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-tel { display: inline-flex; align-items: center; gap: 9px; }
.nav-tel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 1.6s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.nav-tel-txt { display: flex; flex-direction: column; line-height: 1.15; }
.nav-tel-txt small { font-family: var(--font-head); font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.nav-tel-txt strong { font-family: var(--font-head); font-weight: 800; font-size: 14.5px; color: var(--ink); }
.nav-tel:hover strong { color: var(--red); }

.nav-menu-tel { display: none; }

.nav-burger {
  display: none; width: 42px; height: 42px; padding: 0; gap: 4px;
  flex-direction: column; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
}
.nav-burger span { display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .22s ease, opacity .18s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Shared with the footer */
.ext-arrow { font-size: 12px; }
.ext-logo { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.footer-group-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--yellow); margin-bottom: 20px; }
.footer-group-link:hover { color: #fff; }
.footer-group-link .ext-logo { width: 30px; height: 30px; }

@media (max-width: 1180px) {
  .nav { gap: 20px; }
  .nav-tel-txt small { display: none; }
}

/* Collapsed nav */
@media (max-width: 1024px) {
  .nav { height: 66px; gap: 14px; justify-content: space-between; }
  .nav-burger { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px; margin-right: 0;
    background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    padding: 12px max(24px, calc(50% - (var(--container) / 2) + 24px)) 20px;
    max-height: calc(100vh - 66px); overflow-y: auto;
  }
  .site-header.nav-open .nav-menu { display: flex; }
  .nav-menu .nav-link { width: 100%; justify-content: space-between; font-size: 16px; padding: 12px 14px; border-radius: var(--radius-sm); }
  .nav-drop { width: 100%; }
  .nav-drop-panel {
    display: none; position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; border: none; border-left: 2px solid var(--border); border-radius: 0;
    box-shadow: none; margin: 2px 0 6px 18px; padding: 0 0 0 6px;
  }
  .nav-drop.open .nav-drop-panel { display: block; }
  .nav-drop.open .chev { transform: rotate(180deg); }
  .nav-drop-panel a { padding: 11px 12px; white-space: normal; }
  /* The bar's hotline is hidden on small screens — restore it inside the panel. */
  .nav-menu-tel {
    display: flex; align-items: center; gap: 10px;
    margin-top: 12px; padding: 13px 14px;
    background: var(--red-tint); border-radius: var(--radius-sm);
  }
  .nav-menu-tel .nav-tel-txt small { display: block; color: var(--red-dark); }
  .nav-menu-tel .nav-tel-txt strong { font-size: 16px; color: var(--red-dark); }
}

@media (max-width: 680px) {
  .nav-tel { display: none; }
}
@media (max-width: 480px) {
  .brand-name strong { font-size: 15.5px; }
  .brand-mark { width: 32px; height: 32px; border-radius: 10px; }
  .btn-sm { padding: 8px 14px; font-size: 12.5px; }
  .nav-menu { padding-left: 18px; padding-right: 18px; }
}

/* ---------- Hero (rotating 3-image carousel, dark overlay — original treatment) ---------- */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,18,22,0.86) 10%, rgba(16,18,22,0.55) 55%, rgba(16,18,22,0.25) 100%);
}
/* .hero-inner also carries .container, so the copy lines up with every
   section below it instead of hugging the viewport edge on wide screens. */
.hero-inner { position: relative; z-index: 2; color: #fff; width: 100%; padding-top: 120px; padding-bottom: 130px; }
.hero-copy { max-width: 620px; }
.hero-inner .eyebrow { color: var(--yellow); }
.hero-inner .eyebrow::before { background: var(--red); }
.hero-inner h1 { font-size: clamp(28px, 5vw, 50px); color: #fff; margin-bottom: 16px; }
.hero-inner p { font-size: 17px; color: rgba(255,255,255,0.88); margin-bottom: 30px; max-width: 500px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Dots track the container gutter rather than the viewport gutter. */
/* Sits low in the hero, but clear of the stat card that overlaps the
   bottom 60px (34px on mobile) of the section. */
.hero-dots {
  position: absolute; z-index: 3; bottom: 88px; display: flex; gap: 8px;
  left: max(24px, calc(50% - (var(--container) / 2) + 24px));
}
.hero-dots button { width: 26px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.35); border: none; cursor: pointer; padding: 0; }
.hero-dots button.active { background: var(--yellow); }

@media (max-width: 860px) {
  .hero { min-height: 540px; }
  .hero-inner { padding-top: 84px; padding-bottom: 100px; }
}
@media (max-width: 700px) {
  .hero-dots { bottom: 78px; }
}
@media (max-width: 560px) {
  .hero { min-height: 500px; align-items: flex-end; }
  .hero-inner { padding-top: 90px; padding-bottom: 86px; }
  .hero-copy { max-width: 100%; }
  .hero-inner h1 { font-size: clamp(25px, 7.2vw, 32px); line-height: 1.2; }
  .hero-inner p { font-size: 15px; margin-bottom: 22px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1 1 140px; padding: 13px 16px; font-size: 14px; }
  .hero-dots { left: 18px; bottom: 54px; }
}

.stat-card {
  position: relative; z-index: 3;
  max-width: var(--container); margin: -60px auto 0; padding: 0 24px;
}
.stat-card-inner {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat { padding: 30px 24px; text-align: center; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 32px; }
.stat:nth-child(1) .num { color: var(--red); }
.stat:nth-child(2) .num { color: var(--green); }
.stat:nth-child(3) .num { color: var(--yellow-dark); }
.stat .label { color: var(--ink-soft); font-size: 13.5px; margin-top: 4px; }
@media (max-width: 700px) { .stat-card-inner { grid-template-columns: 1fr; } .stat { border-left: none; border-top: 1px solid var(--border); } .stat:first-child { border-top: none; } }
@media (max-width: 480px) { .stat { padding: 20px; } }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-6 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .grid-6 { grid-template-columns: repeat(2,1fr); } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-chip {
  position: absolute; top: 14px; left: 14px; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 19px; color: #fff;
  box-shadow: var(--shadow-sm);
}
.chip-red { background: var(--red); }
.chip-green { background: var(--green); }
.chip-yellow { background: var(--yellow); color: var(--ink); }
.card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 18.5px; margin-bottom: 8px; }
.card-body p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.card-link { margin-top: 14px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.card:hover .card-link { gap: 10px; }

/* ---------- Values / icon rows ---------- */
.value-item { text-align: center; padding: 8px; }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff;
}
.value-item h4 { font-size: 16px; margin-bottom: 6px; }
.value-item p { font-size: 13.5px; color: var(--ink-soft); }
.section--green .value-item h4, .section--green .value-item p { color: #fff; }
.section--green .value-item p { color: rgba(255,255,255,0.82); }

/* ---------- Overview split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split img, .split .media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.14);
  padding: 8px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
  margin-bottom: 16px; color: #fff;
}

/* ---------- Testimonials ---------- */
.t-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.t-quote { color: var(--yellow-dark); font-size: 30px; font-family: Georgia, serif; line-height: 1; margin-bottom: 10px; }
.t-card p.body { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; min-height: 90px; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: var(--font-head); flex-shrink: 0; }
.t-person .name { font-weight: 700; font-size: 14px; }
.t-person .role { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); border-radius: var(--radius-lg); padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow-lg); }
.cta-band h3 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 15px; }
.cta-band .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 480px) {
  .cta-band { padding: 28px 22px; border-radius: var(--radius-md); }
  .cta-band h3 { font-size: 21px; }
  .cta-band .ctas { width: 100%; }
  .cta-band .ctas .btn { flex: 1 1 auto; text-align: center; }
}

/* ---------- Page header (interior pages) — original dark-overlay treatment ---------- */
.page-hero { position: relative; min-height: 340px; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,15,0.06) 0%, rgba(10,12,15,0.12) 40%, rgba(10,12,15,0.78) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: 60px 24px 40px; color: #fff; max-width: var(--container); margin: 0 auto; width: 100%; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--yellow); }
.page-hero-inner h1 { color: #fff; font-size: clamp(28px, 4vw, 40px); }
@media (max-width: 480px) {
  .page-hero { min-height: 260px; }
  .page-hero-inner { padding: 36px 18px 28px; }
  .page-hero-inner h1 { font-size: 25px; }
  .breadcrumb { font-size: 12px; }
}

/* ---------- Accordion (FAQ) ---------- */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.accordion-q { width: 100%; text-align: left; background: #fff; border: none; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.accordion-q .icon { transition: transform .2s ease; color: var(--red); font-size: 18px; }
.accordion-item.open .accordion-q .icon { transform: rotate(45deg); }
.accordion-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: var(--bg-alt); }
.accordion-item.open .accordion-a { max-height: 300px; }
.accordion-a p { padding: 16px 20px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Contact blocks ---------- */
.contact-strip { display: flex; gap: 18px; flex-wrap: wrap; }
.contact-pill { flex: 1; min-width: 220px; background: var(--red-tint); border-radius: var(--radius-md); padding: 20px; }
.contact-pill .label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--red-dark); font-weight: 700; margin-bottom: 6px; }
.contact-pill .value { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); }

/* ---------- Gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-grid a { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; display: block; }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gal-grid a:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px) { .gal-grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form-card { padding: 22px 18px; } }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-family: var(--font-body); font-size: 14.5px; background: var(--bg-alt);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.req { color: var(--red); }
button[disabled] { opacity: .6; cursor: not-allowed; }
button[disabled]:hover { transform: none; }

/* Honeypot — off-screen rather than display:none, which some bots skip. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  display: none; margin-bottom: 16px; padding: 13px 16px;
  border-radius: var(--radius-sm); font-size: 14.5px; line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--green-tint); color: var(--green-dark); border: 1px solid rgba(0, 128, 0, 0.28); }
.form-status.err { background: var(--red-tint); color: var(--red-dark); border: 1px solid rgba(206, 7, 14, 0.28); }

/* ---------- Map ---------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--red); color: #fff; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-head); font-size: 15px; margin-bottom: 18px; color: var(--yellow); }
.footer-grid li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-grid a:hover { color: var(--yellow); }
.footer-logo { height: 46px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.social-row a:hover { background: #fff; color: var(--red); border-color: #fff; }
.copyright { background: var(--ink); }
.copyright .container { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; font-size: 13px; color: rgba(255,255,255,0.65); flex-wrap: wrap; gap: 10px; }
.copyright a:hover { color: #fff; }

/* ---------- Floating mobile call button ---------- */
.float-call {
  position: fixed; bottom: 20px; right: 20px; z-index: 600;
  background: var(--red); color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: none; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--shadow-lg);
}
@media (max-width: 700px) { .float-call { display: flex; } }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }

/* ---------- Mobile refinements ----------
   Applied last so they win over the component-level rules above. */
@media (max-width: 860px) {
  /* Fixed-height embeds were sized for desktop columns. */
  .split .media iframe { height: 260px; }
  .map-frame iframe { height: 300px; }
  /* Answers can run past the desktop cap once they reflow to one column. */
  .accordion-item.open .accordion-a { max-height: 600px; }
}

@media (max-width: 700px) {
  /* Equal-height padding is dead space once the cards stack. */
  .t-card p.body { min-height: 0; }
  .t-card { padding: 22px; }
  /* Less of the card hangs over the hero when it is three rows tall. */
  .stat-card { margin-top: -34px; }
  /* Keep the floating call button clear of the last CTA. */
  .site-footer { padding-bottom: 10px; }
}

@media (max-width: 560px) {
  /* Comfortable tap targets throughout. */
  .social-row a { width: 40px; height: 40px; }
  .footer-grid li { margin-bottom: 13px; }
  .accordion-q { padding: 16px 16px; font-size: 14.5px; gap: 12px; }
  .btn { padding: 13px 22px; }
  .copyright .container { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 18px; }
  .contact-pill { min-width: 0; }
  .gal-grid { gap: 10px; }
  .grid { gap: 18px; }
  .split { gap: 32px; }
  .section-head { margin-bottom: 26px; }
  /* Long unbroken strings (phone numbers, URLs) must never widen the page. */
  body { overflow-x: hidden; }
  h1, h2, h3, h4, p, a { overflow-wrap: break-word; }
}
