/* ═══════════════════════════════════════════════════════════════════════
 *  Anderson Lock & Safe — Design System stylesheet (entry)
 *  Import this once at your app root:  import "@anderson/design-system/styles.css";
 *  Loads brand webfonts, design tokens, then the component styles.
 * ═══════════════════════════════════════════════════════════════════════ */

/* Brand webfonts (free Google-Font equivalents of Burlingame / FS Silas Slab / Sans Beam).
   Loaded at runtime from Google Fonts — host apps may self-host the same families. */
@import url("https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700;800;900&family=Zilla+Slab:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lexend:wght@300;400;500;600&display=swap");

/* ═══════════════════════════════════════════════════════════════════════
 *  Anderson Lock & Safe — Design Tokens
 *  Brand palette + type system by Prolific Brand Design.
 *  These custom properties are the layout vocabulary: compose new sections
 *  with var(--c-*), var(--f-*), var(--r*), var(--shadow-*), --page-pad-x.
 * ═══════════════════════════════════════════════════════════════════════ */
:root {
  /* ── Color: brand blues ─────────────────────────────────────────────── */
  --c-primary: #0045DB;       /* Primary Blue (Pantone 286C) — dominant brand color, headers, guarantees */
  --c-primary-dark: #0F2CC9;  /* Secondary Blue (072C) — darker accent, gradient pair */
  --c-navy: #141A2E;          /* Dark Navy (289C) — body text on light, dark sections */
  --c-navy-ink: #0B1020;      /* Deepest navy — cinematic / CTA backgrounds */
  --c-mid-blue: #6C95F5;      /* Medium Blue (2727C) — hover, focus ring, accent */
  --c-sky: #BBDAFF;           /* Light Blue (278C) — eyebrows on dark, soft accents */

  /* ── Color: neutrals ────────────────────────────────────────────────── */
  --c-gray: #838D96;          /* Steel Gray (4137C) — neutral text */
  --c-gray-light: #C1CCD3;    /* Light Gray (7543C) — dividers, disabled */
  --c-gray-lightest: #DFE8ED; /* Pale Gray (5455C) — soft section backgrounds */
  --c-paper: #F4F1EA;         /* Paper — heritage / owner-voice backgrounds */
  --c-paper-deep: #ECE6D7;    /* Paper deep — paper-tone image placeholder */
  --c-white: #FFFFFF;

  /* ── Color: action (use red for CTAs ONLY) ──────────────────────────── */
  --c-cta: #EF3333;           /* CTA Red — call-to-action buttons ONLY, never decoration */
  --c-cta-hover: #D12828;

  /* ── Color: text + rules ────────────────────────────────────────────── */
  --c-text: #141A2E;
  --c-text-muted: #5B6775;
  --c-rule: rgba(20, 26, 46, 0.12);
  --c-rule-light: rgba(255, 255, 255, 0.22);

  /* ── Type families (free Google-Font equivalents of the brand fonts) ── */
  --f-display: "Saira", system-ui, -apple-system, sans-serif;   /* display / headlines / buttons  (≈ Burlingame Pro) */
  --f-editorial: "Zilla Slab", Georgia, serif;                  /* editorial / pullquotes / captions (≈ FS Silas Slab) */
  --f-body: "Lexend", system-ui, -apple-system, sans-serif;     /* body copy (≈ Sans Beam Semi-Light) */

  /* ── Radii ──────────────────────────────────────────────────────────── */
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;

  /* ── Elevation ──────────────────────────────────────────────────────── */
  --shadow-md: 0 4px 20px rgba(20, 26, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(20, 26, 46, 0.28);
  --shadow-card: 0 24px 60px rgba(20, 26, 46, 0.36), 0 1px 0 rgba(20, 26, 46, 0.04);

  /* ── Layout ─────────────────────────────────────────────────────────── */
  --page-pad-x: 80px;         /* horizontal page gutter — section components read this */
}

@media (max-width: 1200px) { :root { --page-pad-x: 48px; } }
@media (max-width: 900px)  { :root { --page-pad-x: 20px; } }

/* ═══════════════════════════════════════════════════════════════════════
 *  Anderson Lock & Safe — Component styles
 *  Consumed by @anderson/design-system React components. Class names are
 *  encapsulated by the components; compose your own layout glue with the
 *  design tokens (tokens.css). Depends on tokens.css being loaded first.
 * ═══════════════════════════════════════════════════════════════════════ */

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

.als-img { display: block; max-width: 100%; }

/* ── Focus ring (brand) ────────────────────────────────────────────────── */
.als :focus-visible,
.btn:focus-visible,
.lp-header__cta:focus-visible { outline: 3px solid var(--c-mid-blue); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .callcard__urgent::before { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Buttons
 * ═══════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.015em;
  padding: 16px 24px;
  border-radius: var(--r);
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.05s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--cta { background: var(--c-cta); color: #fff; }
.btn--cta:hover { background: var(--c-cta-hover); }
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-dark); }
.btn--navy { background: var(--c-navy); color: #fff; }
.btn--navy:hover { background: var(--c-navy-ink); }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.35); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.08); }
.btn--ghost-dark { background: transparent; color: var(--c-navy); border: 1.5px solid var(--c-navy); }
.btn--ghost-dark:hover { background: var(--c-navy); color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════════════
 *  Typography utilities
 * ═══════════════════════════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-primary);
}
.eyebrow--light { color: var(--c-sky); }

/* Spec-sheet index marker — "01 / Hero" */
.idx-marker {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.idx-marker::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.55; }
.idx-marker--light { color: var(--c-sky); }

.h-display {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--c-navy);
  margin: 0;
}
.h-display em { font-style: normal; color: var(--c-primary); }
.h-display--light { color: #fff; }
.h-display--light em { color: var(--c-sky); }
.h-display--xl { font-size: clamp(48px, 6vw, 88px); }
.h-display--lg { font-size: clamp(40px, 5vw, 72px); }
.h-display--md { font-size: clamp(30px, 3.5vw, 44px); }
.h-display--sm { font-size: clamp(22px, 2.4vw, 32px); }

.h-editorial { font-family: var(--f-editorial); font-weight: 500; letter-spacing: -0.005em; margin: 0; }

/* Chips — short uppercase trust tags (hero) */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
}
.chip--dark { color: var(--c-navy); border-color: var(--c-rule); background: transparent; }

/* ═══════════════════════════════════════════════════════════════════════
 *  Trust row (inline check-chip list — sits in heroes / sections)
 * ═══════════════════════════════════════════════════════════════════════ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-row__item { display: inline-flex; align-items: center; gap: 8px; }
.trust-row__check {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex: 0 0 18px;
}
.trust-row--light { color: rgba(255,255,255,0.94); }
.trust-row--light .trust-row__check { background: rgba(187,218,255,0.18); color: var(--c-sky); border: 1px solid rgba(187,218,255,0.35); }
.trust-row--dark { color: var(--c-navy); }
.trust-row--dark .trust-row__check { background: var(--c-sky); color: var(--c-primary); }

/* ═══════════════════════════════════════════════════════════════════════
 *  Trust band (full-width paper strip, hairline-divided)
 * ═══════════════════════════════════════════════════════════════════════ */
.trustband { background: var(--c-paper); border-bottom: 1px solid var(--c-rule); padding: 22px var(--page-pad-x); }
.trustband__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; max-width: 1440px; margin: 0 auto;
}
.trustband__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  color: var(--c-navy); flex: 1 1 auto; white-space: nowrap;
}
.trustband__item:not(:last-child) { border-right: 1px solid var(--c-rule); padding-right: 18px; }
.trustband__check {
  flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
}
@media (max-width: 900px) {
  .trustband__item { font-size: 11px; }
  .trustband__item:not(:last-child) { padding-right: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Booker — ST-Scheduling-Pro-first booking artifact (red top border)
 * ═══════════════════════════════════════════════════════════════════════ */
.booker { background: #fff; color: var(--c-text); border-radius: 2px; box-shadow: var(--shadow-lg); overflow: hidden; border-top: 4px solid var(--c-cta); }
.booker--compact { border-top-width: 3px; }
.booker__head { padding: 22px 26px 4px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.booker__head-title { font-family: var(--f-display); font-weight: 800; font-size: 18px; color: var(--c-navy); letter-spacing: -0.005em; }
.booker__head-meta { font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-cta); white-space: nowrap; }
.booker__sub { padding: 0 26px 20px; font-size: 13px; color: var(--c-text-muted); }
.booker__action { padding: 0 22px 16px; }
.booker__or {
  padding: 0 26px; display: flex; align-items: center; gap: 14px;
  font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 14px;
}
.booker__or::before, .booker__or::after { content: ""; flex: 1; height: 1px; background: var(--c-rule); }
.booker__phone { display: block; text-align: center; font-family: var(--f-display); font-weight: 900; font-size: 32px; color: var(--c-primary); letter-spacing: -0.02em; line-height: 1; text-decoration: none; }
.booker__phone-sub { display: block; text-align: center; font-size: 12px; color: var(--c-text-muted); margin-top: 6px; padding: 0 26px 22px; }
.booker__foot {
  background: var(--c-gray-lightest); padding: 14px 26px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-navy);
  display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap;
}
.booker__foot span { display: inline-flex; align-items: center; gap: 6px; }

/* ═══════════════════════════════════════════════════════════════════════
 *  Call card — phone-first booking artifact (navy top border, live strip)
 * ═══════════════════════════════════════════════════════════════════════ */
.callcard { background: #fff; color: var(--c-text); border-radius: 4px; box-shadow: var(--shadow-card); overflow: hidden; width: 100%; border-top: 4px solid var(--c-navy); }
.callcard__urgent {
  background: var(--c-navy); color: #fff; padding: 9px 22px;
  font-family: var(--f-display); font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.callcard__urgent::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #7FFF9E; box-shadow: 0 0 0 3px rgba(127,255,158,0.22);
  animation: als-pulse 1.6s ease-in-out infinite;
}
@keyframes als-pulse { 50% { opacity: 0.55; } }
.callcard__head { padding: 22px 26px 6px; }
.callcard__eyebrow { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 10px; }
.callcard__title { font-family: var(--f-display); font-weight: 800; font-size: 21px; color: var(--c-navy); letter-spacing: -0.01em; line-height: 1.15; }
.callcard__phone-wrap { padding: 14px 22px 16px; }
.callcard__phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%;
  background: var(--c-cta); color: #fff; padding: 18px; border-radius: 4px;
  font-family: var(--f-display); font-weight: 800; letter-spacing: -0.01em; text-align: center;
  text-decoration: none; transition: background 0.15s ease;
}
.callcard__phone-btn:hover { background: var(--c-cta-hover); }
.callcard__phone-btn-icon { width: 22px; height: 22px; border-radius: 50%; background: #fff; color: var(--c-cta); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; flex: 0 0 22px; }
.callcard__phone-btn-num { font-size: 24px; }
.callcard__phone-btn-sub { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.86; margin-top: 1px; }
.callcard__phone-meta { display: flex; justify-content: space-between; align-items: center; padding: 0 4px; margin-top: 10px; font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--c-text-muted); }
.callcard__phone-meta-live { color: var(--c-navy); display: inline-flex; align-items: center; gap: 6px; }
.callcard__phone-meta-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2BB673; box-shadow: 0 0 0 3px rgba(43,182,115,0.22); }
.callcard__or { display: flex; align-items: center; gap: 14px; padding: 4px 26px 14px; font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-text-muted); }
.callcard__or::before, .callcard__or::after { content: ""; flex: 1; height: 1px; background: var(--c-rule); }
.callcard__book { padding: 0 22px 20px; }
.callcard__book-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: var(--c-navy); color: #fff; padding: 14px 18px; border-radius: 4px;
  font-family: var(--f-display); font-weight: 700; font-size: 14px; letter-spacing: 0.01em;
  border: none; cursor: pointer; transition: background 0.15s ease;
}
.callcard__book-btn:hover { background: var(--c-navy-ink); }
.callcard__book-btn-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; text-align: left; display: block; margin-top: 1px; }
.callcard__book-btn-arrow { font-size: 18px; opacity: 0.7; }
.callcard__foot { background: var(--c-paper); padding: 12px 22px; font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-navy); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.callcard__foot-item { display: inline-flex; align-items: center; gap: 6px; }
.callcard__foot-item::before { content: "✓"; color: var(--c-primary); font-weight: 900; }

/* ═══════════════════════════════════════════════════════════════════════
 *  Header
 * ═══════════════════════════════════════════════════════════════════════ */
.lp-header {
  background: var(--c-primary); padding: 14px var(--page-pad-x);
  display: flex; align-items: center; justify-content: space-between; color: #fff;
  position: sticky; top: 0; z-index: 50;
}
.lp-header--dark { background: var(--c-navy-ink); }
.lp-header__logo { height: 40px; width: auto; display: block; }
.lp-header__right { display: flex; align-items: center; gap: 22px; font-family: var(--f-display); }
.lp-header__phone-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.75; display: block; margin-bottom: 2px; }
.lp-header__phone { color: #fff; font-weight: 800; font-size: 22px; letter-spacing: -0.01em; line-height: 1; text-decoration: none; white-space: nowrap; }
.lp-header__cta {
  padding: 10px 18px; background: rgba(255,255,255,0.14); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 12px; letter-spacing: 0.06em;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.28); text-transform: uppercase; cursor: pointer;
}
.lp-header__cta:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 900px) {
  .lp-header__logo { height: 32px; }
  .lp-header__right { gap: 12px; }
  .lp-header__phone-label { display: none; }
  .lp-header__phone { font-size: 18px; }
  .lp-header__cta { padding: 8px 12px; font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Hero: Residential / generic full-bleed (photo + oversized headline + chips)
 * ═══════════════════════════════════════════════════════════════════════ */
.hero-res { position: relative; overflow: hidden; background: var(--c-navy-ink); color: #fff; min-height: 640px; }
.hero-res__bg { position: absolute; inset: 0; z-index: 0; }
.hero-res__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-res__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,16,32,0.92) 0%, rgba(11,16,32,0.72) 40%, rgba(11,16,32,0.25) 80%, transparent 100%),
    linear-gradient(180deg, rgba(11,16,32,0.35) 0%, transparent 30%, rgba(11,16,32,0.45) 100%);
}
.hero-res__inner {
  position: relative; z-index: 2; padding: 72px var(--page-pad-x) 64px;
  display: grid; grid-template-columns: 1fr clamp(380px, 32vw, 460px); gap: 64px;
  align-items: end; min-height: 600px; max-width: 1600px; margin: 0 auto;
}
.hero-res__content { max-width: 640px; padding-bottom: 8px; }
.hero-res__idx { color: var(--c-sky); margin-bottom: 26px; }
.hero-res__headline {
  font-family: var(--f-display); font-weight: 800; letter-spacing: -0.025em; line-height: 0.98;
  color: #fff; font-size: clamp(44px, 5.6vw, 80px); margin: 0 0 26px;
}
.hero-res__headline em { font-style: normal; color: var(--c-sky); }
.hero-res__lede { font-family: var(--f-editorial); font-style: italic; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.42; color: rgba(255,255,255,0.86); max-width: 540px; margin: 0 0 32px; }
.hero-res__book { justify-self: end; align-self: end; width: 100%; max-width: 460px; }
@media (max-width: 900px) {
  .hero-res__inner { grid-template-columns: 1fr; padding: 48px 20px 40px; gap: 32px; align-items: start; min-height: auto; }
  .hero-res__book { justify-self: stretch; max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Hero: Commercial (two-panel — navy editorial left, photo right, inset booker)
 * ═══════════════════════════════════════════════════════════════════════ */
.hero-com { display: grid; grid-template-columns: 1.15fr 1fr; position: relative; overflow: hidden; min-height: 680px; }
.hero-com__left { background: var(--c-navy-ink); color: #fff; padding: 72px var(--page-pad-x) 56px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.hero-com__left::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--c-primary); }
.hero-com__headline { font-family: var(--f-display); font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; color: #fff; font-size: clamp(36px, 4.6vw, 64px); margin: 28px 0; }
.hero-com__headline em { font-style: normal; color: var(--c-sky); }
.hero-com__lede { font-family: var(--f-editorial); font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.82); font-weight: 500; max-width: 480px; margin-bottom: 28px; }
.hero-com__serving { margin-top: 40px; }
.hero-com__serving-label { font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(187,218,255,0.7); margin-bottom: 14px; }
.hero-com__serving-list { display: grid; grid-template-columns: repeat(3, auto); gap: 10px 40px; font-family: var(--f-display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); list-style: none; margin: 0; padding: 0; }
.hero-com__right { position: relative; background: var(--c-navy); min-height: 360px; }
.hero-com__right img { width: 100%; height: 100%; object-fit: cover; }
.hero-com__caption { position: absolute; top: 32px; right: 32px; background: rgba(11,16,32,0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 10px 14px; border-radius: 4px; color: #fff; font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; max-width: 240px; }
.hero-com__caption-label { color: var(--c-sky); font-size: 10px; letter-spacing: 0.24em; margin-bottom: 4px; text-transform: uppercase; }
.hero-com__book { position: absolute; left: -40px; bottom: 48px; width: 400px; max-width: 92%; }
@media (max-width: 1100px) {
  .hero-com { grid-template-columns: 1fr; }
  .hero-com__right { min-height: 420px; }
  .hero-com__book { left: 20px; bottom: 32px; width: 360px; }
}
@media (max-width: 900px) {
  .hero-com__left { padding: 48px 20px 36px; }
  .hero-com__serving-list { grid-template-columns: repeat(2, auto); gap: 8px 24px; }
  .hero-com__caption { top: 16px; right: 16px; max-width: 200px; }
  .hero-com__book { position: static; margin: -40px 20px 24px; width: calc(100% - 40px); }
  .hero-com__right { min-height: 320px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Hero: Safes (cinematic, slab-serif gravity)
 * ═══════════════════════════════════════════════════════════════════════ */
.hero-safes { background: #000; position: relative; overflow: hidden; }
.hero-safes__photo { position: relative; height: clamp(420px, 62vh, 620px); overflow: hidden; }
.hero-safes__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-safes__photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,16,32,0.3) 0%, rgba(11,16,32,0) 35%, rgba(11,16,32,0.55) 80%, rgba(11,16,32,1) 100%); }
.hero-safes__photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(0,0,0,0.35) 80%); }
.hero-safes__overlay { position: absolute; top: 56px; left: var(--page-pad-x); right: var(--page-pad-x); z-index: 2; color: #fff; }
.hero-safes__headline { font-family: var(--f-editorial); font-weight: 600; letter-spacing: -0.02em; color: #fff; font-size: clamp(36px, 6vw, 82px); line-height: 1.0; max-width: 820px; margin: 28px 0 24px; }
.hero-safes__headline i { font-style: italic; color: var(--c-sky); }
.hero-safes__support { font-family: var(--f-display); font-size: clamp(17px, 1.8vw, 24px); font-weight: 700; letter-spacing: -0.005em; color: #fff; max-width: 620px; line-height: 1.2; }
.hero-safes__photo-caption { position: absolute; bottom: 32px; left: var(--page-pad-x); z-index: 2; color: rgba(255,255,255,0.74); font-family: var(--f-editorial); font-size: 14px; font-style: italic; font-weight: 500; max-width: 460px; border-left: 2px solid var(--c-sky); padding-left: 14px; }
.hero-safes__bar { background: var(--c-navy-ink); padding: 40px var(--page-pad-x); display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); }
.hero-safes__scope-label { color: var(--c-sky); font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 14px; }
.hero-safes__scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 32px; font-family: var(--f-display); color: #fff; }
.hero-safes__scope-item h4 { font-size: 15px; font-weight: 700; margin: 0 0 3px; }
.hero-safes__scope-item p { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.62); margin: 0; }
@media (max-width: 900px) {
  .hero-safes__overlay { top: 32px; }
  .hero-safes__photo-caption { bottom: 20px; font-size: 12px; }
  .hero-safes__bar { grid-template-columns: 1fr; padding: 32px 20px; gap: 28px; }
  .hero-safes__scope-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Hero: Brand / Home (heritage, paper tone, owner voice)
 * ═══════════════════════════════════════════════════════════════════════ */
.hero-brand { display: grid; grid-template-columns: 1fr clamp(380px, 36vw, 520px); min-height: 680px; }
.hero-brand__left { background: var(--c-paper); padding: 72px var(--page-pad-x) 48px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-brand__headline { font-family: var(--f-editorial); font-weight: 600; letter-spacing: -0.025em; color: var(--c-navy-ink); font-size: clamp(40px, 5.2vw, 76px); line-height: 0.98; margin: 28px 0; max-width: 640px; }
.hero-brand__headline strong { color: var(--c-primary); font-weight: inherit; }
.hero-brand__lede { font-family: var(--f-body); font-size: 17px; line-height: 1.6; color: var(--c-navy); max-width: 520px; margin-bottom: 28px; font-weight: 400; }
.hero-brand__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-brand__pullquote { margin-top: 44px; border-top: 1px solid var(--c-rule); padding-top: 24px; display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; max-width: 640px; }
.hero-brand__pullquote-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--c-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 800; font-size: 18px; overflow: hidden; }
.hero-brand__pullquote-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-brand__pullquote-text { font-family: var(--f-editorial); font-style: italic; font-weight: 500; font-size: 18px; line-height: 1.45; color: var(--c-navy); margin-bottom: 8px; }
.hero-brand__pullquote-attr { font-family: var(--f-display); font-size: 11px; font-weight: 700; color: var(--c-text-muted); letter-spacing: 0.18em; text-transform: uppercase; }
.hero-brand__right { display: flex; flex-direction: column; background: var(--c-navy-ink); }
.hero-brand__photo { position: relative; flex: 1; overflow: hidden; min-height: 320px; }
.hero-brand__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-brand__plate { position: absolute; top: 24px; left: 24px; background: var(--c-cta); color: #fff; padding: 8px 14px; font-family: var(--f-display); font-size: 10px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; }
.hero-brand__book-wrap { padding: 28px; background: var(--c-navy-ink); }
@media (max-width: 900px) {
  .hero-brand { grid-template-columns: 1fr; min-height: auto; }
  .hero-brand__left { padding: 40px 20px; }
  .hero-brand__headline { font-size: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Hero: Restricted / Medeco (premium technical product page)
 * ═══════════════════════════════════════════════════════════════════════ */
.hero-med { background: #fff; }
.hero-med__ribbon { padding: 14px var(--page-pad-x); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--c-rule); font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-text-muted); flex-wrap: wrap; gap: 16px; }
.hero-med__ribbon-specs { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-med__grid { display: grid; grid-template-columns: 80px 1fr 80px 1fr 80px; align-items: center; padding: 48px var(--page-pad-x); gap: 40px; }
.hero-med__vlabel { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.36em; text-transform: uppercase; color: var(--c-text-muted); justify-self: center; }
.hero-med__vlabel--right { writing-mode: vertical-rl; transform: none; color: var(--c-cta); justify-self: center; font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.36em; text-transform: uppercase; }
.hero-med__rule { height: 70%; width: 1px; background: var(--c-rule); justify-self: center; }
.hero-med__content { padding-right: 40px; }
.hero-med__headline { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.025em; line-height: 0.98; font-size: clamp(36px, 4.6vw, 64px); margin: 20px 0 28px; color: var(--c-navy); }
.hero-med__headline em { font-style: normal; color: var(--c-primary); }
.hero-med__lede { font-family: var(--f-editorial); font-size: 19px; line-height: 1.5; font-weight: 500; color: var(--c-text); max-width: 500px; margin-bottom: 32px; }
.hero-med__spec { display: grid; grid-template-columns: auto 1fr; gap: 10px 24px; font-family: var(--f-display); font-size: 13px; margin-bottom: 32px; max-width: 480px; }
.hero-med__spec dt { color: var(--c-text-muted); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 10px; padding-top: 2px; margin: 0; }
.hero-med__spec dd { color: var(--c-navy); font-weight: 600; border-left: 2px solid var(--c-primary); padding-left: 12px; margin: 0; }
.hero-med__photo-wrap { background: var(--c-gray-lightest); aspect-ratio: 4 / 5; max-width: 440px; position: relative; overflow: hidden; }
.hero-med__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-med__photo-tag { position: absolute; bottom: 16px; left: 16px; background: #fff; padding: 10px 14px; font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--c-navy); border-left: 3px solid var(--c-cta); }
.hero-med__contact { margin-top: 20px; padding: 16px 0; border-top: 1px solid var(--c-rule); display: flex; align-items: center; justify-content: space-between; max-width: 440px; }
.hero-med__contact-label { font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 4px; }
.hero-med__contact-phone { font-family: var(--f-display); font-size: 22px; font-weight: 900; color: var(--c-primary); letter-spacing: -0.01em; text-decoration: none; }
.hero-med__contact-side { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-text-muted); text-align: right; }
@media (max-width: 1100px) {
  .hero-med__grid { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }
  .hero-med__vlabel, .hero-med__vlabel--right, .hero-med__rule { display: none; }
  .hero-med__content { padding-right: 0; }
  .hero-med__ribbon { padding: 12px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Proof ledger (oversized typographic numerals)
 * ═══════════════════════════════════════════════════════════════════════ */
.proof-ledger { background: #fff; padding: 48px var(--page-pad-x); border-top: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule); }
.proof-ledger__row { display: flex; gap: 32px; align-items: center; max-width: 1440px; margin: 0 auto; }
.proof-ledger__label { font-family: var(--f-display); font-weight: 700; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-primary); }
.proof-ledger__rule { height: 1px; background: var(--c-rule); flex: 0 0 40px; }
.proof-ledger__items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; flex: 1; }
.proof-ledger__item { padding: 0 32px; border-left: 1px solid var(--c-rule); }
.proof-ledger__item:first-child { border-left: 0; padding-left: 0; }
.proof-ledger__n { font-family: var(--f-display); font-size: 52px; font-weight: 900; color: var(--c-navy); line-height: 1; letter-spacing: -0.02em; }
.proof-ledger__l { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-primary); margin-top: 8px; }
.proof-ledger__s { font-family: var(--f-body); font-size: 12px; color: var(--c-text-muted); margin-top: 2px; }
@media (max-width: 900px) {
  .proof-ledger { padding: 32px 20px; }
  .proof-ledger__row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-ledger__rule { display: none; }
  .proof-ledger__items { grid-template-columns: 1fr 1fr; gap: 24px 0; width: 100%; }
  .proof-ledger__item { padding: 0 18px; }
  .proof-ledger__n { font-size: 38px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Services (editorial rows — ghost numeral + copy + anchor photo)
 * ═══════════════════════════════════════════════════════════════════════ */
.svc-section { padding: 96px var(--page-pad-x); background: #fff; }
.svc-section__inner { max-width: 1440px; margin: 0 auto; }
.svc-head { display: grid; grid-template-columns: 1fr clamp(240px, 24vw, 360px); gap: 56px; align-items: end; margin-bottom: 48px; }
.svc-head__title { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.025em; line-height: 1.0; color: var(--c-navy); font-size: clamp(34px, 4vw, 56px); margin-bottom: 0; max-width: 720px; }
.svc-head__title em { font-style: normal; color: var(--c-primary); }
.svc-head__lede { font-family: var(--f-editorial); font-size: 17px; line-height: 1.5; color: var(--c-text-muted); }
.svc-row { display: grid; grid-template-columns: 80px 1fr clamp(220px, 24vw, 360px); gap: 40px; padding: 36px 0; border-top: 1px solid var(--c-rule); align-items: center; }
.svc-row:last-child { border-bottom: 1px solid var(--c-rule); }
.svc-row__n { font-family: var(--f-display); font-size: 56px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--c-gray-light); letter-spacing: -0.03em; line-height: 0.9; }
.svc-row__body { padding-right: 24px; max-width: 560px; }
.svc-row__title { font-family: var(--f-display); font-weight: 800; font-size: 24px; color: var(--c-navy); letter-spacing: -0.01em; margin-bottom: 8px; }
.svc-row__title em { font-style: normal; color: var(--c-primary); }
.svc-row__desc { font-size: 15px; line-height: 1.55; color: var(--c-text-muted); }
.svc-row__photo { position: relative; height: clamp(200px, 20vw, 300px); background: var(--c-gray-lightest); overflow: hidden; }
.svc-row__photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-row__photo-cap { position: absolute; bottom: 8px; left: 8px; background: rgba(11,16,32,0.82); color: #fff; font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 9px; }
@media (max-width: 900px) {
  .svc-section { padding: 56px 20px; }
  .svc-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .svc-row { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; }
  .svc-row__photo { display: none; }
  .svc-row__n { font-size: 40px; }
  .svc-row__title { font-size: 21px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Owner pullquote (paper tone)
 * ═══════════════════════════════════════════════════════════════════════ */
.pullquote-section { padding: 96px var(--page-pad-x); background: var(--c-paper); }
.pullquote { display: grid; grid-template-columns: clamp(180px, 16vw, 260px) 1fr; gap: 56px; align-items: center; max-width: 1280px; margin: 0 auto; }
.pullquote__avatar { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--c-paper-deep); }
.pullquote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pullquote__text { font-family: var(--f-editorial); font-size: clamp(24px, 2.8vw, 38px); line-height: 1.28; font-weight: 500; font-style: italic; color: var(--c-navy-ink); letter-spacing: -0.01em; }
.pullquote__text::before { content: "\201C"; display: block; font-size: 80px; color: var(--c-primary); line-height: 0.5; margin-bottom: 24px; font-style: normal; }
.pullquote__attr { margin-top: 26px; font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-muted); }
.pullquote--no-avatar { grid-template-columns: 1fr; max-width: 1040px; }
.pullquote--no-avatar .pullquote__text { border-left: 3px solid var(--c-cta); padding-left: 28px; }
.pullquote--no-avatar .pullquote__text::before { display: none; }
@media (max-width: 900px) {
  .pullquote-section { padding: 56px 20px; }
  .pullquote { grid-template-columns: 1fr; gap: 28px; }
  .pullquote__avatar { max-width: 220px; }
  .pullquote__text { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Guarantees bar (full-bleed primary blue, hairline grid)
 * ═══════════════════════════════════════════════════════════════════════ */
.guarantees-bar { background: var(--c-primary); color: #fff; padding: 72px var(--page-pad-x); }
.guarantees-bar__inner { max-width: 1440px; margin: 0 auto; }
.guarantees-bar__head { display: flex; justify-content: space-between; align-items: baseline; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.guarantees-bar__title { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.02em; line-height: 0.98; color: #fff; font-size: clamp(30px, 3.4vw, 48px); max-width: 700px; }
.guarantees-bar__title span { color: var(--c-sky); }
.guarantees-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--c-rule-light); }
.guarantees-bar__item { border-bottom: 1px solid var(--c-rule-light); border-right: 1px solid var(--c-rule-light); padding: 26px 24px; }
.guarantees-bar__item:nth-child(4n) { border-right: none; }
.guarantees-bar__num { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--c-sky); margin-bottom: 10px; }
.guarantees-bar__check { width: 24px; height: 24px; border-radius: 4px; background: var(--c-sky); color: var(--c-primary-dark); display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 900; font-size: 13px; margin-bottom: 12px; }
.guarantees-bar__title-sm { font-family: var(--f-display); font-weight: 700; font-size: 17px; letter-spacing: -0.005em; margin-bottom: 6px; line-height: 1.2; }
.guarantees-bar__desc { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.5; }
@media (max-width: 1100px) {
  .guarantees-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees-bar__item:nth-child(4n) { border-right: 1px solid var(--c-rule-light); }
  .guarantees-bar__item:nth-child(2n) { border-right: none; }
}
@media (max-width: 900px) {
  .guarantees-bar { padding: 56px 20px; }
  .guarantees-bar__head { gap: 16px; margin-bottom: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  CTA band (navy, photo background — closing conversion push)
 * ═══════════════════════════════════════════════════════════════════════ */
.cta-band { position: relative; overflow: hidden; background: var(--c-navy-ink); color: #fff; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.32; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,16,32,0.94) 0%, rgba(11,16,32,0.6) 60%, rgba(11,16,32,0.85) 100%); }
.cta-band__inner { position: relative; z-index: 1; padding: 96px var(--page-pad-x); display: grid; grid-template-columns: 1fr clamp(360px, 32vw, 480px); gap: 80px; align-items: center; max-width: 1600px; margin: 0 auto; }
.cta-band__head { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.025em; line-height: 0.98; color: #fff; font-size: clamp(36px, 4.6vw, 64px); margin: 0 0 20px; max-width: 720px; }
.cta-band__head em { font-style: normal; color: var(--c-sky); }
.cta-band__lede { font-family: var(--f-editorial); font-style: italic; font-size: 19px; line-height: 1.45; font-weight: 500; color: rgba(255,255,255,0.84); max-width: 520px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 16px; min-width: 280px; }
.cta-band__actions-note { font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-align: center; margin-top: 6px; }
@media (max-width: 900px) {
  .cta-band__inner { grid-template-columns: 1fr; padding: 56px 20px; gap: 36px; }
  .cta-band__actions { min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Footer
 * ═══════════════════════════════════════════════════════════════════════ */
.lp-footer { background: var(--c-navy-ink); color: rgba(255,255,255,0.7); padding: 36px var(--page-pad-x); font-size: 12px; display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; font-family: var(--f-display); letter-spacing: 0.04em; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.08); }
.lp-footer__locations { color: #fff; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; line-height: 1.7; max-width: 760px; }
.lp-footer__locations span { color: rgba(255,255,255,0.45); margin: 0 10px; }
.lp-footer a { color: rgba(255,255,255,0.9); text-decoration: underline; text-underline-offset: 3px; }
.lp-footer__legal { font-size: 11px; opacity: 0.65; }
@media (max-width: 900px) {
  .lp-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════════
 *  Sticky mobile CTA (call + book, fixed bottom — under 900px)
 * ═══════════════════════════════════════════════════════════════════════ */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; border-top: 1px solid var(--c-gray-light); padding: 10px 14px; display: flex; gap: 10px; box-shadow: 0 -4px 16px rgba(20,26,46,0.1); }
.sticky-cta a, .sticky-cta button { flex: 1; padding: 12px 14px; border-radius: var(--r); font-family: var(--f-display); font-weight: 700; font-size: 14px; text-align: center; border: none; white-space: nowrap; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.sticky-cta__call { background: var(--c-primary); color: #fff; }
.sticky-cta__book { background: var(--c-cta); color: #fff; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

