/* ===== Funquila public web listings (pisos) — idealista-style, mobile-first.
   Self-contained: no external CDNs/fonts. Brand: black + gold. ===== */

:root {
  --gold: #B8924A;
  --gold-dark: #9c7a38;
  --ink: #1A1A1A;
  --paper: #F8F8F8;
  --card: #FFFFFF;
  --line: #E5DFD2;
  --body: #333333;
  --body-2: #555555;
  --muted: #777777;
  --shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.14);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-name { font-weight: 800; letter-spacing: 0.26em; font-size: 14px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 15px; color: var(--ink); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--ink); color: #fff; padding: 10px 18px;
  text-decoration: none; font-weight: 600; font-size: 14px; border-radius: 8px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); }

/* ===== List header ===== */
.pisos-wrap { padding: 32px 0 80px; }
.pisos-head { margin-bottom: 22px; }
.pisos-head h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.pisos-sub { color: var(--body-2); font-size: 16px; margin-top: 6px; }

/* ===== Filter bar ===== */
/* Two rows of five tracks: q (span 2) + city + min + max, then
   rooms + type + available_from + sort + submit. */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.filter-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.filter-q { grid-column: span 2; }
.filter-field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.filter-field input,
.filter-field select {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.filter-field input:focus,
.filter-field select:focus { outline: none; border-color: var(--gold); }
.filter-submit {
  font-family: inherit;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.2s;
  height: 42px;
}
.filter-submit:hover { background: var(--gold); }

/* Filter disclosure toggle — a pure-CSS (checkbox-hack) collapse so the filter
   bar starts collapsed on mobile and works without JS. Hidden on desktop,
   where the filter bar is always shown. */
.filter-toggle { display: none; }

/* City autocomplete dropdown */
.city-autocomplete { position: relative; }
.city-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 60;
  list-style: none; background: #fff; border: 1px solid var(--line);
  border-radius: 8px; box-shadow: var(--shadow-lg); overflow: hidden;
  max-height: 280px; overflow-y: auto;
}
.city-suggestions li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 10px 12px; cursor: pointer; font-size: 15px;
}
.city-suggestions li small { color: var(--muted); font-size: 12px; white-space: nowrap; }
.city-suggestions li.active, .city-suggestions li:hover { background: var(--paper); color: var(--gold-dark); }

.pisos-count { color: var(--body-2); font-size: 15px; margin-bottom: 18px; }
.pisos-count strong { color: var(--ink); }

/* ===== Grid + cards ===== */
.pisos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  /* Normal listings get a black border; featured ones override to gold below. */
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-premium { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow); }
/* Fixed height so cards never grow with the photo's intrinsic size. Landscape
   photos render as a single cover image; when the first photo is portrait the
   client swaps in a cover collage of up to 4 photos (see pisos.js).
   overflow:hidden guarantees the collage can never spill onto the text below —
   iOS Safari otherwise lets `1fr` grid tracks grow to the images' intrinsic
   height and overflow this box. The `minmax(0, …)` tracks below are the real
   fix (they zero each track's automatic minimum instead of relying on the
   child's min-height, which iOS Safari ignores on grid items). */
.card-media { position: relative; height: 220px; background: #f0ece2; overflow: hidden; }
.card-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-media.collage { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 2px; }
.card-media.collage img { position: static; width: 100%; height: 100%; object-fit: cover; min-width: 0; min-height: 0; }
/* 3 photos: tall main on the left + 2 stacked on the right. */
.card-media.collage img:first-child { grid-row: 1 / -1; }
/* 2 photos: side by side. */
.card-media.collage.collage-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: minmax(0, 1fr); }
.card-media.collage.collage-2 img:first-child { grid-row: auto; }
/* 4 photos: even 2×2 grid. */
.card-media.collage.collage-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-media.collage.collage-4 img:first-child { grid-row: auto; }
.card-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #f0ece2; }
.card-noimg img { width: 56px; height: 56px; opacity: 0.4; }
.badge-premium {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: 6px; text-transform: uppercase;
}
.card-fav {
  position: absolute; top: 10px; right: 10px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: color 0.15s, background 0.15s;
}
.card-fav svg { width: 20px; height: 20px; }
.card-fav:hover { color: var(--gold); background: #fff; }
.card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.card-price { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.card-title { font-size: 16px; font-weight: 600; color: var(--body); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-loc { font-size: 14px; color: var(--muted); }
.card-specs { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 8px; font-size: 13px; color: var(--body-2); }
.card-specs .spec-type { color: var(--gold-dark); font-weight: 600; }

/* ===== Banner slot ===== */
.banner-slot { grid-column: 1 / -1; }
.banner-slot:empty { display: none; }
.banner-slot a { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.banner-slot img { width: 100%; height: auto; max-height: 220px; object-fit: cover; display: block; }
.detail-main .banner-slot { margin-top: 28px; }

/* ===== Home: app-promo strip (in-grid, black/gold) ===== */
.app-promo {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 22px 26px;
  box-shadow: var(--shadow);
}
.app-promo-text h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.app-promo-text h3 em { color: var(--gold); font-style: normal; }
.app-promo-text p { color: #cfc8ba; font-size: 14px; margin-top: 4px; }
.app-promo-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.app-promo .store-badge { background: var(--gold); color: var(--ink); }
.app-promo .store-badge:hover { background: #fff; }

/* ===== Home: condensed marketing (features / steps / download) ===== */
.home-marketing { border-top: 1px solid var(--line); margin-top: 40px; }
.home-sec { padding: 52px 0; }
.home-sec + .home-sec { border-top: 1px solid var(--line); }
.home-sec-head { max-width: 640px; margin-bottom: 28px; }
.home-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 12px;
}
.home-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.home-sec-head h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.home-sec-head h2 em { color: var(--gold); font-style: normal; }
.home-sec-head p { color: var(--body-2); font-size: 16px; margin-top: 10px; line-height: 1.55; }

.home-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.home-feat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.home-feat .fi {
  width: 44px; height: 44px; background: var(--ink); color: var(--gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.home-feat .fi svg { width: 22px; height: 22px; }
.home-feat h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.home-feat p { font-size: 14px; color: var(--body-2); line-height: 1.5; }

.home-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.home-step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.home-step .sn { font-size: 34px; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.home-step .sn em { color: var(--gold); font-style: normal; }
.home-step .st { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-top: 10px; }
.home-step h3 { font-size: 16px; font-weight: 700; margin-top: 8px; }
.home-step p { font-size: 14px; color: var(--body-2); margin-top: 6px; line-height: 1.5; }

.home-download {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  text-align: center; padding: 56px 24px; margin: 52px 0 8px;
}
.home-download .dl-mark img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 18px; }
.home-download h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; margin-bottom: 12px; }
.home-download h2 em { color: var(--gold); font-style: normal; }
.home-download p { color: #cfc8ba; font-size: 16px; max-width: 520px; margin: 0 auto 24px; line-height: 1.55; }
.home-download .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.home-download .store-badge { background: var(--gold); color: var(--ink); max-width: 210px; }
.home-download .store-badge:hover { background: #fff; }

/* ===== Pagination ===== */
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.page-link {
  min-width: 40px; text-align: center;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14px;
}
.page-link:hover { border-color: var(--gold); color: var(--gold); }
.page-link.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===== Empty state ===== */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-mark img { width: 64px; height: 64px; opacity: 0.35; margin: 0 auto 20px; }
.empty-state h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--body-2); margin-bottom: 24px; }

/* ===== Detail ===== */
.detail-wrap { padding: 24px 0 90px; }
.back-link { display: inline-block; color: var(--body-2); text-decoration: none; font-size: 14px; margin-bottom: 18px; font-weight: 600; }
.back-link:hover { color: var(--gold); }
.detail-main { min-width: 0; }

/* Gallery */
/* Fixed height for the same reason as .card-media: the box must not track the
   photo's intrinsic size. Contain keeps whole photos visible (vertical shots). */
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: #f0ece2; height: clamp(280px, 48vw, 520px); box-shadow: var(--shadow); }
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.gallery-noimg { display: flex; align-items: center; justify-content: center; background: #f0ece2; }
.gallery-noimg img { width: 90px; height: 90px; object-fit: contain; opacity: 0.4; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { flex: 0 0 auto; width: 92px; height: 68px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; background: none; padding: 0; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--gold); }

.detail-heading { margin-top: 26px; }
/* Header row: price/title/location on the left, action buttons on the right;
   the actions column wraps below the info on narrow viewports. */
.detail-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.detail-header-info { flex: 1 1 340px; min-width: 0; }
.detail-header-actions { flex: 0 1 280px; min-width: 240px; display: flex; flex-direction: column; }
.detail-price { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.detail-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; margin-top: 6px; letter-spacing: -0.01em; }
.detail-loc { color: var(--muted); font-size: 15px; margin-top: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: 14px; font-weight: 600; color: var(--body); }
.detail-availability { margin-top: 16px; color: var(--gold-dark); font-weight: 600; font-size: 15px; }
.detail-rating { margin-top: 14px; display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--body); }
.rating-stars { color: var(--gold); font-size: 18px; }
.rating-count { color: var(--muted); }

.detail-section { margin-top: 34px; }
.detail-section h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.detail-desc { color: var(--body); font-size: 16px; line-height: 1.7; white-space: pre-wrap; }

/* App-gated action buttons */
.contact-btn {
  display: block; width: 100%; font-family: inherit; font-size: 16px; font-weight: 700;
  padding: 14px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--gold); color: #fff; transition: background 0.2s;
}
.contact-btn:hover { background: var(--gold-dark); }
.contact-btn.ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); margin-top: 10px; }
.contact-btn.ghost:hover { background: var(--ink); color: #fff; }
.contact-note { display: block; text-align: center; color: var(--muted); font-size: 12px; margin-top: 14px; line-height: 1.5; }

/* Sticky bottom CTA — mobile only, keeps Contactar reachable while scrolling */
.mobile-cta { display: none; }

/* ===== Not found ===== */
.notfound-wrap { padding: 100px 0; }
.notfound-card { max-width: 480px; margin: 0 auto; text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 48px 32px; box-shadow: var(--shadow); }
.notfound-mark img { width: 64px; height: 64px; opacity: 0.4; margin: 0 auto 22px; }
.notfound-card h1 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.notfound-card p { color: var(--body-2); margin-bottom: 26px; }

/* ===== Footer ===== */
footer { background: #F2EEE6; padding: 60px 0 28px; border-top: 1px solid var(--line); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand p { margin-top: 16px; color: var(--body-2); font-size: 15px; max-width: 340px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--body-2); text-decoration: none; font-size: 15px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== Send-to-app modal ===== */
.app-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-end; justify-content: center; }
.app-modal[hidden] { display: none; }
.app-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); }
.app-modal-sheet {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  background: #fff; border-radius: 20px 20px 0 0;
  padding: 32px 28px 28px; text-align: center;
  box-shadow: var(--shadow-lg);
  animation: sheet-up 0.22s ease;
}
@keyframes sheet-up { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.app-modal-x { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; }
.app-modal-mark img { width: 60px; height: 60px; object-fit: contain; margin: 0 auto 16px; }
.app-modal-sheet h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.app-modal-sheet p { color: var(--body-2); font-size: 15px; margin-bottom: 22px; }
.app-modal-btn { display: block; text-decoration: none; font-weight: 700; font-size: 16px; padding: 14px; border-radius: 10px; }
.app-modal-btn.primary { background: var(--ink); color: #fff; }
.app-modal-btn.primary:hover { background: var(--gold); }
.app-modal-stores { display: flex; gap: 10px; margin-top: 16px; }
.store-badge { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--ink); color: #fff; text-decoration: none; padding: 10px; border-radius: 10px; }
.store-badge:hover { background: var(--gold); }
.store-badge svg { width: 20px; height: 20px; flex: 0 0 auto; }
.store-badge span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store-badge small { font-size: 9px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.06em; }
.store-badge strong { font-size: 14px; }
.app-modal-note { display: block; color: var(--muted); font-size: 12px; margin-top: 18px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .pisos-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-submit { grid-column: 1 / -1; }
  .home-feats { grid-template-columns: repeat(2, 1fr); }
  .home-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .pisos-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .home-feats { grid-template-columns: 1fr; }
  .home-steps { grid-template-columns: 1fr; }
  .app-promo { flex-direction: column; align-items: flex-start; }
  .app-promo-cta { width: 100%; }

  /* Collapse the filter bar behind a "Filtros" toggle so the listings sit
     higher up the page. The bar is hidden until the (visually hidden)
     checkbox is toggled by tapping its label. */
  .filter-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 13px 16px; margin-bottom: 22px; box-shadow: var(--shadow);
    font-weight: 600; font-size: 15px; color: var(--ink); cursor: pointer; user-select: none;
  }
  .filter-toggle svg { width: 18px; height: 18px; transition: transform 0.2s; }
  .filter-bar { display: none; }
  .filter-toggle-cb:checked ~ .filter-bar { display: grid; }
  .filter-toggle-cb:checked ~ .filter-toggle { margin-bottom: 12px; }
  .filter-toggle-cb:checked ~ .filter-toggle svg { transform: rotate(180deg); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .app-modal { align-items: center; }
  .app-modal-sheet { border-radius: 20px; max-width: 380px; margin: 0 16px; }

  /* Detail: actions stack full-width below the title; sticky CTA appears */
  .detail-header-actions { flex-basis: 100%; min-width: 0; }
  .detail-wrap { padding-bottom: 130px; }
  .mobile-cta {
    display: flex; align-items: center; gap: 14px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: #fff; border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }
  .mobile-cta-price { font-size: 18px; font-weight: 800; flex: 0 0 auto; }
  .mobile-cta .contact-btn { flex: 1; }
}
