/* ============================================================
   JGA Premier AC Services — Dubai landing
   Style: Modern cooling blue · mobile-first · vanilla CSS
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --blue-900: #06324f;
  --blue-800: #0a4d77;
  --blue-700: #0a6cb4;
  --blue-600: #1187cf;
  --cyan-500: #22b8e0;
  --cyan-100: #d6f1fb;
  --cyan-50:  #eef9fd;

  --accent:      #ff8a1e;   /* warm CTA contrast */
  --accent-dark: #e8730a;
  --whatsapp:    #25d366;
  --whatsapp-dark:#1da851;

  --ink:    #0f2433;
  --body:   #3c4d59;
  --muted:  #6b7c88;
  --line:   #e2ecf2;
  --bg:     #ffffff;
  --bg-alt: #f3f9fc;

  --radius:   14px;
  --radius-lg:22px;
  --shadow-sm: 0 2px 8px rgba(10, 76, 119, .08);
  --shadow:    0 10px 30px rgba(10, 76, 119, .12);
  --shadow-lg: 0 20px 50px rgba(10, 76, 119, .18);

  --container: 1160px;
  --header-h: 68px;

  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(1.65rem, 7vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--blue-700); text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--cyan-500); outline-offset: 2px; border-radius: 6px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(48px, 7vw, 90px) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 5vw, 52px); }
.section__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--cyan-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--call { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--call:hover { background: var(--accent-dark); box-shadow: var(--shadow); }

.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-sm); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--outline { background: #fff; color: var(--blue-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--cyan-500); color: var(--blue-800); }

.btn--lg { padding: 18px 32px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.08rem; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand small { display: block; font-size: .7rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 26px; }
.nav__list a { color: var(--body); font-weight: 600; font-size: .95rem; }
.nav__list a:hover { color: var(--blue-700); }

.header__cta { display: flex; gap: 10px; }
.header__cta .btn { padding: 11px 18px; font-size: .92rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after  { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(1200px 500px at 75% -10%, rgba(34,184,224,.55), transparent 60%),
    linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 45%, var(--blue-600) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,.25), transparent 60%),
    radial-gradient(2px 2px at 85% 25%, rgba(255,255,255,.30), transparent 60%);
  opacity: .6;
  pointer-events: none;
}
/* ---- MOBILE-FIRST: full-bleed photo on top, centered text below ---- */
.hero__inner {
  position: relative; z-index: 1;
  padding: 0 0 clamp(34px, 9vw, 56px);
  display: flex;
  flex-direction: column;
}

/* Full-bleed photo — edge to edge, no frame, fades into the blue */
.hero__media {
  position: relative;
  order: 1;
  margin: 0 -20px;          /* cancel .container side padding */
  line-height: 0;
}
.hero__media img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
}
.hero__media::after {       /* soft gradient blend into hero background */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 38%;
  background: linear-gradient(to bottom, rgba(10,77,119,0), rgba(10,77,119,.85));
  pointer-events: none;
}

/* Rating / reviews badge sitting on the photo */
.rating-badge {
  position: absolute;
  z-index: 2;
  left: 20px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 8px 15px 8px 13px;
  box-shadow: var(--shadow);
  max-width: calc(100% - 40px);
  line-height: 1;
}
.rating-badge__stars { display: inline-flex; gap: 1px; flex: none; }
.rating-badge__stars svg { width: 15px; height: 15px; color: #ffb400; }
.rating-badge__text { font-size: .82rem; font-weight: 600; color: var(--ink); line-height: 1.15; }
.rating-badge__text strong { font-weight: 800; }

/* Text block — centered, comfortable padding */
.hero__copy {
  order: 2;
  max-width: 640px;
  margin: 0 auto;
  padding-top: clamp(22px, 6vw, 30px);
  text-align: center;
}
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero h1 .hl { color: #ffe39a; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cyan-100);
  margin: 0 auto 26px;
  max-width: 520px;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.hero__cta .btn { width: 100%; }

.badges { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
}
.badge svg { width: 18px; height: 18px; color: #6ff0c4; flex: none; }

/* ---------- Services ---------- */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--cyan-500); }
.card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 38px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__link { margin-top: auto; }
.card__icon {
  position: absolute;
  left: 18px; bottom: -22px;
  margin-bottom: 0;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  color: #fff;
  margin-bottom: 18px;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: .92rem; margin-top: 6px;
}
.card__link svg { width: 16px; height: 16px; }

/* ---------- Features (why us) ---------- */
.features { display: grid; gap: 20px; grid-template-columns: 1fr; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature__icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cyan-50);
  color: var(--blue-700);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { font-size: .94rem; color: var(--muted); margin: 0; }

/* ---------- Split media section ---------- */
.split { display: grid; gap: 34px; align-items: center; grid-template-columns: 1fr; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 6 / 5;
}
.split__media--right { order: -1; }
.split__body h2 { margin-bottom: 14px; }
.split__list { display: grid; gap: 12px; margin-top: 18px; }
.split__list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.split__list svg { width: 22px; height: 22px; color: var(--cyan-500); flex: none; margin-top: 1px; }
.split__list span small { display: block; font-weight: 500; color: var(--muted); font-size: .9rem; }
.split__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  counter-increment: step;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-500), var(--blue-600));
  color: #fff; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 16px;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- Prose (article text) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--body); font-size: 1.04rem; line-height: 1.75; margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Dynamic keyword emphasis (service + city from the URL) ---------- */
/* The substituted service keyword and city are shown bold so they stand out
   as the matched search query. Bold works on every background. */
.js-service { font-weight: 800; }
.js-city { font-weight: 700; }
/* In body article text, give the city a touch of brand colour too (kept off the
   dark hero / CTA band, where the text must stay light). */
.section:not(.cta-band) .prose .js-city,
.section:not(.cta-band) .faq__a .js-city,
.section:not(.cta-band) .section__head .js-city { color: var(--blue-700); }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600; font-size: .92rem;
  color: var(--blue-800);
  box-shadow: var(--shadow-sm);
}
.area svg { width: 15px; height: 15px; color: var(--cyan-500); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 1.02rem; font-weight: 700; color: var(--ink);
  text-align: left;
  padding: 20px 22px;
}
.faq__q .chevron {
  width: 22px; height: 22px; flex: none;
  color: var(--blue-600);
  transition: transform .25s ease;
}
.faq__item.is-open .chevron { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__a p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* ---------- Lead form ---------- */
.form-wrap { max-width: 720px; margin: 0 auto; }
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: var(--shadow);
}
.lead-form__row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
.field { display: block; }
.field__label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #9fb0bb; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(34,184,224,.15);
}
.field textarea { resize: vertical; min-height: 92px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.lead-form__submit { margin-top: 4px; }
.lead-form__status { margin: 14px 0 0; font-weight: 700; font-size: .96rem; min-height: 1.2em; text-align: center; }
.lead-form__status.is-ok { color: var(--whatsapp-dark); }
.lead-form__status.is-err { color: #d83a3a; }
.lead-form__hint { margin: 10px 0 0; font-size: .78rem; color: var(--muted); text-align: center; }

@media (min-width: 640px) {
  .lead-form__row { grid-template-columns: 1fr 1fr; }
  .lead-form__row--full { grid-template-columns: 1fr; }
}

/* Success confirmation panel */
.lead-success {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--whatsapp);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 40px) clamp(20px, 4vw, 30px);
  text-align: center;
  animation: leadPop .35s ease;
}
@keyframes leadPop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.lead-success__icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(37,211,102,.14);
  color: var(--whatsapp-dark);
  display: grid; place-items: center;
}
.lead-success__icon svg { width: 38px; height: 38px; }
.lead-success h3 { font-size: clamp(1.35rem, 4vw, 1.7rem); margin-bottom: 10px; }
.lead-success__lead { color: var(--ink); font-weight: 600; margin: 0 auto 6px; max-width: 460px; }
.lead-success__eta {
  color: var(--blue-800);
  font-size: 1.08rem;
  margin: 0 auto 18px;
  max-width: 460px;
}
.lead-success__eta strong { color: var(--blue-700); }
.lead-success__hint { color: var(--muted); font-size: .92rem; margin: 0 0 16px; }
.lead-success__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(34,184,224,.45), transparent 60%),
    linear-gradient(120deg, var(--blue-800), var(--blue-600));
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--cyan-100); font-size: 1.1rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: #c4d8e6; padding: 56px 0 30px; }
.footer a { color: #c4d8e6; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer__brand .brand { color: #fff; }
.footer__brand .brand small { color: #8fb2c9; }
.footer__brand p { color: #9fbdd0; font-size: .94rem; max-width: 340px; margin-top: 14px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer__list li { margin-bottom: 9px; font-size: .95rem; }
.footer__list a { display: inline-flex; align-items: center; gap: 9px; }
.footer__list svg { width: 17px; height: 17px; color: var(--cyan-500); flex: none; }
.footer__addr {
  display: inline-flex; align-items: flex-start; gap: 9px;
  font-size: .95rem; color: #c4d8e6;
}
.footer__addr svg { width: 17px; height: 17px; color: var(--cyan-500); flex: none; margin-top: 3px; }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 36px; padding-top: 22px;
  font-size: .8rem; color: #88a8be; line-height: 1.6;
}
.footer__legal p { margin: 0 0 6px; }
.footer__legal strong { color: #b9d2e3; font-weight: 700; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 22px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between;
  font-size: .85rem; color: #88a8be;
}
.footer__bottom a { font-size: .85rem; }

/* ---------- Floating mobile call bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: 1px;
  background: var(--line);
  box-shadow: 0 -6px 20px rgba(6,50,79,.16);
}
.mobile-bar a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px;
  font-weight: 700; font-size: .98rem; color: #fff;
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .m-call { background: var(--accent); }
.mobile-bar .m-wa  { background: var(--whatsapp); }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .cards    { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps    { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 960px) {
  .cards    { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  /* Desktop hero: two columns, framed photo right, text left */
  .hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
    padding: clamp(56px, 6vw, 88px) 0;
  }
  .hero__copy {
    order: 1; margin: 0; max-width: 600px;
    padding-top: 0; text-align: left;
  }
  .hero__media {
    order: 2; margin: 0;
  }
  .hero__media img {
    aspect-ratio: 6 / 5;
    border-radius: var(--radius-lg);
    border: 4px solid rgba(255,255,255,.85);
    box-shadow: var(--shadow-lg);
  }
  .hero__media::after { display: none; }
  .hero__sub { margin-left: 0; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
  .hero__cta .btn { width: auto; }
  .badges { justify-content: flex-start; }

  .split { grid-template-columns: 1fr 1fr; gap: 50px; }
}

/* Mobile nav + bar (below 880px) */
@media (max-width: 880px) {
  .nav {
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    margin: 0;
  }
  .nav.is-open { max-height: 320px; }
  .nav__list { flex-direction: column; gap: 0; padding: 6px 20px 14px; }
  .nav__list a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__list li:last-child a { border-bottom: 0; }

  .nav-toggle { display: inline-flex; }

  /* Keep Call / WhatsApp in the header on mobile — icon-only, compact */
  .header__cta { display: flex; gap: 8px; margin-left: auto; }
  .header__cta .btn { padding: 0; width: 42px; height: 42px; border-radius: 50%; }
  .header__cta .btn__label { display: none; }
  .header__cta .btn svg { width: 19px; height: 19px; }
  .nav-toggle { margin-left: 8px; }

  .brand small { display: none; }   /* drop tagline to save width */
  .brand { font-size: 1rem; gap: 8px; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }  /* room for fixed bar */
}

@media (max-width: 380px) {
  .nav-toggle { display: none; }   /* tiny screens: rely on header CTAs + bottom bar */
}

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