/* ============================================================
   Fadel's Carpet Laying - styles
   Palette from logo: navy #000066, crimson #9F152B
   Type: Barlow Condensed (display) · Barlow (body)
   ============================================================ */

:root {
  --navy: #000066;
  --navy-ink: #0a0a3f;
  --navy-deep: #06062b;
  --red: #9f152b;
  --red-hot: #bb1a33;
  --paper: #f7f6f1;
  --sand: #eeece3;
  --white: #ffffff;
  --ink: #17172e;
  --muted: #5a5a72;
  --line: #e0ded4;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(6, 6, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(6, 6, 43, 0.16);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.05;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 7vw, 4.9rem); font-weight: 700; letter-spacing: -0.01em; }
h1 em { font-style: normal; color: var(--red); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 700; margin-bottom: 0.5rem; }
h3 { font-size: 1.5rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.eyebrow--light { color: #ffb3c0; }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); }
.section--navy h2 { color: var(--white); }
.section__lede { max-width: 56ch; color: var(--muted); font-size: 1.08rem; margin-bottom: 2.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.5rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-hot); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.16rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Top strip ---------- */
.topstrip { background: var(--navy-deep); color: #cfd0ec; font-size: 0.88rem; }
.topstrip__inner { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; gap: 1rem; }
.topstrip__phone { color: var(--white); font-weight: 600; text-decoration: none; white-space: nowrap; }
.topstrip__phone:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(6,6,43,0.10); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.65rem 0;
}
.header__brand img { width: clamp(132px, 16vw, 178px); height: auto; }
.nav { display: flex; gap: 1.6rem; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav a:hover { color: var(--red); border-bottom-color: var(--red); }
.header__actions { display: flex; align-items: center; gap: 1rem; }
.header__call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.header__call:hover { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span { width: 24px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobilenav {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 4%;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobilenav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.55rem 0;
}
.mobilenav .btn { margin-top: 0.5rem; justify-content: center; }
.mobilenav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero__sub { font-size: 1.14rem; color: var(--muted); max-width: 52ch; margin: 1.1rem 0 1.8rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero__points { list-style: none; display: grid; gap: 0.45rem; }
.hero__points li {
  position: relative;
  padding-left: 1.7rem;
  font-weight: 500;
  color: var(--navy-ink);
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 15px; height: 15px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 3px, transparent 3px),
    var(--red);
}

.hero__media { position: relative; }
.hero__frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-bottom: 8px solid var(--red);
  transform: rotate(1.2deg);
}
.hero__frame img { width: 100%; height: clamp(360px, 46vw, 560px); object-fit: cover; }
.hero__tag {
  position: absolute;
  left: -10px;
  bottom: 26px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

/* ---------- Stats strip ---------- */
.stats { background: var(--navy); color: var(--white); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 0;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
}
.stat .amp { color: #ffb3c0; }
.stat span { font-size: 0.92rem; color: #c9c9ea; }

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card__body p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card__link {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.card__link:hover { text-decoration: underline; }

/* ---------- Before / After sliders (signature) ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}
.ba { margin: 0; }
.ba__stage {
  --pos: 50%;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  touch-action: pan-y;
  user-select: none;
  cursor: ew-resize;
  background: var(--navy-deep);
}
.ba__stage img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { position: absolute; inset: 0; }
.ba__beforewrap {
  position: absolute;
  inset: 0;
  width: var(--pos);
  overflow: hidden;
}
.ba__beforewrap img { width: auto; height: 100%; max-width: none; }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 4px;
  margin-left: -2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(6,6,43,0.25);
}
.ba__grip {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
/* carpet-roll spiral on the grip */
.ba__grip::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      var(--white) 0 2px, transparent 2px 5px,
      var(--white) 5px 7px, transparent 7px 10px,
      var(--white) 10px 11px, transparent 11px);
}
.ba__handle:focus-visible { outline: 3px solid #ffd0d9; outline-offset: -1px; }
.ba__label {
  position: absolute;
  top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  color: var(--white);
  pointer-events: none;
}
.ba__label--before { left: 12px; background: rgba(6,6,43,0.72); }
.ba__label--after { right: 12px; background: var(--red); }
.ba figcaption { margin-top: 0.7rem; font-size: 0.95rem; color: var(--muted); }

/* ---------- Extra gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ---------- Why / About ---------- */
.why__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.why__media { position: relative; }
.why__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: clamp(380px, 44vw, 540px);
  object-fit: cover;
}
.why__badge {
  position: absolute;
  right: -12px;
  bottom: 24px;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.7rem 1.1rem;
  line-height: 1.25;
}
.why__badge strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); display: block; }
.why__badge span { font-size: 0.85rem; color: var(--muted); }
.why__copy > p { color: var(--muted); max-width: 56ch; margin-bottom: 1.4rem; }
.why__list { list-style: none; display: grid; gap: 0.9rem; margin-bottom: 1.8rem; }
.why__list li { position: relative; padding-left: 2.1rem; color: var(--muted); }
.why__list li strong { color: var(--navy-ink); }
.why__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--navy);
  clip-path: none;
}
.why__list li::after {
  content: "";
  position: absolute;
  left: 5px; top: calc(0.28em + 5px);
  width: 9px; height: 5px;
  border-left: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(-45deg);
}

/* ---------- Reviews slider (Google) ---------- */
.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.reviews__sub { color: #c9c9ea; margin-top: 0.4rem; }
.rslider__nav { display: flex; gap: 0.6rem; }
.rslider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.rslider__btn:hover { background: var(--red); border-color: var(--red); }
.rslider__btn:active { transform: scale(0.94); }

.rslider { position: relative; }
.rslider__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.6rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rslider__track::-webkit-scrollbar { display: none; }
.rslider__track:focus-visible { outline: 2px solid #ffb3c0; outline-offset: 4px; }

.rcard {
  flex: 0 0 min(360px, 86%);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.3rem;
  color: #eaeaf6;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rcard__top { display: flex; align-items: center; gap: 0.75rem; }
.rcard__avatar {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.rcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.rcard__who { display: grid; line-height: 1.25; }
.rcard__who strong { color: var(--white); font-size: 1rem; }
.rcard__who span { color: #b9b9dc; font-size: 0.85rem; }
.rcard__stars { color: #fbbc04; letter-spacing: 3px; font-size: 1.05rem; }
.rcard p {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews__all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-ink);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.reviews__all:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Areas ---------- */
.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.areas__copy > p { color: var(--muted); max-width: 52ch; margin-bottom: 1.4rem; }
.areas__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-bottom: 1.2rem;
}
.areas__list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  font-size: 0.92rem;
  color: var(--navy-ink);
  text-align: center;
  white-space: nowrap;
}
.areas__note { font-weight: 600; color: var(--navy); }
.areas__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-bottom: 8px solid var(--navy);
}
.areas__map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__copy > p { color: var(--muted); max-width: 46ch; margin-bottom: 1.6rem; }
.contact__card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.4rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: var(--shadow);
}
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.contact__phone:hover { color: #ffb3c0; }
.contact__card p { color: #c9c9ea; font-size: 0.98rem; }
.contact__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffb3c0;
  text-decoration: none;
  font-weight: 600;
}
.contact__ig:hover { text-decoration: underline; }
.contact__address {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #ffb3c0;
  text-decoration: none;
  font-weight: 600;
}
.contact__address svg { flex-shrink: 0; margin-top: 0.15em; }
.contact__address em { font-style: normal; opacity: 0.75; font-weight: 500; }
.contact__address:hover { text-decoration: underline; }

.form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  gap: 1.1rem;
}
.form__row { display: grid; gap: 0.35rem; }
.form__row--2col { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__row--2col > div { display: grid; gap: 0.35rem; }
.form label {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--navy);
}
.form input, .form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,0,102,0.12);
}
.form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__status { font-weight: 600; min-height: 1.4em; }
.form__status.ok { color: #0d7a3f; }
.form__status.err { color: var(--red); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: #b9b9dc; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: 2.6rem 0 1.6rem;
}
.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.footer__brand span { font-size: 0.92rem; }
.footer__nav { display: grid; gap: 0.45rem; align-content: start; }
.footer__nav a, .footer__meta a { color: #d8d8f0; text-decoration: none; }
.footer__nav a:hover, .footer__meta a:hover { color: var(--white); text-decoration: underline; }
.footer__meta { display: grid; gap: 0.45rem; align-content: start; }
.footer__base {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 0 1.4rem;
  font-size: 0.85rem;
}

/* ---------- Floating call button ---------- */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: none;
  place-items: center;
  box-shadow: 0 12px 30px rgba(159, 21, 43, 0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.fab:hover { background: var(--red-hot); }
.fab.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .nav { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .topstrip__inner span { font-size: 0.8rem; }
  .header__call {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    gap: 0;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
  }
  .header__call svg { width: 19px; height: 19px; }
  .header__call span { display: none; }
  .header__actions { gap: 0.6rem; }
  .header__actions .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; padding-top: 2.4rem; }
  .hero__media { display: none; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0.6rem; }

  .section { padding: 3rem 0; }

  .why__grid, .areas__grid, .contact__grid { grid-template-columns: 1fr; }
  .why__media img { height: clamp(320px, 70vw, 460px); }
  .why__badge { right: 10px; }

  .reviews__head { flex-direction: column; align-items: flex-start; }
  .ba-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .areas__map iframe { height: 320px; }

  .footer__inner { grid-template-columns: 1fr; gap: 1.4rem; }

  .fab { display: grid; }
}

@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .form__row--2col { grid-template-columns: 1fr; }
  .topstrip__inner { justify-content: center; }
  .topstrip__inner span { display: none; }
  .section { padding: 2.5rem 0; }
  .hero__grid { padding-top: 1.8rem; padding-bottom: 2.5rem; }
}
