/* ============================================================
   AB LOCKSMITHS — Desktop website shared stylesheet
   Imported by every page. Provides:
     · brand tokens (mirrored from /colors_and_type.css)
     · base reset + body
     · nav, footer, sticky mobile call
     · buttons + suburb chip + service card + gallery item
     · section-head pattern + eyebrow + scroll fade-in
   Page-specific styles (hero variants, agency-portal mockup, etc.)
   live in a <style> block at the top of each page.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  /* Brand colors — sampled from the logo PNGs */
  --abl-yellow:        #FFD700;
  --abl-yellow-deep:   #F2C200;
  --abl-yellow-soft:   #FFE978;
  --abl-yellow-wash:   #FFF8D6;
  --abl-black:         #0B0B0B;
  --abl-ink:           #1A1A1A;
  --abl-graphite:      #2E2E2E;
  --abl-paper:         #FFFCF3;
  --abl-cream:         #F7F1DE;
  --abl-fog:           #E8E3D2;
  --abl-steel-100:     #E8E7E2;
  --abl-steel-200:     #CFCDC4;
  --abl-steel-400:     #8F8D84;
  --abl-steel-600:     #56554F;
  --abl-success:       #1F7A3A;
  --abl-success-soft:  #E1F3E5;
  --abl-danger:        #B8351B;
  --abl-danger-soft:   #FBE6E0;

  --font-display: "Cinzel", "Trajan Pro", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-std:  cubic-bezier(0.4, 0, 0.2, 1);

  /* Hero collage tilt — set to 0deg to disable everywhere */
  --hero-tilt: 0.5deg;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  color: var(--abl-black);
  background: var(--abl-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================ */
/*                          LAYOUT                              */
/* ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
section { padding: 112px 0; position: relative; }
@media (max-width: 900px) { section { padding: 72px 0; } .container { padding: 0 20px; } }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--abl-graphite);
  margin-bottom: 16px;
}
.eyebrow.on-dark { color: var(--abl-yellow); }
.eyebrow.on-yellow { color: var(--abl-graphite); }

.section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--abl-black);
}
.section-title.on-dark { color: var(--abl-paper); }

.section-lead {
  font-size: 18px; line-height: 1.6;
  color: var(--abl-steel-600);
  max-width: 640px;
  margin-top: 14px;
}
.section-lead.on-dark { color: #c4c1b6; }

.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { white-space: nowrap; }
@media (max-width: 480px) { .section-head--center .eyebrow { white-space: normal; } }

/* ============================================================ */
/*                         BUTTONS                              */
/* ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 24px;
  border-radius: 9999px;
  border: 2px solid var(--abl-black);
  cursor: pointer; text-decoration: none;
  color: var(--abl-black);
  transition: transform 120ms var(--ease-out),
              box-shadow 120ms var(--ease-out),
              background-color 120ms var(--ease-out);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.btn--primary { background: var(--abl-yellow); box-shadow: 4px 4px 0 var(--abl-black); }
.btn--primary:hover { background: var(--abl-yellow-deep); transform: translate(1px,1px); box-shadow: 3px 3px 0 var(--abl-black); }
.btn--primary:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--abl-black); }
.btn--dark { background: var(--abl-black); color: var(--abl-yellow); box-shadow: 4px 4px 0 var(--abl-yellow-deep); }
.btn--dark:hover { background: var(--abl-ink); transform: translate(1px,1px); box-shadow: 3px 3px 0 var(--abl-yellow-deep); color: var(--abl-yellow); }
.btn--dark:active { transform: translate(4px,4px); box-shadow: 0 0 0 var(--abl-yellow-deep); }
.btn--outline { background: transparent; }
.btn--outline:hover { background: var(--abl-yellow-soft); }
.btn--outline.on-dark { border-color: rgba(255,255,255,0.4); color: var(--abl-paper); }
.btn--outline.on-dark:hover { background: rgba(255,215,0,0.12); border-color: var(--abl-yellow); color: var(--abl-yellow); }
.btn--lg { padding: 20px 30px; font-size: 18px; }
.btn .ic { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================ */
/*                    NAV (sticky paper)                        */
/* ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--abl-paper);
  border-bottom: 1px solid var(--abl-fog);
  transition: box-shadow 200ms var(--ease-out);
}
.nav.scrolled { box-shadow: 0 4px 12px rgba(20, 18, 8, 0.06); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 6px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}

/* Brand lockup: mark + "AB Locksmiths" wordmark.
   Wordmark uses Inter 800 (same family as nav links but heavier and
   larger) so the brand feels like a confident business mark, not a
   small icon next to a stronger menu. */
.nav-logo {
  display: inline-flex; align-items: center;
  gap: 14px;
  flex-shrink: 0;
  color: var(--abl-black);
  min-width: 0;
}
.nav-logo-mark {
  height: 60px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-word {
  /* Cinzel — same serif used for hero "LOCKED OUT?". Premium, consistent
     with the page typography, reads as an established trade mark. */
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--abl-black);
  white-space: nowrap;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 600;
  color: var(--abl-graphite);
  position: relative;
  transition: color 150ms ease;
}
.nav-links a:hover { color: var(--abl-black); }
.nav-links a[aria-current="page"] { color: var(--abl-black); }
.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--abl-yellow);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: transparent;
  transition: background 150ms var(--ease-out);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--abl-yellow);
  color: var(--abl-black);
  border: 2px solid var(--abl-black);
  padding: 10px 18px;
  border-radius: 9999px;
  font-weight: 800; font-size: 15px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  box-shadow: 3px 3px 0 var(--abl-black);
  transition: transform 120ms var(--ease-out), box-shadow 120ms var(--ease-out), background 120ms var(--ease-out);
}
.nav-cta:hover { background: var(--abl-yellow-deep); transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--abl-black); }
.nav-cta:active { transform: translate(3px,3px); box-shadow: 0 0 0 var(--abl-black); }
.nav-cta::after { display: none; }
@media (max-width: 880px) {
  /* Mobile header: brand on the left, hamburger on the right. The yellow
     call button is hidden here because the hero CTA and the sticky bottom
     call bar already cover the phone CTA. */
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { display: none; }
  .nav-inner { padding: 6px 18px; gap: 12px; }
  .nav-links { gap: 10px; }
  .nav-logo { gap: 10px; }
  .nav-logo-mark { height: 48px; }
  .nav-logo-word { font-size: 18px; }
}
@media (max-width: 540px) {
  /* Smaller phones: stays readable, compacted. */
  .nav-logo { gap: 9px; }
  .nav-logo-mark { height: 44px; }
  .nav-logo-word { font-size: 16px; }
}
@media (max-width: 420px) {
  /* Very narrow phones. */
  .nav-inner { padding: 6px 14px; gap: 8px; }
  .nav-logo { gap: 8px; }
  .nav-logo-mark { height: 40px; }
  .nav-logo-word { font-size: 14px; letter-spacing: 0.05em; }
}

/* ============================================================ */
/*                MOBILE HAMBURGER + DRAWER                     */
/* ============================================================ */
/* Hamburger button. Hidden on desktop, shown on mobile by nav.js +
   the rule below. Sits inside .nav-links, before .nav-cta. */
.nav-hamburger {
  display: none;
  background: var(--abl-paper);
  border: 1.5px solid var(--abl-black);
  border-radius: 10px;
  width: 44px; height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 150ms var(--ease-out);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--abl-cream); }
.nav-hamburger.open { background: var(--abl-yellow); }
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--abl-black);
  border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .2s var(--ease-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 880px) { .nav-hamburger { display: inline-flex; } }
@media (max-width: 420px) { .nav-hamburger { width: 40px; height: 40px; } }

/* Backdrop behind the drawer. */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(11, 11, 11, 0.55);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease-out);
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }
@media (max-width: 880px) { .nav-backdrop { display: block; } }

/* Slide-in drawer. Sits below the sticky nav so the hamburger / call CTA
   remain visible and tappable while it's open. */
.nav-drawer {
  display: none;
  position: fixed; top: 0; right: 0;
  width: min(86%, 360px);
  height: 100vh; height: 100dvh;
  background: var(--abl-paper);
  z-index: 95;
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
  padding: 110px 28px 36px;
  overflow-y: auto;
  border-left: 2px solid var(--abl-black);
  flex-direction: column;
  box-shadow: -12px 0 30px rgba(11, 11, 11, 0.15);
}
@media (max-width: 880px) { .nav-drawer { display: flex; } }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px;
  color: var(--abl-graphite);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--abl-fog);
  transition: color 150ms ease;
}
.nav-drawer a:hover { color: var(--abl-black); }
.nav-drawer a[aria-current="page"] {
  color: var(--abl-black);
  border-left: 3px solid var(--abl-yellow);
  padding-left: 12px;
}
.nav-drawer .nav-drawer-cta {
  margin-top: 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--abl-yellow);
  color: var(--abl-black);
  border: 2px solid var(--abl-black);
  border-radius: 9999px;
  padding: 16px 24px;
  font-weight: 800; font-size: 16px;
  box-shadow: 4px 4px 0 var(--abl-black);
  text-transform: none;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  border-left-width: 2px; /* override the page-link rule above */
  padding-left: 24px;
}
.nav-drawer .nav-drawer-cta:hover { background: var(--abl-yellow-deep); transform: translate(1px, 1px); box-shadow: 3px 3px 0 var(--abl-black); }
.nav-drawer .nav-drawer-cta:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--abl-black); }
.nav-drawer .nav-drawer-cta svg { width: 20px; height: 20px; }

body.no-scroll { overflow: hidden; }

/* ============================================================ */
/*                  SERVICE CARD (reusable)                     */
/* ============================================================ */
.service-card {
  background: var(--abl-paper);
  border: 1px solid var(--abl-fog);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(20, 18, 8, 0.05);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -12px rgba(20, 18, 8, 0.18), 0 4px 8px rgba(20, 18, 8, 0.06);
}
.service-card-photo {
  aspect-ratio: 16/10;
  background: var(--abl-cream);
  overflow: hidden;
}
.service-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease-out); }
.service-card:hover .service-card-photo img { transform: scale(1.04); }

.service-card-band {
  background: var(--abl-black); color: var(--abl-yellow);
  padding: 10px 18px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-card-band svg { width: 14px; height: 14px; color: var(--abl-yellow); }
.service-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
  font-size: 22px; font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--abl-black);
}
.service-card-body p {
  color: var(--abl-steel-600);
  font-size: 15px; line-height: 1.55;
}
.service-card-body .link {
  font-size: 14px; font-weight: 700;
  color: var(--abl-black);
  display: inline-flex; align-items: center; gap: 6px;
  border-top: 1px dashed var(--abl-fog);
  padding-top: 14px; margin-top: 18px;
}
.service-card-body .link svg { transition: transform 200ms var(--ease-out); }
.service-card:hover .link svg { transform: translateX(3px); }

.service-card.featured {
  background: var(--abl-black);
  border-color: var(--abl-black);
  box-shadow: 6px 6px 0 var(--abl-yellow);
}
.service-card.featured:hover { box-shadow: 4px 4px 0 var(--abl-yellow); transform: translate(2px, 2px); }
.service-card.featured .service-card-body h3 { color: var(--abl-yellow); }
.service-card.featured .service-card-body p { color: #c4c1b6; }
.service-card.featured .service-card-body .link { color: var(--abl-yellow); border-top-color: rgba(255,215,0,0.2); }
.service-card.featured .service-card-band { background: var(--abl-yellow); color: var(--abl-black); }
.service-card.featured .service-card-band svg { color: var(--abl-black); }

/* Compact service card (no photo) — used on subpages with denser grids */
.service-card.is-compact .service-card-band { padding: 8px 16px; font-size: 11px; }
.service-card.is-compact .service-card-body { padding: 18px 20px 20px; }
.service-card.is-compact .service-card-body h3 { font-size: 18px; }
.service-card.is-compact .service-card-body p { font-size: 14px; }

/* ============================================================ */
/*                      SUBURB CHIPS                            */
/* ============================================================ */
.suburb-chip {
  background: var(--abl-paper);
  border: 1.5px solid var(--abl-black);
  border-radius: 9999px;
  padding: 12px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--abl-black);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 150ms var(--ease-out);
  cursor: default;
}
.suburb-chip:hover {
  background: var(--abl-yellow);
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--abl-black);
}
.suburb-chip svg { width: 14px; height: 14px; color: var(--abl-black); flex-shrink: 0; }

/* On narrow phones the 2-column suburb grid leaves just enough room that the
   longest names ("Murrumba Downs", "Deception Bay") wrap to two lines and
   stretch the whole row. Tighten padding, drop the font a touch, and keep
   single-line text so every chip stays the same height. */
@media (max-width: 600px) {
  .suburb-chip {
    padding: 10px 12px;
    font-size: 13px;
    gap: 6px;
    white-space: nowrap;
    align-self: center;
    justify-content: center;
  }
  .suburb-chip svg { width: 12px; height: 12px; }
}

.suburbs-note {
  text-align: center; margin-top: 36px;
  color: var(--abl-steel-600); font-size: 15px;
}
.suburbs-note a {
  color: var(--abl-black); font-weight: 700;
  text-decoration: underline; text-decoration-color: var(--abl-yellow);
  text-decoration-thickness: 2px; text-underline-offset: 3px;
}
.suburbs-note a:hover { text-decoration-color: var(--abl-black); }

/* ============================================================ */
/*                      GALLERY ITEM                            */
/* ============================================================ */
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid var(--abl-black);
  background: var(--abl-cream);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--ease-out); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,11,0.7));
  opacity: 0; transition: opacity 200ms var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .tag {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--abl-yellow); color: var(--abl-black);
  border: 1.5px solid var(--abl-black);
  padding: 4px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  opacity: 0; transform: translateY(6px);
  transition: opacity 200ms, transform 200ms;
  z-index: 1;
}
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }

/* ============================================================ */
/*                       SHARED HERO                            */
/* (page-specific hero markup lives per-page; these are the    */
/*  yellow/dark variants both pages can pull from.)             */
/* ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero--yellow { background: var(--abl-yellow); padding: 96px 0 112px; }
.hero--dark { background: var(--abl-black); color: var(--abl-paper); padding: 96px 0 80px; }
@media (max-width: 980px) {
  .hero--yellow { padding: 64px 0 72px; }
  .hero--dark { padding: 64px 0 60px; }
}

.hero-mark {
  position: absolute; left: -120px; top: -60px;
  width: 480px; height: auto;
  opacity: 0.08;
  pointer-events: none;
}
.hero--dark .hero-mark { opacity: 0.05; left: auto; right: -120px; top: auto; bottom: -100px; }
@media (max-width: 980px) { .hero-mark { width: 320px; left: -80px; top: -40px; } }

.hero-inner {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--abl-black); color: var(--abl-yellow);
  padding: 6px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.hero--dark .hero-eyebrow { background: var(--abl-yellow); color: var(--abl-black); }
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--abl-yellow); border-radius: 50%; animation: pulse 2s infinite; }
.hero--dark .hero-eyebrow .dot { background: var(--abl-black); animation: pulseInv 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,215,0,0.7); } 70% { box-shadow: 0 0 0 10px rgba(255,215,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0); } }
@keyframes pulseInv { 0% { box-shadow: 0 0 0 0 rgba(11,11,11,0.7); } 70% { box-shadow: 0 0 0 10px rgba(11,11,11,0); } 100% { box-shadow: 0 0 0 0 rgba(11,11,11,0); } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--abl-black);
  margin-bottom: 22px;
}
.hero--dark h1 { color: var(--abl-yellow); }
.hero h1 .accent {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.78em;
  color: var(--abl-black);
  margin-top: 4px;
}
.hero--dark h1 .accent { color: var(--abl-paper); }
.hero p.lead {
  font-size: 19px; line-height: 1.55;
  color: var(--abl-graphite);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 500;
}
.hero--dark p.lead { color: #c4c1b6; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex; gap: 28px;
  margin-top: 44px; flex-wrap: wrap;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--abl-graphite);
  white-space: nowrap;
}
.hero--dark .trust-item { color: #c4c1b6; }
.trust-item svg {
  width: 18px; height: 18px;
  padding: 3px;
  background: var(--abl-black); color: var(--abl-yellow);
  border-radius: 9999px;
  flex-shrink: 0;
}
.hero--dark .trust-item svg { background: var(--abl-yellow); color: var(--abl-black); }

.hero-visual { position: relative; }
.hero-visual .frame {
  border: 4px solid var(--abl-black);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--abl-black);
  transform: rotate(var(--hero-tilt));
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1; }

/* ============================================================ */
/*                         FOOTER                               */
/* ============================================================ */
footer {
  background: var(--abl-black);
  color: #b6b3a8;
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand img { height: 72px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; line-height: 1.6; color: #b6b3a8; }
.footer-brand .meta { font-size: 13px; color: #8a8678; margin-top: 14px; }
footer h5 {
  color: var(--abl-yellow);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul a { color: #d6d3c8; transition: color 150ms ease; }
footer ul a:hover { color: var(--abl-yellow); }
footer ul a[aria-current="page"] { color: var(--abl-yellow); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid #2a2925;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  color: #8a8678; font-size: 13px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 9999px;
  background: var(--abl-ink);
  display: flex; align-items: center; justify-content: center;
  color: #d6d3c8;
  transition: all 150ms var(--ease-out);
}
.footer-socials a:hover { background: var(--abl-yellow); color: var(--abl-black); }
.footer-socials svg { width: 18px; height: 18px; }

/* ============================================================ */
/*                  STICKY MOBILE CALL                          */
/* ============================================================ */
.sticky-call {
  position: fixed;
  left: 16px; right: 16px;
  /* Sit above the iOS Safari home indicator / browser toolbar. The
     env() inset is 0 on devices without one and ~34px on iPhone X+. */
  bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
  z-index: 60;
  background: var(--abl-black);
  color: var(--abl-paper);
  padding: 14px 18px;
  border-radius: 9999px;
  box-shadow: 0 18px 38px -12px rgba(0,0,0,0.4);
  display: flex;
  align-items: center; gap: 14px;
  text-decoration: none;

  /* Hidden by default. Revealed by nav.js once the hero call CTA scrolls
     out of view. */
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
}
.sticky-call.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-call .ring {
  width: 40px; height: 40px;
  background: var(--abl-yellow); color: var(--abl-black);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sticky-call .ring svg { width: 20px; height: 20px; }
.sticky-call .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: #b6b3a8; }
.sticky-call .num { font-weight: 800; font-size: 16px; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.sticky-call .cta-pill {
  margin-left: auto;
  background: var(--abl-yellow); color: var(--abl-black);
  padding: 9px 16px; border-radius: 9999px;
  font-weight: 800; font-size: 13px;
}
/* Sticky call bar is mobile-only. On desktop, hide it completely. */
@media (min-width: 881px) {
  .sticky-call { display: none; }
}
@media (max-width: 880px) {
  /* Reserve a little bottom padding so the very last content
     (footer bottom row) doesn't tuck under the bar when revealed. */
  body { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 40px); }
}

/* ============================================================ */
/*                   SCROLL FADE-IN HELPER                      */
/* ============================================================ */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.visible { opacity: 1; transform: none; transition: none; }
  .hero-visual .frame { transform: none; }
  .hero-eyebrow .dot, .pulse-dot { animation: none; }
}
