/* ============================================================
   Go Drop Hauling — Master stylesheet
   Design system: Dark Mode (OLED) + Retro-Futurism neon accents
   Brand colors taken from logo: hot pink + neon orange on black
   ============================================================ */

:root {
  /* ---------- Color tokens ---------- */
  --bg:               #0A0A0A;
  --bg-elevated:      #121212;
  --surface:          #181818;
  --surface-2:        #1F1F1F;
  --ink:              #FFFFFF;
  --ink-muted:        #B8B8B8;
  --ink-soft:         #8A8A8A;

  --pink:             #FF1B8D;
  --pink-glow:        #FF4FA1;
  --pink-deep:        #C8156E;
  --orange:           #FF8A00;
  --orange-glow:      #FFA940;
  --orange-deep:      #C66600;

  --gradient-brand:   linear-gradient(90deg, var(--pink) 0%, var(--orange) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(255,27,141,.15), rgba(255,138,0,.15));

  --success:          #22C55E;
  --danger:           #EF4444;

  --border:           rgba(255,255,255,.08);
  --border-strong:    rgba(255,255,255,.16);
  --border-brand:     rgba(255,27,141,.4);

  /* ---------- Spacing scale (4/8 system) ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* ---------- Type scale ---------- */
  --font-display: 'Bebas Neue', 'Impact', system-ui, sans-serif;
  --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --text-xs:   0.8125rem;  /* 13 */
  --text-sm:   0.9375rem;  /* 15 */
  --text-base: 1rem;       /* 16 */
  --text-lg:   1.125rem;   /* 18 */
  --text-xl:   1.375rem;   /* 22 */
  --text-2xl:  1.75rem;    /* 28 */
  --text-3xl:  2.25rem;    /* 36 */
  --text-4xl:  3rem;       /* 48 */
  --text-5xl:  4rem;       /* 64 */
  --text-6xl:  5.5rem;     /* 88 */

  /* ---------- Radii ---------- */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 18px;

  /* ---------- Shadows / glow ---------- */
  --shadow-sm:    0 1px 2px rgba(0,0,0,.4);
  --shadow:       0 6px 20px rgba(0,0,0,.5);
  --shadow-lg:    0 20px 40px rgba(0,0,0,.6);
  --glow-pink:    0 0 24px rgba(255,27,141,.55), 0 0 56px rgba(255,27,141,.25);
  --glow-orange:  0 0 24px rgba(255,138,0,.55),  0 0 56px rgba(255,138,0,.25);

  /* ---------- Layout ---------- */
  --container:    1240px;
  --container-narrow: 960px;
  --header-h:     128px;

  /* ---------- Motion ---------- */
  --ease:         cubic-bezier(.2, .8, .2, 1);
  --t-fast:       150ms;
  --t-mid:        240ms;
  --t-slow:       400ms;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--pink); color: #fff; }

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

/* ===== Skip link ===== */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--pink); color: #fff; padding: 12px 16px;
  font-weight: 700; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section { padding: var(--space-9) 0; }
@media (max-width: 720px) { section { padding: var(--space-7) 0; } }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0 0 var(--space-4);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.5rem, 6vw + 1rem, var(--text-6xl)); }
h2 { font-size: clamp(2rem, 4vw + 1rem, var(--text-5xl)); }
h3 { font-size: clamp(1.5rem, 2vw + 1rem, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
p  { margin: 0 0 var(--space-4); color: var(--ink-muted); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--space-3);
}
/* On heroes with a video background the saturated brand pink is hard to read.
   Use a high-contrast warm-white that still nods to the brand palette. */
.hero--video .eyebrow {
  color: #FFD7E8;                      /* light pink — high contrast on darkened video */
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { font-size: var(--text-lg); color: var(--ink-muted); max-width: 60ch; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  min-height: 48px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 3px solid var(--pink-glow);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #0A0A0A;
  box-shadow: var(--glow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-pink), 0 12px 30px rgba(255,27,141,.4); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--orange);
  box-shadow: 0 0 0 0 transparent;
}
.btn-secondary:hover {
  background: rgba(255,138,0,.08);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.04); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: var(--text-lg); min-height: 56px; }

/* ===== Site header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
}
.brand {
  display: flex;
  align-items: center;
  line-height: 0;             /* removes baseline gap below the logo image */
}
.brand img {
  height: 116px;              /* fills the header — sole brand identifier */
  width: auto;
  max-width: 380px;
  display: block;
  /* Subtle drop shadow helps the logo edges blend into the dark header
     and disguises any rasterization artifacts at the cutout boundary. */
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}
@media (max-width: 980px) {
  .brand img { height: 96px; }
}
@media (max-width: 720px) {
  .brand img { height: 76px; }
}
@media (max-width: 480px) {
  .brand img { height: 64px; }
}

.nav {
  display: flex; align-items: center; gap: var(--space-5);
}
.nav__list { display: flex; gap: var(--space-5); list-style: none; margin: 0; padding: 0; }
.nav__link {
  font-weight: 600; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-muted);
  position: relative; padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after,
.nav__link:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gradient-brand);
}

.header-cta { display: flex; align-items: center; gap: var(--space-3); }
.header-phone {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-size: var(--text-xl);
  letter-spacing: 0.04em; color: var(--orange);
}
.header-phone:hover { color: var(--orange-glow); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}
.nav-toggle__bar {
  width: 22px; height: 2px; background: var(--ink); position: relative;
  transition: transform var(--t-fast) var(--ease);
}
.nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink);
  transition: transform var(--t-fast) var(--ease), top var(--t-fast) var(--ease);
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav__list { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));   /* dynamic vh for mobile Safari */
    background-color: #0A0A0A;                    /* solid fallback */
    background: var(--bg, #0A0A0A);               /* var with fallback */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: var(--space-6) var(--space-5);
    border-top: 1px solid var(--border);
    gap: var(--space-4);
    z-index: 99;                                  /* sit above page content + mobile call bar */
    overflow-y: auto;                             /* scroll if content exceeds viewport */
    overscroll-behavior: contain;
  }
  .nav.is-open .nav__link { font-size: var(--text-xl); }

  /* When the menu is open, also make the header strip itself solid so the
     translucent backdrop-blur doesn't read as "leaky" alongside the menu.
     JS adds .menu-open to <body> when the hamburger is tapped. */
  body.menu-open .site-header {
    background: #0A0A0A;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  padding: var(--space-9) 0;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255,27,141,.18), transparent 60%),
    radial-gradient(60% 60% at 85% 80%, rgba(255,138,0,.18), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 2; }

/* ===== Hero with video background ===== */
.hero--video { isolation: isolate; }
.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
/* Darken the video and keep brand colour tints — text remains readable */
.hero--video::before {
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255, 27, 141, 0.22), transparent 60%),
    radial-gradient(60% 60% at 85% 80%, rgba(255, 138, 0, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.82) 100%);
  z-index: 1;
}
.hero--video::after { z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__video { display: none; }
}
.hero h1 {
  font-size: clamp(2.75rem, 7vw + 1rem, 6rem);
  line-height: 0.9;
  margin-bottom: var(--space-5);
}
.hero__sub { font-size: clamp(var(--text-lg), 2vw, var(--text-xl)); margin-bottom: var(--space-6); max-width: 60ch; }
.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(var(--text-lg), 1.6vw + .8rem, var(--text-2xl));
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  max-width: 64ch;
  margin: 0 0 var(--space-4);
}
.hero__tagline strong {
  color: var(--orange-glow);
  font-weight: 700;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-7); }
.hero__trustline {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: var(--space-4);
  color: var(--ink-soft); font-size: var(--text-sm);
}
.hero__trustline strong { color: var(--ink); }

/* ===== Trust bar ===== */
.trustbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-5) 0;
  background: var(--bg-elevated);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-5);
  text-align: center;
}
.trustbar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--ink);
  letter-spacing: 0.04em;
}
.trustbar__item span { color: var(--ink-soft); font-size: var(--text-sm); }

/* ===== Section heading ===== */
.section-head { max-width: 780px; margin-bottom: var(--space-7); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Service cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.service-card {
  position: relative;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--gradient-brand);
  opacity: 0; transition: opacity var(--t-mid) var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-brand);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand-soft);
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
  color: var(--orange);
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.service-card p { font-size: var(--text-base); }

/* ===== Why-us / feature grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.feature {
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature__num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--orange);
  letter-spacing: 0.04em;
  display: block; margin-bottom: var(--space-2);
}
.feature h4 { margin-bottom: var(--space-2); }
.feature p { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  padding: var(--space-9) 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,27,141,.25), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,138,0,.25), transparent 50%),
    var(--bg-elevated);
  border-top: 1px solid var(--border-brand);
  border-bottom: 1px solid var(--border-brand);
  text-align: center;
}
.cta-band h2 { margin-bottom: var(--space-5); }
.cta-band__ctas {
  display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center;
}

/* ===== City list / service area ===== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}
.city-link {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.city-link::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: var(--glow-pink);
  flex-shrink: 0;
}
.city-link:hover {
  border-color: var(--border-brand);
  background: var(--surface-2);
  transform: translateX(4px);
}

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: var(--space-5) 0;
}
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem; line-height: 1;
  color: var(--orange);
  transition: transform var(--t-fast) var(--ease);
}
.faq details[open] summary::after { content: '−'; }
.faq details > p { margin: var(--space-3) 0 0; color: var(--ink-muted); }

/* ===== Form ===== */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.form-row { margin-bottom: var(--space-4); }
.form-row label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-2);
}
.form-row label .req { color: var(--pink); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  font-size: var(--text-base);
  min-height: 48px;
  transition: border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,27,141,.18);
}
.form-row .helper { font-size: var(--text-xs); color: var(--ink-soft); margin-top: var(--space-1); }
.form-row .error  { font-size: var(--text-xs); color: var(--danger); margin-top: var(--space-1); display: none; }
.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea { border-color: var(--danger); }
.form-row.is-invalid .error   { display: block; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

.honey { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.form-message { padding: var(--space-4); border-radius: var(--radius); margin-bottom: var(--space-4); }
.form-message--success { background: rgba(34,197,94,.12); border: 1px solid var(--success); color: var(--success); }
.form-message--error   { background: rgba(239,68,68,.12); border: 1px solid var(--danger);  color: var(--danger); }

/* ===== Two-column generic ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ===== Site footer ===== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: var(--space-8) 0 var(--space-5);
  margin-top: var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 var(--space-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a { color: var(--ink-muted); transition: color var(--t-fast) var(--ease); font-size: var(--text-sm); }
.footer-col a:hover { color: var(--ink); }

.footer-brand p { color: var(--ink-soft); font-size: var(--text-sm); }

.footer-cta {
  display: flex; flex-direction: column; gap: var(--space-2);
}
.footer-phone {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--orange);
  letter-spacing: 0.04em;
}

.copyright {
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--ink-soft);
}

/* ===== Sticky mobile call bar ===== */
.mobile-call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--gradient-brand);
  color: #0A0A0A;
  padding: 14px var(--space-4);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.06em;
  box-shadow: 0 -4px 20px rgba(0,0,0,.6);
}
.mobile-call-bar:hover { color: #0A0A0A; filter: brightness(1.05); }
@media (max-width: 720px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }
}

/* ===== Utility ===== */
.muted { color: var(--ink-muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,27,141,.15);
  color: var(--pink);
  border: 1px solid var(--border-brand);
}

/* ===== Quote modal ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-5) var(--space-4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.is-open {
  display: flex;
  animation: modal-fade-in var(--t-mid) var(--ease);
}
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 27, 141, 0.18);
  animation: modal-scale-in var(--t-mid) var(--ease);
}
.modal__panel h2 {
  margin-bottom: var(--space-2);
  padding-right: var(--space-7);
}
.modal__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}
.modal__close:hover {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--border-strong);
  transform: rotate(90deg);
}
.modal__close:focus-visible {
  outline: 3px solid var(--pink-glow);
  outline-offset: 2px;
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 600px) {
  .modal { padding: var(--space-3); }
  .modal__panel { padding: var(--space-6) var(--space-5); }
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modal-scale-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== Subtle reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
