/* ==========================================================================
   C.D. Leisure — "Your Partner in Profit!"
   Single stylesheet. Mobile-first. No external requests.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette — premium dark, gold primary, cherry accent */
  --bg:            #0b0b0f;
  --bg-alt:        #101017;
  --surface:       #16161f;
  --surface-2:     #1e1e2a;
  --line:          rgba(255, 255, 255, 0.10);
  --line-strong:   rgba(255, 255, 255, 0.18);

  --gold:          #f5b301;
  --gold-bright:   #ffd45e;
  --gold-deep:     #c88f00;
  --cherry:        #e01f3d;
  --cherry-deep:   #a8102a;
  --green:         #35c57a;

  --text:          #f5f5f8;
  --text-muted:    #b3b3c2;   /* 9.1:1 on --bg — WCAG AA/AAA for body text */
  --text-on-gold:  #14100a;

  /* Typography — system stack, zero network cost */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.09rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.75rem, 1.50rem + 1.25vw, 2.60rem);
  --step-4:  clamp(2.10rem, 1.65rem + 2.20vw, 3.60rem);

  /* Space */
  --sp-1: 0.5rem;
  --sp-2: 0.875rem;
  --sp-3: 1.25rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow:    0 10px 30px -12px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 28px 60px -22px rgba(0, 0, 0, 0.85);
  --glow:      0 0 0 1px rgba(245, 179, 1, 0.30), 0 18px 45px -20px rgba(245, 179, 1, 0.55);

  --container: 1180px;
  --header-h:  70px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
  /* Soft gold aura behind the page, purely decorative */
  background-image:
    radial-gradient(900px 520px at 82% -8%, rgba(245, 179, 1, 0.10), transparent 62%),
    radial-gradient(760px 460px at 6% 4%, rgba(224, 31, 61, 0.08), transparent 60%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0 0 var(--sp-2);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }

p { margin: 0 0 var(--sp-3); }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

ul, ol { margin: 0 0 var(--sp-3); padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

strong, b { font-weight: 700; color: #fff; }
small { font-size: var(--step--1); }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--text-on-gold); }

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

.skip-link {
  position: absolute;
  left: var(--sp-3);
  top: -100px;
  z-index: 1200;
  background: var(--gold);
  color: var(--text-on-gold);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--text-on-gold); }

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

/* --------------------------------------------------------------------------
   3. Buttons & shared bits
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--step-0);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: var(--text-on-gold);
  box-shadow: 0 12px 28px -14px rgba(245, 179, 1, 0.9);
}
.btn--primary:hover {
  color: var(--text-on-gold);
  box-shadow: 0 18px 38px -14px rgba(245, 179, 1, 1);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); color: #fff; }

.btn--cherry {
  background: linear-gradient(135deg, var(--cherry), var(--cherry-deep));
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(224, 31, 61, 0.9);
}
.btn--cherry:hover { color: #fff; }

.btn--lg { padding: 1.05rem 2.1rem; font-size: var(--step-1); }
.btn--block { display: flex; width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--sp-2);
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(245, 179, 1, 0.35);
  border-radius: 999px;
  background: rgba(245, 179, 1, 0.09);
  color: var(--gold-bright);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.lede { font-size: var(--step-1); color: var(--text-muted); max-width: 62ch; }
.muted { color: var(--text-muted); }
.gold  { color: var(--gold); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.section { padding-block: var(--sp-6); }
.section--tight { padding-block: var(--sp-5); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
/* Marks the lead-form section. JS targets it when scrolling to the nearest
   form, so the offset keeps the heading clear of the sticky header. */
.section--form { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

.section-head { max-width: 72ch; margin-bottom: var(--sp-5); }
.section-head.center { margin-inline: auto; text-align: center; }

.rule {
  width: 64px; height: 3px;
  margin: var(--sp-2) 0 var(--sp-3);
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cherry));
}
.center .rule { margin-inline: auto; }

.grid { display: grid; gap: var(--sp-3); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  padding: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 179, 1, 0.42);
  box-shadow: var(--shadow-lg);
}
.card h3 { color: #fff; }
.card p:last-child { margin-bottom: 0; }
/* A bare <a class="card"> would otherwise inherit the anchor's gold link
   colour into every descendant, including body text. .product-card already
   overrides this for its own paragraph; this covers any other card used as
   a link (e.g. the extra-services.html quick-nav grid). */
a.card, a.card:hover { color: var(--text); }
a.card p { color: var(--text-muted); }

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: var(--sp-3);
  border: 1px solid rgba(245, 179, 1, 0.35);
  border-radius: 14px;
  background: radial-gradient(circle at 30% 25%, rgba(245, 179, 1, 0.22), rgba(245, 179, 1, 0.05));
  color: var(--gold);
}

.tick-list { list-style: none; padding: 0; margin: 0 0 var(--sp-3); }
.tick-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
}
.tick-list li::after {
  content: "";
  position: absolute;
  left: 0.34rem; top: 0.62em;
  width: 0.42rem; height: 0.22rem;
  border-left: 2px solid var(--text-on-gold);
  border-bottom: 2px solid var(--text-on-gold);
  transform: rotate(-45deg);
}
.tick-list strong { color: #fff; }

/* --------------------------------------------------------------------------
   4. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11, 11, 15, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  color: var(--text);
  line-height: 1.05;
}
.brand:hover { color: var(--text); }
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep));
  color: var(--text-on-gold);
  box-shadow: 0 8px 20px -10px rgba(245, 179, 1, 0.95);
}
.brand__name {
  display: block;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block;
  width: 19px; height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem;
}
.nav li { margin: 0; }
.nav a {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nav a[aria-current="page"] {
  color: var(--gold);
  background: rgba(245, 179, 1, 0.11);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.header-call { display: none; }

/* Mobile nav */
@media (max-width: 1023px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav ul { flex-direction: column; padding: var(--sp-2) var(--sp-3) var(--sp-4); gap: 0.2rem; }
  .nav a { padding: 0.85rem 0.9rem; font-size: 1.05rem; }
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .header-call {
    display: inline-flex;
    padding: 0.6rem 1.15rem;
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: var(--sp-6) var(--sp-5);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.hero__grid {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-6); }
}
.hero h1 { margin-bottom: var(--sp-3); }
.hero h1 .gold {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 45%, var(--cherry));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.hero__cta--center { justify-content: center; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.30), transparent 66%);
  filter: blur(38px);
}
.hero__float {
  position: absolute;
  right: -6px;
  bottom: 22px;
  max-width: 230px;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(245, 179, 1, 0.4);
  border-radius: var(--radius);
  background: rgba(16, 16, 23, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  font-size: var(--step--1);
  line-height: 1.45;
}
.hero__float strong { display: block; color: var(--gold); font-size: 1.35rem; line-height: 1.1; }

/* Trust badges */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--sp-4);
  padding: 0;
  list-style: none;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: var(--step--1);
  font-weight: 700;
}
.trust svg { color: var(--gold); flex: none; }

/* --------------------------------------------------------------------------
   6. Offer banner
   -------------------------------------------------------------------------- */
.offer-banner {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(245, 179, 1, 0.35);
  background:
    linear-gradient(100deg, rgba(224, 31, 61, 0.20), rgba(245, 179, 1, 0.16) 55%, rgba(224, 31, 61, 0.20));
}
.offer-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-4);
  padding-block: var(--sp-3);
  text-align: center;
}
.offer-banner p { margin: 0; font-size: var(--step-1); font-weight: 700; }
.offer-banner .amount {
  color: var(--gold-bright);
  font-size: 1.35em;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.offer-banner__note { font-size: var(--step--1); color: var(--text-muted); font-weight: 600; }

/* --------------------------------------------------------------------------
   7. Product cards / gallery
   -------------------------------------------------------------------------- */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { color: inherit; }
.product-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
}
.product-card__media > svg { width: 100%; height: 100%; }
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__body { display: block; padding: var(--sp-3) var(--sp-4) var(--sp-4); }
.product-card__body h3 { margin-bottom: 0.45rem; }
.product-card__body p { color: var(--text-muted); font-size: var(--step--1); }
.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--sp-2);
  color: var(--gold);
  font-weight: 700;
  font-size: var(--step--1);
}
.product-card:hover .product-card__more { color: var(--gold-bright); }

/* auto-fit so a gallery of 1, 2 or 7 figures all fill the row properly */
.gallery {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.gallery figure:hover { transform: translateY(-6px); border-color: rgba(245, 179, 1, 0.4); }
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #000;
}
.gallery figcaption {
  padding: var(--sp-3);
  font-size: var(--step--1);
  color: var(--text-muted);
}
.gallery figcaption strong { display: block; color: #fff; font-size: var(--step-0); margin-bottom: 0.2rem; }
/* Wide variant: fewer, larger figures — used where only one or two photos exist */
.gallery--wide {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  max-width: 940px;
  margin-inline: auto;
}
.gallery--wide img { aspect-ratio: 16 / 10; }

/* Spacing utilities — avoids inline styles for the few one-off gaps */
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Split feature row */
.split {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .split--reverse .split__media { order: 2; }
}
.split__media img {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   8. Steps / how it works
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-3); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: var(--sp-4); }
.step__num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: var(--sp-3);
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep));
  color: var(--text-on-gold);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 12px 26px -14px rgba(245, 179, 1, 0.95);
}
.step h3 { color: #fff; }
.step p { color: var(--text-muted); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   9. USP grid
   -------------------------------------------------------------------------- */
.usp {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
              background-color 0.25s var(--ease);
}
.usp:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 179, 1, 0.4);
  background: rgba(245, 179, 1, 0.05);
}
.usp__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(245, 179, 1, 0.13);
  color: var(--gold);
}
.usp h3 { font-size: var(--step-0); margin-bottom: 0.25rem; color: #fff; }
.usp p { margin: 0; font-size: var(--step--1); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   10. Testimonials
   -------------------------------------------------------------------------- */
.quote { display: flex; flex-direction: column; }
.quote__stars { display: flex; gap: 3px; margin-bottom: var(--sp-2); color: var(--gold); }
.quote blockquote {
  margin: 0 0 var(--sp-3);
  font-size: var(--step-0);
  color: var(--text);
  line-height: 1.7;
}
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after  { content: "\201D"; }
.quote figcaption {
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
  font-size: var(--step--1);
  color: var(--text-muted);
}
.quote figcaption strong { display: block; color: #fff; }

/* --------------------------------------------------------------------------
   11. FAQ (native details/summary accordion)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.7rem; max-width: 860px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.22s var(--ease);
}
.faq details[open] { border-color: rgba(245, 179, 1, 0.4); }
.faq summary {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3);
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  margin-left: auto;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq summary:hover { background: rgba(255, 255, 255, 0.04); }
.faq .faq__answer { padding: 0 var(--sp-3) var(--sp-3); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   12. Lead form
   -------------------------------------------------------------------------- */
.form-card {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid rgba(245, 179, 1, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(245, 179, 1, 0.07), rgba(22, 22, 31, 0.9) 42%),
    var(--surface);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .form-card { grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-6); padding: var(--sp-5); }
}
.form-card__intro h2 { font-size: var(--step-2); }
.form-card__intro p { color: var(--text-muted); }
.phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: var(--sp-2);
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--gold);
}
.phone-inline svg { flex: none; }

.lead-form { display: grid; gap: var(--sp-3); }
.field { display: grid; gap: 0.4rem; }
.field label, .fieldset-legend {
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--text);
}
.field .req { color: var(--cherry); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: var(--step-0);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}
.field select option { background: var(--surface-2); color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: #8b8ba6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.22);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--cherry);
  box-shadow: 0 0 0 3px rgba(224, 31, 61, 0.18);
}

.field-error {
  min-height: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff8095;
}
.field-error:empty { display: none; }

.field-row { display: grid; gap: var(--sp-3); }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.check-group {
  margin: 0;
  padding: 0;
  border: 0;
}
.check-group .options {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 460px) { .check-group .options { grid-template-columns: 1fr 1fr; } }
.check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
  font-size: var(--step--1);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.check:hover { border-color: rgba(245, 179, 1, 0.5); }
.check input { width: 18px; height: 18px; accent-color: var(--gold); flex: none; }
.check:has(input:checked) {
  border-color: var(--gold);
  background: rgba(245, 179, 1, 0.10);
}

/* Honeypot — visually and semantically hidden from humans */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-status {
  padding: var(--sp-3);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1.6;
}
.form-status:empty { display: none; }
.form-status[data-state="error"] {
  border: 1px solid rgba(224, 31, 61, 0.5);
  background: rgba(224, 31, 61, 0.12);
  color: #ffc3cd;
}
.form-status[data-state="ok"] {
  border: 1px solid rgba(53, 197, 122, 0.5);
  background: rgba(53, 197, 122, 0.12);
  color: #b4f2d3;
}
.form-status a { color: var(--gold-bright); text-decoration: underline; }

.form-small { font-size: 0.8rem; color: var(--text-muted); }
.form-small a { text-decoration: underline; }

.btn[data-busy="true"] { opacity: 0.75; pointer-events: none; }

/* --------------------------------------------------------------------------
   13. CTA strip
   -------------------------------------------------------------------------- */
.cta-strip {
  padding: var(--sp-5);
  border: 1px solid rgba(245, 179, 1, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(680px 240px at 50% 0%, rgba(245, 179, 1, 0.18), transparent 70%),
    linear-gradient(160deg, var(--surface), var(--bg-alt));
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.cta-strip h2 { font-size: var(--step-2); }
.cta-strip p { color: var(--text-muted); max-width: 60ch; margin-inline: auto; }
.cta-strip .hero__cta { justify-content: center; }

/* --------------------------------------------------------------------------
   14. Venue / content blocks
   -------------------------------------------------------------------------- */
.venue-block { scroll-margin-top: calc(var(--header-h) + 2rem); }
.venue-block + .venue-block { margin-top: var(--sp-5); }

.prose { max-width: 78ch; }
.prose h2 { font-size: var(--step-2); margin-top: var(--sp-5); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--sp-4); }
.prose li { color: var(--text-muted); }
.prose p { color: var(--text-muted); }

.breadcrumbs {
  padding-block: var(--sp-3) 0;
  font-size: var(--step--1);
  color: var(--text-muted);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li { margin: 0; display: flex; gap: 0.4rem; align-items: center; }
.breadcrumbs li + li::before { content: "/"; color: var(--line-strong); }

.page-head { padding-block: var(--sp-5) var(--sp-4); }
.page-head h1 { font-size: var(--step-3); }

.stat-row { display: grid; gap: var(--sp-3); }
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat {
  padding: var(--sp-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}
.stat b {
  display: block;
  font-size: var(--step-3);
  font-weight: 900;
  line-height: 1.05;
  color: var(--gold);
}
.stat span { font-size: var(--step--1); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: var(--sp-6);
  padding-block: var(--sp-5) var(--sp-4);
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.footer-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 700px)  { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }
.site-footer h2 {
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--text-muted); font-size: var(--step--1); }
.site-footer a:hover { color: var(--gold); }
.site-footer p { color: var(--text-muted); font-size: var(--step--1); }
.footer-intro { margin-top: 1rem; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--gold) !important;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.footer-bottom li { margin: 0; }

/* --------------------------------------------------------------------------
   16. Sticky mobile call bar + callback FAB
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed;
  z-index: 950;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -12px 30px -18px rgba(0, 0, 0, 0.95);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 0.6rem;
  font-size: 0.95rem;
  font-weight: 800;
}
.mobile-bar__call  { background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: var(--text-on-gold); }
.mobile-bar__call:hover { color: var(--text-on-gold); }
.mobile-bar__quote { background: var(--surface-2); color: var(--text); }
.mobile-bar__quote:hover { color: #fff; }

.callback-fab {
  position: fixed;
  z-index: 940;
  left: var(--sp-3);
  bottom: 84px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(245, 179, 1, 0.45);
  border-radius: 999px;
  background: rgba(16, 16, 23, 0.95);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.callback-fab:hover { transform: translateY(-3px); background: rgba(245, 179, 1, 0.14); }

body { padding-bottom: 64px; }

@media (min-width: 1024px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .callback-fab { bottom: 26px; }
}

/* --------------------------------------------------------------------------
   17. Cookie consent
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  z-index: 1100;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: 76px;
  max-width: 760px;
  margin-inline: auto;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(16, 16, 23, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  animation: slide-up 0.4s var(--ease) both;
}
@media (min-width: 1024px) { .cookie-banner { bottom: var(--sp-3); } }
.cookie-banner h2 { font-size: var(--step-0); margin-bottom: 0.35rem; }
.cookie-banner p { font-size: var(--step--1); color: var(--text-muted); margin-bottom: var(--sp-3); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-banner .btn { padding: 0.6rem 1.15rem; font-size: 0.88rem; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* While the consent banner is on screen it would otherwise sit on top of the
   chat launcher and the callback button. main.js toggles this class on <body>
   so the floating controls lift clear of it. */
body.has-cookie-banner .chat-launcher,
body.has-cookie-banner .callback-fab { bottom: 300px; }
body.has-cookie-banner .chat-panel   { bottom: 300px; max-height: min(56dvh, 480px); }

@media (min-width: 1024px) {
  body.has-cookie-banner .chat-launcher,
  body.has-cookie-banner .callback-fab { bottom: 240px; }
  body.has-cookie-banner .chat-panel   { bottom: 240px; }
}

/* --------------------------------------------------------------------------
   18. Chat widget
   -------------------------------------------------------------------------- */
.chat-launcher {
  position: fixed;
  z-index: 1000;
  right: var(--sp-3);
  bottom: 84px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(245, 179, 1, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--text-on-gold);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px -16px rgba(245, 179, 1, 0.95);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.chat-launcher:hover { transform: translateY(-3px); }
.chat-launcher[hidden] { display: none; }
.chat-launcher__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0f7a3d;
  box-shadow: 0 0 0 0 rgba(15, 122, 61, 0.7);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(15, 122, 61, 0.65); }
  70%  { box-shadow: 0 0 0 9px rgba(15, 122, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 122, 61, 0); }
}
@media (min-width: 1024px) { .chat-launcher { bottom: 26px; } }

.chat-panel {
  position: fixed;
  z-index: 1001;
  right: var(--sp-3);
  bottom: 84px;
  left: var(--sp-3);
  display: flex;
  flex-direction: column;
  max-width: 400px;
  max-height: min(72dvh, 620px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(245, 179, 1, 0.32);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  transform-origin: bottom right;
  animation: chat-in 0.28s var(--ease) both;
}
.chat-panel[hidden] { display: none; }
@media (min-width: 1024px) { .chat-panel { bottom: 26px; } }

@keyframes chat-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: var(--sp-3);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(245, 179, 1, 0.16), transparent);
}
.chat-head__avatar {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep));
  color: var(--text-on-gold);
}
.chat-head__title { font-size: 0.95rem; font-weight: 800; line-height: 1.2; }
.chat-head__sub { font-size: 0.75rem; color: var(--text-muted); }
.chat-head__sub b { color: var(--green); font-weight: 700; }
.chat-close {
  margin-left: auto;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}
.chat-close:hover { background: rgba(255, 255, 255, 0.12); }

.chat-log {
  flex: 1;
  min-height: 180px;
  overflow-y: auto;
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  scrollbar-width: thin;
}
.chat-msg {
  max-width: 86%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
  animation: msg-in 0.24s var(--ease) both;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  background: var(--surface-2);
  color: var(--text);
}
.chat-msg--user {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--text-on-gold);
  font-weight: 600;
}
.chat-msg a { color: var(--gold); text-decoration: underline; font-weight: 700; }
.chat-msg--user a { color: var(--text-on-gold); }
.chat-msg strong { color: #fff; }
.chat-msg--user strong { color: var(--text-on-gold); }

.chat-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
  background: var(--surface-2);
}
.chat-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-4px); }
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 var(--sp-3) var(--sp-2);
}
.chat-chips:empty { display: none; }
.chat-chip {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(245, 179, 1, 0.4);
  border-radius: 999px;
  background: rgba(245, 179, 1, 0.09);
  color: var(--gold-bright);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s var(--ease);
}
.chat-chip:hover { background: rgba(245, 179, 1, 0.2); }

.chat-form {
  display: flex;
  gap: 0.5rem;
  padding: var(--sp-2) var(--sp-3) var(--sp-3);
  border-top: 1px solid var(--line);
}
.chat-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}
.chat-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.2);
}
.chat-send {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--text-on-gold);
  cursor: pointer;
  transition: transform 0.18s var(--ease);
}
.chat-send:hover { transform: scale(1.06); }

/* --------------------------------------------------------------------------
   19. Scroll reveal
   -------------------------------------------------------------------------- */
/* The hidden state is keyed on [data-reveal], which main.js adds at runtime.
   If JavaScript never loads, .reveal elements are simply visible — content is
   never hidden by CSS alone. */
.reveal[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  will-change: opacity, transform;
}
.reveal[data-reveal].is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   19b. Comparison ("why us") section
   -------------------------------------------------------------------------- */
.compare-grid {
  display: grid;
  gap: var(--sp-3);
  align-items: start;
}
@media (min-width: 760px) {
  .compare-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
}

.compare-col {
  padding: var(--sp-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.compare-col--them { opacity: 0.82; }
.compare-col--them h3 { color: var(--text-muted); font-size: var(--step-0); }

.compare-col--us {
  position: relative;
  background: linear-gradient(165deg, rgba(245, 179, 1, 0.10), var(--surface) 60%);
  border-color: rgba(245, 179, 1, 0.45);
  box-shadow: var(--glow);
}
.compare-col--us h3 { color: #fff; font-size: var(--step-0); }
.compare-col__badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--text-on-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-list { list-style: none; margin: var(--sp-2) 0 0; padding: 0; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: var(--step--1);
  line-height: 1.5;
}
.compare-list li:last-child { border-bottom: 0; }
.compare-list__icon { flex: none; margin-top: 0.15em; }
.compare-list--them .compare-list__icon { color: #ff8095; }
.compare-list--win .compare-list__icon { color: var(--gold); }
.compare-list--win li { color: var(--text); }
.compare-list--win strong { color: #fff; }

.compare-note { margin-top: var(--sp-3); font-size: 0.82rem; }

/* A single, factual, named comparison — kept visually distinct from the
   generic "many operators" list above it, and always paired with a citation
   line so the claim is clearly sourced and dated. */
.compare-callout {
  max-width: 640px;
  margin: var(--sp-4) auto 0;
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
  border-color: rgba(245, 179, 1, 0.28);
}
.compare-callout p { color: var(--text); font-size: var(--step--1); margin-bottom: 0; }
.compare-callout cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   19c. Area coverage (nationwide SEO page) — regional chip lists
   -------------------------------------------------------------------------- */
.area-region { margin-bottom: var(--sp-4); }
.area-region:last-child { margin-bottom: 0; }
.area-region h3 {
  margin-bottom: var(--sp-2);
  font-size: var(--step-0);
  color: var(--gold);
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.area-chip {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   20. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal[data-reveal] { opacity: 1; transform: none; }
  .card:hover, .usp:hover, .btn:hover, .gallery figure:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   21. Print
   -------------------------------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; }
  .site-header, .mobile-bar, .callback-fab, .chat-launcher, .chat-panel,
  .cookie-banner, .site-footer, .lead-form { display: none !important; }
  .reveal[data-reveal] { opacity: 1; transform: none; }
}
