/* ==========================================================================
   Cardona Roofing Inc — styles.css
   Palette: red + white  |  Type: Montserrat (headlines) + Inter (body)
   ========================================================================== */

:root {
  /* Color tokens */
  --red: #C8102E;
  --red-dark: #A00D25;
  --red-deep: #7E0A1D;
  --white: #FFFFFF;
  --off-white: #F7F7F8;
  --ink: #1A1A1E;
  --ink-soft: #44444C;
  --border: #E4E4E8;
  --dark: #17171B;

  /* Typography */
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Rhythm */
  --shell: 1170px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(23, 23, 27, 0.10);
  --transition: 200ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;             /* desktop body */
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ---- Type scale (user rules) ---- */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(28px, 4.2vw, 48px); font-weight: 900; letter-spacing: -0.01em; }
h2 { font-size: clamp(26px, 3vw, 34px);  font-weight: 800; }
h3 { font-size: clamp(20px, 2vw, 24px);  font-weight: 700; }
p  { margin: 0 0 1em; max-width: 66ch; }  /* line-length control */

a { color: var(--red); }
button, input, select, textarea { font-family: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ---- Layout shell ---- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 20px; }
.shell--narrow { max-width: 860px; }

section { padding: 80px 0; }
@media (max-width: 767px) { section { padding: 48px 0; } }

/* Offset anchor targets so the sticky header doesn't cover section headings */
section[id], [id="hero-form"] { scroll-margin-top: 90px; }

.icon { width: 1.2em; height: 1.2em; flex: none; }
.icon--check { color: var(--red); }

.rule { width: 90px; height: 5px; background: var(--red); margin: 0 0 24px; border-radius: 3px; }

/* ---- Buttons: CTA text 18–22px bold ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; min-height: 48px;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}
.btn--lg { font-size: 20px; padding: 16px 36px; }
.header__cta { white-space: nowrap; }
.btn--block { width: 100%; }
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn--light { background: var(--white); color: var(--red); }
.btn--light:hover { background: #F1E3E6; }

/* ==========================================================================
   Utility bar + header
   ========================================================================== */
.utility-bar { background: var(--red-deep); color: var(--white); font-size: 16px; }
.utility-bar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding-top: 2px; padding-bottom: 2px;
}
.utility-bar__phones { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.utility-bar__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 600; text-decoration: none; white-space: nowrap;
  padding: 9px 0;   /* 26px text -> 44px tap target; the bar's own padding was
                       trimmed to 2px so the bar barely grows. */
}
.utility-bar__phone:hover { text-decoration: underline; }
.utility-bar__lang { opacity: 0.85; font-weight: 500; }
@media (max-width: 860px) { .utility-bar__note { display: none; } }
@media (max-width: 520px) {
  .utility-bar__inner { justify-content: center; }
  .utility-bar__phones { gap: 2px; }  /* inherits 16px — never shrink body text on mobile */
}

.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__logo { height: 52px; width: auto; }
@media (max-width: 520px) { .brand__logo { height: 42px; } }
/* Footer sits on a dark background — lift the logo out of it */
.brand--footer .brand__logo { height: 56px; filter: brightness(0) invert(1); }

.nav { margin-left: auto; }
.nav__toggle {
  display: none; background: none; border: 0; color: var(--ink);
  padding: 8px; cursor: pointer;
}
.nav__toggle .icon { width: 28px; height: 28px; }
.nav__menu {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nav__menu a {
  display: block; padding: 10px 13px; white-space: nowrap;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--ink); text-decoration: none; border-radius: 6px;
  transition: color var(--transition), background-color var(--transition);
}
.nav__menu a:hover { color: var(--red); background: var(--off-white); }

@media (max-width: 900px) {
  .header__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--white);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    padding: 8px 12px 16px;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { padding: 14px 12px; }
}

/* ==========================================================================
   Media frames
   Every slot now holds a real photo; the neutral fill only shows for the
   moment before a lazy image decodes.
   ========================================================================== */
.img-slot {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: var(--off-white);
  min-height: 220px;
}
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 96px 0; background: var(--dark); color: var(--white); }
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
  opacity: 0.85;
}
/* Dark scrim: heavy behind the headline (left), falling off fast so the roof
   photo actually reads on the right. Left composites to ~#252320 → white text
   sits around 15:1 contrast, well past AA. */
.hero__overlay {
  position: absolute; inset: 0;
  /* Scrim strength was measured, not guessed: sampling the brightest pixels of
     the left 52% of hero-1600.webp (the region the copy sits on) gives white
     text a worst-case contrast of 8.9:1 at 0.70 — well past the 4.5:1 AA floor
     for body text. The previous 0.90/0.86 pair cleared AA by a huge margin but
     hid the roof photo almost completely. */
  background: linear-gradient(100deg,
    rgba(23,23,27,0.58) 0%,
    rgba(23,23,27,0.55) 34%,
    rgba(23,23,27,0.38) 52%,
    rgba(126,10,29,0.26) 100%);
}
@media (max-width: 900px) {
  /* Text is centered across the full width on mobile — scrim must be even */
  .hero__overlay { background: rgba(23, 23, 27, 0.60); }
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center;
}
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.16em; color: #FF8A9B;
  margin-bottom: 12px;
}
.hero__lead { font-size: 19px; color: #E8E8EA; }
.hero__points { list-style: none; margin: 20px 0 28px; padding: 0; display: grid; gap: 10px; }
.hero__points li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.hero__points .icon--check { color: #FF6B81; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 900px) {
  .hero { padding: 56px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__copy { text-align: center; }
  .hero__points { justify-items: center; }
  .hero__actions { justify-content: center; }
}

/* ---- Lead form card ---- */
.lead-card {
  background: var(--white); color: var(--ink);
  border-radius: 16px; box-shadow: var(--shadow);
  padding: 32px 28px;
}
.lead-card__title {
  font-size: 26px; text-align: center; margin-bottom: 20px;   /* H2 floor: 26px */
}
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .lead-form__row { grid-template-columns: 1fr; } }

.field { margin-bottom: 14px; }
.field label {
  display: block; font-weight: 600; font-size: 16px; margin-bottom: 6px;
}
.field label span { color: var(--red); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  padding: 12px 14px; min-height: 48px;
  border: 1px solid #B9B9C0; border-radius: 8px; background: var(--white);
  transition: border-color var(--transition);
}
.field textarea { resize: vertical; }
.field input:hover, .field textarea:hover { border-color: var(--ink-soft); }
.field input:focus, .field textarea:focus { border-color: var(--red); outline-offset: 0; }
.field--error input, .field--error textarea { border-color: var(--red); }

.field--consent { display: flex; gap: 10px; align-items: flex-start; }
.field--consent input { width: 24px; height: 24px; min-height: 0; margin-top: 2px; flex: none; accent-color: var(--red); }
.field--consent label { font-weight: 400; font-size: 16px; color: var(--ink-soft); margin: 0; }

.lead-form__status { text-align: center; font-weight: 600; margin: 12px 0 0; min-height: 1.4em; }
.lead-form__status.is-ok { color: #157347; }
.lead-form__status.is-err { color: var(--red); }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { background: var(--red); color: var(--white); padding: 28px 0; }
.trust-bar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; font-size: 16px; line-height: 1.4; }
.trust-item .icon { width: 34px; height: 34px; }
.trust-item strong { font-family: var(--font-head); font-size: 16px; }
@media (max-width: 900px) { .trust-bar__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-bar__inner { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why us
   ========================================================================== */
.why__inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.img-slot--tall { min-height: 460px; height: 100%; }
/* Portrait photo: 4:5 frame fits the face AND the branded polo, instead of
   stretching to the text column's height and cropping the logo off. */
.img-slot--portrait {
  height: auto; min-height: 0; aspect-ratio: 4 / 5; align-self: center;
}
.img-slot--portrait img { object-position: center 18%; }
.checklist { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.checklist .icon--check { margin-top: 3px; }
@media (max-width: 900px) {
  .why__inner { grid-template-columns: 1fr; gap: 32px; }
  .img-slot--tall { min-height: 300px; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--off-white); }
.services__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.services__head p { margin: 0 auto; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card h3 { margin: 18px 0 8px; }
.card p { margin: 0; font-size: 16px; color: var(--ink-soft); }
.img-slot--card { min-height: 180px; }
.services__cta { text-align: center; margin-top: 40px; }
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews h2 { text-align: center; margin-bottom: 28px; }

/* ---- Google rating badge (links to live profile) ---- */
.google-badge {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  justify-content: center; text-align: left;
  max-width: 560px; margin: 0 auto 40px; padding: 20px 28px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  text-decoration: none; color: var(--ink);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.google-badge:hover {
  transform: translateY(-2px);
  border-color: #C7C7CE;
  box-shadow: 0 10px 30px rgba(23, 23, 27, 0.14);
}
.google-badge__logo { width: 40px; height: 40px; flex: none; }
.google-badge__score {
  font-family: var(--font-head); font-weight: 900; font-size: 40px;
  line-height: 1; color: var(--ink);
}
.google-badge__stars { color: #FBBC05; font-size: 22px; letter-spacing: 2px; }
.google-badge__meta { font-size: 16px; line-height: 1.4; color: var(--ink-soft); }
.google-badge__meta strong { color: var(--ink); }
@media (max-width: 520px) {
  .google-badge { justify-content: center; text-align: center; gap: 12px; padding: 20px; }
  .google-badge__meta { flex-basis: 100%; }
}

/* ---- Review cards (masonry-ish columns so varied lengths don't leave gaps) ---- */
.reviews__grid { columns: 3; column-gap: 24px; }
@media (max-width: 900px) { .reviews__grid { columns: 2; } }
@media (max-width: 620px)  { .reviews__grid { columns: 1; } }

.review {
  break-inside: avoid; margin: 0 0 24px; padding: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.review__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.review__stars { color: #FBBC05; font-size: 19px; letter-spacing: 2px; }
.review__source { width: 22px; height: 22px; flex: none; }
.review p { font-size: 16px; margin-bottom: 16px; color: var(--ink); }
.review footer { display: flex; flex-direction: column; gap: 2px; }
.review footer strong { font-family: var(--font-head); font-size: 16px; color: var(--ink); }
.review footer span { font-size: 15px; color: var(--ink-soft); }

.reviews__more { text-align: center; margin-top: 12px; }

/* ==========================================================================
   Projects — before/after slider
   ========================================================================== */
.projects { background: var(--off-white); }
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .projects__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.project h3 { margin: 18px 0 6px; font-size: 20px; }
.project p { font-size: 16px; color: var(--ink-soft); margin: 0; }

.ba {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow);
  background: #DDD; isolation: isolate; touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Before image sits on top, clipped from the left by --pos */
.ba__clip {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba__tag {
  position: absolute; bottom: 12px; z-index: 3;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(23, 23, 27, 0.78); color: var(--white);
  pointer-events: none;
}
.ba__tag--before { left: 12px; }
.ba__tag--after  { right: 12px; background: var(--red); }

/* Divider line + grab handle, positioned by --pos */
.ba__handle {
  position: absolute; top: 0; bottom: 0; z-index: 4;
  left: var(--pos, 50%); width: 3px; margin-left: -1.5px;
  background: var(--white); box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  pointer-events: none;
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  background-image:
    linear-gradient(45deg, transparent 46%, var(--red) 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--red) 46% 54%, transparent 54%);
  background-size: 11px 11px; background-position: 9px center, 20px center;
  background-repeat: no-repeat;
}

/* The range input is the real control: invisible but full-size and focusable */
.ba__range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0; padding: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
  background: transparent;
}
.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 44px; height: 44px; /* 44px touch target */
}
.ba__range::-moz-range-thumb { width: 44px; height: 44px; border: 0; opacity: 0; }
.ba:focus-within .ba__handle::after { outline: 3px solid var(--red); outline-offset: 3px; }

/* ==========================================================================
   Manufacturer credential strip
   ========================================================================== */
.brands { padding: 48px 0; border-top: 1px solid var(--border); }
.brands__label {
  text-align: center; max-width: none; margin: 0 0 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.brands__row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 40px 56px;
}
.brands__row img {
  height: 52px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: 0.65;
  transition: filter var(--transition), opacity var(--transition);
}
.brands__row img:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 600px) {
  .brands__row { gap: 28px 36px; }
  .brands__row img { height: 40px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--off-white); }
.faq h2 { text-align: center; margin-bottom: 36px; }
.faq__item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
  padding: 18px 22px; min-height: 48px;
  transition: color var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 3px solid var(--red); border-bottom: 3px solid var(--red);
  transform: rotate(45deg); transition: transform var(--transition);
}
.faq__item[open] summary { color: var(--red); }
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item p { padding: 0 22px 20px; margin: 0; color: var(--ink-soft); }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.closing {
  background: linear-gradient(120deg, var(--red-deep), var(--red));
  color: var(--white); text-align: center;
}
.closing__inner p { margin-left: auto; margin-right: auto; font-size: 19px; }
.closing__phone { color: var(--white); text-decoration: none; }
.closing__phone:hover { text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--dark); color: #C9C9CF; font-size: 16px; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding-top: 56px; padding-bottom: 48px;
}
.footer__brand p { margin-top: 16px; font-size: 16px; }
.footer__col h3 {
  color: var(--white); font-size: 16px; text-transform: uppercase;
  letter-spacing: 0.14em; margin-bottom: 14px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.footer__col a {
  color: #C9C9CF; text-decoration: none; transition: color var(--transition);
  display: inline-block; padding: 8px 0;   /* 20px text -> 36px tap target */
}
.footer__col a:hover { color: var(--white); }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__legal { background: #101013; font-size: 15px; }
.footer__legal-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.footer__legal a { color: #C9C9CF; display: inline-block; padding: 6px 0; }

/* ==========================================================================
   Mobile body size floor + reduced motion
   ========================================================================== */
@media (max-width: 767px) {
  body { font-size: 16px; }   /* never smaller on mobile */
  .hero__lead, .closing__inner p { font-size: 17px; }
}

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

/* ==========================================================================
   Service areas — Central Florida map
   ========================================================================== */
.areas { background: var(--white); }

.areas__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 56px; align-items: center;
}

.areas__map {
  /* Map-only colors, scoped so the global palette stays untouched */
  --map-water: #E3EBF0; --map-water-ink: #8FA3B0; --map-land: #F1F1F4;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
}
.areas__map svg { width: 100%; height: auto; display: block; }

.areas__map .land { fill: var(--map-land); }
.areas__map .sea  { fill: var(--map-water); }
.areas__map .county {
  fill: var(--red); fill-opacity: .16;
  stroke: var(--red); stroke-width: 1.6; stroke-linejoin: round;
  transition: fill-opacity var(--transition);
}
.areas__map .county.is-active { fill-opacity: .38; }

.areas__labels text {
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  fill: var(--ink); text-anchor: middle;
}
.areas__labels .sea-label {
  fill: var(--map-water-ink); font-size: 12px; letter-spacing: .18em;
}

.areas__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.area {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  transition: box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
}
.area:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #C7C7CE; }
.area__county { font-size: 20px; margin: 0 0 4px; }   /* H3 floor: 20px */
.area__cities { margin: 0; font-size: 16px; color: var(--ink-soft); max-width: none; }

.areas__note {
  margin: 32px auto 0; text-align: center; color: var(--ink-soft); font-size: 16px;
}

@media (max-width: 900px) {
  .areas__inner { grid-template-columns: 1fr; gap: 32px; }
  /* width:100% is required: auto side-margins disable grid stretch, so without
     it the box shrink-to-fits and the SVG falls back to its 300px intrinsic width. */
  .areas__map   { width: 100%; max-width: 420px; margin: 0 auto; }
}
