/* ============================================================
   LOCAL BOYS POOLS — GLOBAL DESIGN SYSTEM
   80s Retro-Sunset on a deep starry night. Shared across all pages.
   ============================================================ */

:root {
  /* ---- Brand Colors ---- */
  --color-bg:            #0A0A0A;
  --color-bg-soft:       #121218;
  --color-teal:          #48C3C8;
  --color-pink:          #FF8C94;
  --color-sand:          #FCE09B;
  --color-gold:          #D4AF37;
  --color-text:          #FFFFFF;
  --color-text-muted:    #C9C9D2;
  --color-text-dim:      #8A8A96;

  /* ---- Semantic tokens ---- */
  --surface-card:        rgba(18, 18, 24, 0.72);
  --surface-card-2:      rgba(255, 255, 255, 0.03);
  --card-border-gold:    rgba(212, 175, 55, 0.9);
  --hairline:            rgba(255, 255, 255, 0.10);

  /* ---- Gradients ---- */
  --grad-sunset:  linear-gradient(100deg, var(--color-pink) 0%, var(--color-sand) 100%);
  --grad-wrap:    linear-gradient(90deg, var(--color-teal) 0%, var(--color-pink) 50%, var(--color-sand) 100%);
  --grad-hero-glow: radial-gradient(120% 90% at 50% 118%,
                      rgba(252, 224, 155, 0.55) 0%,
                      rgba(255, 140, 148, 0.42) 28%,
                      rgba(72, 195, 200, 0.20) 52%,
                      rgba(10, 10, 10, 0) 72%);

  /* ---- Typography ---- */
  --font-display: 'Montserrat', system-ui, sans-serif; /* headings — bold, uppercase */
  --font-ui:     'Montserrat', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;

  /* ---- Type scale ---- */
  --fs-hero:  clamp(2.6rem, 6.5vw, 5.25rem);
  --fs-h2:    clamp(2rem, 4.5vw, 3.25rem);
  --fs-h3:    clamp(1.2rem, 2.3vw, 1.6rem);
  --fs-lead:  clamp(1.05rem, 1.8vw, 1.35rem);
  --fs-body:  1rem;
  --fs-small: 0.875rem;

  /* ---- Spacing (8pt rhythm) ---- */
  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 64px; --space-7: 96px; --space-8: 128px;

  /* ---- Layout ---- */
  --container: 1200px;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* ---- Effects ---- */
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-glow-teal: 0 0 28px rgba(72, 195, 200, 0.45);
  --shadow-glow-gold: 0 0 26px rgba(212, 175, 55, 0.35);
  --ring-focus: 0 0 0 3px rgba(72, 195, 200, 0.85);

  /* ---- Z-index ---- */
  --z-base: 0; --z-waves: 5; --z-content: 10; --z-header: 40; --z-modal: 100;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 240ms;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

/* Starry-night overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-base);
  pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,255,255,0.9), transparent 60%),
    radial-gradient(1.2px 1.2px at 28% 62%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.6px 1.6px at 47% 32%, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(1.1px 1.1px at 63% 74%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.7px 1.7px at 78% 22%, rgba(255,255,255,0.9), transparent 60%),
    radial-gradient(1.2px 1.2px at 88% 58%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.3px 1.3px at 8% 82%, rgba(255,255,255,0.65), transparent 60%),
    radial-gradient(1.5px 1.5px at 38% 90%, rgba(255,255,255,0.75), transparent 60%),
    radial-gradient(1.1px 1.1px at 55% 12%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.6px 1.6px at 70% 46%, rgba(255,255,255,0.8), transparent 60%),
    radial-gradient(1.2px 1.2px at 93% 84%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.3px 1.3px at 20% 40%, rgba(255,255,255,0.55), transparent 60%);
  background-repeat: repeat;
  background-size: 620px 620px;
  opacity: 0.55;
  animation: twinkle 7s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.42; } to { opacity: 0.68; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: none; box-shadow: var(--ring-focus); border-radius: 6px; }

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

h1, h2 { font-family: var(--font-display); font-weight: 800; line-height: 1.06; letter-spacing: -0.01em; text-transform: uppercase; }
h3, h4 { font-family: var(--font-ui); font-weight: 700; line-height: 1.2; }

.tint-teal { color: var(--color-teal); }
.tint-pink { color: var(--color-pink); }
.tint-sand { color: var(--color-sand); }
.tint-gold { color: var(--color-gold); }

/* ===========================================================
   TRUST / AWARD BANNER
   =========================================================== */
.trust-bar {
  position: relative;
  z-index: var(--z-header);
  background: linear-gradient(90deg, rgba(212,175,55,0.16), rgba(212,175,55,0.06));
  border-bottom: 1px solid rgba(212,175,55,0.35);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 9px var(--space-3); text-align: center; flex-wrap: wrap;
}
.trust-bar__star { color: var(--color-gold); }
.trust-bar b { color: var(--color-sand); }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); padding-block: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; object-fit: contain; background: transparent; }
.brand-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.15rem; color: var(--color-sand); line-height: 1.05; }
.brand-name span { color: var(--color-teal); }

.nav-links { display: none; align-items: center; gap: var(--space-3); font-family: var(--font-ui); font-weight: 600; font-size: 0.92rem; }
.nav-links a { color: var(--color-text-muted); transition: color var(--dur) var(--ease-out); position: relative; padding-block: 6px; }
.nav-links a:hover { color: var(--color-teal); }
.nav-links a[aria-current="page"] { color: var(--color-sand); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--grad-wrap); border-radius: 2px;
}
.site-header .nav-cta { display: none; } /* higher specificity than .btn so it actually hides */

@media (min-width: 1000px) { .nav-links { display: flex; } .site-header .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--hairline); border-radius: 12px;
  color: var(--color-text); cursor: pointer;
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }

/* Mobile menu (checkbox-free: toggled via [data-open]) */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: var(--space-2) var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--hairline);
  background: rgba(10,10,10,0.96);
  position: sticky; top: 70px; z-index: var(--z-header);
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui); font-weight: 600; padding: 12px 8px;
  border-radius: 10px; color: var(--color-text-muted); min-height: 44px; display: flex; align-items: center;
}
.mobile-menu a:hover { background: rgba(72,195,200,0.12); color: var(--color-teal); }
.mobile-menu .btn { margin-top: 8px; }
@media (min-width: 1000px) { .mobile-menu { display: none !important; } }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: none; cursor: pointer; min-height: 48px; text-align: center;
  transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--grad-sunset); color: #1a1206;
  box-shadow: 0 10px 30px rgba(255,140,148,0.35);
}
.btn--primary:hover { background: var(--color-teal); color: #04201f; box-shadow: var(--shadow-glow-teal); }
.btn--ghost { background: transparent; color: var(--color-text); border: 1.5px solid rgba(72,195,200,0.6); }
.btn--ghost:hover { background: rgba(72,195,200,0.12); border-color: var(--color-teal); }
.btn--gold { background: transparent; color: var(--color-sand); border: 1.5px solid var(--color-gold); }
.btn--gold:hover { background: rgba(212,175,55,0.14); box-shadow: var(--shadow-glow-gold); }
.btn--block { width: 100%; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(var(--space-6), 11vh, 140px);
  padding-bottom: clamp(80px, 12vh, 150px);
  text-align: center; isolation: isolate;
  background: url("../img/hero-bg.jpg") center 58% / cover no-repeat, var(--color-bg);
}
/* Dark overlay keeps text readable and blends the photo into the black page */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.42) 30%,
    rgba(10,10,10,0.40) 55%,
    rgba(10,10,10,0.72) 82%,
    rgba(10,10,10,0.97) 100%);
}
.hero .container { position: relative; z-index: var(--z-content); }
.hero__sun { display: none; } /* the photo provides the sunset glow */
.hero__badges { display: flex; align-items: center; justify-content: center; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-3); }
.hero__badges img { height: clamp(120px, 22vw, 190px); width: auto; filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55)); }
.hero__title { font-size: var(--fs-hero); margin-bottom: var(--space-3); }
.hero__lead { font-size: var(--fs-lead); color: var(--color-text-muted); max-width: 48ch; margin: 0 auto var(--space-4); line-height: 1.55; }
.hero__actions { display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap; }
.hero__meta { margin-top: var(--space-4); display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; font-family: var(--font-ui); font-weight: 600; font-size: 0.85rem; color: var(--color-text-dim); }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-teal); box-shadow: 0 0 10px var(--color-teal); }

/* Sweeping vehicle-wrap waves */
.waves { position: absolute; left: 0; right: 0; bottom: -1px; z-index: var(--z-waves); width: 100%; height: clamp(44px, 6vw, 88px); display: block; pointer-events: none; }
.waves--top { top: -1px; bottom: auto; transform: rotate(180deg); }

/* Page header (interior pages) */
.page-hero { position: relative; overflow: hidden; padding: clamp(var(--space-5), 8vh, 96px) 0 clamp(72px, 11vw, 140px); text-align: center; isolation: isolate;
  background: url("../img/hero-bg.jpg") center 62% / cover no-repeat, var(--color-bg); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.55) 45%,
    rgba(10,10,10,0.70) 78%,
    rgba(10,10,10,0.97) 100%); }
.page-hero .container { position: relative; z-index: var(--z-content); }
.page-hero__eyebrow { font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--color-teal); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); margin: var(--space-1) 0 var(--space-2); }
.page-hero p { color: var(--color-text-muted); max-width: 60ch; margin: 0 auto; font-size: var(--fs-lead); }

/* ===========================================================
   SECTIONS
   =========================================================== */
.section { position: relative; z-index: var(--z-content); padding-block: var(--space-7); }
.section--soft { background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); }
.section__eyebrow { font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; color: var(--color-teal); text-align: center; margin-bottom: var(--space-1); }
.section__title { font-size: var(--fs-h2); text-align: center; margin-bottom: var(--space-2); color: var(--color-sand); }
.section__intro { text-align: center; color: var(--color-text-muted); max-width: 62ch; margin: 0 auto var(--space-5); }

/* ===========================================================
   GRID + CARDS
   =========================================================== */
.grid { display: grid; gap: var(--space-3); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: var(--space-4);
  box-shadow: var(--shadow-card); transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-4px); border-color: rgba(72,195,200,0.4); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: var(--space-2); background: rgba(72,195,200,0.12); color: var(--color-teal); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { color: var(--color-text); margin-bottom: 8px; }
.card p { color: var(--color-text-muted); font-size: 0.95rem; }
.card ul { list-style: none; margin-top: var(--space-2); display: grid; gap: 8px; }
.card ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--color-text-muted); font-size: 0.92rem; }
.card ul li::before { content: "✓"; color: var(--color-teal); font-weight: 700; flex: none; }

/* ===========================================================
   PRICING CARDS (gold-bordered)
   =========================================================== */
.pricing-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface-card); border: 2px solid var(--card-border-gold);
  border-radius: var(--radius); padding: var(--space-4);
  box-shadow: var(--shadow-card); transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,0.6), var(--shadow-glow-gold); }
.price-card--featured { border-color: var(--color-gold); box-shadow: 0 22px 60px rgba(0,0,0,0.6), var(--shadow-glow-gold); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; translate: -50% 0;
  background: var(--grad-sunset); color: #1a1206; font-family: var(--font-ui); font-weight: 800;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-card__name { font-family: var(--font-ui); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.95rem; color: var(--color-sand); text-align: center; }
.price-card__price { text-align: center; margin: 10px 0 4px; font-family: var(--font-ui); }
.price-card__price b { font-size: 2.7rem; font-weight: 800; color: var(--color-text); }
.price-card__price .tax { font-size: 0.9rem; color: var(--color-text-dim); font-weight: 600; }
.price-card__term { text-align: center; font-size: 0.82rem; color: var(--color-teal); font-family: var(--font-ui); font-weight: 600; margin-bottom: var(--space-2); }
.price-card hr { border: none; border-top: 1px solid var(--hairline); margin: var(--space-2) 0; }
.price-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: var(--space-3); flex: 1; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--color-text-muted); font-size: 0.92rem; }
.price-card ul li::before { content: "✓"; color: var(--color-gold); font-weight: 800; flex: none; }
.price-card .btn { margin-top: auto; }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.quote-card { background: var(--surface-card); border: 1px solid var(--hairline); border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow-card); }
.quote-card__stars { color: var(--color-gold); letter-spacing: 2px; margin-bottom: var(--space-2); }
.quote-card p { color: var(--color-text); font-size: 1.02rem; line-height: 1.6; }
.quote-card__name { margin-top: var(--space-2); font-family: var(--font-ui); font-weight: 700; color: var(--color-teal); font-size: 0.9rem; }

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery-grid { display: grid; gap: var(--space-2); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery-grid figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--hairline); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); }
.gallery-grid figure:hover img { transform: scale(1.06); }

/* ===========================================================
   FAQ (accordion via <details>)
   =========================================================== */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: var(--space-2); }
.faq details { background: var(--surface-card); border: 1px solid var(--hairline); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary { cursor: pointer; padding: var(--space-3); font-family: var(--font-ui); font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: var(--space-2); align-items: center; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--color-teal); font-size: 1.4rem; font-weight: 700; transition: transform var(--dur) var(--ease-out); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 var(--space-3) var(--space-3); color: var(--color-text-muted); }

/* ===========================================================
   CONTACT / FORMS
   =========================================================== */
.form { display: grid; gap: var(--space-2); }
.form-row { display: grid; gap: var(--space-2); grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-ui); font-weight: 600; font-size: 0.85rem; color: var(--color-text-muted); }
.field label .req { color: var(--color-pink); }
.field input, .field textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--hairline);
  border-radius: var(--radius-sm); padding: 13px 14px; color: var(--color-text);
  font-family: var(--font-body); font-size: 1rem; min-height: 48px;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--color-text-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-teal); box-shadow: 0 0 0 3px rgba(72,195,200,0.25); }

.contact-list { list-style: none; display: grid; gap: var(--space-3); }
.contact-list li { display: flex; gap: var(--space-2); align-items: flex-start; }
.contact-list .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(72,195,200,0.12); color: var(--color-teal); }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list b { font-family: var(--font-ui); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-dim); font-weight: 700; }
.contact-list a, .contact-list span { color: var(--color-text); }
.contact-list a:hover { color: var(--color-teal); }

/* Service-area chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { font-family: var(--font-ui); font-weight: 600; font-size: 0.85rem; padding: 8px 16px; border-radius: var(--radius-pill); border: 1px solid rgba(72,195,200,0.4); color: var(--color-teal); background: rgba(72,195,200,0.06); }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-3); text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--color-sand); line-height: 1; letter-spacing: -0.01em; }
.stat span { font-family: var(--font-ui); font-weight: 600; font-size: 0.85rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* CTA band */
.cta-band { position: relative; text-align: center; padding: var(--space-7) 0; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 140% at 50% 0%, rgba(255,140,148,0.22), rgba(72,195,200,0.10) 45%, transparent 70%); }
.cta-band h2 { font-size: var(--fs-h2); color: var(--color-sand); margin-bottom: var(--space-2); }
.cta-band p { color: var(--color-text-muted); max-width: 50ch; margin: 0 auto var(--space-4); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { position: relative; z-index: var(--z-content); border-top: 1px solid var(--hairline); padding-top: var(--space-6); padding-bottom: var(--space-4); margin-top: var(--space-6); }
.footer-grid { display: grid; gap: var(--space-4); grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: clamp(140px, 34vw, 180px); height: auto; background: transparent; object-fit: contain; margin-bottom: var(--space-2); }
.footer-brand p { color: var(--color-text-muted); font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-sand); margin-bottom: var(--space-2); }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--color-text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-teal); }
.social-row { display: flex; gap: 12px; margin-top: var(--space-2); }
.social-row a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--hairline); color: var(--color-text-muted); }
.social-row a:hover { color: var(--color-teal); border-color: rgba(72,195,200,0.5); background: rgba(72,195,200,0.08); }
.social-row svg { width: 20px; height: 20px; }
.footer-legal { text-align: center; margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid var(--hairline); color: var(--color-text-dim); font-size: var(--fs-small); }

/* ===========================================================
   MOBILE REFINEMENTS
   =========================================================== */
@media (max-width: 640px) {
  .trust-bar { font-size: 0.7rem; letter-spacing: 0.01em; }
  .trust-bar__inner { padding: 6px 12px; gap: 8px; line-height: 1.35; }
  .trust-bar__star { display: none; }
  .nav { padding-block: 8px; gap: var(--space-2); }
  .brand { gap: 9px; }
  .brand img { width: 38px; height: 38px; }
  .brand-name { font-size: 0.95rem; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero { padding-top: var(--space-5); }
}
@media (max-width: 380px) {
  .brand-name { display: none; } /* the logo already carries the name on very small screens */
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
