/* ==========================================================================
   GlowOps — Design tokens
   ========================================================================== */
:root {
  --black: #0a0907;
  --charcoal: #15120d;
  --charcoal-light: #201b14;
  --charcoal-lighter: #2b241a;

  --gold: #e3b34d;
  --gold-light: #f5d68c;
  --gold-deep: #a9781f;

  --red: #9c2b3c;
  --red-light: #c1465a;
  --green: #3f9142;
  --green-light: #4caf6d;

  --white: #f7f3ea;
  --white-pure: #ffffff;
  --text-muted: #b7ad9c;
  --text-faint: #7d7466;

  --border: rgba(247, 243, 234, 0.1);
  --border-strong: rgba(247, 243, 234, 0.18);

  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 100px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px rgba(227, 179, 77, 0.25);

  --max-width: 1200px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", -apple-system, sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--white-pure);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-alt { background: var(--charcoal); }
.section-tight { padding: 64px 0; }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(227, 179, 77, 0.1);
  border: 1px solid rgba(227, 179, 77, 0.28);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

/* ==========================================================================
   Bokeh decorative layer
   ========================================================================== */
.bokeh { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bokeh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.35;
}
.bokeh span:nth-child(1) { width: 320px; height: 320px; background: var(--gold); top: -80px; left: -60px; }
.bokeh span:nth-child(2) { width: 240px; height: 240px; background: var(--red); top: 40%; right: -60px; opacity: 0.22; }
.bokeh span:nth-child(3) { width: 200px; height: 200px; background: var(--green); bottom: -60px; left: 30%; opacity: 0.22; }
.bokeh span:nth-child(4) { width: 160px; height: 160px; background: var(--gold-light); top: 10%; right: 20%; opacity: 0.18; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--black);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 9, 7, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }

.header-left { display: flex; align-items: center; gap: 10px; }
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.call-now-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.call-now-icon { font-size: 1rem; line-height: 1; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links > li { position: relative; }
.nav-links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--white);
  padding: 8px 2px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold-light); }

.has-dropdown > a::after { content: "▾"; margin-left: 6px; font-size: 0.7em; color: var(--text-faint); }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-weight: 500; }
.dropdown a:hover { background: rgba(227, 179, 77, 0.1); color: var(--gold-light); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--gold-light);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 84px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--black); overflow: hidden; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Two hardcoded <video> elements (wide + vertical), each with a real
   <source> present in the HTML from the start — not a JS-assigned src,
   which is unreliable for autoplay in Safari. Only one is shown at a
   time via plain CSS; the hidden one being display:none also stops
   browsers from bothering to download or play it. */
.hero-video--vertical { display: none; }

@media (max-width: 980px) {
  .hero-video--wide { display: none; }
  .hero-video--vertical { display: block; }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.25), var(--black) 96%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(227, 179, 77, 0.1);
  border: 1px solid rgba(227, 179, 77, 0.28);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { font-size: 1.14rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-row li { display: flex; align-items: center; gap: 8px; }
.trust-row li::before { content: "✦"; color: var(--gold); }

/* Quick quote card */
.quote-card {
  background: var(--charcoal-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(227, 179, 77, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.quote-card h3 { margin-bottom: 4px; }
.quote-card .sub { font-size: 0.92rem; margin-bottom: 22px; }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 179, 77, 0.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-hint { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text-faint); }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-note { font-size: 0.78rem; color: var(--text-faint); margin-top: 12px; text-align: center; }

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.stat .label { font-size: 0.86rem; color: var(--text-muted); font-weight: 600; }

/* ==========================================================================
   Grids & cards
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); border-color: rgba(227, 179, 77, 0.3); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(227, 179, 77, 0.22), rgba(227, 179, 77, 0.05));
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card .card-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.card .card-link::after { content: " →"; }

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--green-light);
  font-weight: 700;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(247, 243, 234, 0.05);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--black);
  margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; }

/* ==========================================================================
   Placeholder photo blocks
   ========================================================================== */
.placeholder-glow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--charcoal-light), var(--charcoal));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.placeholder-glow::before,
.placeholder-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
}
.placeholder-glow::before { width: 140px; height: 140px; background: var(--gold); opacity: 0.28; top: -30px; left: -20px; }
.placeholder-glow::after { width: 120px; height: 120px; background: var(--green); opacity: 0.22; bottom: -30px; right: -10px; }
.placeholder-glow .ph-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0 20px;
}
.placeholder-glow .ph-label small {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.placeholder-glow.tall { aspect-ratio: 3 / 4; }
.placeholder-glow.wide { aspect-ratio: 16 / 9; }

.photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.photo.tall { aspect-ratio: 3 / 4; }
.photo.wide { aspect-ratio: 16 / 9; }

/* ==========================================================================
   Testimonials (placeholder-safe)
   ========================================================================== */
.testimonial {
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.9rem; }
.testimonial p { color: var(--white); font-style: italic; margin-bottom: 16px; }
.testimonial .who { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); }
.testimonial.is-placeholder { border-style: dashed; }
.testimonial.is-placeholder p { color: var(--text-faint); font-style: normal; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white-pure);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}
.faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  font-family: var(--font-body);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 4px 22px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--black); }
.cta-band p { color: rgba(10, 9, 7, 0.7); font-size: 1.05rem; max-width: 520px; margin: 0 auto 28px; }
.cta-band .btn-primary { background: var(--black); color: var(--white-pure); }
.cta-band .btn-primary:hover { background: var(--charcoal); }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header {
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-faint);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-header h1 { margin-bottom: 12px; }
.page-header .lead { max-width: 620px; margin: 0 auto; }

/* ==========================================================================
   Area pills (service area)
   ========================================================================== */
.area-pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-pill {
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.area-pill:hover { border-color: rgba(227, 179, 77, 0.3); transform: translateY(-2px); }
.area-pill h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--gold-light); }
.area-pill p { font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.info-card .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(227, 179, 77, 0.14);
  color: var(--gold-light);
  font-size: 1.2rem;
}
.info-card h4 { margin: 0 0 4px; font-family: var(--font-body); font-size: 0.95rem; color: var(--white-pure); }
.info-card p { font-size: 0.88rem; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 46px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; color: var(--white); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ==========================================================================
   Booking toast
   ========================================================================== */
.booking-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  max-width: 320px;
  background: var(--charcoal-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.booking-toast.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.booking-toast .toast-icon { color: var(--gold); font-size: 1.2rem; margin-top: 2px; }
.booking-toast p { font-size: 0.86rem; color: var(--white); margin: 0 0 10px; }
.booking-toast .toast-actions { display: flex; align-items: center; gap: 14px; }
.booking-toast a.btn { padding: 9px 18px; font-size: 0.82rem; }
.booking-toast .toast-close {
  background: none; border: none; color: var(--text-faint);
  font-size: 0.8rem; cursor: pointer; padding: 0;
}
.booking-toast .toast-close:hover { color: var(--white); }

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    z-index: 500;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.nav-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-links a { display: block; padding: 12px 4px; }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    box-shadow: none; border: none; background: var(--charcoal-light);
    margin: 6px 0 6px 10px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-pill-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  /* On stacked mobile layouts the hero grows very tall, which would force
     object-fit:cover to zoom into a tiny sliver of the video. Cap the
     background's height so a sensible, mostly-uncropped band of the video
     stays visible; the rest of the tall hero just shows the page's own
     dark background beneath it (seamless, same color). */
  .hero-bg { height: 640px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .hero { padding: 48px 0 64px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .area-pill-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .brand img { height: 42px; }
  .quote-card { padding: 24px 20px; }
  .booking-toast { left: 16px; right: 16px; max-width: none; }
}

