/* Mark 1 Electric — design system
   Palette centered on the badge logo (warm charcoal on cream) with an
   electric-amber current accent and a deep marine teal for the waterfront
   service line. Type pairing: Fraunces (variable serif, trade-editorial) +
   Manrope (rounded modern body) + JetBrains Mono (spec callouts). */
:root {
  --ink: #26291F;
  --ink-soft: #3B3E32;
  --paper: #F1EBDD;
  --paper-warm: #EAE0CB;
  --card: #FBF7ED;
  --current: #E19B1E;
  --current-deep: #B87A11;
  --current-glow: rgba(225,155,30,.22);
  --marine: #0F5F6C;
  --marine-deep: #0A424B;
  --stone: #8E877A;
  --line: rgba(38,41,31,.10);
  --line-strong: rgba(38,41,31,.20);
  --danger: #B5411B;
  --max: 1240px;
  --wide: 1440px;
  --radius: 3px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(38,41,31,.05), 0 10px 28px rgba(38,41,31,.09);
  --shadow-lift: 0 4px 14px rgba(38,41,31,.10), 0 28px 60px rgba(38,41,31,.15);
  --f-display: "Fraunces", "Playfair Display", Georgia, serif;
  --f-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: .5s;
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtFadeOut .18s var(--ease) both; }
::view-transition-new(root) { animation: vtFadeIn .22s var(--ease) both; }
@keyframes vtFadeOut { to { opacity: 0; } }
@keyframes vtFadeIn  { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01","cv11";
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.skip { position: absolute; left: -9999px; top: 0; padding: 12px 16px; background: var(--ink); color: var(--paper); z-index: 9999; }
.skip:focus { left: 12px; top: 12px; }

/* ============ TYPE ============ */
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--current-deep);
  font-weight: 500;
}
.eyebrow.marine { color: var(--marine); }
.eyebrow.stone  { color: var(--stone); }

h1, h2, h3, h4 { color: var(--ink); font-family: var(--f-display); font-weight: 500; letter-spacing: -.015em; font-variation-settings: "opsz" 144; line-height: 1.05; }
h1 { font-size: clamp(44px, 6.4vw, 96px); }
h2.section { font-size: clamp(32px, 4.2vw, 60px); line-height: 1.08; }
h2.section em { color: var(--current-deep); font-style: italic; font-variation-settings: "opsz" 60; }
h3.tile-title { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; font-variation-settings: "opsz" 40; }
h4 { font-size: 20px; line-height: 1.25; font-variation-settings: "opsz" 30; font-weight: 500; }

p.lede { font-family: var(--f-body); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.55; color: var(--ink-soft); max-width: 640px; font-weight: 400; }
p { color: var(--ink-soft); }

/* ============ CONTAINER / GRID ============ */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wide { max-width: var(--wide); }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* ============ NAV ============ */
.top-strip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.top-strip .container { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; gap: 20px; flex-wrap: wrap; }
.top-strip .bolt { color: var(--current); }
.top-strip a { border-bottom: 1px dashed rgba(241,235,221,.28); padding-bottom: 1px; }
.top-strip a:hover { color: var(--current); border-color: var(--current); }

header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241,235,221,.92);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}
header.nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; background: var(--card); padding: 2px; box-shadow: var(--shadow); }
.brand-name { font-family: var(--f-display); font-weight: 600; font-size: 18px; letter-spacing: .01em; font-variation-settings: "opsz" 24; }
.brand-sub  { font-family: var(--f-mono); font-size: 10px; letter-spacing: .24em; color: var(--stone); text-transform: uppercase; }
nav.primary { display: flex; align-items: center; gap: 4px; }
nav.primary > * { position: relative; }
nav.primary a, nav.primary button {
  padding: 10px 14px; font-size: 14px; font-weight: 500; color: var(--ink);
  border-radius: var(--radius); transition: color .18s var(--ease), background .18s var(--ease);
}
nav.primary a:hover, nav.primary button:hover { color: var(--current-deep); background: rgba(225,155,30,.08); }
nav.primary .menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: var(--card); border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow-lift);
  padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility 0s linear .16s;
}
nav.primary .has-menu:hover .menu, nav.primary .has-menu:focus-within .menu {
  opacity: 1; visibility: visible; transform: none; transition-delay: 0s;
}
nav.primary .menu a { display: block; padding: 8px 12px; font-size: 14px; font-weight: 500; border-radius: 4px; }
nav.primary .menu a:hover { background: var(--paper-warm); color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; font-family: var(--f-body); font-weight: 600; font-size: 14px; letter-spacing: .04em;
  border-radius: 999px; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  text-transform: uppercase;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); background: var(--marine-deep); }
.btn-current { background: var(--current); color: var(--ink); }
.btn-current:hover { transform: translateY(-1px); box-shadow: 0 8px 22px var(--current-glow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.mobile-toggle { display: none; }
@media (max-width: 900px) {
  nav.primary { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--card); flex-direction: column; align-items: stretch;
    padding: 12px; gap: 2px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  nav.primary.open { display: flex; }
  nav.primary a, nav.primary button { padding: 12px 14px; }
  nav.primary .has-menu:hover .menu, nav.primary .has-menu:focus-within .menu {
    position: static; box-shadow: none; border: 0; background: var(--paper-warm); margin: 2px 0;
  }
  nav.primary .menu { display: block; }
  .mobile-toggle { display: inline-flex; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius); font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0 clamp(72px, 9vw, 140px);
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--current-glow), transparent 60%),
    radial-gradient(900px 400px at -10% 90%, rgba(15,95,108,.15), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .95fr; gap: 56px; align-items: center; }
.hero .stamp {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
  background: var(--card);
}
.hero .stamp .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--current); box-shadow: 0 0 0 4px var(--current-glow); }
.hero h1 { margin-top: 22px; }
.hero h1 em { font-style: italic; color: var(--marine); font-variation-settings: "opsz" 96; }
.hero p.lede { margin-top: 22px; }
.hero .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero .proof-row { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.hero .proof-row strong { color: var(--ink); font-weight: 600; font-family: var(--f-body); font-size: 15px; letter-spacing: -.01em; text-transform: none; }
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--ink);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(38,41,31,0) 40%, rgba(38,41,31,.55));
}
.hero-photo .plate {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  color: var(--paper); font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 14px; background: rgba(11,12,10,.55); border-radius: 4px;
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { aspect-ratio: 4/3; }
}

/* ============ SPEC BAR ============ */
.spec-bar {
  background: var(--ink); color: var(--paper);
  border-top: 1px solid rgba(241,235,221,.08);
  border-bottom: 1px solid rgba(241,235,221,.08);
}
.spec-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-top: 28px; padding-bottom: 28px; }
.spec-bar .cell { display: flex; flex-direction: column; gap: 4px; }
.spec-bar .num { font-family: var(--f-display); font-size: clamp(32px, 4vw, 52px); font-weight: 500; font-variation-settings: "opsz" 96; color: var(--current); line-height: 1; }
.spec-bar .label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(241,235,221,.65); }
@media (max-width: 700px) { .spec-bar .container { grid-template-columns: repeat(2, 1fr); } }

/* ============ SECTION ============ */
section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }
section.dark { background: var(--ink); color: var(--paper); }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--paper); }
section.dark p, section.dark p.lede { color: rgba(241,235,221,.78); }
section.dark .eyebrow { color: var(--current); }
section.warm { background: var(--paper-warm); }
section.card { background: var(--card); }
section.marine { background: var(--marine-deep); color: var(--paper); }
section.marine h1, section.marine h2, section.marine h3, section.marine h4 { color: var(--paper); }
section.marine p { color: rgba(241,235,221,.78); }
section.marine .eyebrow { color: var(--current); }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head .lede { margin-top: 12px; }
.section-head .head-left { max-width: 720px; }

/* ============ SERVICE TILES ============ */
.tile {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.tile:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.tile .code { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; color: var(--current-deep); text-transform: uppercase; }
.tile .code.marine { color: var(--marine); }
.tile p { color: var(--ink-soft); }
.tile .learn { margin-top: auto; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.tile .learn .arrow { transition: transform .2s var(--ease); }
.tile:hover .learn { color: var(--current-deep); }
.tile:hover .learn .arrow { transform: translateX(4px); }

.tile.featured {
  background: linear-gradient(180deg, var(--marine) 0%, var(--marine-deep) 100%);
  color: var(--paper); border-color: transparent;
}
.tile.featured h3, .tile.featured h4 { color: var(--paper); }
.tile.featured p { color: rgba(241,235,221,.85); }
.tile.featured .code { color: var(--current); }
.tile.featured .learn { border-color: rgba(241,235,221,.18); color: var(--paper); }

/* ============ EDITORIAL SPLIT ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative; aspect-ratio: 5/6; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow-lift);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .caption {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--paper);
  background: rgba(11,12,10,.6); padding: 8px 12px; border-radius: 4px;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse .split-media { order: 0; } }

/* ============ PROCESS ============ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  padding: 28px 24px; background: var(--card); border-radius: 8px; border: 1px solid var(--line);
  position: relative;
}
.step .n { font-family: var(--f-display); font-size: 52px; font-weight: 500; color: var(--current); line-height: 1; font-variation-settings: "opsz" 96; }
.step h4 { margin-top: 16px; }
.step p { margin-top: 8px; font-size: 15px; }
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process { grid-template-columns: 1fr; } }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  padding: 32px 28px; background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  display: flex; flex-direction: column; gap: 16px;
}
.review .stars { color: var(--current); letter-spacing: 2px; font-size: 18px; }
.review blockquote { font-family: var(--f-display); font-style: italic; font-size: 20px; line-height: 1.4; color: var(--ink); font-variation-settings: "opsz" 30; font-weight: 400; }
.review cite { font-style: normal; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }

.review-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.review-badge .stars { color: var(--current); letter-spacing: 2px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 32px;
}
.contact-card h3 { font-size: 24px; margin-bottom: 10px; }
.contact-card .row { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed var(--line); gap: 16px; }
.contact-card .row:last-child { border-bottom: 0; }
.contact-card .label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); }
.contact-card .val { font-family: var(--f-body); font-weight: 600; font-size: 17px; color: var(--ink); }
.contact-card .val a:hover { color: var(--current-deep); }

form.lead { display: grid; gap: 16px; }
form.lead label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); display: flex; flex-direction: column; gap: 8px; }
form.lead input, form.lead select, form.lead textarea {
  font: 16px/1.5 var(--f-body); color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: 4px; padding: 12px 14px; letter-spacing: normal; text-transform: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
form.lead input:focus, form.lead select:focus, form.lead textarea:focus {
  outline: 0; border-color: var(--current); box-shadow: 0 0 0 3px var(--current-glow);
}
form.lead textarea { min-height: 120px; resize: vertical; }
form.lead .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { form.lead .row2 { grid-template-columns: 1fr; } }
form.lead .hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
form.lead .submit-row { display: flex; gap: 12px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
form.lead .privacy { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.form-status { margin-top: 12px; padding: 12px 14px; border-radius: 4px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; display: none; }
.form-status.ok { display: block; background: rgba(15,95,108,.12); color: var(--marine); border: 1px solid rgba(15,95,108,.35); }
.form-status.err { display: block; background: rgba(181,65,27,.12); color: var(--danger); border: 1px solid rgba(181,65,27,.35); }

/* ============ FAQ ============ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--f-display); font-size: 22px; font-weight: 500; font-variation-settings: "opsz" 30; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--f-mono); font-size: 24px; color: var(--current-deep); transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 12px; max-width: 780px; }

/* ============ CITY GRID ============ */
.city-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 1000px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
.city {
  padding: 20px 18px; background: var(--card); border: 1px solid var(--line); border-radius: 6px;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.city:hover { border-color: var(--current); transform: translateY(-2px); }
.city .name { font-family: var(--f-display); font-size: 20px; font-weight: 500; color: var(--ink); font-variation-settings: "opsz" 30; }
.city .zip { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }

/* ============ FOOTER ============ */
footer.site {
  background: var(--ink); color: var(--paper);
  padding: 72px 0 32px;
}
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { footer.site .cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--current); margin-bottom: 20px; }
footer.site a { display: block; padding: 6px 0; color: rgba(241,235,221,.75); font-size: 15px; transition: color .16s var(--ease); }
footer.site a:hover { color: var(--current); }
footer.site .brand-block img { width: 64px; height: 64px; border-radius: 50%; background: var(--paper); padding: 3px; margin-bottom: 16px; }
footer.site .brand-block p { color: rgba(241,235,221,.7); font-size: 14px; line-height: 1.6; max-width: 320px; margin-top: 10px; }
footer.site .brand-block .call { display: inline-block; margin-top: 20px; font-family: var(--f-display); font-size: 32px; color: var(--current); font-variation-settings: "opsz" 60; font-weight: 500; letter-spacing: -.01em; }
footer.site .brand-block .call:hover { color: var(--paper); }
footer.site .legal { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(241,235,221,.12); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(241,235,221,.5); }

/* ============ PAGE HEADER (sub-pages) ============ */
.page-hero {
  padding: clamp(56px, 7vw, 100px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(800px 400px at 90% -20%, var(--current-glow), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumbs { font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; }
.page-hero .breadcrumbs a:hover { color: var(--current-deep); }
.page-hero h1 { max-width: 900px; }
.page-hero p.lede { margin-top: 20px; max-width: 720px; }
.page-hero .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ ARTICLE BODY ============ */
.article { max-width: 780px; margin: 0 auto; }
.article h2 { font-size: clamp(28px, 3.2vw, 40px); margin-top: 56px; margin-bottom: 20px; font-variation-settings: "opsz" 60; }
.article h3 { font-size: 22px; margin-top: 32px; margin-bottom: 12px; font-variation-settings: "opsz" 30; }
.article p { margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 20px 24px; }
.article li { margin-bottom: 10px; color: var(--ink-soft); }
.article .callout {
  border-left: 3px solid var(--current); padding: 20px 24px; background: var(--card); margin: 32px 0;
  border-radius: 0 6px 6px 0;
}
.article .callout .eyebrow { margin-bottom: 6px; }
.article .callout p { margin: 0; }

.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.spec-table th, .spec-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); font-weight: 500; }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.divider-bolt { display: flex; justify-content: center; margin: 48px 0; }
.divider-bolt svg { width: 32px; height: 32px; color: var(--current); }

/* ============ REVEAL ANIM ============ */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }
