/* ==========================================================================
   Flying Squeegees — Exterior Cleaning & Property Care
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #0A1F33;
  --navy-800: #10314F;
  --navy-700: #17456E;
  --cyan:      #16B3D8;
  --cyan-600:  #0E93B4;
  --amber:     #FF8A1F;
  --amber-600: #E57410;

  /* Neutrals */
  --ink:    #16222E;
  --muted:  #5E7183;
  --line:   #DCE4EB;
  --bg:     #FFFFFF;
  --bg-alt: #F4F7F9;

  /* System */
  --font: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system,
          "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(10,31,51,.06), 0 2px 8px rgba(10,31,51,.05);
  --shadow-md: 0 4px 12px rgba(10,31,51,.08), 0 12px 32px rgba(10,31,51,.09);
  --shadow-lg: 0 10px 24px rgba(10,31,51,.10), 0 28px 64px rgba(10,31,51,.14);
  --wrap: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1.1em; }
a  { color: var(--navy-700); }

.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-900); color: #DCE7F0; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin-bottom: .7rem;
}
.section--navy .eyebrow { color: var(--cyan); }

.lede { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }
.section--navy .lede { color: #A9C0D4; }

.section-head { max-width: 68ch; margin-bottom: 2.75rem; }

/* --------------------------------------------------------- Buttons ------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  font: inherit; font-weight: 650; font-size: .98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.btn--primary { background: var(--amber); color: #2A1400; box-shadow: 0 4px 14px rgba(255,138,31,.35); }
.btn--primary:hover { background: var(--amber-600); box-shadow: 0 8px 22px rgba(255,138,31,.42); }

.btn--navy { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--navy:hover { background: var(--navy-700); }

.btn--ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.42); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.19); }

.btn--outline { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy-700); background: #fff; }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ------------------------------------------------------- Utility bar ---- */
.utility {
  background: var(--navy-900);
  color: #A9C0D4;
  font-size: .855rem;
}
.utility .wrap { display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; padding: .5rem 0; }
.utility a { color: #fff; text-decoration: none; font-weight: 600; }
.utility a:hover { text-decoration: underline; }
.utility__items { display: flex; gap: 1.5rem; align-items: center; }
.utility__note { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 820px) {
  .utility .wrap { justify-content: center; }
  .utility__items { display: none; }
}

/* ----------------------------------------------------------- Header ----- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { flex: none; height: 46px; width: auto; display: block; }
.footer .brand__mark { height: 40px; }
@media (max-width: 560px) { .header .brand__mark { height: 38px; } }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 800; font-size: 1.16rem; color: var(--navy-900); letter-spacing: -0.025em; }
.brand__tag {
  font-size: .615rem; font-weight: 700; letter-spacing: .155em;
  text-transform: uppercase; color: var(--cyan-600); margin-top: .22rem;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .brand__tag { font-size: .56rem; letter-spacing: .085em; }
}

.nav { display: flex; gap: .35rem; align-items: center; }
.nav a {
  padding: .55rem .8rem; border-radius: 8px;
  color: var(--ink); text-decoration: none; font-weight: 550; font-size: .95rem;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.nav a:hover { background: var(--bg-alt); color: var(--navy-800); }

.header__cta { display: flex; gap: .6rem; align-items: center; }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line);
  border-radius: 9px; padding: .5rem .6rem; cursor: pointer; color: var(--navy-800);
}
/* The header's phone button duplicates the number in the utility bar directly
   above it; dropping it on laptops leaves room for the nav and the tagline. */
@media (max-width: 1200px) {
  .header__cta .btn--outline { display: none; }
}
@media (max-width: 1020px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header .wrap { min-height: 66px; }
}
/* On phones the sticky call bar already carries "Free quote", so the header
   copy goes, keeping the full tagline on one line. */
@media (max-width: 720px) {
  .header__cta .btn--primary { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none; border-bottom: 1px solid var(--line); background: #fff;
  position: sticky; top: 76px; z-index: 49;
}
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: .6rem 0 1.1rem; }
.mobile-menu a {
  display: block; padding: .78rem 0; text-decoration: none;
  color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--bg-alt);
}
@media (max-width: 1020px) { .mobile-menu { top: 66px; } }

/* ------------------------------------------------------------- Hero ----- */
.hero { position: relative; background: var(--navy-900); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    /* keep the very top (behind the sticky header) a near-solid deep navy */
    linear-gradient(to bottom, rgba(8,26,43,.94) 0%, rgba(8,26,43,.55) 20%, rgba(10,31,51,.30) 52%, rgba(10,31,51,.78) 100%),
    /* darken the left, where the headline sits */
    linear-gradient(105deg, rgba(10,31,51,.92) 0%, rgba(10,31,51,.68) 52%, rgba(10,31,51,.38) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem); }
.hero__copy { max-width: 40rem; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero p { color: #C2D5E4; font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(22,179,216,.16); border: 1px solid rgba(22,179,216,.4);
  color: #9FE4F6; padding: .38rem .9rem; border-radius: 100px;
  font-size: .82rem; font-weight: 650; margin-bottom: 1.4rem;
}

/* Trust bar */
.trustbar { background: var(--navy-800); border-top: 1px solid rgba(255,255,255,.09); position: relative; z-index: 2; }
.trustbar ul {
  list-style: none; margin: 0; padding: 1.1rem 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trustbar li { display: flex; align-items: center; gap: .6rem; color: #C2D5E4; font-size: .93rem; font-weight: 550; }
.trustbar svg { flex: none; color: var(--cyan); }
@media (max-width: 860px) {
  .trustbar ul { grid-template-columns: repeat(2, 1fr); gap: .8rem 1rem; }
  .trustbar li { font-size: .86rem; }
}

/* ------------------------------------------------------ Audience split -- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 860px) { .audience { grid-template-columns: 1fr; } }

.audience__card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 22rem; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: #fff; text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.audience__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.audience__card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,31,51,.94) 12%, rgba(10,31,51,.55) 55%, rgba(10,31,51,.15) 100%);
}
.audience__body { position: relative; z-index: 2; }
.audience__card h3 { color: #fff; font-size: 1.55rem; margin-bottom: .45rem; }
.audience__card p { color: #C2D5E4; margin-bottom: 1rem; font-size: .98rem; }
.audience__tag {
  display: inline-block; background: var(--cyan); color: var(--navy-900);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 100px; margin-bottom: .9rem;
}
.audience__link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: #fff; }
.audience__card:hover .audience__link svg { transform: translateX(4px); }
.audience__link svg { transition: transform .2s var(--ease); }

/* --------------------------------------------------------- Services ----- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
@media (max-width: 1020px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .services { grid-template-columns: 1fr; } }

.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .95rem 1.05rem; text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 32px 1fr;
  column-gap: .8rem; row-gap: 0; align-items: start; align-content: start;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.service__icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(140deg, #E4F6FB, #CDEDF6);
  display: grid; place-items: center; color: var(--cyan-600); margin: 0;
  grid-row: span 2;
}
.service__icon svg { width: 17px; height: 17px; }
/* icon occupies col 1; both text elements are pinned to col 2 */
.service h3 { grid-column: 2; font-size: .93rem; margin-bottom: .1rem; letter-spacing: -0.01em; }
.service p  { grid-column: 2; font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.45; }

/* ------------------------------------------------------ Commercial ------ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.checklist { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1rem; }
.checklist li { display: flex; gap: .85rem; align-items: flex-start; }
.checklist svg { flex: none; margin-top: .2rem; color: var(--cyan); }
.checklist strong { display: block; color: #fff; margin-bottom: .12rem; }
.checklist span { color: #A9C0D4; font-size: .95rem; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.stat { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); padding: 1.1rem; }
.stat__n { font-size: 1.9rem; font-weight: 800; color: var(--cyan); letter-spacing: -.03em; line-height: 1; }
.stat__l { font-size: .82rem; color: #A9C0D4; margin-top: .4rem; display: block; }
@media (max-width: 560px) { .stat-row { grid-template-columns: 1fr; } }

/* ---------------------------------------------------- Before / after ---- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 950px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ba-grid { grid-template-columns: 1fr; } }

.ba {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.ba__viewer {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  /* stop cards becoming enormous when the grid collapses to one column */
  max-height: min(600px, 70vh);
  cursor: ew-resize; touch-action: none; user-select: none; background: var(--navy-900);
}
.ba__viewer img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.ba__after  { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }

.ba__handle {
  position: absolute; top: 0; bottom: 0; z-index: 3;
  left: var(--pos, 50%); width: 3px; margin-left: -1.5px;
  background: #fff; box-shadow: 0 0 0 1px rgba(10,31,51,.22);
  pointer-events: none;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; box-shadow: 0 3px 10px rgba(10,31,51,.4);
  display: grid; place-items: center; color: var(--navy-800);
}
.ba__tag {
  position: absolute; z-index: 3; top: .8rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 100px; color: #fff;
  background: rgba(10,31,51,.72); backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba__tag--before { left: .8rem; }
.ba__tag--after  { right: .8rem; background: rgba(22,179,216,.9); color: var(--navy-900); }

.ba__caption { padding: 1rem 1.2rem 1.15rem; }
.ba__caption h3 { font-size: 1rem; margin-bottom: .2rem; }
.ba__caption p { font-size: .87rem; color: var(--muted); margin: 0; }

.ba__hint {
  text-align: center; font-size: .87rem; color: var(--muted);
  margin: 0 0 2rem; display: flex; align-items: center; justify-content: center; gap: .45rem;
}

/* -------------------------------------------------------- Specialty ----- */
.specialty { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .specialty { grid-template-columns: 1fr; } }
.spec-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #fff; display: flex; flex-direction: column;
}
.spec-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.spec-card__body { padding: 1.4rem; }
.spec-card h3 { font-size: 1.12rem; }
.spec-card p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------ Testimonials ---- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; display: flex; flex-direction: column;
}
.quote__stars { color: #F5A623; letter-spacing: .1em; margin-bottom: .8rem; font-size: 1rem; }
.quote blockquote { margin: 0 0 1.1rem; font-size: 1rem; line-height: 1.6; }
.quote figcaption { margin-top: auto; font-size: .87rem; color: var(--muted); }
.quote figcaption b { color: var(--ink); display: block; font-size: .93rem; }

/* ------------------------------------------------- Review platforms ---- */
.review-links {
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
  justify-content: space-between;
}
.review-links__read { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.review-links__label { font-size: .9rem; color: var(--muted); }
.review-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: 100px;
  padding: .5rem 1.05rem; text-decoration: none; color: var(--navy-800);
  font-weight: 650; font-size: .92rem;
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.review-chip:hover { border-color: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.review-chip svg { flex: none; }
@media (max-width: 700px) {
  .review-links { flex-direction: column; align-items: stretch; }
  .review-links .btn { width: 100%; }
}

/* ----------------------------------------------------- Interior pages -- */
.pagehero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #DCE7F0; padding: clamp(3rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4.25rem);
}
.pagehero h1 { color: #fff; max-width: 20ch; text-wrap: balance; }
.pagehero .lede { color: #A9C0D4; }
.pagehero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }

.crumbs { font-size: .88rem; margin-bottom: 1.1rem; color: #7E9AB4; }
.crumbs a { color: #A9C0D4; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span { padding: 0 .45rem; }

/* Wider before/after cards on interior pages (fewer per row) */
.ba-grid--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .ba-grid--two { grid-template-columns: 1fr; } }

.note-card {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.8rem; margin-top: 2rem;
}
.note-card p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------- Service area --- */
.area-list { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; padding: 0; list-style: none; }
.area-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: .42rem 1rem; font-size: .9rem; color: var(--ink);
}

/* ------------------------------------------------------------ Quote ----- */
.quote-cta { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; }
.quote-cta .split { align-items: start; }
.quote-cta h2 { color: #fff; }
.quote-cta .lede { color: #A9C0D4; }

.form { background: #fff; border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-lg); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 650; color: var(--navy-800); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .72rem .85rem; font: inherit; font-size: .96rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(22,179,216,.18);
}
.field textarea { resize: vertical; min-height: 6.5rem; }
.form__note { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }

/* ----------------------------------------------------------- Footer ----- */
.footer { background: var(--navy-900); color: #A9C0D4; padding: 3.5rem 0 1.5rem; font-size: .94rem; }
.footer a { color: #DCE7F0; text-decoration: none; }
.footer a:hover { text-decoration: underline; color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.11);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem;
}
.footer__brand .brand__name { color: #fff; }
.footer__brand p { margin-top: 1rem; max-width: 32ch; }

/* Sticky mobile call bar */
.callbar { display: none; }
@media (max-width: 720px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .callbar .btn { width: 100%; padding: .8rem 1rem; }
  body { padding-bottom: 4.6rem; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
