/* =================================================================
   SEABEE JACK'S MOBILE OIL CHANGE & MORE — SITE STYLES
   White paper, Navy ink, brand yellow, flag red. Veteran-owned.
================================================================= */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

/* ============================ TOKENS ============================ */
:root {
  --bg:         #ffffff;
  --bg-soft:    #f4f3f0;
  --bg-warm:    #efeeea;
  --surface:    #ffffff;
  --surface-2:  #eeece8;
  --line:       #e5e3df;
  --line-soft:  #efedea;
  --line-strong:#131313;

  --ink:        #0e1c2e;
  --ink-soft:   #27384b;
  --ink-mute:   #5f6f80;
  --ink-quiet:  #9aa6b2;

  --ink-on-dark:#f4f7fb;
  --dark:       #0b1626;
  --dark-2:     #122236;
  --dark-3:     #21344b;
  --navy:       #0b1626;

  --yellow:      #ffce1f;
  --yellow-deep: #f0bb00;
  --yellow-dark: #c79600;
  --yellow-soft: rgba(255,206,31,0.62);
  --yellow-tint: #fff5cf;

  --red:        #c1272d;
  --red-deep:   #9e1d23;
  --blue:       #1c3f6e;

  --maxw: 1240px;
  --maxw-narrow: 1040px;
  --gap-pad: clamp(18px, 3.6vw, 48px);

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --r-pill: 999px;

  --sec-y: 54px;
  --sec-y-lg: 86px;

  --ease: cubic-bezier(0.2, 0, 0, 1);

  --shadow-sm: 0 1px 2px rgba(19,17,15,0.06), 0 1px 3px rgba(19,17,15,0.08);
  --shadow:    0 6px 18px rgba(19,17,15,0.09), 0 2px 6px rgba(19,17,15,0.06);
  --shadow-lg: 0 18px 44px rgba(19,17,15,0.18);

  --f-display: 'Satoshi', system-ui, -apple-system, sans-serif;
  --f-body:    'Satoshi', system-ui, -apple-system, sans-serif;
  --f-mono:    'Satoshi', system-ui, -apple-system, sans-serif;
}

/* ============================ RESET ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.modal-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img { image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; background: none; border: 0; outline: 0; }
::selection { background: var(--yellow); color: var(--ink); }

/* ============================ TYPOGRAPHY ============================ */
.h-display, .h-h1, .h-h2, .h-h3 {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  text-wrap: balance;
}
.h-display { font-size: clamp(40px, 6vw, 78px); max-width: 16ch; }
.h-h1      { font-size: clamp(33px, 4.8vw, 58px); max-width: 18ch; }
.h-h2      { font-size: clamp(28px, 3.6vw, 44px); max-width: 20ch; }
.h-h3      { font-size: clamp(19px, 2vw, 22px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.16; max-width: 30ch; }

.eyebrow {
  display: inline-block;
  background: var(--ink); color: #fff;
  padding: 6px 14px; border-radius: 0;
  font-family: var(--f-display);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.eyebrow.yellow { background: var(--yellow); color: var(--ink); }
.eyebrow.muted { background: var(--bg-soft); color: var(--ink-mute); }

.lede { font-size: clamp(16px, 1.4vw, 18px); color: var(--ink-soft); line-height: 1.55; max-width: 54ch; }
.body  { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.body-s { font-size: 14px; color: var(--ink-mute); line-height: 1.55; }

/* highlight accent on light backgrounds (marker stroke) */
.red-text, .accent-text {
  background-image: linear-gradient(transparent 56%, var(--yellow-soft) 56%, var(--yellow-soft) 94%, transparent 94%);
  padding: 0 0.05em;
}

/* ============================ LAYOUT ============================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gap-pad); }
.container.narrow { max-width: var(--maxw-narrow); }
.section { padding: var(--sec-y) 0; position: relative; }
@media (min-width: 900px) { .section { padding: var(--sec-y-lg) 0; } }
.bg-tint { background: var(--bg-soft); }

.sec-head { margin-bottom: 36px; max-width: 680px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head .h-h2 { margin-bottom: 14px; }
.sec-head .body { font-size: 16.5px; max-width: 56ch; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .h-h2, .sec-head.center .body { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) { .sec-head { margin-bottom: 48px; } }

.sec-head-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; align-items: flex-start; }
@media (min-width: 900px) {
  .sec-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
}
.sec-head-row .left { max-width: 680px; }
.sec-head-row .left .eyebrow { margin-bottom: 16px; }
.sec-head-row .left .h-h2 { margin-bottom: 12px; }

/* ============================ BUTTONS (pressable) ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px;
  font-family: var(--f-body);
  font-size: 13.5px; font-weight: 900;
  letter-spacing: 0.09em; text-transform: uppercase;
  border: 2px solid transparent; border-bottom-width: 6px;
  border-radius: 0;
  transition: background 150ms var(--ease), color 150ms var(--ease),
              box-shadow 150ms var(--ease), transform 70ms ease, border-bottom-width 70ms ease;
  white-space: nowrap; cursor: pointer; position: relative;
}
.btn:active { transform: translateY(4px); border-bottom-width: 0; }
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 17px 30px; font-size: 15px; }

.btn-primary { background: var(--yellow); color: var(--ink); border-bottom-color: var(--yellow-dark); }
.btn-primary:hover { background: var(--yellow-deep); box-shadow: var(--shadow); }

.btn-dark { background: var(--ink); color: #fff; border-bottom-color: #000; }
.btn-dark:hover { background: #000; box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-on-dark { background: #fff; color: var(--ink); border-bottom-color: rgba(0,0,0,0.3); }
.btn-on-dark:hover { background: #f1f0ec; box-shadow: var(--shadow); }

.link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); border-bottom: 2px solid var(--yellow); padding-bottom: 3px;
  transition: color 150ms var(--ease), border-color 150ms var(--ease);
}
.link:hover { border-color: var(--ink); }

/* ============================ TOPBAR ============================ */
.topbar {
  background: var(--ink); color: rgba(247,246,243,0.74);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.05em; font-weight: 500;
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 7px var(--gap-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; text-transform: uppercase;
}
.topbar .left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar .left .it { display: inline-flex; align-items: center; gap: 6px; }
.topbar .left .it svg { width: 11px; height: 11px; color: var(--yellow); }
.topbar .right { display: none; gap: 18px; align-items: center; }
.topbar .right a:hover { color: #fff; }
@media (min-width: 768px) { .topbar .right { display: inline-flex; } }

/* ============================ NAV ============================ */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.93); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 220ms var(--ease);
}
.nav-wrap.scrolled { box-shadow: var(--shadow-sm); }
.nav { max-width: var(--maxw); margin: 0 auto; padding: 10px var(--gap-pad); display: flex; align-items: center; gap: 22px; }

/* LOGO — hex-nut emblem */
.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.logo-mark::before {
  content: ""; position: absolute; inset: 3px; background: var(--ink);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.logo-mark .mono {
  position: relative; z-index: 1;
  font-family: var(--f-display); font-weight: 900; font-size: 15px;
  color: #fff; letter-spacing: -0.05em; line-height: 1;
}
.logo .wrap { display: flex; flex-direction: column; line-height: 1.02; }
.logo .nm {
  font-family: var(--f-display); font-weight: 900; font-size: 15px;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--ink); line-height: 1.0;
}
.logo .sb {
  font-family: var(--f-mono); font-size: 9.5px; font-weight: 600;
  color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
}

.nav-links { list-style: none; display: none; align-items: center; gap: 2px; margin-left: 18px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 13px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.005em; color: var(--ink-soft);
  transition: color 150ms var(--ease); position: relative;
}
.nav-links > li > a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform 200ms var(--ease);
}
.nav-links > li > a:hover { color: var(--ink); }
.nav-links > li > a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-call {
  display: none; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 13px; font-weight: 800; color: var(--ink);
  transition: color 150ms var(--ease);
}
.nav-call:hover { color: var(--yellow-dark); }
.nav-call .ico {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
}
.nav-call .ico svg { width: 16px; height: 16px; }
.nav-call .num small {
  display: block; font-family: var(--f-mono); font-size: 9px; font-weight: 600;
  color: var(--ink-mute); letter-spacing: 0.13em; text-transform: uppercase;
}
.nav-call .num { font-family: var(--f-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; white-space: nowrap; }
@media (min-width: 880px) { .nav-call { display: inline-flex; } }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  background: var(--yellow); color: var(--ink); border-radius: var(--r);
  font-family: var(--f-body); font-size: 13.5px; font-weight: 800;
  transition: background 150ms var(--ease), transform 90ms ease, box-shadow 150ms var(--ease);
  white-space: nowrap; cursor: pointer; box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--yellow-deep); transform: translateY(-1px); box-shadow: var(--shadow); }
.nav-cta svg { width: 14px; height: 14px; }
.nav-cta .short-label { display: none; }
@media (max-width: 520px) { .nav-cta .full-label { display: none; } .nav-cta .short-label { display: inline; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; color: var(--ink); background: transparent;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle:hover { background: var(--ink); color: #fff; }
.nav-toggle svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile menu */
.mm {
  position: fixed; inset: 0; background: var(--bg); z-index: 200; padding: 22px;
  overflow-y: auto; transform: translateX(100%); transition: transform 320ms var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.mm.open { transform: translateX(0); }
@media (min-width: 1024px) { .mm { display: none; } }
.mm-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.mm-close { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); cursor: pointer; }
.mm-close:hover { background: var(--ink); color: #fff; }
.mm-close svg { width: 18px; height: 18px; }
.mm ul { list-style: none; }
.mm > ul.mm-primary > li > a {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 0;
  font-family: var(--f-display); font-weight: 900; font-size: 26px; letter-spacing: -0.03em;
  text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line-soft);
}
.mm > ul.mm-primary > li > a span { color: var(--yellow-dark); }
.mm-cta { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.mm-cta .btn { width: 100%; }
/* Mobile menu accordion (Services / Service Areas tap-to-expand) */
.mm > ul.mm-primary > li.has-sub { display: block; }
.mm-acc-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 2px; background: transparent; border: 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); font-family: inherit; font-weight: 800; font-size: 16px; text-align: left; cursor: pointer; }
.mm-acc-toggle .mm-acc-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 220ms ease, background 220ms ease; }
.mm-acc-toggle .mm-acc-icon svg { width: 14px; height: 14px; }
.mm > ul.mm-primary > li.has-sub.open .mm-acc-toggle .mm-acc-icon { transform: rotate(180deg); background: var(--red); color: #fff; }
.mm-sub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.mm > ul.mm-primary > li.has-sub.open .mm-sub { max-height: 720px; }
.mm-sub li a { display: block; padding: 11px 14px 11px 18px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); position: relative; }
.mm-sub li a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); opacity: 0.8; }
.mm-sub li a:hover, .mm-sub li a:focus { color: var(--ink); background: var(--bg-soft); }

/* ============================ HERO (centered) ============================ */
/* ============================ HERO (tow-site style, video bg) ============================ */
.hero { position: relative; background: var(--dark); color: var(--bg); overflow: hidden; padding: 64px var(--gap-pad) 72px; border-bottom: 8px solid var(--yellow); display: flex; align-items: center; min-height: 72vh; }
@media (min-width: 900px) { .hero { padding: 88px var(--gap-pad) 96px; min-height: 76vh; } }
.hero-slides { position: absolute; inset: 0; z-index: 0; background: #0c0b0a; overflow: hidden; }
.hero-slides .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; animation: hero-fade 32s infinite ease-in-out; filter: brightness(0.55) contrast(1.05) saturate(0.95); will-change: opacity; }
.hero-slides .hero-slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
.hero-slides .hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slides .hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slides .hero-slide:nth-child(4) { animation-delay: 24s; }
@keyframes hero-fade {
  0%   { opacity: 0; }
  6.25%  { opacity: 1; }   /* fade-in 2s (happens BEHIND prev slide which is still at 1) */
  31.25% { opacity: 1; }   /* hold solo and through next slide's hidden fade-in */
  37.5%  { opacity: 0; }   /* fade-out 2s, revealing next slide which is already at 1 underneath */
  100%   { opacity: 0; }
}
.hero-slides::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,22,38,0.30) 0%, rgba(11,22,38,0.55) 60%, rgba(11,22,38,0.75) 100%); pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-slides .hero-slide { animation: none; }
  .hero-slides .hero-slide:nth-child(1) { opacity: 1; }
  .hero-slides .hero-slide:nth-child(n+2) { opacity: 0; }
}
.hero-bg { position: absolute; inset: 0; background-color: #15140f; background-size: cover; background-position: center; filter: brightness(0.4) contrast(1.05) saturate(0.65); z-index: 0; opacity: 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(130% 110% at 50% 42%, rgba(14,13,11,0.32) 0%, rgba(14,13,11,0.62) 60%, rgba(14,13,11,0.82) 100%),
    linear-gradient(180deg, rgba(14,13,11,0.35) 0%, rgba(14,13,11,0.2) 45%, rgba(14,13,11,0.72) 100%);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 0; }
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; width: 100%; }
.hero-content { display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; }
.hero-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: var(--yellow); color: var(--ink); border-radius: 0; border: 2px solid var(--yellow-dark);
  font-family: var(--f-display); font-size: 11px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
}
.hero h1 { color: var(--bg); text-transform: uppercase; line-height: 0.98; }
.hero h1 .red, .hero h1 .red-text { background: none; padding: 0; color: var(--yellow); }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: rgba(247,246,243,0.86); line-height: 1.5; max-width: 46ch; margin: 0 auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; justify-content: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 14px; justify-content: center; }
.hero-trust .t { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bg); }
.hero-trust .t svg { width: 17px; height: 17px; color: var(--yellow); flex-shrink: 0; }

/* hero lead form (right card) */
.hero-form { position: relative; background: #fff; color: var(--ink); border-top: 8px solid var(--yellow); padding: 26px; box-shadow: var(--shadow-lg); width: 100%; max-width: 470px; margin: 0 auto; }
@media (min-width: 600px) { .hero-form { padding: 32px; } }
@media (min-width: 980px) { .hero-form { margin: 0; justify-self: end; } }
.hero-form .tag { position: absolute; top: -15px; right: -8px; background: var(--ink); color: #fff; font-family: var(--f-mono); font-weight: 700; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 13px; transform: rotate(6deg); box-shadow: var(--shadow); }
.hero-form h3 { font-family: var(--f-display); font-weight: 900; font-size: 25px; letter-spacing: -0.03em; text-transform: uppercase; line-height: 1.0; margin-bottom: 6px; }
.hero-form .sub { font-size: 14px; color: var(--ink-mute); font-weight: 600; margin-bottom: 18px; }

/* ============================ PROOF / REVIEWS BAND (under hero) ============================ */
.proof-band { background: var(--ink); color: var(--bg); border-bottom: 4px solid var(--yellow); }
.proof-inner { max-width: var(--maxw); margin: 0 auto; padding: 30px var(--gap-pad) 34px; }
.proof-head { display: flex; align-items: center; justify-content: center; gap: 11px; margin-bottom: 24px; text-align: center; flex-wrap: wrap; }
.proof-head .gmark { width: 24px; height: 24px; flex-shrink: 0; }
.proof-head .t { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,246,243,0.7); }
.proof-head .t strong { color: var(--yellow); font-weight: 700; }
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 760px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }
.proof-item { padding: 4px 0; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 760px) { .proof-item { padding: 4px 28px; border-left: 1px solid var(--dark-3); } .proof-item:first-child { border-left: 0; padding-left: 0; } .proof-item:last-child { padding-right: 0; } }
@media (max-width: 760px) { .proof-item { padding: 18px 0; border-top: 1px solid var(--dark-3); } .proof-item:first-child { border-top: 0; padding-top: 0; } }
.proof-item .q { font-size: 15px; line-height: 1.5; color: rgba(247,246,243,0.92); }
.proof-item .who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.proof-item .av {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  background: var(--yellow); color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 900; font-size: 12.5px; letter-spacing: -0.03em;
}
.proof-item .nm { font-family: var(--f-display); font-weight: 800; font-size: 14px; letter-spacing: -0.02em; color: #fff; }
.proof-item .ct { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,246,243,0.55); margin-top: 2px; }

/* ============================ SERVICES (bold cards) ============================ */
.services { background: var(--bg-soft); border-top: 6px solid var(--yellow); }
.svc-intro { border-left: 5px solid var(--yellow); padding-left: 18px; font-weight: 700; font-size: 16px; color: var(--ink-soft); line-height: 1.5; max-width: 42ch; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 680px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.svc {
  position: relative; overflow: hidden; background: #fff; border: 3px solid var(--ink);
  border-radius: 0; display: flex; flex-direction: column;
  box-shadow: 8px 8px 0 0 var(--ink);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.svc:hover { transform: translate(8px, 8px); box-shadow: 0 0 0 0 var(--ink); }
.svc .ph { position: relative; aspect-ratio: 4/3; overflow: hidden; border-bottom: 3px solid var(--ink); background: var(--surface-2); }
.svc .ph img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: contrast(1.04) saturate(0.92); transition: transform 500ms var(--ease); }
@supports not (aspect-ratio: 1) { .svc .ph { height: 280px; } }
.svc:hover .ph img { transform: scale(1.06); }
.svc .ph .ico { position: absolute; right: 0; bottom: 0; background: var(--ink); color: #fff; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; }
.svc .ph .ico svg { width: 22px; height: 22px; }
.svc .bd { padding: 28px 24px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; position: relative; }
.svc .bd::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--yellow); }
.svc h3 { font-family: var(--f-display); font-weight: 900; font-size: 21px; line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink); transition: color 150ms var(--ease); }
.svc:hover h3 { color: var(--yellow-dark); }
.svc p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.svc .feats { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc .feats li { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); }
.svc .feats li svg { width: 16px; height: 16px; color: var(--yellow-dark); flex-shrink: 0; }
.svc .acts { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }
.svc-btn { display: block; width: 100%; text-align: center; padding: 13px; font-family: var(--f-display); font-weight: 900; text-transform: uppercase; letter-spacing: 0.09em; font-size: 12.5px; border: 0; border-bottom: 4px solid; cursor: pointer; transition: transform 70ms ease, border-bottom-width 70ms ease, background 150ms var(--ease); }
.svc-btn:active { transform: translateY(3px); border-bottom-width: 0; }
.svc-btn.call { background: var(--yellow); color: var(--ink); border-bottom-color: var(--yellow-dark); }
.svc-btn.call:hover { background: var(--yellow-deep); }
.svc-btn.alt { background: var(--ink); color: #fff; border-bottom-color: #000; }
.svc-btn.alt:hover { background: #000; }
.services-foot {
  margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--ink); color: var(--bg); border-radius: var(--r-lg);
}
@media (min-width: 768px) { .services-foot { flex-direction: row; align-items: center; justify-content: space-between; padding: 22px 32px; } }
.services-foot .copy { display: flex; flex-direction: column; gap: 4px; max-width: 52ch; }
.services-foot .copy strong { font-family: var(--f-display); font-size: 20px; font-weight: 900; color: var(--bg); letter-spacing: -0.025em; }
.services-foot .copy span { font-size: 14px; color: rgba(247,246,243,0.72); }

/* ============================ PROCESS (bold, staggered) ============================ */
.process { background: var(--bg-soft); border-top: 6px solid var(--yellow); }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; } }
.step {
  position: relative; overflow: hidden; background: var(--bg);
  border: 3px solid var(--ink); border-radius: var(--r);
  box-shadow: 7px 7px 0 0 var(--ink);
  padding: 28px 26px; display: flex; flex-direction: column;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.step:hover { transform: translate(4px, 4px); box-shadow: 3px 3px 0 0 var(--ink); }
.step.dark { background: var(--ink); color: #fff; }
@media (min-width: 900px) { .step:nth-child(2) { margin-top: 40px; } .step:nth-child(3) { margin-top: 80px; } }
.step .ghost {
  position: absolute; right: -6px; top: -36px; z-index: 0;
  font-family: var(--f-display); font-weight: 900; font-size: 150px; line-height: 1;
  color: transparent; -webkit-text-stroke: 3px var(--surface-2); user-select: none;
  transition: -webkit-text-stroke-color 220ms var(--ease);
}
.step.dark .ghost { -webkit-text-stroke-color: var(--dark-3); }
.step:hover .ghost { -webkit-text-stroke-color: var(--yellow); }
.step .inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.step .chip {
  width: 56px; height: 56px; border-radius: var(--r-sm); background: var(--yellow); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 900; font-size: 26px; line-height: 1;
  border: 3px solid var(--ink); box-shadow: 3px 3px 0 0 var(--ink);
}
.step.dark .chip { background: #fff; }
.step h3 { font-family: var(--f-display); font-weight: 900; font-size: 23px; letter-spacing: -0.03em; line-height: 1.04; color: var(--ink); }
.step.dark h3 { color: #fff; }
.step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; max-width: 36ch; }
.step.dark p { color: rgba(247,246,243,0.78); }

/* ============================ QUOTE FORM ============================ */
.quote { background: var(--bg-soft); }
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 900px) { .quote-grid { grid-template-columns: 5fr 7fr; gap: 52px; } }
.quote-left h2, .quote-left .h-h1 { margin-bottom: 18px; max-width: 14ch; }
.quote-left .lede { margin-bottom: 22px; }
.quote-points { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.quote-points li {
  display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; font-size: 15.5px; color: var(--ink);
  line-height: 1.45; border-bottom: 1px solid var(--line);
}
.quote-points li:last-child { border-bottom: 0; }
.quote-points li::before { content: ""; width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; border-radius: 50%; background: var(--yellow) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121110' stroke-width='3.5'><path d='M5 12l5 5L20 7'/></svg>") center / 12px no-repeat; }
.owner-quote { margin-top: 26px; padding: 18px 20px; background: var(--bg); border: 1px solid var(--line); border-left: 5px solid var(--yellow); border-radius: var(--r); }
.owner-quote .q { font-family: var(--f-display); font-size: 19px; font-weight: 800; color: var(--ink); line-height: 1.18; letter-spacing: -0.025em; }
.owner-quote .attr { margin-top: 11px; font-family: var(--f-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }

/* FORM CARD */
.form-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; position: relative; box-shadow: var(--shadow); }
@media (min-width: 768px) { .form-card { padding: 34px; } }
.form-card .form-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-card h3 { font-family: var(--f-display); font-size: 25px; font-weight: 900; margin-bottom: 4px; letter-spacing: -0.03em; }
.form-card .form-sub { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.form-card .form-head .badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; background: var(--yellow); color: var(--ink); border-radius: var(--r-pill); font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }
.form-card .form-head .badge svg { width: 12px; height: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.form-field label .req { color: var(--yellow-dark); margin-left: 2px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 14px; background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  color: var(--ink); font-size: 15px; font-family: var(--f-body); transition: border-color 150ms var(--ease), background 150ms var(--ease);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-quiet); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ink); background: var(--bg); }
.form-field textarea { resize: vertical; min-height: 104px; }
.form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236b6862' d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.form-field.full { grid-column: 1 / -1; }
.form-submit {
  width: 100%; padding: 16px; background: var(--yellow); color: var(--ink); border-radius: var(--r);
  font-weight: 800; font-size: 14px; letter-spacing: 0.01em; cursor: pointer;
  transition: background 150ms var(--ease); display: inline-flex; align-items: center; justify-content: center; gap: 9px; margin-top: 6px; font-family: var(--f-body);
}
.form-submit:hover { background: var(--yellow-deep); }
.form-submit svg { width: 16px; height: 16px; }
.form-note { margin-top: 14px; font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute); text-align: center; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap; }
.form-note .lock { display: inline-flex; align-items: center; gap: 4px; }
.form-note .lock svg { width: 12px; height: 12px; color: var(--yellow-dark); }

/* ============================ GALLERY (clean, no captions) ============================ */
.gallery { background: var(--bg); }
.gallery-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .gallery-row { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 210px; } }
@media (min-width: 1000px) { .gallery-row { grid-auto-rows: 240px; } }
.gallery-row .g { position: relative; overflow: hidden; background: var(--surface-2); border-radius: var(--r-lg); aspect-ratio: 4/3; }
@media (min-width: 700px) { .gallery-row .g { aspect-ratio: auto; } }
.gallery-row .g img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(0.92); transition: transform 460ms var(--ease); }
.gallery-row .g:hover img { transform: scale(1.04); }
.gallery-row .g.big { grid-row: span 2; }

/* ============================ REVIEWS (carousel) ============================ */
.reviews { background: #fff; }
.rev-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
@media (min-width: 760px) { .rev-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.rev-head .h-h2 { margin-top: 14px; }
.rev-head .sub { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); display: inline-flex; align-items: center; gap: 8px; }
.rev-head .sub .gmark { width: 16px; height: 16px; }
.rev-head .sub strong { color: var(--ink); font-weight: 700; }
.rev-controls { display: flex; align-items: center; gap: 18px; }
.rev-arrows { display: flex; gap: 8px; }
.rev-arrow { width: 46px; height: 46px; border-radius: var(--r); border: 2px solid var(--ink); background: #fff; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 150ms var(--ease), color 150ms var(--ease), opacity 150ms; }
.rev-arrow:hover:not(:disabled) { background: var(--ink); color: #fff; }
.rev-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.rev-arrow svg { width: 18px; height: 18px; }
.rev-viewport { overflow: hidden; }
.rev-track { display: flex; transition: transform 480ms var(--ease); }
.rev-slide { flex: 0 0 100%; padding-right: 18px; box-sizing: border-box; }
@media (min-width: 640px) { .rev-slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .rev-slide { flex-basis: 33.3333%; } }
.rev-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; height: 100%; display: flex; flex-direction: column; gap: 14px; min-height: 224px; }
@media (max-width: 639px) {
  .rev-head { gap: 10px; margin-bottom: 18px; }
  .rev-head h2 { font-size: clamp(22px, 7vw, 28px); }
  .rev-head .sub { font-size: 10.5px; gap: 6px; }
  .rev-controls { width: 100%; justify-content: space-between; }
  .rev-arrow { width: 40px; height: 40px; }
  .rev-slide { padding-right: 12px; }
  .rev-card { padding: 18px; min-height: 0; gap: 11px; border-radius: 14px; }
  .rev-card .q { font-size: 14.5px; line-height: 1.5; }
  .rev-card .foot { padding-top: 11px; }
  .rev-card .av { width: 32px; height: 32px; font-size: 12px; }
  .rev-card .nm { font-size: 14px; }
  .rev-dots { margin-top: 14px; }
}
.rev-card .gbadge { display: inline-flex; align-items: center; gap: 8px; }
.rev-card .gbadge .gmark { width: 18px; height: 18px; }
.rev-card .gbadge .lbl { font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.rev-card .q { font-size: 15px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.rev-card .foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 11px; }
.rev-card .av { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 900; font-size: 13px; letter-spacing: -0.03em; flex-shrink: 0; }
.rev-card .nm { font-family: var(--f-display); font-weight: 800; font-size: 14.5px; letter-spacing: -0.02em; color: var(--ink); }
.rev-card .ct { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-top: 1px; }
.rev-dots { display: flex; justify-content: center; gap: 7px; margin-top: 26px; }
.rev-dot { height: 7px; width: 7px; border-radius: var(--r-pill); background: rgba(18,17,16,0.16); cursor: pointer; transition: all 250ms var(--ease); border: 0; padding: 0; }
.rev-dot.active { width: 26px; background: var(--yellow-dark); }

/* ============================ ABOUT ============================ */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 5fr 6fr; gap: 60px; } }
.about-media { position: relative; }
.about-media .ph { width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-2); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.about-media .ph img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(0.94); }
.about-media .floating { position: absolute; right: -10px; bottom: 28px; background: var(--yellow); color: var(--ink); padding: 16px 20px; display: flex; align-items: center; gap: 12px; border-radius: var(--r); box-shadow: var(--shadow); z-index: 2; }
.about-media .floating .num { font-family: var(--f-display); font-weight: 900; font-size: 34px; line-height: 1; letter-spacing: -0.04em; }
.about-media .floating .lbl { font-family: var(--f-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(18,17,16,0.7); max-width: 12ch; line-height: 1.35; }
.about-copy .h-h2 { margin-bottom: 20px; max-width: 16ch; }
.about-copy p { font-size: 16.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 16px; max-width: 56ch; }
.about-copy p strong { color: var(--ink); font-weight: 800; }
.about-stats { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.about-stat .num { font-family: var(--f-display); font-weight: 900; font-size: clamp(28px, 3.2vw, 40px); line-height: 1; color: var(--ink); letter-spacing: -0.035em; }
.about-stat .num .red-text { background: none; padding: 0; color: var(--yellow-dark); }
.about-stat .lbl { margin-top: 9px; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-mute); line-height: 1.4; }

/* ============================ AREA (map + interactive chips) ============================ */
.area { background: var(--bg-soft); }
.area-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
@media (min-width: 900px) { .area-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.area-map { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-warm); min-height: 320px; position: relative; }
@media (min-width: 900px) { .area-map { min-height: 440px; } }
.area-map iframe { width: 100%; height: 100%; min-height: 320px; position: absolute; inset: 0; border: 0; display: block; filter: grayscale(0.25) contrast(1.04); }
.area-pick { display: flex; flex-direction: column; }
.area-pick h3 { font-family: var(--f-display); font-weight: 900; font-size: 24px; letter-spacing: -0.03em; margin-bottom: 6px; }
.area-pick .meta { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip { padding: 11px 16px; min-height: 44px; border-radius: var(--r); font-size: 14px; font-weight: 700; cursor: pointer; transition: all 170ms var(--ease); border: 0; font-family: var(--f-body); }
.area-chip.primary { background: var(--ink); color: #fff; }
.area-chip.ghost { background: rgba(18,17,16,0.05); color: var(--ink); }
.area-chip:hover { background: var(--yellow); color: var(--ink); }
.area-chip.active { background: var(--yellow); color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.area-callout { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 220ms var(--ease), opacity 220ms var(--ease), margin-top 220ms var(--ease); margin-top: 0; }
.area-callout.open { max-height: 180px; opacity: 1; margin-top: 16px; }
.area-callout .box { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.area-callout .nm { font-family: var(--f-display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; }
.area-callout .rt { font-size: 13.5px; color: var(--ink-mute); margin-top: 2px; }
.area-callout .rt strong { color: var(--yellow-dark); font-weight: 800; }
.area-note { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.area-note strong { color: var(--ink); }
.area-dir { margin-top: 38px; padding-top: 30px; border-top: 2px solid var(--line); }
.area-dir h3 { font-family: var(--f-display); font-weight: 900; font-size: 22px; letter-spacing: -0.03em; margin-bottom: 14px; }
.area-dir ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 700px) { .area-dir ul { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .area-dir ul { grid-template-columns: repeat(4, 1fr); } }
.area-dir a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; font-weight: 700; font-size: 13.5px; color: var(--ink); transition: all 150ms var(--ease); }
.area-dir a:hover { border-color: var(--ink); background: var(--yellow-tint); }
.area-dir a svg { width: 14px; height: 14px; color: var(--yellow-dark); flex-shrink: 0; }

/* ============================ FAQ (bold accordion) ============================ */
.faq { background: var(--bg); border-top: 6px solid var(--yellow); }
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg); border: 3px solid var(--ink); border-radius: var(--r); box-shadow: 6px 6px 0 0 var(--ink); overflow: hidden; transition: box-shadow 160ms var(--ease), transform 160ms var(--ease); }
.faq-item.open { box-shadow: 6px 6px 0 0 var(--yellow-dark); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; text-align: left; cursor: pointer; }
.faq-q h3 { font-family: var(--f-display); font-weight: 900; font-size: 18px; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); transition: color 150ms var(--ease); }
@media (min-width: 768px) { .faq-q { padding: 24px 26px; } .faq-q h3 { font-size: 21px; } }
.faq-item:hover .faq-q h3 { color: var(--yellow-dark); }
.faq-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--ink); color: #fff; border-radius: var(--r-sm); display: inline-flex; align-items: center; justify-content: center; transition: background 180ms var(--ease), transform 240ms var(--ease); }
.faq-icon svg { width: 22px; height: 22px; }
.faq-item.open .faq-icon { background: var(--yellow); color: var(--ink); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 260ms var(--ease); }
.faq-a .inner { padding: 0 22px 22px; }
@media (min-width: 768px) { .faq-a .inner { padding: 0 26px 26px; } }
.faq-a p { border-top: 2px solid var(--line); padding-top: 18px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; font-weight: 500; }

/* ============================ CTA BAND ============================ */
.cta-band { background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -8%; top: 0; width: 56%; height: 100%; background: radial-gradient(closest-side, rgba(255,196,0,0.16) 0%, transparent 70%); pointer-events: none; }
.cta-inner { max-width: var(--maxw); margin: 0 auto; padding: 52px var(--gap-pad); display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1fr auto; padding: 68px var(--gap-pad); gap: 52px; } }
.cta-text h2 { color: var(--bg); margin-bottom: 12px; max-width: 17ch; }
.cta-text h2 .red-text { background: none; padding: 0; color: var(--yellow); }
.cta-text p { font-size: 16.5px; color: rgba(247,246,243,0.78); max-width: 54ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================ FOOTER (bold) ============================ */
.footer { background: #081120; color: rgba(255,255,255,0.6); padding: 54px var(--gap-pad) 24px; border-top: 8px solid var(--yellow); font-family: var(--f-body); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 2fr 1fr 1.2fr 1.4fr; gap: 40px; } }
.footer-brand { padding-bottom: 28px; border-bottom: 2px solid #16273d; }
@media (min-width: 860px) { .footer-brand { padding-bottom: 0; padding-right: 32px; border-bottom: 0; border-right: 2px solid #16273d; } }
.footer-brand .fname { font-family: var(--f-display); font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; display: block; margin-bottom: 12px; line-height: 1.05; }
.footer-brand .fname span { color: var(--yellow); }
.footer-brand p { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.42); line-height: 1.6; margin-bottom: 22px; }
.footer-call { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--yellow); color: var(--ink); font-family: var(--f-display); font-weight: 900; font-size: 18px; text-transform: uppercase; letter-spacing: 0.05em; padding: 15px; border-bottom: 4px solid var(--yellow-dark); transition: transform 70ms ease, border-bottom-width 70ms ease, background 150ms var(--ease); }
.footer-call:hover { background: var(--yellow-deep); }
.footer-call:active { transform: translateY(3px); border-bottom-width: 0; }
.footer-call svg { width: 22px; height: 22px; }
.footer-col h4 { font-family: var(--f-display); font-size: 12px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col li { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.72); line-height: 1.3; transition: color 150ms var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-card { background: #0e1d30; border: 2px solid #1d3046; padding: 15px 16px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.footer-card svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; margin-top: 1px; }
.footer-card .l1 { font-family: var(--f-display); font-weight: 900; font-size: 13px; text-transform: uppercase; color: #fff; letter-spacing: -0.01em; }
.footer-card .l2 { font-size: 12px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.03em; line-height: 1.4; }
.footer-card a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 2px solid #16273d; display: flex; flex-direction: column; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ============================ MOBILE STICKY BAR ============================ */
.mobile-bar { display: none !important; }
.mobile-bar a { flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-family: var(--f-body); font-size: 13px; font-weight: 800; letter-spacing: 0.02em; }
.mobile-bar a.call { background: var(--yellow); color: var(--ink); }
.mobile-bar a.quote { background: transparent; color: var(--bg); }
.mobile-bar a svg { width: 16px; height: 16px; }

/* ============================ MODAL ============================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(16,15,12,0.72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 220; display: none; align-items: center; justify-content: center; padding: 22px; overflow-y: auto; }
.modal-overlay[aria-hidden="false"] { display: flex; }
.modal-box { background: var(--bg); border-radius: var(--r-lg); padding: 30px; max-width: 500px; width: 100%; position: relative; box-shadow: var(--shadow-lg); margin: auto; }
@media (min-width: 600px) { .modal-box { padding: 38px; } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); background: transparent; border: 1.5px solid var(--line); border-radius: var(--r-sm); }
.modal-close:hover { background: var(--ink); color: #fff; }
.modal-close svg { width: 16px; height: 16px; }
.modal-tag { display: inline-block; background: var(--yellow); color: var(--ink); padding: 5px 12px; border-radius: var(--r-pill); font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.modal-title { font-family: var(--f-display); font-size: 30px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 5px; }
.modal-sub { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 22px; }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 480ms var(--ease), transform 480ms var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 60ms; }
.reveal.d2 { transition-delay: 120ms; }
.reveal.d3 { transition-delay: 180ms; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================ EQUAL BUTTONS ON MOBILE ============================ */
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; width: 100%; max-width: 340px; margin-left: auto; margin-right: auto; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 100%; width: 100%; }
  .subhero-cta { flex-direction: column; width: 100%; }
  .subhero-cta .btn { width: 100%; }
}

/* ============================ LOGO IMAGE ============================ */
.brand-logo { display: inline-flex; align-items: center; flex-shrink: 0; background: transparent; padding: 0; }
.brand-logo img { height: 42px; width: auto; display: block; }
@media (min-width: 1024px) { .brand-logo img { height: 46px; } }
.mm-head .brand-logo img { height: 40px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 64px; width: auto; display: block; }

/* ============================ NAV DROPDOWN ============================ */
.nav-links > li.has-dropdown { position: relative; }
.nav-links > li.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-links > li.has-dropdown > a svg { width: 11px; height: 11px; transition: transform 0.2s var(--ease); }
.nav-links > li.has-dropdown:hover > a svg, .nav-links > li.has-dropdown:focus-within > a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: -10px; min-width: 248px; list-style: none; margin: 0;
  background: #fff; border: 2px solid var(--ink); box-shadow: 6px 6px 0 0 var(--ink); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease), visibility 0s linear 0.16s; z-index: 120;
}
.nav-links > li.has-dropdown:hover .dropdown, .nav-links > li.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.16s var(--ease), transform 0.16s var(--ease);
}
.dropdown li a { display: block; padding: 10px 12px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); border-left: 3px solid transparent; text-transform: none; letter-spacing: 0; transition: background 0.14s var(--ease), color 0.14s var(--ease), border-color 0.14s var(--ease); }
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--bg-soft); color: var(--ink); border-left-color: var(--yellow); }

/* ============================ MOBILE MENU SUB-LISTS ============================ */
.mm-section-header { margin-top: 22px; padding-bottom: 10px; font-family: var(--f-display); font-weight: 900; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow-dark); border-bottom: 2px solid var(--ink); }
.mm-section ul { list-style: none; }
.mm-section ul li a { display: block; padding: 12px 2px; font-size: 14px; font-weight: 700; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.mm-section ul li a:hover { color: var(--yellow-dark); }

/* ============================ SUBPAGE HERO ============================ */
.subhero { position: relative; background: var(--dark); color: var(--bg); padding: 46px var(--gap-pad) 50px; border-bottom: 8px solid var(--yellow); overflow: hidden; }
@media (min-width: 900px) { .subhero { padding: 60px var(--gap-pad) 66px; } }
.subhero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 130% at 82% 0%, rgba(255,196,0,0.1), transparent 58%); }
.subhero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(247,246,243,0.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(247,246,243,0.82); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: rgba(247,246,243,0.35); }
.subhero .eyebrow { margin-bottom: 16px; }
.subhero h1 { font-family: var(--f-display); font-weight: 900; font-size: clamp(30px, 4.4vw, 52px); letter-spacing: -0.03em; line-height: 1.02; text-transform: uppercase; color: #fff; max-width: 20ch; }
.subhero h1 .red { color: var(--yellow); background: none; padding: 0; }
.subhero p { font-size: clamp(16px, 1.4vw, 18px); color: rgba(247,246,243,0.84); line-height: 1.55; max-width: 60ch; margin-top: 16px; }
.subhero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ============================ DETAIL (service / area) ============================ */
.detail { background: var(--bg); }
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 980px) { .detail-grid { grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; } }
.prose h2 { font-family: var(--f-display); font-weight: 900; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.02em; text-transform: uppercase; line-height: 1.04; margin: 30px 0 14px; }
.prose > h2:first-child, .prose > *:first-child { margin-top: 0; }
.prose h3 { font-family: var(--f-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; margin: 22px 0 8px; }
.prose p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 14px; max-width: 66ch; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 14px 0 20px; }
.prose ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); line-height: 1.5; }
.prose ul li::before { content: ""; width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; border-radius: 50%; background: var(--yellow) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121110' stroke-width='3.5'><path d='M5 12l5 5L20 7'/></svg>") center / 12px no-repeat; }
.prose .imgwrap { border: 3px solid var(--ink); box-shadow: 8px 8px 0 0 var(--ink); margin: 20px 0 26px; overflow: hidden; aspect-ratio: 4/3; background: var(--surface-2); }
.prose .imgwrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.sidecard { background: var(--ink); color: #fff; border: 3px solid var(--ink); box-shadow: 8px 8px 0 0 var(--yellow); padding: 26px; }
@media (min-width: 980px) { .sidecard { position: sticky; top: 92px; } }
.sidecard h3 { font-family: var(--f-display); font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 8px; }
.sidecard p { font-size: 14px; color: rgba(247,246,243,0.78); line-height: 1.55; margin-bottom: 18px; }
.sidecard .scbtns { display: flex; flex-direction: column; gap: 10px; }
.sidecard .scbtns .btn { width: 100%; }
.sidecard .facts { list-style: none; margin-top: 18px; padding-top: 16px; border-top: 2px solid var(--dark-3); display: flex; flex-direction: column; gap: 11px; }
.sidecard .facts li { display: flex; gap: 10px; align-items: center; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(247,246,243,0.85); }
.sidecard .facts li svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }

/* ============================ RELATED + TILES ============================ */
.related { background: var(--bg-soft); border-top: 6px solid var(--yellow); }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; border: 2px solid var(--ink); padding: 16px 18px; font-family: var(--f-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; font-size: 15px; color: var(--ink); transition: background 150ms var(--ease); }
.related-card:hover { background: var(--yellow); }
.related-card svg { width: 16px; height: 16px; flex-shrink: 0; }
.tiles { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .tiles { grid-template-columns: repeat(3, 1fr); } }

/* ============================ BLOG ============================ */
.home-blog { background: var(--bg); border-top: 6px solid var(--yellow); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 680px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: flex; flex-direction: column; background: #fff; border: 3px solid var(--ink); box-shadow: 8px 8px 0 0 var(--ink); transition: transform 180ms var(--ease), box-shadow 180ms var(--ease); overflow: hidden; }
.post-card:hover { transform: translate(8px, 8px); box-shadow: 0 0 0 0 var(--ink); }
.post-card .ph { aspect-ratio: 4/3; border-bottom: 3px solid var(--ink); overflow: hidden; background: var(--surface-2); }
.post-card .ph img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 500ms var(--ease); }
@supports not (aspect-ratio: 1) { .post-card .ph { height: 200px; } }
.post-card:hover .ph img { transform: scale(1.06); }
.post-card .bd { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow-dark); }
.post-card h3 { font-family: var(--f-display); font-weight: 900; font-size: 19px; line-height: 1.12; text-transform: uppercase; letter-spacing: -0.02em; color: var(--ink); }
.post-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.post-card .more { font-family: var(--f-display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); display: inline-flex; gap: 7px; align-items: center; }
.post-card .more svg { width: 15px; height: 15px; }
.post-card:hover .more { color: var(--yellow-dark); }

/* ============================ ARTICLE (blog post) ============================ */
.article { background: var(--bg); }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-figure { border: 3px solid var(--ink); box-shadow: 8px 8px 0 0 var(--ink); overflow: hidden; margin-bottom: 28px; }
.article-figure img { width: 100%; display: block; }
.article .lead { font-size: 18px; color: var(--ink); font-weight: 600; line-height: 1.6; margin-bottom: 22px; }
.article-body h2 { font-family: var(--f-display); font-weight: 900; font-size: clamp(22px, 2.6vw, 28px); text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.06; margin: 30px 0 12px; }
.article-body p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.article-body strong { color: var(--ink); font-weight: 800; }
.article-body ul { margin: 8px 0 20px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; color: var(--ink-soft); line-height: 1.55; }
.article-body ul li::before { content: ""; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; border-radius: 50%; background: var(--yellow) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121110' stroke-width='3.5'><path d='M5 12l5 5L20 7'/></svg>") center / 12px no-repeat; }
.post-meta { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute); }
