:root {
  --ink: #0f1014;
  --ink-2: #1a1c22;
  --ink-3: #2a2d35;
  --paper: #fafaf7;
  --paper-2: #f3f2ec;
  --line: #e5e3da;
  --amber: #ffb627;
  --amber-deep: #d99319;
  --teal: #00b8a9;
  --teal-deep: #008c80;
  --hot: #ff5a36;
  --hot-deep: #e0431f;
  --muted: #5b5e69;
  --soft: #8a8d97;
  --display: "Instrument Serif", ui-serif, Georgia, serif;
  --sans: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-lg: 0 30px 80px -30px rgba(15, 16, 20, 0.35);
  --shadow-md: 0 14px 30px -14px rgba(15, 16, 20, 0.22);
  --shadow-sm: 0 6px 14px -6px rgba(15, 16, 20, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
.phone-icon {
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  line-height: 1;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ---------- EMERGENCY BAR ---------- */
.emergency-bar {
  background: linear-gradient(90deg, var(--hot-deep), var(--hot));
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-bar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  background-size: 50% 100%;
  animation: scanline 3s linear infinite;
}
@keyframes scanline {
  0% {
    background-position: -50% 0;
  }
  100% {
    background-position: 150% 0;
  }
}
.emergency-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}
.emergency-bar .pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: #fff;
  margin-right: 2px;
  vertical-align: middle;
}
@keyframes redpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  padding: 11px 0;
  font-size: 13.5px;
  border-bottom: 1px solid #000;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar .lhs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.topbar .live {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(0, 184, 169, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 184, 169, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 184, 169, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 169, 0);
  }
}
.topbar a {
  font-weight: 700;
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 182, 39, 0.4);
}
.topbar a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
/* ---------- HEADER / NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.brand-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px -4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 182, 39, 0.35),
    transparent 60%
  );
}
.brand-mark svg {
  width: 24px;
  height: 24px;
  color: var(--amber);
  position: relative;
  z-index: 2;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
}
.brand .ital {
  font-style: italic;
  color: var(--amber-deep);
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
}
nav.menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
nav.menu a:hover {
  color: var(--amber-deep);
}
nav.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav.menu a:hover::after {
  transform: scaleX(1);
}
.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hot);
  color: #fff;
  padding: 13px 22px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--hot);
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px -6px rgba(255, 90, 54, 0.6);
  position: relative;
}
.cta-call::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  background: rgba(255, 90, 54, 0.4);
  z-index: -1;
  animation: ringpulse 2.4s ease-out infinite;
}
@keyframes ringpulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.cta-call:hover {
  background: var(--ink);
  color: var(--hot);
  border-color: var(--ink);
}
.cta-call svg {
  width: 16px;
  height: 16px;
}
.hamburger-btn {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 880px) {
  nav.menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .hamburger-btn:hover {
    border-color: var(--ink);
    background: rgba(15, 16, 20, 0.04);
  }
  .hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  .hamburger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .hamburger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .mobile-menu {
    position: fixed;
    top: calc(var(--emergency-bar-height, 0px) + var(--site-header-height));
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(15, 16, 20, 0.08);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      max-height 260ms ease,
      visibility 0s linear 260ms;
  }
  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    max-height: calc(
      100vh - var(--emergency-bar-height, 0px) - var(--site-header-height)
    );
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      max-height 260ms ease,
      visibility 0s linear 0s;
    overflow-y: auto;
    padding: 12px 0;
  }
  .mobile-menu-link {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu-link:last-child {
    border-bottom: none;
  }
  .mobile-menu-link:hover,
  .mobile-menu-link:active {
    background-color: var(--paper);
  }
  .cta-call span.label {
    display: none;
  }
  .cta-call {
    padding: 13px 18px;
  }
}
/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 600px at 88% -10%,
      rgba(255, 182, 39, 0.16),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at -5% 100%,
      rgba(255, 90, 54, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #fbfaf4 0%, var(--paper) 100%);
  padding: 80px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(15, 16, 20, 0.07) 1px,
    transparent 0
  );
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    1.1fr
    0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-badge.hot {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero-badge .pip {
  width: 6px;
  height: 6px;
  background: var(--hot);
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.6);
  animation: redpulse 1.4s ease-out infinite;
}
.hero-badge.hot .tag {
  background: var(--hot);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}
h1.headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
h1 .ital {
  font-style: italic;
  color: var(--amber-deep);
}
h1 .hot {
  color: var(--hot);
  font-style: italic;
}
h1 .highlight {
  background: linear-gradient(transparent 60%, rgba(255, 182, 39, 0.5) 60%);
  padding: 0 4px;
}
.lede {
  font-size: 20px;
  line-height: 1.5;
  max-width: 560px;
  color: #3a3a3a;
  margin: 0 0 32px;
}
.lede strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 99px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--hot);
  color: #fff;
  border-color: var(--hot);
  box-shadow: 0 14px 30px -10px rgba(255, 90, 54, 0.6);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.hero-fast {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-fast .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hot);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-fast .ico svg {
  width: 22px;
  height: 22px;
}
.hero-fast .txt {
  flex: 1;
  min-width: 200px;
}
.hero-fast .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero-fast .val {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 2px;
}
.hero-fast .val .ital {
  font-style: italic;
  color: var(--hot);
}
/* ---------- HERO RIGHT — CALL CARD ---------- */
.call-card {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.call-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 250px at 50% 0%,
      rgba(255, 90, 54, 0.22),
      transparent 60%
    ),
    radial-gradient(
      400px 300px at 100% 100%,
      rgba(255, 182, 39, 0.18),
      transparent 60%
    );
  pointer-events: none;
}
.call-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cc-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 90, 54, 0.18);
  color: var(--hot);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 90, 54, 0.4);
  z-index: 2;
}
.cc-stamp .dot {
  width: 6px;
  height: 6px;
  background: var(--hot);
  border-radius: 99px;
  animation: redpulse 1.4s ease-out infinite;
}
.cc-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
  position: relative;
  z-index: 2;
}
.cc-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.cc-title .ital {
  font-style: italic;
  color: var(--amber);
}
.cc-sub {
  font-size: 15.5px;
  color: #cdc6b3;
  margin: 0 0 24px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.cc-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--hot);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.cc-call::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.cc-call:hover {
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}
.cc-call:hover::after {
  transform: translateX(100%);
}
.cc-call .left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cc-call .ico {
  width: 48px;
  height: 48px;
  border-radius: 99px;
  background: #fff;
  color: var(--hot);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cc-call:hover .ico {
  background: var(--ink);
  color: var(--amber);
}
.cc-call .ico svg {
  width: 22px;
  height: 22px;
}
.cc-call .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cc-call:hover .lbl {
  color: var(--muted);
}
.cc-call .num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.cc-call .arrow {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
}
.cc-call:hover .arrow {
  background: var(--ink);
  color: var(--amber);
}
.cc-call .arrow svg {
  width: 14px;
  height: 14px;
}
.cc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.cc-meta div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: #cdc6b3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-meta svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}
.cc-meta b {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 600;
}
/* ---------- VALUE STRIP ---------- */
.strip {
  background: var(--ink);
  color: #fff;
  padding: 34px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #000;
}
.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 200px at 50% 100%,
    rgba(255, 182, 39, 0.18),
    transparent 60%
  );
}
.strip .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 880px) {
  .strip .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.strip-item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #fff;
}
.strip-item h3 .accent {
  color: var(--amber);
  font-style: italic;
}
.strip-item h3 .hot {
  color: var(--hot);
  font-style: italic;
}
.strip-item p {
  font-family: var(--mono);
  font-size: 11px;
  color: #a39c89;
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
/* ---------- SECTION SHELL ---------- */
section {
  padding: 96px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin: 0 0 16px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--amber-deep);
}
.section-eyebrow.hot {
  color: var(--hot);
}
.section-eyebrow.hot::before {
  background: var(--hot);
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.section-title .ital {
  font-style: italic;
  color: var(--amber-deep);
}
.section-title .hot {
  font-style: italic;
  color: var(--hot);
}
.section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a3a;
  max-width: 680px;
  margin: 0 0 56px;
}
/* ---------- KEY TYPES (illustrated) ---------- */
.keytypes {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line);
}
.keytypes .wrap {
  text-align: center;
}
.keytypes .section-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.keytypes .section-eyebrow::before {
  display: none;
}
.keytypes .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.keytypes .section-lede {
  max-width: 670px;
  margin: 0 auto 34px;
}
.keytypes-media {
  max-width: 900px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.keytypes-media a {
  display: block;
  border-radius: 16px;
}
.keytypes-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
}
.keytypes-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 90, 54, 0.32);
  border-radius: 999px;
  color: var(--hot-deep);
  background: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 700;
}
.keytypes-detail:hover {
  background: var(--hot);
  border-color: var(--hot);
  color: #fff;
}
.kt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 980px) {
  .kt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .kt-grid {
    grid-template-columns: 1fr;
  }
  .keytypes-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .keytypes-placeholder {
    height: auto;
  }
}
.kt-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.kt-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}
.kt-illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  background: linear-gradient(180deg, #f7f5ee 0%, #ece9dc 100%);
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: background 0.25s ease;
}
.kt-card:hover .kt-illustration {
  background: linear-gradient(180deg, #fff8e8 0%, #fff0cc 100%);
}
.kt-illustration svg {
  width: 80px;
  height: 80px;
  color: var(--ink);
}
.kt-card h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.kt-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  min-height: 44px;
}
.kt-card .turnaround {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 700;
  background: rgba(255, 90, 54, 0.1);
  padding: 5px 10px;
  border-radius: 99px;
}
.kt-card .turnaround svg {
  width: 11px;
  height: 11px;
}
.keytypes-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}
.keytypes-note a {
  color: var(--hot-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 90, 54, 0.35);
}
/* ---------- BRAND COVERAGE ---------- */
.brands {
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
}
.brands .wrap {
  text-align: center;
}
.brands .section-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.brands .section-eyebrow::before {
  display: none;
}
.brands .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.brands .section-lede {
  max-width: 620px;
  margin: 0 auto 34px;
}
.brands-media {
  max-width: 980px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
  gap: 18px;
}
.brand-image-card {
  width: 100%;
  max-width: 290px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: #f3efe8;
  border: 1px solid #e6ded2;
}
.brand-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.brands-list {
  max-width: 820px;
  margin: 0 auto 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brands-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.brands-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 90, 54, 0.32);
  border-radius: 999px;
  color: var(--hot-deep);
  background: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  font-weight: 700;
}
.brands-detail:hover {
  background: var(--hot);
  border-color: var(--hot);
  color: #fff;
}
@media (max-width: 900px) {
  .brands-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .brands-media {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .brand-image-card {
    max-width: 100%;
  }
  .keytypes-placeholder {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}
/* ---------- SERVICES ---------- */
.services {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services .wrap {
  text-align: center;
}
.services .section-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.services .section-eyebrow::before {
  display: none;
}
.services .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.services .section-lede {
  max-width: 680px;
  margin: 0 auto 26px;
}
.services-image-wrap {
  display: block;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 3 / 1;
  margin: 2rem auto 44px;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f1e8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}
.services-image {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.svc-grid {
  max-width: 980px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.svc {
  min-height: 142px;
  padding: 24px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.svc:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 54, 0.32);
  box-shadow: var(--shadow-sm);
}
.svc h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
.svc p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.services-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 90, 54, 0.3);
  border-radius: 999px;
  color: var(--hot);
  background: rgba(255, 90, 54, 0.07);
  font-weight: 800;
}
.services-detail:hover {
  color: #fff;
  background: var(--hot);
  border-color: var(--hot);
}
@media (max-width: 1023px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .svc {
    padding: 20px 18px;
  }
}
@media (max-width: 767px) {
  .services .section-lede {
    margin-bottom: 22px;
  }
  .services-image-wrap {
    aspect-ratio: 3 / 1;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .svc {
    min-height: 0;
    padding: 18px 14px;
  }
}
@media (max-width: 339px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .svc {
    padding: 16px 12px;
  }
}
/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.testimonial::before {
  content: none;
}
.testimonial .wrap {
  position: relative;
  z-index: 2;
}
.testimonial .section-eyebrow {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 16px;
}
.testimonial .section-eyebrow::before {
  display: none;
}
.testimonial .section-title {
  text-align: center;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
@media (max-width: 980px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testi {
  background: #fff;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi blockquote {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 20px;
  flex-grow: 1;
}
.testi .timetag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: rgba(255, 90, 54, 0.1);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.testi .timetag svg {
  width: 11px;
  height: 11px;
}
.testi .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi .avatar {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--amber-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
}
.testi .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.testi .role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq .wrap {
  text-align: center;
}
.faq .section-eyebrow {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 14px;
}
.faq .section-eyebrow::before {
  display: none;
}
.faq .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq .section-lede {
  max-width: 640px;
  margin: 0 auto 36px;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
details.q {
  border: 1px solid rgba(15, 16, 20, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 242, 0.98));
  box-shadow: 0 14px 32px -28px rgba(15, 16, 20, 0.4);
  text-align: left;
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms ease,
    background-color 260ms ease;
  overflow: hidden;
}
details.q:hover {
  border-color: rgba(255, 90, 54, 0.18);
  box-shadow: 0 22px 38px -28px rgba(15, 16, 20, 0.34);
}
details.q[open],
details.q.is-opening,
details.q.is-closing {
  border-color: rgba(255, 90, 54, 0.28);
  background: linear-gradient(180deg, #fffdf9, #fff7ef);
  box-shadow: 0 26px 48px -34px rgba(255, 90, 54, 0.35);
  transform: translateY(-1px);
}
details.q summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
}
details.q summary::-webkit-details-marker {
  display: none;
}
.q-label {
  flex: 1 1 auto;
}
.q-toggle {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255, 90, 54, 0.2);
  border-radius: 999px;
  background: rgba(255, 90, 54, 0.08);
  color: var(--hot);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 260ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    color 220ms ease;
}
.q-toggle::before,
.q-toggle::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 260ms ease,
    opacity 220ms ease;
}
.q-toggle::after {
  transform: rotate(90deg);
}
details.q[open] .q-toggle,
details.q.is-opening .q-toggle,
details.q.is-closing .q-toggle {
  background: var(--hot);
  color: #fff;
  border-color: var(--hot);
  box-shadow: 0 12px 24px -16px rgba(255, 90, 54, 0.9);
}
details.q[open] .q-toggle::after,
details.q.is-opening .q-toggle::after,
details.q.is-closing .q-toggle::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}
details.q .ans {
  max-width: 720px;
  margin: 0;
  padding: 0 84px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 240ms ease,
    transform 280ms ease,
    padding-bottom 280ms ease;
  will-change: opacity, transform;
}
details.q[open] .ans,
details.q.is-opening .ans {
  padding-bottom: 24px;
  opacity: 1;
  transform: translateY(0);
}
.faq-call {
  margin-top: 32px;
}
/* ---------- FINAL CTA ---------- */
.finalcta {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 400px at 50% 0%,
      rgba(255, 90, 54, 0.32),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 50% 120%,
      rgba(255, 182, 39, 0.22),
      transparent 60%
    );
}
.finalcta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
}
.finalcta .wrap {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.finalcta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.finalcta h2 .ital {
  font-style: italic;
  color: var(--amber);
}
.finalcta h2 .hot {
  font-style: italic;
  color: var(--hot);
}
.finalcta p.sub {
  font-size: 19px;
  line-height: 1.6;
  color: #cdc6b3;
  margin: 0 auto 36px;
  max-width: 560px;
}
.finalcta .megacall {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--hot);
  color: #fff;
  padding: 24px 36px 24px 28px;
  border-radius: 99px;
  box-shadow: 0 20px 60px -20px rgba(255, 90, 54, 0.7);
  transition: all 0.25s ease;
  position: relative;
}
.finalcta .megacall::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  background: rgba(255, 90, 54, 0.4);
  z-index: -1;
  animation: ringpulse 2.4s ease-out infinite;
}
.finalcta .megacall:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--amber);
  color: var(--ink);
}
.finalcta .megacall .ico {
  width: 54px;
  height: 54px;
  border-radius: 99px;
  background: #fff;
  color: var(--hot);
  display: grid;
  place-items: center;
}
.finalcta .megacall:hover .ico {
  background: var(--ink);
  color: var(--amber);
}
.finalcta .megacall .ico svg {
  width: 24px;
  height: 24px;
}
.finalcta .megacall .txt {
  text-align: left;
}
.finalcta .megacall .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.finalcta .megacall:hover .lbl {
  color: var(--muted);
}
.finalcta .megacall .num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.finalcta .alt {
  margin-top: 28px;
  font-size: 14px;
  color: #a39c89;
}
.finalcta .alt a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.finalcta .alt a:hover {
  color: #fff;
}
.finalcta .service-area-note {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}
/* ---------- FOOTER ---------- */
footer {
  background: #06070a;
  color: #7a7d87;
  padding: 56px 0 40px;
  font-size: 14px;
}
footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
@media (max-width: 880px) {
  footer .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
footer .brand-stack {
  margin-bottom: 14px;
}
footer .brand {
  color: #fff;
}
footer .brand small {
  color: #7a7d87;
}
footer .tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--hot);
  font-size: 18px;
  margin: 8px 0 18px;
}
footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 600;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer a:hover {
  color: var(--amber);
}
footer .legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #5a5d67;
}
/* ---------- STICKY MOBILE CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--hot);
  color: #fff;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.mobile-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ink), var(--amber), var(--ink));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.mobile-cta svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 680px) {
  .mobile-cta {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
}
/* ---------- PHONE LAYOUT ---------- */
@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }
  body {
    font-size: 16px;
    overflow-x: hidden;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 18px;
  }
  section,
  .hero,
  .strip,
  footer,
  header.nav {
    max-width: 100vw;
    overflow: hidden;
  }
  .emergency-bar {
    padding: 9px 16px;
    font-size: 13px;
    line-height: 1.35;
  }
  .emergency-bar a {
    display: block;
    margin-top: 2px;
  }
  .topbar {
    padding: 9px 0;
    font-size: 12.5px;
  }
  .topbar .wrap {
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    text-align: center;
  }
  .topbar .lhs {
    justify-content: center;
  }
  .nav-inner {
    padding: 12px 0;
    gap: 12px;
  }
  .brand-stack {
    flex-shrink: 1;
    gap: 10px;
    min-width: 0;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .brand-mark svg {
    width: 22px;
    height: 22px;
  }
  .brand {
    font-size: 25px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.24em;
  }
  header.nav .cta-call {
    display: none;
  }
  .cta-call {
    padding: 11px 14px;
    flex-shrink: 0;
  }
  .hero {
    padding: 48px 0 64px;
  }
  .hero .wrap {
    gap: 30px;
    min-width: 0;
  }
  .hero .wrap > * {
    min-width: 0;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    margin-bottom: 18px;
  }
  .hero-badge {
    width: fit-content;
    max-width: 100%;
    padding: 7px 11px;
    font-size: 12px;
  }
  h1.headline {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
  }
  .lede {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
    overflow-wrap: break-word;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 15px 18px;
    font-size: 15px;
    white-space: normal;
    text-align: center;
  }
  .hero-fast {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 12px;
  }
  .hero-fast .txt {
    min-width: 0;
  }
  .hero-fast .lbl {
    letter-spacing: 0.14em;
  }
  .hero-fast .val {
    font-size: 20px;
    overflow-wrap: anywhere;
  }
  .call-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 18px;
    padding: 28px 20px;
  }
  .cc-stamp {
    position: relative;
    top: auto;
    right: auto;
    width: max-content;
    max-width: 100%;
    margin: 0 0 14px;
  }
  .cc-title {
    font-size: 31px;
  }
  .cc-sub {
    font-size: 14.5px;
    overflow-wrap: break-word;
  }
  .cc-call {
    max-width: 100%;
    padding: 16px;
    gap: 10px;
    border-radius: 14px;
  }
  .cc-call .left {
    gap: 10px;
    min-width: 0;
  }
  .cc-call .left > div {
    min-width: 0;
  }
  .cc-call .ico {
    width: 42px;
    height: 42px;
  }
  .cc-call .num {
    font-size: 22px;
  }
  .cc-call .arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .cc-meta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .strip {
    padding: 28px 0;
  }
  .strip .wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }
  .strip-item h3 {
    font-size: 32px;
  }
  section {
    padding: 68px 0;
  }
  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 8px;
  }
  .section-eyebrow::before {
    width: 18px;
  }
  .section-title {
    font-size: 38px;
    line-height: 1.04;
  }
  .section-lede {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 34px;
  }
  .kt-grid,
  .svc-grid,
  .testi-grid {
    margin-top: 26px;
  }
  .kt-card,
  .svc,
  .testi {
    border-radius: 14px;
  }
  .kt-card {
    padding: 24px 20px;
  }
  .kt-card p {
    min-height: 0;
  }
  .svc {
    padding: 28px 22px 24px;
  }
  .svc h3 {
    font-size: 24px;
    flex-wrap: wrap;
  }
  .testimonial::before {
    font-size: 220px;
    top: -30px;
  }
  .testi {
    padding: 26px 22px;
  }
  .testi blockquote {
    font-size: 19px;
  }
  .faq .section-lede {
    margin-bottom: 30px;
  }
  details.q summary {
    padding: 20px 24px;
    font-size: 18px;
    gap: 14px;
  }
  .q-toggle {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  details.q .ans {
    padding: 0 64px 0 24px;
    font-size: 15.5px;
  }
  .finalcta {
    padding: 76px 0;
  }
  .finalcta h2 {
    font-size: 42px;
  }
  .finalcta p.sub {
    font-size: 17px;
    margin-bottom: 26px;
  }
  .finalcta .megacall {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
  }
  .finalcta .megacall .ico {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }
  .finalcta .megacall .txt {
    min-width: 0;
  }
  .finalcta .megacall .lbl {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .finalcta .megacall .num {
    font-size: 25px;
  }
  footer {
    padding: 44px 0 34px;
  }
  footer .wrap {
    gap: 28px;
    margin-bottom: 28px;
  }
  footer .legal {
    align-items: flex-start;
  }
  .mobile-cta {
    padding: 15px 18px calc(15px + env(safe-area-inset-bottom));
    min-height: 64px;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding: 0 16px;
  }
  .brand {
    font-size: 23px;
  }
  .brand small {
    letter-spacing: 0.18em;
  }
  .cta-call {
    padding: 10px 12px;
  }
  h1.headline {
    font-size: 39px;
  }
  .section-title {
    font-size: 35px;
  }
  .cc-title {
    font-size: 29px;
  }
  .cc-call .ico,
  .cc-call .arrow {
    display: none;
  }
  .cc-call {
    justify-content: center;
    text-align: center;
  }
  .finalcta h2 {
    font-size: 39px;
  }
  .finalcta .megacall .ico {
    display: none;
  }
  .finalcta .megacall .txt {
    text-align: center;
  }
  .finalcta .megacall .num {
    font-size: 24px;
  }
}
/* ---------- HERO REDESIGN OVERRIDES ---------- */
:root {
  --emergency-bar-height: 42px;
  --site-header-height: 86px;
}
.emergency-bar {
  min-height: var(--emergency-bar-height);
  background: #ff3b1f;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.emergency-bar::before,
.emergency-bar a,
.topbar {
  display: none;
}
.emergency-bar .pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  color: #fff;
  margin: 0 4px 0 0;
  background: transparent;
  position: relative;
  animation: none;
  box-shadow: none;
  vertical-align: middle;
}
header.nav {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid #e9e2d8;
}
header.nav .wrap {
  max-width: 1360px;
  padding: 0;
}
.nav-inner {
  min-height: var(--site-header-height);
  padding: 0;
  gap: 28px;
}
.brand-stack {
  gap: 14px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}
.brand-mark svg {
  width: 26px;
  height: 26px;
}
.brand {
  font-size: 30px;
  line-height: 0.92;
}
header.nav .brand-text small {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #15171c;
  line-height: 1;
  text-transform: uppercase;
}
header.nav .brand-text > small:not(.brand-locality) {
  display: none;
}
nav.menu {
  gap: 38px;
}
nav.menu a {
  font-size: 18px;
  font-weight: 600;
}
.cta-call {
  min-width: 224px;
  min-height: 52px;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
  background: #ff3b1f;
  border-color: #ff3b1f;
  font-size: 18px;
  font-weight: 700;
}
.cta-call::before {
  display: none;
}
.cta-call span.label {
  display: inline;
}
.cta-call:hover {
  background: var(--hot-deep);
  color: #fff;
  border-color: var(--hot-deep);
}
.cta-call svg {
  width: 18px;
  height: 18px;
}
.hero {
  background: #fff9f0;
  min-height: calc(
    100vh - var(--emergency-bar-height) - var(--site-header-height)
  );
  min-height: calc(
    100svh - var(--emergency-bar-height) - var(--site-header-height)
  );
  padding: 28px 0;
  display: flex;
  align-items: center;
}
.hero::before {
  display: none;
}
.hero .wrap {
  display: block;
  width: 100%;
  max-width: 980px;
  text-align: center;
}
.hero .wrap > :not(.hero-content) {
  display: none !important;
}
.hero-content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  color: #ff3b1f;
}
.hero-eyebrow svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}
.hero h1.headline {
  max-width: 880px;
  margin: 0 auto 20px;
  font-family: var(--sans);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  color: #11151c;
}
.hero .hero-lede {
  max-width: 600px;
  margin: 0 auto 26px;
  font-size: 21px;
  line-height: 1.42;
  color: #666a72;
}
.hero-content > .hero-lede:not(.hero-lede-copy) {
  display: none;
}
.hero .hero-ctas {
  justify-content: center;
  margin: 0 0 20px;
}
.hero .btn {
  border-radius: 999px;
  min-width: 330px;
  min-height: 66px;
  justify-content: center;
  gap: 12px;
  padding: 0 34px;
  font-size: 24px;
  font-weight: 700;
}
.hero .btn svg {
  width: 23px;
  height: 23px;
}
.hero .btn-primary {
  background: #ff3b1f;
  border-color: #ff3b1f;
  box-shadow: none;
}
.hero .btn-primary:hover {
  background: var(--hot-deep);
  border-color: var(--hot-deep);
  transform: none;
}
.hero-trust {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #5f6269;
}
.hero-trust svg {
  width: 21px;
  height: 21px;
  color: #ff3b1f;
  flex: 0 0 auto;
}
.hero-process {
  width: min(100%, 820px);
  margin-top: 42px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--ink);
}
.hero-process-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 70px;
  padding: 0 26px;
  border-right: 1px solid #ded8cf;
  text-align: left;
}
.hero-process-item:last-child {
  border-right: 0;
}
.hero-process-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff0e6;
  color: #ff3b1f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}
.hero-process-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}
.hero-process-copy strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-process-copy small {
  color: #666a72;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.strip {
  display: none;
}
@media (max-width: 880px) {
  .cta-call span.label {
    display: inline;
  }
}
@media (max-width: 680px) {
  :root {
    --emergency-bar-height: 35px;
    --site-header-height: 57px;
  }
  .emergency-bar {
    padding: 8px 14px;
    font-size: 12.5px;
  }
  .nav-inner {
    padding: 10px 0;
    gap: 10px;
  }
  header.nav .wrap {
    padding: 0 18px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .brand-mark svg {
    width: 20px;
    height: 20px;
  }
  .brand {
    font-size: 22px;
    white-space: nowrap;
  }
  .brand small {
    display: none;
  }
  header.nav .cta-call {
    display: inline-flex;
  }
  .cta-call {
    gap: 7px;
    padding: 10px 12px;
    font-size: 12.5px;
    flex-shrink: 0;
  }
  .cta-call svg {
    display: none;
  }
  .hero {
    min-height: calc(
      100vh - var(--emergency-bar-height) - var(--site-header-height)
    );
    min-height: calc(
      100svh - var(--emergency-bar-height) - var(--site-header-height)
    );
    padding: 26px 0;
  }
  .hero .wrap {
    padding: 0 20px;
  }
  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 15px;
    letter-spacing: 0;
  }
  .hero h1.headline {
    max-width: 560px;
    margin-bottom: 14px;
    font-size: clamp(32px, 8.5vw, 40px);
    line-height: 1.08;
  }
  .hero .hero-lede {
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.55;
  }
  .hero .hero-ctas {
    width: 100%;
  }
  .hero .btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    min-height: 0;
    padding: 16px 22px;
    font-size: 15.5px;
  }
  .hero .btn svg {
    width: 18px;
    height: 18px;
  }
  .hero-trust {
    font-size: 13px;
  }
  .hero-content {
    transform: none;
  }
  .hero-process {
    width: min(100%, 320px);
    margin-top: 22px;
    padding: 0;
    grid-template-columns: 1fr;
  }
  .hero-process-item {
    justify-content: flex-start;
    min-height: 0;
    gap: 14px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 16, 20, 0.14);
  }
  .hero-process-item:last-child {
    border-bottom: 0;
  }
  .hero-process-number {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }
  .hero-process-copy strong {
    font-size: 15.5px;
  }
  .hero-process-copy small {
    font-size: 13.5px;
  }
}
@media (max-width: 380px) {
  .brand {
    font-size: 20px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-stack {
    gap: 8px;
  }
  .cta-call {
    padding: 9px 8px;
    font-size: 11.5px;
  }
  .hero h1.headline {
    font-size: 33px;
  }
}
/* ---------- REVEAL ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.9s ease,
      transform 0.9s ease;
  }
  .reveal.on {
    opacity: 1;
    transform: none;
  }
}
/* ---------- ACCESSIBILITY ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- RESPONSIVE POLISH ---------- */
@media (max-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .wrap {
    max-width: 100%;
  }
  header.nav .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-inner {
    gap: 20px;
  }
  nav.menu {
    gap: 22px;
  }
  nav.menu a {
    font-size: 16px;
  }
  .cta-call {
    min-width: 190px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 15.5px;
  }
  .brand-mark {
    width: 46px;
    height: 46px;
  }
  .brand {
    font-size: 28px;
  }
  .hero h1.headline {
    font-size: clamp(44px, 5.5vw, 56px);
  }
  .hero-process {
    width: min(100%, 760px);
    margin-top: 36px;
  }
  .hero-process-item {
    gap: 12px;
    padding: 0 18px;
  }
  .hero-process-copy strong {
    font-size: 16.5px;
  }
  .hero-process-copy small {
    font-size: 14px;
  }
  .brand-image-card {
    max-width: 100%;
  }
}

@media (max-width: 880px) {
  header.nav .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-inner {
    min-height: 70px;
  }
  .brand-stack {
    min-width: 0;
  }
  header.nav .cta-call {
    display: inline-flex;
  }
  .cta-call {
    min-width: 0;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14.5px;
  }
  .hero-process-item {
    padding: 0 14px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  body {
    padding-bottom: 0;
  }
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  header.nav .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
  .nav-inner {
    min-height: var(--site-header-height);
    gap: 8px;
    padding: 8px 0;
  }
  .brand-stack {
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .brand-mark svg {
    width: 19px;
    height: 19px;
  }
  .brand {
    font-size: 21px;
    white-space: nowrap;
  }
  header.nav .brand-text small {
    display: none;
  }
  .cta-call {
    max-width: 48%;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
  .cta-call span.label {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .emergency-bar {
    min-height: var(--emergency-bar-height);
    padding: 7px 12px;
    text-align: center;
    font-size: 12px;
    line-height: 1.25;
  }
  .hero {
    min-height: auto;
    padding: 32px 0 38px;
  }
  .hero .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-eyebrow {
    gap: 7px;
    margin-bottom: 10px;
    font-size: 14.5px;
  }
  .hero-eyebrow svg {
    width: 19px;
    height: 19px;
  }
  .hero h1.headline {
    max-width: 12em;
    margin-bottom: 14px;
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.08;
  }
  .hero .hero-lede {
    max-width: 32ch;
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.5;
  }
  .hero .btn {
    max-width: 300px;
    min-height: 48px;
    padding: 13px 18px;
    font-size: 15px;
  }
  .hero-trust {
    gap: 6px;
    font-size: 12.5px;
  }
  .hero-trust svg {
    width: 17px;
    height: 17px;
  }
  .hero-process {
    width: 100%;
    max-width: 300px;
    margin-top: 18px;
  }
  .hero-process-item {
    gap: 10px;
    padding: 9px 0;
  }
  .hero-process-number {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .hero-process-copy strong {
    font-size: 14.5px;
  }
  .hero-process-copy small {
    font-size: 12.5px;
  }
  section {
    padding: 56px 0;
  }
  .section-title {
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.08;
  }
  .section-lede {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.55;
  }
  .keytypes-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .keytypes-media a,
  .keytypes-placeholder {
    border-radius: 14px;
  }
  .keytypes-placeholder {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .brands-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .brand-image-card {
    border-radius: 14px;
  }
  .brands-list {
    gap: 8px;
  }
  .brands-list span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }
  .keytypes-detail,
  .brands-detail,
  .services-detail {
    min-height: 46px;
    padding: 0 20px;
  }
  .services-image-wrap {
    aspect-ratio: 16 / 9;
    margin: 1.5rem auto 28px;
    border-radius: 16px;
  }
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .svc {
    min-height: 0;
    padding: 18px 14px;
  }
  .svc h3 {
    font-size: 18px;
  }
  .testi-grid {
    gap: 16px;
  }
  .testi {
    padding: 22px 18px;
  }
  .testi .timetag {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
  .testi blockquote {
    font-size: 17.5px;
    line-height: 1.45;
  }
  .faq-list {
    max-width: 100%;
  }
  details.q summary {
    padding: 18px 18px;
    font-size: 16.5px;
    gap: 12px;
  }
  .q-toggle {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
  .q-toggle::before,
  .q-toggle::after {
    width: 11px;
  }
  details.q .ans {
    padding: 0 18px 0 18px;
    font-size: 15px;
  }
  .faq-call {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .finalcta {
    padding: 64px 0;
  }
  .finalcta h2 {
    font-size: clamp(33px, 10vw, 40px);
    line-height: 1.05;
  }
  .finalcta .megacall {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 16px;
  }
  .finalcta .megacall .ico {
    width: 42px;
    height: 42px;
  }
  .finalcta .megacall .num {
    font-size: clamp(21px, 6vw, 25px);
    white-space: nowrap;
  }
  footer .wrap {
    gap: 24px;
  }
  footer ul {
    gap: 8px;
  }
  footer a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
  }
  footer .legal {
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 0.04em;
  }
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }
  header.nav .wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand {
    font-size: 19px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .cta-call {
    max-width: 49%;
    min-height: 40px;
    padding: 0 8px;
    font-size: 11px;
  }
  .hero h1.headline {
    font-size: 29px;
  }
  .hero-process {
    max-width: 286px;
  }
  .hero-process-item {
    padding: 8px 0;
  }
  .brands-media {
    grid-template-columns: 1fr;
    max-width: 260px;
  }
  .services-image-wrap {
    aspect-ratio: 4 / 3;
  }
  .finalcta .megacall .ico {
    display: none;
  }
  .finalcta .megacall .num {
    font-size: 21px;
  }
}

@media (max-width: 340px) {
  .keytypes-media {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .hero .hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero .hero-ctas .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    width: calc(100vw - 40px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    text-align: center;
    transform: none;
  }
  .mobile-cta {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .keytypes-placeholder {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}

/*
 * ---------- CUSTOM STICKY HEADER OVERRIDES ----------
 * Keep the emergency bar and navigation stacked in place on tablet/mobile so
 * the brand, call button, and menu do not shift while the page scrolls.
 */
@media (max-width: 1024px) {
  .emergency-bar {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
  }

  header.nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid #e9e2d8 !important;
    box-shadow: 0 2px 6px rgba(15, 16, 20, 0.08) !important;
    width: 100% !important;
    overflow: visible !important;
  }

  header.nav,
  header.nav * {
    overflow: visible !important;
  }

  header.nav + * {
    margin-top: var(--site-header-height) !important;
  }

  #keys,
  #key-types,
  #brands,
  #services,
  #faq {
    scroll-margin-top: calc(
      var(--emergency-bar-height) + var(--site-header-height) + 24px
    ) !important;
  }

  header.nav .cta-call {
    display: inline-flex !important;
  }
  header.nav .cta-call span.label {
    display: inline !important;
  }
}

@media (max-width: 880px) {
  .mobile-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: 0 4px 12px rgba(15, 16, 20, 0.08) !important;
    z-index: 1001 !important;
    max-width: 100% !important;
  }

  .mobile-menu.is-open {
    max-height: calc(
      100vh - var(--emergency-bar-height) - var(--site-header-height)
    ) !important;
    max-height: calc(
      100svh - var(--emergency-bar-height) - var(--site-header-height)
    ) !important;
    overflow-y: auto !important;
  }
}
