/* =====================================================================
   Plomería Cuadrado — bespoke
   Palette taken by code from their own logo (PIL, hue-bucketed sampling of
   the saturated pixels): the navy of the wordmark, the turquoise of the
   water splash, the coral of the hibiscus, the gold of the sunset.
   Geometry motif: squares. The business is called Cuadrado, so nothing is
   rounded more than 3px and a faint square grid runs behind the dark bands.
   ===================================================================== */

:root {
  --navy-dd: #131a2b;
  --navy-d:  #1a2338;
  --navy:    #212b44;   /* wordmark navy, measured from the logo */
  --navy-l:  #2f3d5e;
  --blue:    #2a3575;
  --aqua:    #5291bc;   /* water splash */
  --aqua-l:  #92dcf9;
  --gold:    #efba50;   /* sunset */
  --gold-d:  #d99b2c;
  --coral:   #fa6b5b;   /* hibiscus */
  --coral-d: #d94b3d;
  --wa:      #25d366;

  --paper:   #ffffff;
  --shell:   #f4f6f9;
  --shell-2: #e8edf4;
  --line:    #d8e0ea;
  --ink:     #1d2334;
  --ink-2:   #4d5871;
  --ink-3:   #77839b;

  --wrap: 1180px;
  --r: 3px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 1px 2px rgba(19,26,43,.05), 0 12px 32px -14px rgba(19,26,43,.24);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: Archivo, Inter, sans-serif;
  font-weight: 800; line-height: 1.02;
  letter-spacing: -.028em; margin: 0;
  font-variation-settings: "wdth" 96;
}
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 118px) 0; }
.section--ink { background: var(--navy); color: #eef2f8; }
.section--quote { background: var(--shell); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Square grid texture — the "Cuadrado" motif */
.hero__grid,
.section--ink::before,
.storm::after {
  background-image:
    linear-gradient(to right, rgba(146,220,249,.075) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(146,220,249,.075) 1px, transparent 1px);
  background-size: 46px 46px;
}
.section--ink { position: relative; isolation: isolate; overflow: hidden; }
.section--ink::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  mask-image: radial-gradient(120% 90% at 80% 0%, #000 10%, transparent 72%);
}

/* ---------- Type helpers ---------- */
.tag {
  font-family: Archivo, sans-serif; font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
  display: inline-flex; align-items: center; gap: .7em;
}
.tag::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.tag--ink { color: var(--coral-d); }

.head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 60px); }
.head h2, .section h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.head__sub { margin-top: 20px; color: var(--ink-2); font-size: 1.06rem; }
.section--ink .head__sub { color: #b9c4d8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 26px; border: 0; border-radius: var(--r);
  font-family: Archivo, sans-serif; font-size: .95rem; font-weight: 700;
  letter-spacing: -.005em; cursor: pointer;
  background: var(--coral); color: #fff;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(217,75,61,.9);
}
.btn:hover { background: var(--coral-d); transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--sm { padding: 11px 18px; font-size: .87rem; }
.btn--full { width: 100%; padding: 17px 26px; }
.btn--wa { background: var(--wa); color: #06331a; box-shadow: 0 10px 24px -12px rgba(37,211,102,.95); }
.btn--wa:hover { background: #1fbb59; }
.btn--gold { background: var(--gold); color: #33260a; box-shadow: 0 10px 24px -12px rgba(239,186,80,.95); }
.btn--gold:hover { background: var(--gold-d); }
.btn--ghost {
  background: transparent; color: #fff; box-shadow: none;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand img { width: 44px; height: 44px; border-radius: 50%; }
.brand__txt {
  display: flex; flex-direction: column; line-height: 1;
  font-family: Archivo, sans-serif; letter-spacing: -.02em;
}
.brand__txt b { font-size: 1.02rem; font-weight: 800; color: var(--navy); }
.brand__txt span {
  font-size: .69rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--aqua); margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--ink); opacity: .8;
  transition: opacity .18s var(--ease), color .18s var(--ease);
}
.nav__links a:hover { opacity: 1; color: var(--coral-d); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: Archivo, sans-serif; font-size: .88rem; font-weight: 700; color: var(--navy);
}
.nav__phone svg { width: 17px; height: 17px; color: var(--coral); }
.nav__menu-cta { display: none; }
.nav__toggle { display: none; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-dd); color: #fff;
  padding: clamp(60px, 8vw, 104px) 0 clamp(58px, 7vw, 92px);
}
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 78% 12%, rgba(239,186,80,.34), transparent 58%),
    linear-gradient(180deg, rgba(19,26,43,.86) 0%, rgba(19,26,43,.93) 55%, rgba(19,26,43,.99) 100%);
}
.hero__grid { position: absolute; inset: 0; z-index: -2; opacity: .55; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(94deg, var(--gold) 8%, var(--coral) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  margin: 24px 0 0; max-width: 50ch; font-size: 1.09rem; color: #c6d0e2;
}
.hero__sub b { color: #fff; font-weight: 600; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 0; margin: 40px 0 0; padding: 22px 0 0;
  list-style: none; border-top: 1px solid rgba(255,255,255,.16);
}
.hero__facts li {
  display: flex; flex-direction: column; padding-right: 30px; margin-right: 30px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.hero__facts li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__facts b {
  font-family: Archivo, sans-serif; font-size: 1.12rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--aqua-l);
}
.hero__facts span { font-size: .82rem; color: #9daaC2; margin-top: 2px; }

/* The logo is the differentiator in this trade, so it gets real estate:
   a square plate (Cuadrado) with a sunset glow behind the circular mark. */
.hero__mark { position: relative; display: grid; place-items: center; }
.hero__mark::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: min(100%, 388px); aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(160deg, rgba(239,186,80,.2), rgba(82,145,188,.16));
  border: 1px solid rgba(255,255,255,.16);
}
.hero__mark img {
  position: relative; width: min(78%, 300px); height: auto;
  border-radius: 50%;
  box-shadow: 0 26px 60px -22px rgba(0,0,0,.85), 0 0 0 8px rgba(255,255,255,.06);
}

/* =====================================================================
   SÍNTOMAS
   ===================================================================== */
.symptoms { background: var(--navy-d); color: #fff; padding: 26px 0; }
.symptoms .wrap { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.symptoms__lead {
  margin: 0; flex: none;
  font-family: Archivo, sans-serif; font-weight: 700; font-size: .95rem;
  color: var(--gold);
}
.symptoms__row { display: flex; flex-wrap: wrap; gap: 9px; }
.symptoms__row a {
  padding: 8px 15px; border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r); font-size: .87rem; color: #d6dfee;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.symptoms__row a:hover { background: rgba(250,107,91,.16); border-color: var(--coral); color: #fff; }

/* =====================================================================
   SERVICIOS
   ===================================================================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  padding: 30px 26px 28px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r);
  border-top: 3px solid var(--navy);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-top-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--coral); }
.card__ic {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--shell-2); color: var(--navy); margin-bottom: 20px;
}
.card:hover .card__ic { background: var(--navy); color: var(--gold); }
.card__ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { color: var(--ink-2); font-size: .95rem; margin-bottom: 16px; }
.card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.card__list li {
  display: flex; align-items: flex-start; gap: .55em;
  font-size: .87rem; font-weight: 500; color: var(--navy);
}
.card__list svg { width: 15px; height: 15px; flex: none; margin-top: 4px; color: var(--aqua); }

.segments {
  margin-top: 46px; padding: 22px 26px; background: var(--navy);
  color: #fff; border-radius: var(--r);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.segments p { margin: 0; font-size: .95rem; color: #b9c4d8; }
.segments__row { display: flex; gap: 10px; flex-wrap: wrap; }
.segments__row span {
  padding: 7px 18px; border: 1px solid rgba(146,220,249,.35);
  font-family: Archivo, sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--aqua-l);
}

/* =====================================================================
   FILTRACIONES
   ===================================================================== */
.leak {
  display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr);
  gap: clamp(32px, 5vw, 68px); align-items: start;
}
.leak h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-bottom: 22px; }
.leak p { color: #b9c4d8; }
.leak p b { color: #fff; font-weight: 600; }
.steps { list-style: none; counter-reset: s; margin: 32px 0; padding: 0; display: grid; gap: 2px; }
.steps li {
  counter-increment: s; position: relative;
  padding: 15px 18px 15px 62px;
  background: rgba(255,255,255,.045);
  border-left: 2px solid var(--aqua);
}
.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; left: 18px; top: 14px;
  font-family: Archivo, sans-serif; font-weight: 800; font-size: 1.05rem;
  color: var(--gold);
}
.steps b { display: block; font-family: Archivo, sans-serif; font-size: 1rem; color: #fff; }
.steps span { font-size: .9rem; color: #a9b5cc; }

/* The client's own photos are 183px Facebook thumbnails, so they are never
   given more width than they can carry — two compact plates, not a hero. */
.leak__pics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-self: center; }
.leak__pics figure { margin: 0; }
.leak__pics img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
}
.leak__pics figcaption {
  margin-top: 9px; font-size: .84rem; color: #9daac2;
}

/* =====================================================================
   TEMPORADA DE TORMENTAS
   ===================================================================== */
.storm {
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff; padding: clamp(78px, 10vw, 128px) 0;
}
.storm__bg { position: absolute; inset: 0; z-index: -3; background: var(--navy-dd); }
.storm__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.storm__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(19,26,43,.94) 0%, rgba(19,26,43,.8) 48%, rgba(19,26,43,.35) 100%);
}
.storm::after { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .5; }
.storm__inner { max-width: 640px; position: relative; }
.storm h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.storm__sub { margin-top: 20px; font-size: 1.06rem; color: #cdd6e6; }
.storm__list {
  list-style: none; margin: 26px 0 32px; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 24px;
}
.storm__list li {
  position: relative; padding-left: 22px; font-size: .95rem; color: #e3e9f3;
}
.storm__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 8px; height: 8px; background: var(--gold);
}

/* =====================================================================
   GALERÍA
   ===================================================================== */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 940px;   /* keeps each tile near the source photo's real size */
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .25s var(--ease);
}
.gallery figure:hover img { transform: scale(1.02); }
.gallery figcaption {
  margin-top: 10px; font-size: .85rem; font-weight: 500; color: var(--ink-2);
}

/* =====================================================================
   COTIZACIÓN
   ===================================================================== */
.quote {
  display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.quote h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-bottom: 20px; }
.quote__copy p { color: var(--ink-2); }
.quote__pts { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 11px; }
.quote__pts li { display: flex; gap: .6em; align-items: flex-start; font-size: .94rem; }
.quote__pts svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--wa); }
.quote__alt { font-size: .94rem; }
.quote__alt a { font-weight: 700; color: var(--coral-d); border-bottom: 1.5px solid currentColor; }

.form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow);
}
.field { margin: 0 0 22px; border: 0; padding: 0; }
.field label, .field legend {
  display: block; padding: 0; margin-bottom: 9px;
  font-family: Archivo, sans-serif; font-size: .88rem; font-weight: 700; color: var(--navy);
}
.field legend i { font-style: normal; font-weight: 500; color: var(--ink-3); }
.field input[type=text], .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; font-size: .96rem;
  color: var(--ink); background: var(--shell);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .16s var(--ease), background .16s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus { background: #fff; border-color: var(--aqua); }
.field textarea { resize: vertical; min-height: 92px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block; padding: 10px 16px; cursor: pointer;
  background: var(--shell); border: 1px solid var(--line); border-radius: var(--r);
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  transition: all .16s var(--ease);
}
.chip span:hover { border-color: var(--aqua); color: var(--navy); }
.chip input:checked + span {
  background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600;
}
.chip--alert input:checked + span { background: var(--coral-d); border-color: var(--coral-d); }
.chip input:focus-visible + span { outline: 3px solid var(--aqua); outline-offset: 2px; }

.form__error {
  margin: 0 0 14px; font-size: .9rem; font-weight: 600; color: var(--coral-d);
  display: none;
}
.form__error.is-on { display: block; }
.form__note { margin: 14px 0 0; font-size: .82rem; color: var(--ink-3); text-align: center; }

/* =====================================================================
   CONTACTO
   ===================================================================== */
.contact {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.contact h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.contact p { color: #b9c4d8; }
.contact__socials { display: flex; gap: 10px; margin-top: 24px; }
.contact__socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.25); color: #dce4f0;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.contact__socials a:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.contact__socials svg { width: 20px; height: 20px; }
.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.contact__list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: rgba(255,255,255,.05);
}
.contact__list svg { width: 21px; height: 21px; flex: none; margin-top: 3px; color: var(--gold); }
.contact__list b {
  display: block; font-family: Archivo, sans-serif; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--aqua-l); margin-bottom: 3px;
}
.contact__list a, .contact__list span { font-size: 1rem; color: #fff; }
.contact__list a:hover { color: var(--gold); }

/* =====================================================================
   FOOTER + FAB
   ===================================================================== */
.footer { background: var(--navy-dd); color: #93a0b8; padding: 34px 0; }
.footer__inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.brand--foot .brand__txt b { color: #fff; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; margin-left: auto; }
.footer__links a { font-size: .89rem; }
.footer__links a:hover { color: var(--gold); }
.footer__meta { margin: 0; font-size: .82rem; width: 100%; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); }

.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--wa); color: #06331a; border-radius: 50%;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.75);
  transition: transform .2s var(--ease);
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 30px; height: 30px; }

/* =====================================================================
   REVEAL
   ===================================================================== */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__phone { display: none; }
  /* Mobile: the toggle sits flush right, after the CTA. The drawer is a
     full-width panel below the bar, so no margin-left:auto anywhere here. */
  .nav__cta { margin-left: auto; gap: 10px; }
  .nav__toggle {
    display: grid; place-items: center; width: 44px; height: 44px;
    background: var(--navy); color: #fff; border: 0; border-radius: var(--r);
    cursor: pointer; padding: 0;
  }
  .nav__toggle svg { width: 22px; height: 22px; }
  .nav__toggle-close { display: none; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-open { display: none; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-close { display: block; }

  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; margin-left: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 8px 20px 20px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__menu-cta {
    display: block; margin-top: 14px; text-align: center; border-bottom: 0;
    background: var(--coral); color: #fff !important; opacity: 1;
    font-family: Archivo, sans-serif; font-weight: 700; border-radius: var(--r);
    padding: 14px 0 !important;
  }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__mark { order: -1; justify-items: start; }
  .hero__mark::before { inset: 0; display: none; }
  .hero__mark img { width: 132px; box-shadow: 0 14px 34px -16px rgba(0,0,0,.8); }
  .leak, .quote, .contact { grid-template-columns: 1fr; }
  .leak__pics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .brand__txt b { font-size: .95rem; }
  .nav .btn--sm { display: none; }
  .hero__facts { gap: 16px 0; }
  .hero__facts li { padding-right: 18px; margin-right: 18px; }
  .hero__ctas .btn { width: 100%; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery figcaption { font-size: .78rem; }
  .storm__list { grid-template-columns: 1fr; }
  .symptoms .wrap { gap: 14px; }
  .footer__links { margin-left: 0; }
  .fab { right: 14px; bottom: 14px; }
}
