/* =============================================================
   LOCKSMITH NEAR ME — Design System
   locksmithnearme.co.nz
   One shared stylesheet for every page.
   Aesthetic: premium, minimal, trustworthy. Ink + brass.
   Signature: mono "technical readout" labels + fine key/lock line art.
   ============================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;450;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --ink:        #13161C;   /* near-black — primary text, dark bands */
  --ink-soft:   #2A2F3A;
  --muted:      #646B78;   /* secondary text */
  --muted-2:    #8A909B;
  --bg:         #FAFAF9;   /* page background — barely-warm off white */
  --surface:    #FFFFFF;   /* cards */
  --surface-2:  #F4F3F0;   /* inset panels */
  --line:       #E7E6E1;   /* hairlines */
  --line-2:     #EFEEEA;

  --brass:      #B5822E;   /* accent */
  --brass-deep: #8A6220;   /* brass text on white (AA) */
  --brass-soft: #F3EAD8;   /* brass tint fill */
  --brass-line: #E4D3AE;

  --live:       #1F9D6B;   /* "open now" status */
  --danger:     #B23A2E;   /* used sparingly for emergency emphasis */

  /* Type */
  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Space + shape */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(19,22,28,.05), 0 2px 6px rgba(19,22,28,.04);
  --shadow-md: 0 4px 14px rgba(19,22,28,.06), 0 14px 40px rgba(19,22,28,.06);
  --shadow-lg: 0 20px 60px rgba(19,22,28,.12);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 108px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.35rem, 6vw, 4.1rem); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { color: var(--ink-soft); }
.lede { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--muted); line-height: 1.55; }
.prose p { margin-top: 1.05em; color: var(--ink-soft); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose a { color: var(--brass-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose ul { margin-top: 1em; display: grid; gap: .6em; }
.prose ul li { position: relative; padding-left: 1.5em; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--brass); transform: rotate(45deg); }

/* Eyebrow — the mono "technical readout" signature */
.eyebrow {
  font-family: var(--mono);
  font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow--onink { color: var(--brass); }
.eyebrow .tick { width: 18px; height: 1px; background: currentColor; opacity: .55; }

.section-head { max-width: 660px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: .9rem; }

/* ---------- Live status dot ---------- */
.status {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .5em; color: var(--muted);
}
.status .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--live);
  box-shadow: 0 0 0 0 rgba(31,157,107,.55);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,157,107,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(31,157,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,157,107,0); }
}

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--ink); --_fg: #fff; --_bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: .92em 1.5em; border-radius: var(--radius-pill);
  background: var(--_bg); color: var(--_fg); border: 1.5px solid var(--_bd);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--brass { --_bg: var(--brass); --_fg: #fff; --_bd: var(--brass); }
.btn--ghost { --_bg: transparent; --_fg: var(--ink); --_bd: var(--line); }
.btn--ghost:hover { --_bd: var(--ink); }
.btn--onink { --_bg: #fff; --_fg: var(--ink); --_bd: #fff; }
.btn--ghost-onink { --_bg: transparent; --_fg: #fff; --_bd: rgba(255,255,255,.28); }
.btn--ghost-onink:hover { --_bd: rgba(255,255,255,.7); }
.btn--lg { font-size: 1.06rem; padding: 1.05em 1.75em; }
.btn--block { width: 100%; }
.btn .num { font-family: var(--mono); font-weight: 600; letter-spacing: .02em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,250,249,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 1px 0 rgba(19,22,28,.03); }
.nav { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6em; font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.02em; }
.brand .keymark { width: 26px; height: 26px; color: var(--brass); flex: none; }
.brand b { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: .15rem; margin-inline: auto; flex: none; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); padding: .5em .7em; border-radius: 10px; transition: background .18s, color .18s; white-space: nowrap; }
.nav-links a:hover { background: var(--surface-2); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: .8rem; flex: none; }
.brand { flex: none; }
.status { white-space: nowrap; }
.nav-phone { display: inline-flex; align-items: center; gap: .5em; font-family: var(--mono); font-weight: 600; font-size: .98rem; color: var(--ink); letter-spacing: .01em; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; color: var(--brass-deep); }
.nav-toggle { display: none; }

/* Hide the status pill before the header gets tight */
@media (max-width: 1120px) { .nav-cta .status { display: none; } }

/* Mobile nav */
.mobile-menu { display: none; }
@media (max-width: 1024px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn--ghost, .nav-cta .status { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line);
    background: var(--surface); margin-left: auto;
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  .mobile-menu {
    display: block; position: fixed; inset: 68px 0 auto 0; z-index: 55;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .32s var(--ease);
    padding: 1rem var(--gutter) 1.6rem;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: .85em .4em; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line-2); }
  .mobile-menu .btn { margin-top: 1rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 92px) clamp(40px, 6vw, 76px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-top: 1.1rem; }
.hero .lede { margin-top: 1.3rem; max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; margin-top: 2.1rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust li { display: flex; align-items: center; gap: .55em; font-size: .9rem; color: var(--muted); font-weight: 500; }
.hero-trust svg { width: 17px; height: 17px; color: var(--brass-deep); flex: none; }

/* Hero visual — key panel */
.hero-visual { position: relative; }
.key-panel {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 78% 18%, #20242E 0%, #14171E 55%, #101319 100%);
  border: 1px solid #23262F; box-shadow: var(--shadow-lg); overflow: hidden;
  display: grid; place-items: center;
}
.key-panel::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 34px 34px; mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
}
.key-panel svg.keyart { width: 74%; height: auto; position: relative; z-index: 1; }
.panel-readout {
  position: absolute; z-index: 2; left: 22px; bottom: 20px; right: 22px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; color: rgba(255,255,255,.62); text-transform: uppercase;
}
.panel-readout .big { display: block; color: #fff; font-size: 1.05rem; letter-spacing: .02em; margin-top: .3em; }
.panel-badge {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: .5em .8em; border-radius: var(--radius-pill); backdrop-filter: blur(6px);
}
.panel-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; }
  .hero .lede { max-width: 46ch; }
}

/* ---------- Marquee / logo-free trust strip ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--surface); }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; }
.trust-item { padding: clamp(1.4rem, 3vw, 2rem) 1.2rem; }
.trust-item .k { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem,3vw,2.1rem); letter-spacing: -.03em; }
.trust-item .l { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .35em; }
@media (max-width: 820px){ .trust-strip .wrap { grid-template-columns: repeat(2,1fr); } .trust-item:last-child { grid-column: 1 / -1; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card .ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brass-soft); color: var(--brass-deep); margin-bottom: 1.05rem;
}
.card .ico svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.15rem; }
.card p { margin-top: .5rem; font-size: .96rem; color: var(--muted); }
.card .card-link { display: inline-flex; align-items: center; gap: .4em; margin-top: 1rem; font-weight: 600; font-size: .92rem; color: var(--brass-deep); }
.card .card-link svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }
.card.is-link { cursor: pointer; }

/* ---------- Steps (real sequence — numbered is justified) ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--mono); font-size: .82rem; font-weight: 600; letter-spacing: .1em;
  color: var(--brass-deep); padding-bottom: .4rem;
}
.step::after { content: ""; position: absolute; top: 1.4rem; left: 2.4rem; right: -1rem; height: 1px; background: var(--line); }
.steps .step:last-child::after { display: none; }
@media (max-width: 820px){ .step::after { display: none; } }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); margin-top: .5rem; font-size: .96rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } }
.checklist { display: grid; gap: 1.05rem; margin-top: 1.6rem; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: .8rem; align-items: start; }
.checklist .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--brass-soft); color: var(--brass-deep); display: grid; place-items: center; flex: none; }
.checklist .ck svg { width: 15px; height: 15px; }
.checklist b { font-weight: 600; }
.checklist span.d { display: block; color: var(--muted); font-size: .95rem; margin-top: .15rem; }

/* ---------- Testimonials (honest placeholder component) ---------- */
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.review-card .stars { display: flex; gap: 2px; color: var(--brass); margin-bottom: .9rem; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card p { font-size: 1rem; color: var(--ink-soft); }
.review-card .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; }
.review-card .av { width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-weight: 700; font-family: var(--display); color: var(--ink-soft); font-size: .95rem; }
.review-card .who b { font-size: .92rem; font-weight: 600; }
.review-card .who .m { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.25rem .2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 24px; height: 24px; flex: none; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--brass-deep); transition: transform .25s var(--ease); }
.faq summary .pm::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq summary .pm::after { left: 11px; top: 4px; bottom: 4px; width: 2px; }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq details > div { padding: 0 .2rem 1.4rem; color: var(--ink-soft); font-size: 1rem; max-width: 68ch; }
.faq details > div a { color: var(--brass-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Location link grids ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem 1rem; margin-top: 1.6rem; }
@media (max-width:820px){ .loc-grid { grid-template-columns: repeat(2,1fr); } }
.loc-grid a { display: flex; align-items: center; gap: .5em; padding: .6em .2em; font-size: .96rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-2); transition: color .18s, padding .18s; }
.loc-grid a:hover { color: var(--brass-deep); padding-left: .5em; }
.loc-grid a svg { width: 13px; height: 13px; color: var(--brass); flex: none; }

/* ---------- Quote form ---------- */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .45rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px;
  padding: .82em .95em; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(181,130,46,.12); }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width:520px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .4rem; }
.form-note a { color: var(--brass-deep); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 4rem); position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(90% 90% at 85% 15%, #000, transparent 75%); pointer-events:none; }
.cta-band h2, .cta-band h3 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.72); position: relative; }
.cta-band .hero-cta { position: relative; margin-top: 1.6rem; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding-top: 1.4rem; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5em; font-family: var(--mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.crumbs li { display: inline-flex; align-items: center; gap: .5em; }
.crumbs a:hover { color: var(--brass-deep); }
.crumbs .sep { opacity: .5; }
.crumbs [aria-current] { color: var(--ink); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-block: clamp(1rem,3vw,2rem) clamp(2rem,5vw,3.4rem); }
.page-hero h1 { margin-top: 1rem; }
.page-hero .lede { margin-top: 1.1rem; max-width: 56ch; }
.page-hero .hero-cta { margin-top: 1.7rem; }

/* ---------- Callout ---------- */
.callout { background: var(--brass-soft); border: 1px solid var(--brass-line); border-radius: var(--radius); padding: 1.4rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.callout svg { width: 22px; height: 22px; color: var(--brass-deep); flex: none; margin-top: .1rem; }
.callout b { display: block; margin-bottom: .2rem; }
.callout p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(3rem,6vw,4.5rem) 2rem; margin-top: clamp(3rem,6vw,5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.2rem; }
@media (max-width:860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width:520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .92rem; margin-top: 1rem; max-width: 34ch; }
.footer-brand .footer-phone { display: inline-flex; align-items: center; gap: .5em; margin-top: 1.3rem; font-family: var(--mono); font-weight: 600; font-size: 1.15rem; color: #fff; }
.footer-brand .footer-phone svg { width: 18px; height: 18px; color: var(--brass); }
.footer-col h4 { color: #fff; font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.footer-col a { display: block; padding: .32em 0; font-size: .93rem; color: rgba(255,255,255,.6); transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-nap { font-style: normal; font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-nap a { color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.6rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom .fb-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { padding: .95em 1em; font-size: .98rem; }
  body { padding-bottom: 76px; }
}

/* ---------- Helpers ---------- */
.tint { background: var(--surface-2); }
.ink-band { background: var(--ink); color: #fff; }
.ink-band h2, .ink-band h3 { color:#fff; }
.ink-band p, .ink-band .lede { color: rgba(255,255,255,.72); }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }

/* ---------- Skip link (a11y) ---------- */
.skip { position: absolute; left: 8px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: .7em 1.1em; border-radius: 10px; font-weight: 600; transition: top .2s var(--ease); }
.skip:focus { top: 8px; }
