/* ============================================================
   A&J Designs — "WORK ORDER" system
   Industrial-editorial · near-black + royal blue · sharp edges
   Display: Anton (poster headlines) · UI/body: Archivo · Mono: Space Mono
   ============================================================ */

:root {
  --blue:       #1E40AF;
  --blue-bright:#2C57E0;   /* large text / UI only on dark */
  --blue-on-dark:#6E8FF5;  /* AA-safe accent for SMALL text on ink */
  --blue-deep:  #142C7A;
  --ink:        #0C1018;
  --ink-2:      #141A26;   /* raised panels on ink */
  --paper:      #FFFFFF;
  --concrete:   #ECEEF2;   /* cool light section */
  --concrete-2: #E2E5EC;
  --line:       #D7DBE3;
  --line-ink:   rgba(255,255,255,.14);
  --fg:         #0C1018;
  --muted:      #5A6376;
  --fg-on-dark: #EAEDF4;
  --muted-on-dark: #9AA5BD;

  --maxw: 1280px;
  --pad: 40px;

  --f-display: "Anton", "Archivo", sans-serif;
  --f-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --f-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; font-family: var(--f-sans); color: var(--fg); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; line-height: 1.5;
  overflow-x: hidden;
}
h1,h2,h3,h4 { margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* let grid items shrink, and break long strings (emails, big numbers) so they
   never force the layout wider than the viewport */
.hero-grid > *, .why-grid > *, .about-grid > *, .cta-inner > *, .foot-grid > * { min-width: 0; }
.spec-card .row .v, .foot-col a, .nav-phone { overflow-wrap: anywhere; }

/* inline lucide icons (sprite via <use>) */
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---- display / mono helpers ---- */
.display { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; line-height: .9; letter-spacing: .01em; }
.kicker {
  font-family: var(--f-mono); font-size: 0.78rem; font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: currentColor; }
.kicker.on-dark { color: var(--blue-on-dark); }
.kicker.plain { color: var(--muted); }
.mono { font-family: var(--f-mono); }

.section { padding: 120px 0; }
.section-label { display: flex; align-items: baseline; gap: 18px; margin-bottom: 44px; flex-wrap: wrap; }
.section-label h2 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; line-height: .94;
  font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: .005em; }
.section-label .lead { max-width: 420px; color: var(--muted); font-size: 1.05rem; margin-left: auto; }

/* ============================================================
   BUTTONS — squared, bold, with sliding arrow
   ============================================================ */
.btn {
  --bg: var(--blue); --fg-btn: #fff; --bd: var(--blue);
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
  font-family: var(--f-sans); font-size: 0.98rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
  padding: 17px 24px; background: var(--bg); color: var(--fg-btn); border: 2px solid var(--bd);
  white-space: nowrap;
  transition: transform .14s var(--ease), background .18s, color .18s, border-color .18s, box-shadow .2s;
}
.btn .ar { display: inline-flex; transition: transform .2s var(--ease); }
.btn:hover .ar { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn--blue:hover { background: var(--blue-bright); border-color: var(--blue-bright); box-shadow: 6px 6px 0 var(--ink); }
.btn--ghost-dark { --bg: transparent; --fg-btn: #fff; --bd: rgba(255,255,255,.4); }
.btn--ghost-dark:hover { --bd: #fff; background: rgba(255,255,255,.08); }
.btn--white { --bg:#fff; --fg-btn: var(--ink); --bd:#fff; }
.btn--white:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn--sm { padding: 12px 18px; font-size: 0.85rem; }
.btn--lg { padding: 21px 30px; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60; background: var(--paper);
  border-bottom: 2px solid var(--ink); transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 10px 30px -20px rgba(12,16,24,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--f-mono); font-size: 0.8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 14px; color: var(--ink); position: relative;
}
.nav-links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--f-mono); font-weight: 700; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--blue); }
.hamburger { display: none; width: 48px; height: 48px; border: 2px solid var(--ink); background: #fff; color: var(--ink); align-items: center; justify-content: center; cursor: pointer; }
.hamburger svg { width: 22px; height: 22px; }

.mobile-menu { display: none; position: fixed; inset: 80px 0 auto 0; z-index: 55; background: var(--ink); padding: 12px var(--pad) 28px; }
.mobile-menu.open { display: block; animation: drop .22s var(--ease); }
@keyframes drop { from { opacity: 0; transform: translateY(-10px);} to { opacity: 1; transform: none; } }
.mobile-menu a { display: block; padding: 16px 4px; font-family: var(--f-display); font-size: 1.7rem; text-transform: uppercase; color: #fff; border-bottom: 1px solid var(--line-ink); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ============================================================
   HERO — Ink
   ============================================================ */
.hero-annot { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; line-height: .92; letter-spacing: .005em;
  font-size: clamp(3.1rem, 8.2vw, 7rem); }
.hero h1 .hl { color: var(--blue-bright); }
.hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.5; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.spec-row { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line-ink); }
.spec-row .spec { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: .04em; padding: 16px 26px 0 0; display: flex; align-items: center; gap: 9px; }
.spec-row .spec svg { width: 17px; height: 17px; color: var(--blue-bright); }

.hero--bold { position: relative; background: var(--ink); color: var(--fg-on-dark); overflow: hidden; }
.hero--bold .blueprint {
  position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: linear-gradient(var(--line-ink) 1px, transparent 1px), linear-gradient(90deg, var(--line-ink) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(120% 100% at 100% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 100% at 100% 0%, #000, transparent 72%);
}
.hero--bold .hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; gap: 30px; align-items: end;
  padding-top: 86px; padding-bottom: 0; min-height: 86vh; }
.hero--bold .col-text { padding-bottom: 86px; align-self: center; }
.hero--bold .hero-annot { color: var(--muted-on-dark); margin-bottom: 26px; }
.hero--bold .hero-annot b { color: var(--blue-on-dark); }
.hero--bold .lede { color: #C3CADB; margin: 26px 0 34px; }
.hero--bold .spec-row .spec { color: var(--fg-on-dark); }
.hero--bold .col-figure { position: relative; align-self: end; display: flex; justify-content: flex-end; }
.hero--bold .col-figure img { height: 86vh; max-height: 760px; width: auto; object-fit: contain; object-position: bottom; filter: drop-shadow(-20px 0 50px rgba(0,0,0,.5)); }
.hero--bold .figure-tag { position: absolute; left: -8px; top: 40px; writing-mode: vertical-rl; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-on-dark); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--blue); color: #fff; overflow: hidden; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.ticker-track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 32s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .02em; padding: 16px 0; display: inline-flex; align-items: center; }
.ticker-item::after { content: ""; width: 9px; height: 9px; background: #fff; transform: rotate(45deg); margin: 0 34px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES — ledger
   ============================================================ */
.services { background: var(--paper); }
.ledger { border-top: 3px solid var(--ink); }
.svc-row { position: relative; display: grid; grid-template-columns: 130px 1fr 1.1fr; gap: 28px; align-items: center;
  padding: 38px 0; border-bottom: 1px solid var(--line); transition: background .2s; }
.svc-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--blue); transition: width .22s var(--ease); }
.svc-row:hover { background: var(--concrete); }
.svc-row:hover::before { width: 6px; }
.svc-row:hover .svc-idx { color: var(--blue); }
.svc-idx { font-family: var(--f-display); font-size: clamp(3rem, 5vw, 4.4rem); line-height: .8; color: var(--line); transition: color .2s; padding-left: 24px; }
.svc-row:hover .svc-idx { padding-left: 30px; }
.svc-head h3 { font-family: var(--f-display); font-size: clamp(1.8rem, 3vw, 2.5rem); text-transform: uppercase; line-height: .98; }
.svc-head .svc-sub { font-family: var(--f-mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: inline-flex; align-items: center; gap: 9px; }
.svc-head .svc-sub svg { width: 16px; height: 16px; color: var(--blue); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tags span { font-family: var(--f-mono); font-size: .82rem; padding: 7px 12px; border: 1px solid var(--line); background: #fff; color: #2A3242; transition: border-color .15s, color .15s; }
.svc-row:hover .svc-tags span { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   HOUSEKEEPING — concrete band, Araceli feature
   ============================================================ */
.housekeeping { background: var(--concrete); position: relative; overflow: hidden; }
.hk-figure { position: absolute; right: 5%; bottom: 0; height: 92%; width: auto; opacity: .10; pointer-events: none; }
.hk-grid { position: relative; }
.hk-copy { max-width: 660px; }
.hk-copy h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(2.4rem, 4.6vw, 4rem); text-transform: uppercase; line-height: .96; margin: 22px 0 20px; }
.hk-copy .lead { color: var(--muted); font-size: 1.08rem; max-width: 560px; }
.hk-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hk-tags span { font-family: var(--f-mono); font-size: .84rem; padding: 9px 14px; border: 1px solid var(--line); background: #fff; color: #2A3242;
  display: inline-flex; align-items: center; gap: 8px; transition: border-color .15s, color .15s; }
.hk-tags span:hover { border-color: var(--blue); color: var(--blue); }
.hk-tags span svg { width: 15px; height: 15px; color: var(--blue); }
.hk-contact { margin-top: 36px; padding-top: 24px; border-top: 2px solid var(--ink); display: flex; flex-direction: column; gap: 8px; }
.hk-contact-k { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hk-phone { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; line-height: 1;
  display: inline-flex; align-items: center; gap: 14px; color: var(--blue); width: fit-content; }
.hk-phone svg { width: .75em; height: .75em; }

/* ============================================================
   WHY — ink band
   ============================================================ */
.why { background: var(--ink); color: var(--fg-on-dark); position: relative; overflow: hidden; }
.why .blueprint { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(var(--line-ink) 1px, transparent 1px), linear-gradient(90deg, var(--line-ink) 1px, transparent 1px); background-size: 46px 46px;
  mask-image: radial-gradient(120% 90% at 0% 100%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(120% 90% at 0% 100%, #000, transparent 70%); }
.why-figure { position: absolute; right: 3%; bottom: 0; height: 92%; width: auto; opacity: .9; pointer-events: none; }
/* stack the label and keep it in the left zone so it never overlaps the figure */
.why .section-label { flex-direction: column; align-items: flex-start; max-width: 600px; }
.why .section-label h2 { color: #fff; }
.why .section-label .lead { color: var(--muted-on-dark); margin-left: 0; margin-top: 18px; max-width: 540px; }
.why-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-ink); max-width: 70%; }
.why-card { padding: 34px 26px 34px 0; border-right: 1px solid var(--line-ink); }
.why-card:last-child { border-right: 0; }
.why-num { font-family: var(--f-mono); font-size: .8rem; letter-spacing: .14em; color: var(--blue-on-dark); }
.why-card h3 { font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase; line-height: 1.02; margin: 16px 0 12px; }
.why-card p { font-size: .96rem; color: var(--muted-on-dark); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--concrete); }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.about-photo { position: relative; }
.about-photo .ph-frame { position: relative; border: 2px solid var(--ink); overflow: hidden; }
/* show the full triptych (labels sit at the image edges) — no crop */
.about-photo .ph-frame img { width: 100%; height: auto; display: block; }
.about-photo .ph-cap { display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; border-top: 4px solid var(--blue);
  font-family: var(--f-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; padding: 13px 16px; }
.about-photo .ph-cap .ph-cap-tag { color: var(--blue-on-dark); }
.about-copy h2 { font-family: var(--f-display); font-size: clamp(2.4rem, 4.2vw, 3.6rem); text-transform: uppercase; line-height: .96; margin: 22px 0 22px; }
.about-copy p { font-size: 1.08rem; color: #2C3444; margin-bottom: 16px; max-width: 560px; }
.about-sig { margin-top: 30px; padding-top: 22px; border-top: 2px solid var(--ink); display: flex; align-items: center; gap: 16px; }
.about-sig .name { font-family: var(--f-display); font-size: 1.5rem; text-transform: uppercase; line-height: 1; }
.about-sig .role { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* ============================================================
   CONTACT / CTA — blue band
   ============================================================ */
.cta { background: var(--blue); color: #fff; position: relative; overflow: hidden; }
.cta .ph-grid { position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 46px 46px;
  mask-image: radial-gradient(110% 100% at 100% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(110% 100% at 100% 0%, #000, transparent 72%); }
.cta-figure { position: absolute; left: 0; bottom: 0; height: 90%; width: auto; opacity: .12; pointer-events: none; }
.cta .wrap { position: relative; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta .kicker { color: #BFD0F7; }
.cta h2 { font-family: var(--f-display); font-size: clamp(2.6rem, 5.4vw, 4.6rem); text-transform: uppercase; line-height: .94; margin: 20px 0 18px; }
.cta .lede { font-size: 1.15rem; color: #DCE3F7; max-width: 460px; margin-bottom: 30px; }
.cta-phone { display: inline-flex; align-items: center; gap: 16px; font-family: var(--f-display); font-size: clamp(2.2rem, 4.2vw, 3.4rem); text-transform: uppercase; line-height: 1; }
.cta-phone svg { width: .8em; height: .8em; }
.cta-numbers { display: flex; flex-direction: column; gap: 18px; }
.cta-numline { display: flex; flex-direction: column; gap: 5px; }
.cta-numlbl { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: #BFD0F7; display: inline-flex; align-items: center; gap: 9px; }
.cta-numlbl svg { width: 14px; height: 14px; }
.cta-num { font-family: var(--f-display); font-size: clamp(2rem, 3.8vw, 3rem); text-transform: uppercase; line-height: 1; color: #fff; }
.cta-numline:hover .cta-num { color: #EAF0FF; text-decoration: underline; text-underline-offset: 6px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.spec-card { background: var(--ink); border: 2px solid var(--ink); }
.spec-card .row { display: flex; gap: 18px; align-items: baseline; padding: 22px 26px; border-bottom: 1px solid var(--line-ink); }
.spec-card .row:last-child { border-bottom: 0; }
.spec-card .row .k { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-on-dark); width: 110px; flex: none; }
.spec-card .row .v { font-size: 1.06rem; font-weight: 600; color: #fff; }
.spec-card .row .v.big { font-family: var(--f-display); font-size: 1.7rem; text-transform: uppercase; letter-spacing: .01em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--muted-on-dark); padding: 72px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--line-ink); }
.foot-brand .brand-logo { height: 46px; }
.foot-brand p { margin-top: 18px; max-width: 280px; font-size: .96rem; }
.foot-col h4 { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: #8B96B2; margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; font-size: .98rem; color: #C3CCDF; margin-bottom: 12px; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-family: var(--f-mono); font-size: .8rem; letter-spacing: .06em; color: #8B96B2; text-transform: uppercase; }

/* ============================================================
   STICKY MOBILE CALL
   ============================================================ */
.mobile-call { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; }
.mobile-call .btn { width: 100%; justify-content: center; border-width: 0; border-top: 3px solid var(--ink); padding: 18px; font-size: 1.02rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .why-grid { max-width: 100%; grid-template-columns: 1fr 1fr; }
  .why-card { border-bottom: 1px solid var(--line-ink); }
  .why-card:nth-child(2) { border-right: 0; }
  .why-figure { opacity: .14; }
}
@media (max-width: 920px) {
  :root { --pad: 24px; }
  .section { padding: 84px 0; }
  .section-label { flex-direction: column; align-items: flex-start; }
  .section-label .lead { margin-left: 0; margin-top: 16px; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: inline-flex; }
  .hero--bold .hero-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 64px; }
  .hero--bold .col-text { padding-bottom: 56px; }
  .hero--bold .col-figure { display: none; }
  .svc-row { grid-template-columns: 84px 1fr; gap: 16px 20px; }
  .svc-tags { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { order: 2; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-figure { opacity: .12; }
  .mobile-call { display: block; }
  .nav-quote { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .section-label .lead { margin-left: 0; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-idx { padding-left: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: 0; padding-right: 0; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; justify-content: center; }
  .foot-grid { grid-template-columns: 1fr; }
  /* spec-card: stack label over value so long emails/numbers get full width */
  .spec-card .row { flex-direction: column; align-items: flex-start; gap: 5px; padding: 16px 18px; }
  .spec-card .row .k { width: auto; }
  .spec-card .row .v.big { font-size: 1.5rem; }
}

/* intermediate breakpoint — keep nav from cramping before it collapses */
@media (max-width: 1120px) and (min-width: 921px) {
  .nav-phone { display: none; }
  .nav-links a { padding: 10px 11px; }
}

/* ============================================================
   ACCESSIBILITY — focus, skip link
   ============================================================ */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
  font-family: var(--f-mono); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid var(--blue-bright); transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 3px solid var(--blue-on-dark); outline-offset: 3px; }
.btn:focus-visible { outline-offset: 4px; }
/* on light surfaces a deeper ring reads better */
.site-header :focus-visible, .services :focus-visible, .about :focus-visible { outline-color: var(--blue); }

/* ============================================================
   MOTION — entrance + scroll reveals
   ============================================================ */
@keyframes riseIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes figRise { from { opacity: 0; transform: translateY(46px); } to { opacity: 1; transform: none; } }

.hero .hero-annot { animation: riseIn .7s var(--ease) both; }
.hero h1          { animation: riseIn .8s .09s var(--ease) both; }
.hero .lede       { animation: riseIn .8s .19s var(--ease) both; }
.hero-actions     { animation: riseIn .8s .29s var(--ease) both; }
.hero .spec-row   { animation: riseIn .8s .39s var(--ease) both; }
.hero--bold .col-figure img { animation: figRise 1.05s .18s var(--ease) both; }

/* scroll reveal — gated behind .js-reveal so content is ALWAYS visible without JS */
.js-reveal .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-reveal .reveal.in { opacity: 1; transform: none; }
.ledger .svc-row.reveal { transition-delay: .04s; }
.ledger .svc-row:nth-child(2).reveal { transition-delay: .12s; }
.ledger .svc-row:nth-child(3).reveal { transition-delay: .20s; }
.ledger .svc-row:nth-child(4).reveal { transition-delay: .28s; }
.why-card:nth-child(1).reveal { transition-delay: .05s; }
.why-card:nth-child(2).reveal { transition-delay: .14s; }
.why-card:nth-child(3).reveal { transition-delay: .23s; }
.why-card:nth-child(4).reveal { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .ticker-track { animation: none !important; }
  .btn .ar { transition: none; }
}
