/* ==========================================================================
   Prime Locksmiths — core stylesheet
   Palette: ink #0B0B0C · brass #FFC300 · paper #F5F5F2
   ========================================================================== */

:root {
  --ink: #0b0b0c;
  --ink-2: #141417;
  --ink-3: #1d1d21;
  --line: #2a2a30;
  --brass: #ffc300;
  --brass-deep: #e0a800;
  --brass-soft: rgba(255, 195, 0, 0.14);
  --paper: #f5f5f2;
  --paper-2: #eceae3;
  --steel: #8a8d93;
  --steel-2: #b9bcc2;
  --white: #ffffff;
  --whats: #25d366;

  --font-display: "Big Shoulders Display", "Haettenschweiler", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1200px;
  --gutter: 22px;
  --radius: 4px;
  --shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.75);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

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

a { color: var(--brass); text-decoration: none; }
a:hover { color: var(--brass-deep); }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.9rem, 7.4vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 840px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
  display: block;
}

.lede { font-size: 1.14rem; color: var(--steel-2); }
.muted { color: var(--steel); }
.center { text-align: center; }

/* ---------- hazard strip (signature: security tape) ---------- */
.hazard {
  height: 6px;
  background-image: repeating-linear-gradient(
    -45deg, var(--brass) 0 14px, var(--ink) 14px 28px
  );
}

/* ---------- top strip ---------- */
.topbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--steel-2);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.status { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brass);
  box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.65);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 195, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0); }
}
.topbar-links { display: flex; gap: 18px; }
.topbar-links a { color: var(--steel-2); }
.topbar-links a:hover { color: var(--brass); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand:hover { color: var(--white); }
.brand-mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.5rem; line-height: 0.9; letter-spacing: 0.02em;
}
.brand-name span { color: var(--brass); display: block; font-size: 0.52rem; letter-spacing: 0.3em; font-family: var(--font-mono); font-weight: 400; margin-top: 3px; color: var(--steel); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--white); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em; padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--brass); transition: width 0.22s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--brass); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--white); width: 46px; height: 44px; border-radius: var(--radius);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--white);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 22px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.btn-call { background: var(--brass); color: var(--ink); }
.btn-call:hover { background: var(--brass-deep); color: var(--ink); }
.btn-call .num { font-family: var(--font-mono); font-weight: 700; letter-spacing: -0.01em; }

.btn-whats { background: var(--whats); color: #04310f; }
.btn-whats:hover { background: #1fbb59; color: #04310f; }

.btn-ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

.btn-lg { padding: 18px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% 8%, rgba(255, 195, 0, 0.13), transparent 62%),
    linear-gradient(180deg, #0e0e10 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  padding: 74px 0 78px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--brass); display: block; }
.hero .lede { max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; list-style: none; }
.trust-strip li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--steel-2);
}
.trust-strip li::before {
  content: ""; width: 16px; height: 16px; flex: 0 0 auto; border-radius: 50%;
  background: var(--brass-soft);
  border: 1px solid rgba(255, 195, 0, 0.5);
}

/* hero card / finder */
.hero-card {
  background: linear-gradient(180deg, var(--ink-2), #101014);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 24px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  content: ""; position: absolute; top: -1px; left: 24px; right: 24px; height: 3px;
  background: var(--brass);
}
.hero-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.finder { margin-top: 16px; position: relative; }
.finder label {
  display: block; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px;
}
.finder input {
  width: 100%; padding: 15px 16px; font-size: 1rem; font-family: var(--font-mono);
  background: var(--ink); border: 1px solid var(--line); color: var(--white);
  border-radius: var(--radius);
}
.finder input::placeholder { color: #55575d; }
.finder input:focus { border-color: var(--brass); outline: none; }
.finder-results {
  list-style: none; margin: 10px 0 0; padding: 0; max-height: 232px; overflow-y: auto;
  border: 1px solid var(--line); border-radius: var(--radius); display: none;
  background: var(--ink);
}
.finder-results.is-open { display: block; }
.finder-results li + li { border-top: 1px solid var(--line); }
.finder-results a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 14px; color: var(--white); font-size: 0.95rem;
}
.finder-results a:hover, .finder-results a:focus { background: var(--ink-3); color: var(--brass); }
.finder-results .pc { font-family: var(--font-mono); font-size: 0.78rem; color: var(--steel); }
.finder-empty { padding: 12px 14px; color: var(--steel); font-size: 0.9rem; }
.hero-card .fineprint { font-size: 0.8rem; color: var(--steel); margin-top: 14px; }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-paper h1, .section-paper h2, .section-paper h3, .section-paper h4 { color: var(--ink); }
.section-paper .lede { color: #4a4d55; }
.section-paper .eyebrow { color: #8a6a00; }
.section-paper a { color: #8a6a00; text-decoration: underline; text-underline-offset: 3px; }
.section-alt { background: var(--ink-2); }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* service card with key-bit notch */
.card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex; flex-direction: column;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--line); transition: background 0.2s ease;
  clip-path: polygon(0 0, 100% 0, 100% 12%, 0 16%, 0 26%, 100% 30%, 100% 44%, 0 48%, 0 62%, 100% 66%, 100% 100%, 0 100%);
}
.card:hover { border-color: rgba(255, 195, 0, 0.45); transform: translateY(-3px); }
.card:hover::before { background: var(--brass); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--steel-2); font-size: 0.95rem; }
.card .card-link {
  margin-top: auto; padding-top: 16px; font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-icon { display: block; width: 34px; height: 34px; margin-bottom: 16px; color: var(--brass); }
.card-icon svg { width: 100%; height: 100%; }
.section-paper .card-icon { color: #a37a00; }
.section-paper .card { background: var(--white); border-color: #ddd9cf; }
.section-paper .card p { color: #55585f; }
.section-paper .card::before { background: #ddd9cf; }

/* ---------- why-choose list ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
.checks li {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  font-weight: 500; font-size: 0.97rem;
}
.checks li svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--brass); margin-top: 2px; }
.section-paper .checks li { background: var(--white); border-color: #ddd9cf; }
.section-paper .checks li svg { color: #b58600; }

/* ---------- process ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 28px 26px 30px; border-right: 1px solid var(--line); position: relative; }
.step:last-child { border-right: 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--brass);
  letter-spacing: 0.1em; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.3rem; }
.step p { color: var(--steel-2); font-size: 0.93rem; margin: 0; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--ink); padding: 28px 24px; text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--brass); line-height: 1;
}
.stat span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }

/* ---------- areas ---------- */
.area-block + .area-block { margin-top: 38px; }
.area-block h3 { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.area-block h3 small { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--steel); text-transform: uppercase; font-weight: 400; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips a {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 10px 15px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--ink-2); color: var(--white); font-size: 0.92rem; font-weight: 500;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.chips a:hover { border-color: var(--brass); color: var(--brass); background: #16161a; }
.chips .pc { font-family: var(--font-mono); font-size: 0.72rem; color: var(--steel); }
.chips a:hover .pc { color: var(--brass-deep); }
.section-paper .chips a { background: var(--white); border-color: #ddd9cf; color: var(--ink); text-decoration: none; }
.section-paper .chips a:hover { border-color: #b58600; color: #8a6a00; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.section-paper .faq { border-color: #ddd9cf; }
.faq details { border-bottom: 1px solid var(--line); }
.section-paper .faq details { border-color: #ddd9cf; }
.section-paper .faq summary::after { color: #a37a00; }
.section-paper .faq summary:hover { color: #8a6a00; }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.15;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 1.5rem; color: var(--brass); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--brass); }
.faq .answer { padding: 0 60px 24px 0; color: var(--steel-2); }
.section-paper .faq .answer { color: #4a4d55; }

/* ---------- reviews ---------- */
.review {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--brass); letter-spacing: 3px; font-size: 0.95rem; }
.review blockquote { margin: 0; font-size: 1rem; color: var(--white); }
.review cite { font-style: normal; font-size: 0.85rem; color: var(--steel); font-family: var(--font-mono); }

/* ---------- callout band ---------- */
.band {
  background: var(--brass); color: var(--ink); position: relative; overflow: hidden;
}
.band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 44px; padding-bottom: 44px; flex-wrap: wrap; }
.band h2 { color: var(--ink); margin-bottom: 6px; }
.band p { color: #3a2f00; font-weight: 500; margin: 0; }
.band .btn-call { background: var(--ink); color: var(--brass); }
.band .btn-call:hover { background: #000; color: var(--brass); }
.band .btn-whats { background: #0b3b1c; color: #fff; }
.band .btn-whats:hover { background: #062d14; color: #fff; }
.band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- prose ---------- */
.prose { max-width: 76ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; font-size: 1.35rem; }
.prose ul, .prose ol { padding-left: 20px; color: var(--steel-2); }
.prose li { margin-bottom: 8px; }
.section-paper .prose ul, .section-paper .prose ol { color: #45484f; }
.prose table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.section-paper .prose th, .section-paper .prose td { border-color: #ddd9cf; }
.prose th { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); }
.section-paper .prose th { color: #6a6d74; }

/* ---------- breadcrumbs ---------- */
.crumbs { font-size: 0.82rem; color: var(--steel); padding-top: 18px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 8px; color: #45474d; }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--steel-2); }
.crumbs a:hover { color: var(--brass); }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 380px at 88% 0%, rgba(255, 195, 0, 0.11), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 10px 0 62px;
}
.page-hero .lede { max-width: 68ch; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.postcode-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.14em; color: var(--brass); border: 1px solid rgba(255, 195, 0, 0.4);
  padding: 6px 12px; border-radius: 100px; margin-bottom: 18px;
}

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: start; }
.panel {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; padding: 28px 26px;
}
.section-paper .panel { background: var(--white); border-color: #ddd9cf; }
.panel h3 { margin-bottom: 14px; }
.panel ul { list-style: none; margin: 0; padding: 0; }
.panel li { padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.section-paper .panel li { border-color: #e2ded4; }
.panel li:last-child { border-bottom: 0; }
.panel .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.panel .chips li { padding: 0; border: 0; }
.panel .chips a { font-size: .88rem; padding: 8px 13px; }
.panel-sticky { position: sticky; top: 100px; }

/* ---------- illustration plate ---------- */
.plate {
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: linear-gradient(160deg, #17171b, #0d0d0f);
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 26px;
}
.plate img { width: 100%; height: 100%; object-fit: contain; }
.plate-photo { aspect-ratio: 4/3; background-size: cover; background-position: center; }

/* ---------- form ---------- */
.form { display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; background: var(--ink); border: 1px solid var(--line);
  color: var(--white); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.98rem;
}
.section-paper .field input, .section-paper .field textarea, .section-paper .field select {
  background: var(--white); border-color: #d8d4ca; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brass); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--steel); }

/* ---------- footer ---------- */
.site-footer { background: #08080a; border-top: 1px solid var(--line); padding: 62px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 44px; }
.footer-top h4 {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 16px;
}
.footer-top ul { list-style: none; margin: 0; padding: 0; }
.footer-top li { margin-bottom: 9px; }
.footer-top a { color: var(--steel-2); font-size: 0.92rem; }
.footer-top a:hover { color: var(--brass); }
.footer-top p { color: var(--steel); font-size: 0.92rem; }
.footer-areas { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-areas h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel); margin: 0 0 14px; }
.footer-areas .inline-links { display: flex; flex-wrap: wrap; gap: 6px 0; font-size: 0.87rem; color: #3a3c42; }
.footer-areas .inline-links a { color: var(--steel); padding-right: 10px; margin-right: 4px; border-right: 1px solid #2a2a30; }
.footer-areas .inline-links a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 22px 0 100px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.83rem; color: var(--steel);
}
.footer-bottom a { color: var(--steel); }
.footer-bottom a:hover { color: var(--brass); }

/* ---------- sticky mobile action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
}
.action-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 8px; font-weight: 700; font-size: 0.95rem;
}
.action-bar .call { background: var(--brass); color: var(--ink); }
.action-bar .whats { background: var(--whats); color: #04310f; }
.action-bar svg { width: 19px; height: 19px; }

/* ---------- floating whatsapp (desktop) ---------- */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 65;
  width: 58px; height: 58px; border-radius: 50%; background: var(--whats);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.8);
  transition: transform 0.18s ease;
}
.whats-float:hover { transform: scale(1.07); }
.whats-float svg { width: 30px; height: 30px; color: #04310f; }

/* ---------- utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hide { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 54px 0 60px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .checks { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .panel-sticky { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--ink-2); border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 96px 26px 40px; transform: translateX(100%);
    transition: transform 0.25s ease; z-index: 55; overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { font-size: 1.05rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn-whats, .header-cta .btn-call .num { display: none; }
  .header-cta .btn-call { padding: 12px 14px; }
  .topbar-links { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .action-bar { display: flex; }
  .whats-float { display: none; }
  .section { padding: 60px 0; }
  body { font-size: 16.5px; }
}

@media (max-width: 560px) {
  .grid-4, .checks, .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .band .wrap { flex-direction: column; align-items: flex-start; }
  :root { --gutter: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .action-bar, .whats-float, .topbar, .hazard { display: none !important; }
  body { background: #fff; color: #000; }
}
