/* ===========================================================================
   Pacific Locksmith, Oahu locksmith. "Solid, calm authority."
   Navy + white base, disciplined red accent (Hawaiian flag colors).
   Type: Archivo (display) + Hanken Grotesk (body).
   =========================================================================== */

:root {
  --navy-900: #111114;
  --navy-800: #1b1a1e;
  --navy-700: #262329;
  --navy-600: #332f38;
  --ink:      #15191f;
  --muted:    #615f5b;
  --muted-2:  #8b8884;
  --line:     #dbd8d4;
  --line-soft: #e7e4e0;
  --paper:    #f6f4f1;
  --paper-2:  #efedea;
  --white:    #ffffff;
  --red:      #e8590c;
  --red-600:  #c2410c;
  --red-tint: #fdeee3;

  --container-w: 85%;
  --container-max: 1640px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(13,13,17,.06), 0 2px 8px rgba(13,13,17,.05);
  --shadow:    0 6px 24px rgba(13,13,17,.10);
  --shadow-lg: 0 24px 60px rgba(13,13,17,.20);

  --ff-display: "Archivo", "Arial Narrow", sans-serif;
  --ff-body: "Hanken Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
  --notch: repeating-linear-gradient(90deg, var(--red) 0 3px, transparent 3px 6px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; font-family: var(--ff-body); color: var(--ink);
  background-color: #faf9f7; background-image: url(/images/bg-locksmith-4.webp); background-size: 1059px auto;
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em;
  color: var(--navy-900); margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }

.container { width: var(--container-w); max-width: var(--container-max); margin-inline: auto; }
@media (max-width: 760px) { .container { width: 90%; } }

.section { padding: clamp(64px, 8vw, 116px) 0; position: relative; }
/* Paper bands must NOT repaint the tile: a second background-image starts a new
   tiling origin at the section's own top-left, which restarts the pattern and
   produces a visible seam at every section boundary. Instead tint translucently
   so the body's one continuous tile shows through. rgba(90,49,7,.025) over the
   #faf9f7 body composites to exactly --paper #f6f4f1, muting the art by 2.5%. */
.section--paper { background: rgba(90, 49, 7, .025); }
.section--navy { background: var(--navy-900); color: #eae7e3; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* ---- shared bits ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.section--navy .eyebrow, .showcase .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: #ff9a5c; }
.eyebrow::before { content: ""; width: 26px; height: 8px; background-image: var(--notch); background-size: 8px 8px; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 56ch; }
.section--navy .lede, .showcase .lede { color: #c5c2be; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.center.section-head { margin-inline: auto; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 11px; border: 2px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(232,89,12,.30); }
.btn--red:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232,89,12,.38); }
.btn--navy { background: var(--navy-900); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy-900); border-color: #d8d5d1; }
.btn--ghost:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }

/* ===== top utility bar ===== */
.utilbar { background: var(--navy-900); color: #d2cfcb; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.utilbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: 16px; }
.utilbar a { color: #fff; font-weight: 600; }
.utilbar .util-right { display: flex; align-items: center; gap: 20px; }
.util-item { display: inline-flex; align-items: center; gap: 7px; }
.util-item svg { width: 15px; height: 15px; opacity: .8; }
@media (max-width: 720px) { .utilbar { display: none; } }

/* ===== header ===== */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line); transition: box-shadow .2s, background .2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { display: block; flex: none; }
/* explicit CSS height is required: the global img rule has no height:auto, so the HTML
   height attribute would otherwise win and squash the aspect ratio. width:auto restores it. */
.brand-mark { height: 56px; width: auto; }
.brand-word { height: 50px; width: auto; }
@media (max-width: 560px) { .brand-mark { height: 46px; } .brand-word { height: 41px; } }
@media (max-width: 380px) { .brand-mark { height: 42px; } .brand-word { height: 37px; } .brand { gap: 9px; } }
.brand-name { font-family: var(--ff-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: var(--navy-900); font-size: 1.32rem; }
.brand-name span { color: var(--red); }
.brand-tag { display:block; font-family: var(--ff-body); font-weight: 600; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a, .dropdown-toggle {
  font-family: var(--ff-body); font-weight: 600; font-size: .96rem; color: var(--navy-800);
  padding: 9px 13px; border-radius: 9px; transition: background .15s, color .15s;
  background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover, .dropdown-toggle:hover { background: var(--paper-2); color: var(--navy-900); }
.dropdown-toggle svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }

/* desktop dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 320px; background: #fff;
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 10px;
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 70;
}
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu, .has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: none;
}
.has-dropdown:hover .dropdown-toggle svg, .has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu a { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 11px; }
.dropdown-menu a:hover { background: var(--paper); }
.dm-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--navy-900); color: #fff; display: grid; place-items: center; flex: none; }
.dm-ic svg { width: 20px; height: 20px; }
.dm-tx b { display: block; font-family: var(--ff-display); font-weight: 700; color: var(--navy-900); font-size: .98rem; }
.dm-tx span { font-size: .82rem; color: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-display); font-weight: 800; color: var(--navy-900); font-size: 1.02rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--red); }

.nav-toggle { display: none; background: var(--navy-900); border: 0; width: 46px; height: 46px; border-radius: 11px; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; margin-inline: auto; position: relative; transition: .25s var(--ease); }
.nav-toggle span::before { position: absolute; top: -6px; } .nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(84vw, 350px); flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 92px 20px 30px; transform: translateX(100%); transition: transform .3s var(--ease);
    box-shadow: var(--shadow-lg); z-index: 65; overflow-y: auto;
  }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a, .dropdown-toggle { padding: 14px 14px; font-size: 1.06rem; border-bottom: 1px solid var(--line); border-radius: 0; justify-content: space-between; width: 100%; }
  .has-dropdown { position: static; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    border-radius: 0; min-width: 0; background: var(--paper);
    max-height: 0; overflow: hidden; padding: 0; transition: max-height .32s var(--ease);
  }
  .has-dropdown.open .dropdown-menu { max-height: 360px; padding: 4px 0 10px; border-bottom: 1px solid var(--line); }
  .dropdown-menu a { padding: 12px 14px; }
  .dropdown-toggle svg { display: inline-block; }
  .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: block; z-index: 66; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(13,13,17,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 64; }
  .nav-open .nav-scrim { opacity: 1; visibility: visible; }
  .nav-open { overflow: hidden; }
}

/* ===== hero (full-bleed background image) ===== */
.hero { position: relative; isolation: isolate; color: #efedea; overflow: hidden; display: flex; align-items: center; min-height: calc(100svh - 114px); }
.hero-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgba(12,12,15,.92) 0%, rgba(14,14,18,.80) 42%, rgba(13,13,17,.55) 100%),
    radial-gradient(700px 360px at 12% 110%, rgba(232,89,12,.22), transparent 60%);
}
.hero-inner { padding: clamp(48px, 7vw, 96px) 0; max-width: 720px; width: 100%; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: #ff8a4d; }
.hero-sub { font-size: 1.2rem; color: #d6d3cf; max-width: 52ch; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: #e7e4e0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 8px 13px; border-radius: 999px; }
.chip svg { width: 15px; height: 15px; color: #ff9a5c; flex: none; }
@media (max-width: 720px) { .hero { min-height: calc(100svh - 74px); } }

/* ===== page hero (interior, background image) ===== */
.page-hero { position: relative; isolation: isolate; color: #eceae6; overflow: hidden; background: var(--navy-900); }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(95deg, rgba(12,12,15,.93) 0%, rgba(14,14,18,.82) 45%, rgba(13,13,17,.6) 100%);
}
.page-hero .inner { padding: clamp(46px, 6vw, 86px) 0 clamp(48px, 6vw, 80px); max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 18ch; }
.page-hero .lede { color: #cfccc8; max-width: 60ch; margin-top: 4px; }
.page-hero .hero-actions { margin-top: 28px; }

/* ---- breadcrumb ---- */
.breadcrumb { font-size: .86rem; margin-bottom: 18px; color: #a9a6a2; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: "/"; color: #5e5b5799; margin-left: 8px; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: #dbd8d4; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current] { color: #fff; }

/* ===== services (parallax showcase) ===== */
.showcase {
  background: linear-gradient(rgba(12,12,16,.76), rgba(11,11,14,.81)), url(/images/honolulu-aerial.jpg) center / cover fixed;
  color: #eae7e3;
}
.showcase h2, .showcase h3 { color: #fff; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s; position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red); transition: width .3s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #fff; }
.card:hover::before { width: 100%; }
.card-ic { width: 58px; height: 58px; border-radius: 14px; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.card-ic svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 8px; color: var(--navy-900); }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 16px; }
.card-link { font-family: var(--ff-display); font-weight: 700; font-size: .94rem; color: var(--red); display: inline-flex; align-items: center; gap: 7px; }
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }
.card--cta { display: grid; place-content: center; text-align: center; background: var(--red); border-color: var(--red); }
.card--cta h3 { color: #fff; margin-bottom: 6px; }
.card--cta p { color: #ffe2d2; margin-bottom: 18px; }
@media (max-width: 860px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } .showcase { background-attachment: scroll; } }

/* ===== why ===== */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 10px; }
.why-item { padding: 4px; }
.why-ic { width: 56px; height: 56px; border-radius: 15px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #ff9a5c; display: grid; place-items: center; margin-bottom: 14px; }
.why-ic svg { width: 28px; height: 28px; }
.why-item h3 { font-size: 1.06rem; color: #fff; margin-bottom: 5px; }
.why-item p { font-size: .9rem; color: #bebbb7; margin: 0; }
@media (max-width: 920px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== how it works ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding-top: 14px; text-align: center; }
.step-n { font-family: var(--ff-display); font-weight: 800; font-size: 3.1rem; color: var(--paper-2); line-height: 1; letter-spacing: -.04em; }
.step h3 { margin: 6px 0 8px; }
.step p { color: var(--muted); margin: 0 auto; max-width: 34ch; }
.step::after { content: ""; display: block; width: 44px; height: 8px; margin: 16px auto 0; background-image: var(--notch); background-size: 8px 8px; opacity: .85; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 30px; } }

/* ===== feature / about ===== */
.feature { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.feature-media { position: relative; }
.feature-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/2; max-height: 430px; object-fit: cover; }
.feature-media .tag-strip { position: absolute; bottom: -16px; right: 20px; background: var(--red); color: #fff; font-family: var(--ff-display); font-weight: 800; padding: 11px 18px; border-radius: 11px; box-shadow: var(--shadow); font-size: .98rem; }
.feature ul.ticks { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 12px; }
.feature ul.ticks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.feature ul.ticks svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 1px; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; gap: 44px; } .feature-media { order: -1; max-width: 520px; } }

/* ===== section flow: elegant fading hairline divider ===== */
.section--divide::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(86%, var(--container-max)); height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 22%, var(--line) 78%, transparent);
}
.section--divide::after {
  content: ""; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 9px; background-image: var(--notch); background-size: 9px 9px; opacity: .9;
}

/* ===== firmer contours on the card family ===== */
.card, .cm, .area-cards .ac, .faq, .lead-form, .area-map { border-width: 1.5px; }

/* ===== trust seals (minted credential medallions) ===== */
.trust-grid { margin-top: 10px; }
.trust-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; max-width: 1180px; margin-inline: auto; }
.trust-track--five { grid-template-columns: repeat(5, 1fr); }
.seal { text-align: center; padding: 4px; }
.seal--dup { display: none; }
/* clean certification-seal badge: cream face, burnt-orange double ring, stamped keyline */
.seal-medal {
  position: relative; width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 34%, #ffffff 0%, #f4f1ec 70%, #ece7e0 100%);
  border: 3px solid var(--red);
  box-shadow:
    0 12px 24px rgba(13,13,17,.16),
    0 0 0 5px #fff,
    0 0 0 7px rgba(232,89,12,.32);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* engraved stamp keyline */
.seal-medal::after {
  content: ""; position: absolute; inset: 8px; border-radius: 50%;
  border: 1.5px dashed rgba(232,89,12,.55);
}
.seal-ic { position: relative; z-index: 1; display: grid; place-items: center; color: var(--navy-900); }
.seal-ic svg { width: 42px; height: 42px; }
@media (hover: hover) and (pointer: fine) {
  .seal:hover .seal-medal { transform: translateY(-6px); box-shadow: 0 20px 34px rgba(13,13,17,.22), 0 0 0 5px #fff, 0 0 0 7px rgba(232,89,12,.55); }
  .seal:hover .seal-ic { color: var(--red); }
}
.seal b { display: block; font-family: var(--ff-display); font-weight: 800; color: var(--navy-900); font-size: 1.08rem; letter-spacing: -.01em; line-height: 1.16; margin-bottom: 4px; }
.seal > span:last-child { display: block; font-size: .85rem; color: var(--muted); line-height: 1.35; max-width: 17ch; margin-inline: auto; }
/* tablet: 3 across */
@media (max-width: 1040px) and (min-width: 701px) { .trust-track { grid-template-columns: repeat(3, 1fr); gap: 36px 18px; max-width: 660px; } }
/* mobile: full-bleed auto-scrolling strip */
@media (max-width: 700px) {
  .trust-grid { overflow-x: clip; margin-inline: -5vw; padding-top: 8px; }
  .trust-track { display: flex; width: max-content; max-width: none; gap: 0; animation: trust-marquee 32s linear infinite; }
  .seal--dup { display: block; }
  .trust-track .seal { width: 170px; flex: none; margin-right: 26px; }
}
@keyframes trust-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none !important; }
}

/* ===== brand / make logo strips ===== */
.brands .eyebrow { justify-content: center; }
.brands .section-head { margin-bottom: 30px; }
.logo-cap { text-align: center; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.logo-row { margin-bottom: 14px; }
.logo-row + .logo-cap { margin-top: 30px; }
.logo-track { display: grid; grid-template-columns: repeat(6, 1fr); justify-items: center; align-items: center; gap: 34px 20px; max-width: 1080px; margin-inline: auto; }
.logo--dup { display: none; }
.logo-img { height: 72px; width: auto; max-width: 240px; object-fit: contain; filter: grayscale(1) opacity(.62); transition: filter .25s var(--ease), transform .25s var(--ease); }
.logo-img:hover { filter: grayscale(0) opacity(1); transform: translateY(-3px); }
.logo-img--wide { height: 50px; max-width: 156px; }
/* lock brands: real full-color logos in uniform cards */
.logo-row--cards .logo-track { gap: 22px 18px; max-width: 720px; }
.logo-card { height: 86px; aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; justify-content: center; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.logo-card img { height: 100%; width: auto; display: block; }
.logo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.logo-card.logo--dup { display: none; }
@media (max-width: 760px) {
  .logo-row { overflow: hidden; margin-inline: -5vw; }
  .logo-track { display: flex; flex-wrap: nowrap; justify-content: flex-start; width: max-content; max-width: none; gap: 0; animation: logo-marquee 22s linear infinite; }
  .logo-row--cards .logo-track { gap: 0; max-width: none; }
  .logo-row--rev .logo-track { animation-direction: reverse; }
  .logo--dup { display: inline-flex; }
  .logo-card.logo--dup { display: inline-flex; }
  .logo-track > * { flex: none; margin-right: 36px; }
  .logo-row--cards .logo-track > * { margin-right: 16px; }
  .logo-img { height: 48px; max-width: 170px; }
  .logo-img--wide { height: 36px; }
  .logo-card { height: 62px; }
}
@keyframes logo-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none !important; } }

/* ===== service area ===== */
.area-banner { position: relative; height: 230px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; display: grid; place-items: center; text-align: center; }
.area-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.area-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,17,.55), rgba(13,13,17,.78)); }
.area-banner .ab-inner { position: relative; z-index: 2; color: #fff; padding: 20px; }
.area-banner h2 { color: #fff; margin-bottom: 6px; }
.area-banner p { color: #dedbd7; margin: 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.area-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.area-map iframe { display: block; width: 100%; height: 380px; border: 0; }
.regions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.region { font-weight: 600; font-size: .92rem; color: var(--navy-800); background: var(--paper); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; }
.region svg { width: 13px; height: 13px; color: var(--red); margin-right: 6px; vertical-align: -2px; }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; gap: 30px; } .area-map iframe { height: 320px; } }

/* ===== reviews ===== */
.reviews-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); text-align: center; }
.reviews-wrap p.big { font-size: 1.25rem; font-weight: 500; color: var(--navy-900); max-width: 60ch; margin: 0 auto 8px; }
.reviews-note { color: var(--muted); font-size: .98rem; max-width: 52ch; margin: 0 auto 22px; }

/* ===== FAQ accordion (one open, animated) ===== */
.faq-grid { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq.open { border-color: #dddad6; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 20px; font-family: var(--ff-display); font-weight: 700; font-size: 1.08rem; color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-ic { width: 28px; height: 28px; border-radius: 8px; background: var(--paper-2); display: grid; place-items: center; flex: none; transition: .25s var(--ease); color: var(--navy-900); position: relative; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-ic::before { width: 12px; height: 2px; } .faq-ic::after { width: 2px; height: 12px; transition: transform .25s var(--ease); }
.faq.open .faq-ic { background: var(--red); color: #fff; }
.faq.open .faq-ic::after { transform: rotate(90deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a-inner p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.faq-a-inner p a { color: var(--red); font-weight: 600; }
.faq-cat { margin-bottom: 46px; }
.faq-cat:last-child { margin-bottom: 0; }
.faq-cat > h2 { text-align: center; max-width: 860px; margin: 0 auto 22px; font-size: clamp(1.4rem, 2.4vw, 1.95rem); }

/* ===== blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-card .pc-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 26px; flex: 1; }
.post-meta { font-family: var(--ff-display); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }
.post-card h3 { margin: 0; font-size: 1.32rem; line-height: 1.2; }
.post-card p { margin: 0; color: var(--muted); font-size: .98rem; }
.post-card .pc-more { margin-top: auto; padding-top: 4px; color: var(--red); font-family: var(--ff-display); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.post-card .pc-more svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.post-card:hover .pc-more svg { transform: translateX(4px); }

/* article */
.article { padding: clamp(34px, 5vw, 60px) 0 clamp(46px, 5vw, 78px); }
.article .breadcrumb { margin-bottom: 20px; color: var(--muted-2); }
.article .breadcrumb a { color: var(--muted); }
.article .breadcrumb a:hover { color: var(--red-600); }
.article .breadcrumb li::after { color: var(--muted-2); }
.article .breadcrumb [aria-current] { color: var(--ink); }
.article-head { max-width: 800px; }
.article-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: .2em 0 0; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--muted-2); font-weight: 600; font-size: .92rem; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.article-hero { max-width: 72ch; margin: 30px auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.article-hero img { width: 100%; height: auto; aspect-ratio: 16 / 7; object-fit: cover; }
.article-body { margin: 40px auto 0; }
.article-body ul { margin: 0 0 1.2rem; padding-left: 1.2rem; }
.article-body li { font-size: 1.06rem; color: var(--ink); margin: 0 0 .65rem; line-height: 1.6; }
.article-foot { max-width: 72ch; margin: 32px auto 0; }

/* article layout: sticky TOC rail (scroll-spy) + read meter */
.article-layout { display: grid; grid-template-columns: minmax(190px, 1fr) minmax(0, 704px) minmax(190px, 1fr); column-gap: 40px; max-width: 1264px; margin-inline: auto; align-items: start; }
.article-layout > .article-head { grid-column: 2; grid-row: 1; }
.article-layout > .article-hero { grid-column: 2; grid-row: 2; }
.article-layout > .toc          { grid-column: 1; grid-row: 3; position: sticky; top: 100px; }
.article-layout > .article-body { grid-column: 2; grid-row: 3; }
.article-layout > .article-foot { grid-column: 2; grid-row: 4; }
.article-layout .article-hero,
.article-layout .article-body,
.article-layout .article-foot { margin-inline: 0; max-width: none; }
.article-body h2 { scroll-margin-top: 100px; }

.toc-title { font-family: var(--ff-body); font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin: 0 0 14px; }
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin: 0; }
.toc a { display: block; padding: 8px 0 8px 14px; border-left: 2px solid var(--line); color: var(--muted); font-size: .92rem; font-weight: 600; line-height: 1.4; transition: color .15s, border-color .15s, background .15s; }
.toc a:hover { color: var(--red-600); border-color: var(--red); background: var(--paper); }
.toc a.active { color: var(--red-600); border-color: var(--red); font-weight: 800; }

.read-meter { position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; pointer-events: none; }
.read-meter span { display: block; height: 100%; background: var(--red); transform: scaleX(0); transform-origin: 0 50%; transition: transform .1s linear; }

@media (max-width: 1000px) {
  .article-layout { grid-template-columns: 1fr; max-width: 72ch; }
  .article-layout > .article-head,
  .article-layout > .article-hero,
  .article-layout > .article-body,
  .article-layout > .article-foot { grid-column: 1; grid-row: auto; }
  .article-layout > .toc { display: none; }
}

/* homepage blog teaser */
.blog-teaser .bt-card { display: grid; grid-template-columns: 220px 1fr; max-width: 660px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.blog-teaser .bt-card img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; }
.blog-teaser .bt-img { display: block; height: 100%; }
.blog-teaser .bt-body { padding: 22px 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.blog-teaser .bt-body h3 { font-size: 1.2rem; line-height: 1.22; margin: 0; }
.blog-teaser .bt-body p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.blog-teaser .bt-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.blog-teaser .bt-actions .btn { padding: 10px 16px; font-size: .9rem; }
@media (max-width: 620px) { .blog-teaser .bt-card { grid-template-columns: 1fr; max-width: 400px; } .blog-teaser .bt-card img { min-height: 180px; } }

/* ===== form ===== */
.form-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 50px; align-items: start; }
.form-aside .lede { margin-bottom: 24px; }
.form-aside .assure { display: grid; gap: 14px; margin-top: 8px; }
.assure-item { display: flex; gap: 12px; align-items: flex-start; }
.assure-item svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }
.assure-item b { font-family: var(--ff-display); }
.assure-item span { display: block; color: var(--muted); font-size: .94rem; }
.lead-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 38px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--navy-800); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper); border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px; transition: border-color .15s, background .15s, box-shadow .15s; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-600); background: #fff; box-shadow: 0 0 0 4px rgba(30,65,120,.12); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; margin-top: 6px; }
.form-fine { font-size: .82rem; color: var(--muted-2); text-align: center; margin: 14px 0 0; }
.form-status { display: none; border-radius: 11px; padding: 14px 16px; font-weight: 600; margin-bottom: 16px; }
.form-status.ok { display: block; background: #e8f6ec; color: #14702f; border: 1px solid #b9e3c4; }
.form-status.err { display: block; background: var(--red-tint); color: var(--red-600); border: 1px solid #f3c0c4; }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; gap: 34px; } .field.row { grid-template-columns: 1fr; } }

/* ===== final cta ===== */
.cta-band { position: relative; overflow: hidden; text-align: center; color: #fff; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,17,.77), rgba(13,13,17,.84)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d3d0cc; max-width: 56ch; margin-inline: auto; font-size: 1.12rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ===== content / interior prose ===== */
.prose { max-width: 72ch; }
.prose > p, .content-main p { font-size: 1.06rem; color: var(--ink); margin: 0 0 1.1rem; }
.content-main p a, .prose a { color: var(--red); font-weight: 600; }
.prose h2, .content-main h2 { margin-top: 1.6em; }
.prose h3, .content-main h3 { margin-top: 1.4em; margin-bottom: .4em; font-size: 1.18rem; }
.content-grid { display: grid; grid-template-columns: 1.55fr .9fr; gap: 54px; align-items: center; }
.content-grid > aside { align-self: start; }
.content-main > :first-child { margin-top: 0; }
@media (max-width: 880px) { .content-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---- About page 2x2: [who we are | logo] over [call cta | what to expect] ---- */
.about-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px 50px; align-items: start; }
.about-grid > * { min-width: 0; }
.about-grid > :first-child > :first-child { margin-top: 0; }
.about-grid .ab-expect > :first-child { margin-top: 0; }
.about-grid .ab-logo { align-self: center; }
/* the card is sticky in its usual single-column home; inside this grid it must sit still */
.about-grid .side-card { position: static; top: auto; max-width: 460px; }
.ab-logo-card {
  display: grid; place-items: center; aspect-ratio: 1 / 1;
  width: 100%; max-width: 430px; margin-inline: auto;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: clamp(26px, 4.5vw, 46px);
}
/* height:auto is required here, the global img rule omits it so the height attr would win */
.ab-logo-card img { width: 100%; height: auto; max-width: 290px; display: block; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-grid .side-card { max-width: none; }
  .ab-logo-card { max-width: 340px; }
}
ul.checklist { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: 12px; }
ul.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
ul.checklist svg { width: 22px; height: 22px; color: var(--red); flex: none; margin-top: 2px; }
.side-card { position: sticky; top: 96px; background: var(--navy-900); color: #e3e0dc; border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow); }
.side-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.side-card p { color: #bebbb7; font-size: .95rem; margin-bottom: 16px; }
.side-card .btn { width: 100%; margin-bottom: 10px; }
.side-card .sc-phone { display: block; text-align: center; font-family: var(--ff-display); font-weight: 800; font-size: 1.32rem; color: #fff; margin: 4px 0 14px; }
.side-card ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; }
.side-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: #d0cdc9; }
.side-card ul svg { width: 18px; height: 18px; color: #ff9a5c; flex: none; margin-top: 2px; }
@media (max-width: 880px) { .side-card { position: static; } }
.callout { background: var(--red-tint); border: 1px solid #f7d3bd; border-left: 4px solid var(--red); border-radius: 12px; padding: 18px 20px; margin: 1.4rem 0; }
.callout p { margin: 0; color: #7a300c; font-weight: 500; }

/* ===== related services (pop, with icons) ===== */
.related { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 14px; }
.related a { display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 36px 24px 32px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; position: relative; overflow: hidden; }
.related a::after { content: ""; position: absolute; left: 50%; top: -44px; transform: translateX(-50%); width: 150px; height: 150px; border-radius: 50%; background: var(--red-tint); opacity: 0; transition: opacity .3s var(--ease), transform .4s var(--ease); z-index: 0; }
.related a:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #cdcac6; }
.related a:hover::after { opacity: .7; transform: translateX(-50%) scale(1.25); }
.related .rel-ic { position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 8px 18px rgba(13,13,17,.22), inset 0 1px 0 rgba(255,255,255,.14); transition: transform .25s var(--ease); }
.related a:hover .rel-ic { transform: scale(1.06); }
.related .rel-ic svg { width: 38px; height: 38px; }
.related a strong { position: relative; z-index: 1; font-family: var(--ff-display); font-weight: 800; display: block; color: var(--navy-900); margin-bottom: 6px; font-size: 1.24rem; letter-spacing: -.01em; }
.related a span { position: relative; z-index: 1; font-size: .96rem; line-height: 1.4; color: var(--muted); max-width: 22ch; }
@media (max-width: 720px) { .related { grid-template-columns: 1fr 1fr; gap: 16px; } .related a { padding: 30px 18px 26px; } .related .rel-ic { width: 64px; height: 64px; } .related .rel-ic svg { width: 34px; height: 34px; } .related a strong { font-size: 1.12rem; } }
@media (max-width: 380px) { .related { grid-template-columns: 1fr; } }

/* ===== contact ===== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-methods { display: grid; gap: 16px; margin: 22px 0 26px; }
.cm { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.cm-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--navy-900); color: #fff; display: grid; place-items: center; flex: none; }
.cm-ic svg { width: 22px; height: 22px; }
.cm b { font-family: var(--ff-display); display: block; color: var(--navy-900); }
.cm a, .cm span { color: var(--muted); }
.cm a.big { color: var(--navy-900); font-family: var(--ff-display); font-weight: 800; font-size: 1.25rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }

/* area cards */
.area-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.area-cards .ac { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.area-cards .ac h3 { font-size: 1.06rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.area-cards .ac h3 svg { width: 17px; height: 17px; color: var(--red); }
.area-cards .ac p { font-size: .93rem; color: var(--muted); margin: 0; }
@media (max-width: 820px) { .area-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .area-cards { grid-template-columns: 1fr; } }

/* ===== footer ===== */
.site-footer { background: #0c0c0e; color: #a9a6a2; padding: 72px 0 30px; font-size: .94rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.09); }
.foot-brand .brand-name { color: #fff; font-size: 1.3rem; }
.foot-brand .brand-mark { height: 52px; }
.foot-brand .brand-word { height: 46px; }
@media (max-width: 560px) { .foot-brand .brand-mark { height: 46px; } .foot-brand .brand-word { height: 41px; } }
.foot-brand p { margin: 16px 0 0; max-width: 34ch; color: #928e8a; }
.foot-col h4 { font-family: var(--ff-display); color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 4px 0 16px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a:hover { color: #fff; }
.foot-contact .fc-row { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; }
.foot-contact svg { width: 18px; height: 18px; color: #ff9a5c; flex: none; margin-top: 2px; }
.foot-contact a.big { color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: 1.18rem; }
.foot-badges { display: flex; gap: 10px; margin-top: 18px; }
.foot-badge { font-size: .76rem; font-weight: 600; color: #d6d3cf; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; padding: 6px 10px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 24px; color: #8a8682; font-size: .86rem; }
.foot-bottom a:hover { color: #fff; }
.cards-pay { display: inline-flex; gap: 7px; align-items: center; }
.cards-pay svg { height: 22px; width: auto; border-radius: 3px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ===== reveal ===== */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

.skip { position: absolute; left: -999px; top: 0; background: var(--navy-900); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 100; }
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
  .showcase { background-attachment: scroll; }
}

/* ===================================================================
   v2 facelift devices (homepage) - built in the Pacific Locksmith skin
   =================================================================== */
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- quick-answer-lead (intro) --- */
.qa-lead { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px 26px 30px; box-shadow: var(--shadow-sm); margin-top: 4px; }
.qa-lead::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px; border-radius: 0 4px 4px 0; background: var(--red); }
.qa-tag { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 11px; }
.qa-tag::before { content: ""; width: 22px; height: 8px; background-image: var(--notch); background-size: 8px 8px; }
.qa-q { font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; color: var(--navy-900); line-height: 1.22; letter-spacing: -.01em; margin: 0 0 9px; }
.qa-a { color: var(--ink); font-size: 1.02rem; line-height: 1.62; margin: 0; }

/* --- promise band --- */
.promise-band { background: var(--navy-900); color: #fff; padding: clamp(40px, 5vw, 64px) 0; }
.promise-band .pb-text { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.25rem, 2.4vw, 1.85rem); line-height: 1.34; letter-spacing: -.01em; text-align: center; max-width: 30ch; margin: 0 auto; color: #f3f1ee; }
.promise-band .pb-text b { color: #ff9a5c; font-weight: 800; }
.promise-band .pb-text::before { content: ""; display: block; width: 46px; height: 8px; margin: 0 auto 20px; background-image: var(--notch); background-size: 8px 8px; }

/* --- situations grid (signs) --- */
.sit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sit { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.sit:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cdc9c4; }
.sit-ic { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: #ff9a5c; display: grid; place-items: center; margin-bottom: 15px; box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.sit-ic svg { width: 26px; height: 26px; }
.sit h3 { font-size: 1.06rem; color: var(--navy-900); margin-bottom: 7px; line-height: 1.2; }
.sit p { color: var(--muted); font-size: .95rem; line-height: 1.55; margin: 0; }
.sit p a { color: var(--red); font-weight: 600; }
.sit--cta { background: var(--red); border-color: var(--red); display: grid; place-content: center; text-align: center; }
.sit--cta h3 { color: #fff; }
.sit--cta p { color: #ffe2d2; margin-bottom: 16px; }

/* --- comparison table --- */
.cmp-wrap { max-width: 940px; margin-inline: auto; }
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.cmp th, .cmp td { padding: 14px 16px; text-align: left; font-size: .96rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.cmp thead th { font-family: var(--ff-display); font-weight: 800; color: #fff; background: var(--navy-800); font-size: 1rem; border-bottom: none; }
.cmp thead th.cmp-lw { background: var(--red); }
.cmp tbody th { font-family: var(--ff-display); font-weight: 700; color: var(--navy-900); background: var(--paper); width: 25%; }
.cmp td:nth-child(2) { background: var(--red-tint); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }
.cmp td { color: var(--muted); }
.cmp td.yes { color: var(--ink); }
.cmp td::before { font-family: var(--ff-display); font-weight: 800; margin-right: 8px; }
.cmp td.yes::before { content: "\2713"; color: #1f9d57; }
.cmp td.no::before { content: "\2715"; color: var(--red-600); }
.cmp td.maybe::before { content: "\2013"; color: var(--muted-2); }

/* --- insight / local note --- */
.insight { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; background: #fff; border: 1.5px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius-lg); padding: 30px 34px; box-shadow: var(--shadow-sm); max-width: 940px; margin-inline: auto; }
.insight-mark { width: 54px; height: 54px; border-radius: 14px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; flex: none; }
.insight-mark svg { width: 28px; height: 28px; }
.insight-body h2 { margin: 4px 0 10px; }
.insight-body p { color: var(--muted); line-height: 1.66; margin: 0; max-width: 64ch; }

/* --- device responsive --- */
@media (max-width: 1040px) { .sit-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) {
  .sit-grid { grid-template-columns: repeat(2, 1fr); }
  .insight { grid-template-columns: 1fr; gap: 16px; padding: 26px; }
}
@media (max-width: 760px) {
  /* comparison table -> one card per row. Each td shows its column name via data-col,
     reordered ahead of the yes/no glyph with flex order. No sideways scrolling. */
  .cmp-wrap { overflow-x: visible; }
  .cmp, .cmp thead, .cmp tbody, .cmp tr, .cmp th, .cmp td { display: block; width: auto; }
  .cmp { min-width: 0; border: 0; border-radius: 0; background: none; box-shadow: none; overflow: visible; }
  .cmp thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cmp tbody tr {
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 14px;
  }
  .cmp tbody tr:last-child { margin-bottom: 0; }
  .cmp tbody th {
    width: auto; background: var(--paper); font-size: .95rem;
    padding: 12px 15px; border-bottom: 1px solid var(--line-soft);
  }
  .cmp tbody tr:last-child th { border-bottom: 1px solid var(--line-soft); }
  .cmp td {
    display: flex; align-items: baseline; gap: 9px;
    padding: 10px 15px; font-size: .9rem; border-bottom: 1px solid var(--line-soft);
  }
  .cmp tbody tr td:last-child, .cmp tbody tr:last-child td:last-child { border-bottom: none; }
  .cmp td::after {
    content: attr(data-col); order: -1; flex: 0 0 94px;
    font-family: var(--ff-display); font-weight: 700; font-size: .76rem;
    line-height: 1.45; color: var(--navy-900);
  }
  .cmp td::before { margin-right: 0; }
  /* highlighted column keeps its tint and gets the accent label */
  .cmp td:nth-child(2) { background: var(--red-tint); }
  .cmp td:nth-child(2)::after { color: var(--red-600); }
}
@media (max-width: 520px) { .sit-grid { grid-template-columns: 1fr; } }

/* --- fast-facts (service pages) --- */
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1000px; margin-inline: auto; }
.fact { position: relative; text-align: center; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 28px 16px 22px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.fact:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fact::before { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 26px; height: 8px; background-image: var(--notch); background-size: 8px 8px; }
.fact-v { display: block; margin-top: 16px; font-family: var(--ff-display); font-weight: 800; font-size: 1.55rem; color: var(--navy-900); line-height: 1.05; letter-spacing: -.01em; }
.fact-l { display: block; margin-top: 8px; font-size: .9rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 720px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .facts-grid { grid-template-columns: 1fr; } }
