/* ==========================================================================
   J & L Auto and Marine — 586 Tenth Street, Hammonton NJ
   (J&L Automotive + Metal Is Metal, one shop)
   --------------------------------------------------------------------------
   PALETTE = THE LOGOS.
     Brief hexes, measured off the Metal Is Metal mark and the truck lettering:
       #f04800 primary · #d84818 deep · #d87848 copper
     J&L Automotive logo blue, measured off their logo file: #2c3e96
     Neutrals: steel ink + warm paper. Every hue on the site comes from these.
   TYPE: Anybody (italic, 100–125% width, 600–900) echoes the heavy extended
   oblique "AUTOMOTIVE" lettering. Asap for reading. Both self-hosted.
   MOTION: CSS only (Ken Burns, reveals, one scroll-drawn weld seam).
   Native scroll, nothing intercepts it. prefers-reduced-motion honoured.
   ========================================================================== */

@font-face {
  font-family: "Anybody";
  font-style: italic;
  font-weight: 600 900;
  font-stretch: 100% 125%;
  font-display: swap;
  src: url("/fonts/anybody-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Asap";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/asap-var.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --orange: #f04800;
  --rust: #d84818;
  --copper: #d87848;
  --orange-ink: #b33a00;           /* the brand orange, deepened for small text on paper (5.3:1) */
  --orange-lift: #ff5a1f;          /* the brand orange, lifted for accent words over photographs */
  --blue: #2c3e96;
  --blue-deep: #1f2d70;
  --blue-ink: #16204f;

  --ink: #141518;
  --ink-2: #1b1d21;
  --steel: #2a2d33;
  --steel-2: #3a3e46;
  --paper: #f3f1ec;
  --paper-2: #e8e4db;
  --white: #ffffff;
  --text: #1b1d21;
  --mute: #555a63;
  --mute-lt: #b9bcc3;
  --line: rgba(20, 21, 24, .14);
  --line-lt: rgba(255, 255, 255, .16);

  --display: "Anybody", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Asap", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --hdr-h: 66px;
  --wrap: 1240px;
  --pad: clamp(18px, 5vw, 44px);
  --sec: clamp(68px, 10vw, 132px);
  --r: 3px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 18px 40px -18px rgba(10, 11, 14, .45);
}
@media (min-width: 1000px) { :root { --hdr-h: 78px; } }

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--hdr-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
figure, blockquote { margin: 0; }
h1, h2, h3, h4, p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--orange); color: var(--ink); }
.sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--orange); color: var(--ink); font-weight: 700; padding: 10px 16px; border-radius: 2px; transition: top .2s; }
.skip:focus { top: 12px; }
.nb { white-space: nowrap; }

/* --------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.sec { padding-block: var(--sec); position: relative; }
.sec.tight { padding-block: clamp(52px, 7vw, 92px); }
.paper { background: var(--paper); }
.paper-2 { background: var(--paper-2); }
.white { background: var(--white); }
.dk { background: var(--ink); color: #eceae5; }
.dk2 { background: var(--ink-2); color: #eceae5; }
.bl { background: var(--blue-ink); color: #eef0f8; }

/* ----------------------------------------------------------------- type */
.d { font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 108%; letter-spacing: -.012em; line-height: .98; text-wrap: balance; }
.h1 { font-size: clamp(2.35rem, 10.4vw, 5.9rem); }
.h2 { font-size: clamp(2rem, 7.9vw, 4.1rem); }
.h3 { font-size: clamp(1.4rem, 4.8vw, 1.9rem); line-height: 1.04; }
.hl { color: var(--rust); }
.dk .hl, .dk2 .hl, .bl .hl { color: var(--orange); }
.hero .hl, .band .hl, .phero .hl, .cta .hl, .duo .hl { color: var(--orange-lift); }
.hl.blk { display: block; }
.lead { font-size: clamp(1.08rem, 2.6vw, 1.26rem); line-height: 1.55; color: var(--mute); max-width: 40em; text-wrap: pretty; }
.dk .lead, .dk2 .lead, .bl .lead, .band .lead, .hero .lead, .phero .lead { color: #d3d5da; }
p { text-wrap: pretty; }
.small { font-size: .95rem; color: var(--mute); }
.dk .small, .dk2 .small { color: var(--mute-lt); }

/* kicker tag: a skewed orange bar + italic caps, echoing the logo's slant */
.k { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 118%; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-ink); }
.k::before { content: ""; width: 26px; height: 10px; background: var(--orange); transform: skewX(-24deg); flex: none; }
.dk .k, .dk2 .k, .bl .k { color: var(--copper); }
.band .k, .phero .k, .cta .k, .duo .k { color: #fff; text-shadow: 0 1px 12px rgba(0, 0, 0, .6); }
.sec-head { display: grid; gap: 16px; margin-bottom: clamp(30px, 5vw, 56px); max-width: 860px; }
.sec-head.c { margin-inline: auto; text-align: center; justify-items: center; }

/* "//" runs */
.slashes { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: baseline; }
.slashes i { font-style: normal; color: var(--orange); font-weight: 700; }

/* weld seam: the signature rule. A bead of overlapping arcs, drawn on scroll. */
.seam { display: block; width: min(240px, 60%); height: 16px; color: var(--orange); }
.seam path { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.sec-head.c .seam { margin-inline: auto; }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .seam path { stroke-dasharray: 1; stroke-dashoffset: 1; animation: seam-draw linear both; animation-timeline: view(); animation-range: entry 5% cover 35%; }
    @keyframes seam-draw { to { stroke-dashoffset: 0; } }
  }
}

/* --------------------------------------------------------------- buttons */
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  --bb: var(--orange); --bc: var(--ink);
  position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 24px; color: var(--bc);
  font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 106%; font-size: .98rem; letter-spacing: .01em; line-height: 1.1;
  text-align: center; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--bb); transform: skewX(-12deg); border-radius: 2px; transition: background .2s var(--ease), box-shadow .2s var(--ease); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover::before { background: var(--bh, #ff5a14); box-shadow: 0 10px 24px -10px rgba(240, 72, 0, .7); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline-offset: 6px; }
.btn-g { --bb: transparent; --bc: #fff; }
.btn-g::before { border: 2px solid rgba(255, 255, 255, .78); }
.btn-g:hover::before { background: rgba(255, 255, 255, .1); box-shadow: none; }
.btn-i { --bb: var(--ink); --bc: #fff; --bh: #26282e; }
.btn-i:hover::before { box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .6); }
.btn-b { --bb: var(--blue); --bc: #fff; --bh: var(--blue-deep); }
.btn-b:hover::before { box-shadow: 0 10px 24px -12px rgba(44, 62, 150, .7); }
.btn-l { --bb: transparent; --bc: var(--ink); }
.btn-l::before { border: 2px solid var(--ink); }
.btn-l:hover::before { background: rgba(20, 21, 24, .06); box-shadow: none; }
.lnk { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 106%; font-size: .95rem; color: var(--blue); padding-block: 8px; }
.lnk svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.lnk:hover svg { transform: translateX(4px); }
.dk .lnk, .dk2 .lnk, .bl .lnk { color: var(--copper); }
.icon-btn { width: 46px; height: 46px; display: inline-grid; place-items: center; border-radius: 2px; color: var(--ink); touch-action: manipulation; }
.icon-btn svg { width: 24px; height: 24px; }

/* ---------------------------------------------------------------- header */
.util { display: none; }
@media (min-width: 1000px) {
  .util { display: block; background: var(--ink); color: #c9ccd2; font-size: .84rem; }
  .util .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 20px; }
  .util a { color: #fff; }
  .util a:hover { color: var(--copper); }
  .util .slashes i { color: var(--copper); }
  .util .u-cell { display: none; }
}
@media (min-width: 1200px) { .util .u-cell { display: contents; } }
.hdr { position: sticky; top: 0; z-index: 60; background: rgba(243, 241, 236, .96); border-bottom: 1px solid var(--line); transition: transform .28s var(--ease), box-shadow .28s var(--ease); padding-top: env(safe-area-inset-top); }
@supports (backdrop-filter: blur(10px)) { .hdr { background: rgba(243, 241, 236, .88); backdrop-filter: saturate(1.3) blur(12px); -webkit-backdrop-filter: saturate(1.3) blur(12px); } }
.hdr.solid { box-shadow: 0 10px 28px -20px rgba(10, 11, 14, .6); }
.hdr.up { transform: translateY(-110%); }
.hdr::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: linear-gradient(90deg, var(--orange) 0 34%, var(--blue) 34% 100%); transform: scaleX(var(--prog, 0)); transform-origin: 0 50%; }
.hdr-in { display: flex; align-items: center; gap: 12px; height: var(--hdr-h); }
.brand { display: flex; align-items: center; flex: none; margin-right: auto; }
.brand img { height: 40px; width: auto; max-width: min(232px, calc(100vw - 150px)); object-fit: contain; object-position: left center; background: none; }
@media (min-width: 1000px) { .brand img { height: 48px; max-width: 262px; } }
.nav { display: none; }
@media (min-width: 1180px) {
  .nav { display: flex; align-items: center; gap: 2px; }
  .nav a { position: relative; padding: 10px 11px; font-weight: 600; font-size: .96rem; color: var(--text); border-radius: 2px; }
  .nav a::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 3px; background: var(--orange); transform: scaleX(0) skewX(-24deg); transform-origin: 0 50%; transition: transform .25s var(--ease); }
  .nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1) skewX(-24deg); }
  .burger { display: none !important; }
}
.hdr-call { display: none; }
@media (min-width: 720px) { .hdr-call { display: inline-flex; min-height: 46px; padding: 0 18px; font-size: .92rem; } .hdr .icon-btn.call { display: none; } }
.hdr .icon-btn.call { color: var(--ink); background: none; position: relative; isolation: isolate; }
.hdr .icon-btn.call::before { content: ""; position: absolute; inset: 3px; z-index: -1; background: var(--orange); transform: skewX(-12deg); border-radius: 2px; }

/* mobile menu sheet */
.sheet { position: fixed; inset: 0; z-index: 90; background: var(--ink); color: #fff; display: flex; flex-direction: column; padding: calc(env(safe-area-inset-top) + 12px) var(--pad) calc(env(safe-area-inset-bottom) + 24px); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s; overflow-y: auto; overscroll-behavior: contain; }
.sheet.open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.sheet-top { display: flex; align-items: center; justify-content: space-between; min-height: 58px; }
.sheet-top img { height: 36px; width: auto; }
.sheet .icon-btn { color: #fff; }
.sheet nav { display: grid; margin-top: 18px; border-top: 1px solid var(--line-lt); }
.sheet nav a { display: flex; align-items: center; justify-content: space-between; padding: 17px 2px; border-bottom: 1px solid var(--line-lt); font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 108%; font-size: 1.32rem; }
.sheet nav a svg { width: 22px; height: 22px; color: var(--orange); }
.sheet nav a[aria-current="page"] { color: var(--copper); }
.sheet .btns { margin-top: 26px; display: grid; gap: 14px; }
.sheet-note { margin-top: 20px; color: var(--mute-lt); font-size: .95rem; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; isolation: isolate; display: grid; place-items: center; min-height: max(640px, calc(100svh - var(--hdr-h) - env(safe-area-inset-top))); padding: clamp(48px, 9vh, 96px) 0 clamp(56px, 9vh, 104px); color: #fff; text-align: center; overflow: hidden; background: var(--ink); }
@media (min-width: 1000px) { .hero { min-height: max(680px, calc(100svh - var(--hdr-h) - 38px)); } }
.hero-media, .phero-media, .moment-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media picture, .phero-media picture, .moment-media picture { display: block; width: 100%; height: 100%; }
.hero-media img, .phero-media img, .moment-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(90% 55% at 50% 52%, rgba(12, 13, 16, .72) 0%, rgba(12, 13, 16, .55) 55%, rgba(12, 13, 16, 0) 100%),
  linear-gradient(180deg, rgba(12, 13, 16, .6) 0%, rgba(12, 13, 16, .42) 35%, rgba(12, 13, 16, .5) 60%, rgba(12, 13, 16, .86) 100%); }
.kb img { animation: kb 26s ease-in-out infinite alternate; transform-origin: 56% 50%; will-change: transform; }
@keyframes kb { from { transform: scale(1.02) translate3d(0, 0, 0); } to { transform: scale(1.13) translate3d(-1.6%, -1.2%, 0); } }
html.motion-off .kb img { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .kb img { animation: none; transform: scale(1.04); } }
.hero-in { width: 100%; max-width: 940px; margin-inline: auto; padding-inline: var(--pad); display: grid; justify-items: center; gap: 18px; }
.hero-logo { width: min(80vw, 540px); height: auto; filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .45)); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(255, 255, 255, .34); border-radius: 999px; background: rgba(12, 13, 16, .45); font-size: .9rem; font-weight: 600; letter-spacing: .02em; color: #fff; }
.pill svg { width: 17px; height: 17px; color: var(--orange); }
.hero h1 { text-shadow: 0 2px 30px rgba(0, 0, 0, .45); }
.hero .lead { max-width: 34em; margin-inline: auto; color: #e6e7ea; }
.hero .btns { justify-content: center; margin-top: 6px; }
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 8px; font-size: .92rem; font-weight: 600; color: #e9eaed; }
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 18px; height: 18px; color: var(--copper); flex: none; }
.trust .stars { color: var(--orange); letter-spacing: 1px; }
.motion-btn { position: absolute; right: max(14px, env(safe-area-inset-right)); bottom: 14px; z-index: 3; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; background: rgba(12, 13, 16, .55); border: 1px solid rgba(255, 255, 255, .3); color: #fff; }
.motion-btn svg { width: 16px; height: 16px; }
.motion-btn .i-play { display: none; }
html.motion-off .motion-btn .i-play { display: block; }
html.motion-off .motion-btn .i-pause { display: none; }
.motion-btn .mb-l { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* page hero (inner pages) */
.phero { position: relative; isolation: isolate; color: #fff; overflow: hidden; background: var(--ink); padding: clamp(84px, 16vw, 168px) 0 clamp(54px, 9vw, 96px); }
.phero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12, 13, 16, .6) 0%, rgba(12, 13, 16, .7) 40%, rgba(12, 13, 16, .9) 100%), linear-gradient(90deg, rgba(12, 13, 16, .76) 0%, rgba(12, 13, 16, .38) 60%, rgba(12, 13, 16, .1) 100%); }
.phero .wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.phero .h1 { font-size: clamp(2.05rem, 8.9vw, 5.2rem); }
.d { overflow-wrap: break-word; }
.phero .lead { max-width: 36em; }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px 10px; font-size: .88rem; color: #c9ccd2; }
.crumbs a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .35); text-underline-offset: 3px; }
.crumbs a:hover { color: var(--copper); }

/* ribbon under the hero */
.ribbon { background: var(--orange); color: var(--ink); overflow: hidden; }
.ribbon .wrap { padding-block: 15px; }
.ribbon .slashes { justify-content: center; font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 112%; font-size: clamp(.92rem, 2.6vw, 1.14rem); text-transform: uppercase; letter-spacing: .02em; }
.ribbon .slashes i { color: var(--ink); opacity: .5; }

/* ------------------------------------------------------------ photo frames */
.ph { display: block; position: relative; overflow: hidden; background: var(--steel); border-radius: var(--r); }
.ph img { width: 100%; height: 100%; object-fit: cover; background: none; transition: transform .7s var(--ease); }
.ph.r43 { aspect-ratio: 4 / 3; }
.ph.r32 { aspect-ratio: 3 / 2; }
.ph.r169 { aspect-ratio: 16 / 9; }
.ph.r45 { aspect-ratio: 4 / 5; }
.ph.r11 { aspect-ratio: 1 / 1; }
.ph.r34 { aspect-ratio: 3 / 4; }
.cap { display: block; margin-top: 10px; font-size: .9rem; color: var(--mute); line-height: 1.45; }
.dk .cap, .dk2 .cap, .bl .cap { color: var(--mute-lt); }
.cap b { color: var(--text); font-weight: 700; }
.dk .cap b, .dk2 .cap b, .bl .cap b { color: #fff; }
.tagc { position: absolute; left: 12px; top: 12px; z-index: 2; padding: 5px 10px 5px 12px; font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 112%; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); background: var(--orange); transform: skewX(-12deg); }
.tagc > span { display: inline-block; transform: skewX(12deg); }
.tagc.b { background: var(--blue); color: #fff; }
.tagc.i { background: var(--ink); color: #fff; }

/* ------------------------------------------------ intro: two shops, one roof */
.intro { display: grid; gap: clamp(30px, 5vw, 64px); align-items: center; }
.intro-vis { position: relative; }
.intro-vis .ph.main { aspect-ratio: 5 / 4; box-shadow: var(--shadow); }
.intro-vis .ph.sub { position: absolute; right: -6px; bottom: -34px; width: 44%; aspect-ratio: 1 / 1; border: 5px solid var(--paper); box-shadow: var(--shadow); }
.intro-copy { display: grid; gap: 18px; }
.marks { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 22px 0 4px; border-top: 1px solid var(--line); margin-top: 8px; }
.marks .mk { display: grid; gap: 6px; }
.marks img { height: 40px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; background: none; }
.marks p { font-size: .95rem; color: var(--mute); }
@media (min-width: 600px) { .marks { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) {
  .intro { grid-template-columns: 1.08fr 1fr; }
  .intro-vis .ph.sub { right: -34px; bottom: -40px; width: 40%; }
}
.quote-inline { border-left: 4px solid var(--orange); padding: 4px 0 4px 18px; font-family: var(--display); font-style: italic; font-weight: 750; font-stretch: 104%; font-size: clamp(1.15rem, 3.2vw, 1.4rem); line-height: 1.25; }
.quote-inline cite { display: block; margin-top: 8px; font-family: var(--body); font-style: normal; font-weight: 600; font-size: .9rem; color: var(--mute); }

/* ------------------------------------------------------ services: numbered */
.svc-list { display: grid; gap: clamp(46px, 7vw, 92px); }
.svc { display: grid; gap: 22px; align-items: center; position: relative; }
.svc-vis { position: relative; }
.svc-vis .ph { aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.svc-num { position: absolute; z-index: 2; top: -30px; left: -4px; font-family: var(--display); font-style: italic; font-weight: 900; font-stretch: 125%; font-size: clamp(4.4rem, 17vw, 8.8rem); line-height: .8; color: var(--orange); letter-spacing: -.04em; text-shadow: 0 4px 22px rgba(0, 0, 0, .25); pointer-events: none; }
.svc-body { display: grid; gap: 12px; }
.svc-body p { color: var(--mute); max-width: 36em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chips li { padding: 6px 12px; border: 1px solid var(--line); border-radius: 2px; background: var(--white); font-size: .88rem; font-weight: 600; color: var(--text); }
.dk .chips li, .dk2 .chips li { background: rgba(255, 255, 255, .06); border-color: var(--line-lt); color: #eceae5; }
@media (min-width: 900px) {
  .svc { grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 5vw, 72px); }
  .svc:nth-child(even) .svc-vis { order: 2; }
  .svc:nth-child(even) .svc-num { left: auto; right: -8px; }
  .svc-num { top: -44px; left: -18px; }
}

/* --------------------------------------------------- frame rebuild strip */
.steps4 { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(262px, 78vw); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--pad) 18px; margin-inline: calc(var(--pad) * -1); scrollbar-width: thin; scrollbar-color: var(--orange) transparent; overscroll-behavior-x: contain; }
.steps4 > li { scroll-snap-align: start; position: relative; display: grid; gap: 12px; align-content: start; }
.steps4 .ph { aspect-ratio: 4 / 3; }
.step-n { display: flex; align-items: baseline; gap: 12px; }
.step-n b { font-family: var(--display); font-style: italic; font-weight: 900; font-stretch: 120%; font-size: 2.1rem; line-height: 1; color: var(--orange); }
.step-n span { font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 108%; font-size: 1.12rem; line-height: 1.1; color: #fff; }
.steps4 p { font-size: .95rem; color: var(--mute-lt); }
@media (min-width: 1000px) {
  .steps4 { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; margin-inline: 0; padding: 0; }
  .steps4 > li:not(:last-child)::after { content: ""; position: absolute; top: calc((100% - 0px) * 0 + 24%); right: -14px; width: 12px; height: 12px; border-top: 3px solid var(--orange); border-right: 3px solid var(--orange); transform: rotate(45deg); }
}
.rail-hint { display: flex; align-items: center; gap: 8px; margin-top: 4px; font-size: .88rem; color: var(--mute-lt); }
.rail-hint svg { width: 18px; height: 18px; color: var(--orange); }
@media (min-width: 1000px) { .rail-hint { display: none; } }
.split-head { display: grid; gap: 18px; margin-bottom: clamp(28px, 4vw, 48px); }
@media (min-width: 960px) { .split-head { grid-template-columns: 1.1fr 1fr; align-items: end; gap: 48px; } }

/* ------------------------------------------------------------ machine shop */
.ms { display: grid; gap: clamp(30px, 5vw, 60px); }
.ms-collage { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; gap: 10px; }
.ms-collage .ph:first-child { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
.ms-collage .ph { aspect-ratio: 4 / 3; }
.work-order { display: grid; gap: 0; margin-top: 8px; border-top: 2px solid var(--ink); }
.work-order li { display: grid; grid-template-columns: 2.4em 1fr; gap: 10px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); }
.work-order li b { font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 112%; color: var(--orange-ink); font-size: .9rem; }
.work-order li span { font-weight: 600; }
.work-order li small { display: block; font-weight: 400; color: var(--mute); font-size: .92rem; }
@media (min-width: 960px) { .ms { grid-template-columns: 1fr 1.05fr; align-items: center; } }

/* ---------------------------------------------------- full-bleed moments */
.band { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: var(--ink); padding: clamp(92px, 16vw, 190px) 0; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 60% at 50% 50%, rgba(12, 13, 16, .55), rgba(12, 13, 16, 0) 100%), linear-gradient(180deg, rgba(12, 13, 16, .7), rgba(12, 13, 16, .6) 45%, rgba(12, 13, 16, .84)); }
.band:not(.c)::before { background: linear-gradient(90deg, rgba(12, 13, 16, .82) 0%, rgba(12, 13, 16, .66) 55%, rgba(12, 13, 16, .4) 100%), linear-gradient(180deg, rgba(12, 13, 16, .4), rgba(12, 13, 16, .2) 50%, rgba(12, 13, 16, .6)); }
.band.c { text-align: center; }
.band-in { display: grid; gap: 18px; max-width: 900px; }
.band.c .band-in { margin-inline: auto; justify-items: center; }
.bigq { font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 108%; font-size: clamp(1.9rem, 7vw, 3.9rem); line-height: 1.02; letter-spacing: -.01em; text-wrap: balance; text-shadow: 0 2px 28px rgba(0, 0, 0, .5); }
.bigq .hl { color: var(--orange); }
.bigq-cite { font-weight: 600; color: #e1e3e7; font-size: 1rem; }
.bigq-cite span { color: var(--copper); }
.qmark { width: 58px; height: 44px; color: var(--orange); }

/* ------------------------------------------------------------------ reviews */
.rev-top { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 18px 30px; margin-bottom: clamp(26px, 4vw, 44px); }
.rating { display: inline-flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 2px; }
.rating { transition: border-color .2s; }
.rating:hover { border-color: var(--ink); }
.rating .num { font-family: var(--display); font-style: italic; font-weight: 900; font-stretch: 115%; font-size: 2rem; line-height: 1; color: var(--ink); }
.rating .stars { color: var(--orange); font-size: 1.05rem; letter-spacing: 2px; }
.rating small { display: block; font-size: .86rem; color: var(--mute); }
.rev-rail { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 84vw); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--pad) 22px; margin-inline: calc(var(--pad) * -1); scrollbar-width: thin; scrollbar-color: var(--orange) transparent; overscroll-behavior-x: contain; }
@media (min-width: 760px) { .rev-rail { grid-auto-columns: minmax(340px, 44%); } }
@media (min-width: 1180px) { .rev-rail { grid-auto-columns: calc((100% - 32px - var(--pad) * 2) / 3); } }
.rev { scroll-snap-align: start; display: flex; flex-direction: column; gap: 16px; padding: 26px 24px 22px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--orange); border-radius: 2px; }
.rev:nth-child(3n+2) { border-top-color: var(--blue); }
.rev .stars { color: var(--orange); letter-spacing: 2px; font-size: 1.02rem; }
.stars .off { color: #c9c6be; }
.rev blockquote { font-size: 1.02rem; line-height: 1.58; color: var(--text); flex: 1; }
.rev figcaption { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.rev .av { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--display); font-style: italic; font-weight: 850; font-size: .95rem; flex: none; }
.rev:nth-child(3n+2) .av { background: var(--blue); }
.rev .who b { display: block; font-weight: 700; }
.rev .who small { color: var(--mute); font-size: .85rem; }
.rail-ctl { display: none; gap: 10px; }
@media (min-width: 760px) { .rail-ctl { display: flex; } }
.rail-ctl button { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 2px; color: var(--ink); transition: background .2s, color .2s; }
.rail-ctl button:hover { background: var(--ink); color: #fff; }
.rail-ctl svg { width: 20px; height: 20px; }
.rev-note { margin-top: 8px; font-size: .9rem; color: var(--mute); }
.rev-note a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------ boats & big rigs */
.duo { display: grid; }
.duo-p { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(460px, 92vw, 640px); display: grid; align-items: end; color: #fff; background: var(--ink); }
.duo-p .moment-media img { transition: transform 1.2s var(--ease); }
.duo-p:hover .moment-media img { transform: scale(1.04); }
.duo-p::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12, 13, 16, .12) 0%, rgba(12, 13, 16, .62) 38%, rgba(12, 13, 16, .9) 62%, rgba(12, 13, 16, .96) 100%); }
.duo-in { display: grid; gap: 14px; padding: clamp(28px, 5vw, 56px) var(--pad); max-width: 640px; }
.duo-in p { color: #dfe1e5; }
.duo .lnk { color: #ffb28f; }
@media (min-width: 900px) { .duo { grid-template-columns: 1fr 1fr; } .duo-p { min-height: 660px; } }

/* ----------------------------------------------------------------- gallery */
.gal { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gal figure { position: relative; }
.gal .ph { aspect-ratio: 1 / 1; height: 100%; }
.gal .w2 { grid-column: span 2; }
.gal .w2 .ph { aspect-ratio: 16 / 9; }
@media (max-width: 819px) { .gal .m-hide { display: none; } .ribbon .slashes { font-size: .8rem; gap: 4px 9px; } .ribbon .wrap { padding-block: 12px; } .svc-list { gap: 40px; } }
@media (max-width: 599px) { .svc .chips { display: none; } }
.gal figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 12px 10px; font-size: .84rem; font-weight: 600; line-height: 1.3; color: #fff; background: linear-gradient(180deg, rgba(12, 13, 16, 0) 0, rgba(12, 13, 16, .86) 24%, rgba(12, 13, 16, .96) 50%); border-radius: 0 0 var(--r) var(--r); pointer-events: none; }
.gal figure:hover img { transform: scale(1.05); }
@media (min-width: 820px) {
  .gal { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 10px; }
  .gal .ph, .gal .w2 .ph { aspect-ratio: auto; height: 100%; }
  .gal .t2 { grid-row: span 2; }
}

/* ------------------------------------------------------------------- visit */
.visit { display: grid; gap: clamp(30px, 5vw, 60px); }
.visit-vis .ph { aspect-ratio: 16 / 10; box-shadow: var(--shadow); }
.hours { display: grid; margin-top: 6px; border-top: 2px solid var(--ink); }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.hours dt { font-weight: 700; }
.hours dd { color: var(--text); text-align: right; }
.hours .closed dd { color: var(--mute); }
.hours .today dt::after { content: "Today"; margin-left: 10px; padding: 2px 8px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); background: var(--orange); border-radius: 2px; vertical-align: 2px; }
.appt { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 2px; font-size: .96rem; }
.appt svg { width: 22px; height: 22px; color: var(--blue); flex: none; margin-top: 2px; }
.near { font-size: .95rem; color: var(--mute); }
@media (min-width: 960px) { .visit { grid-template-columns: 1.05fr 1fr; align-items: center; } }

/* --------------------------------------------------------------------- FAQ */
.faq { display: grid; gap: clamp(26px, 4vw, 56px); }
@media (min-width: 960px) { .faq { grid-template-columns: .85fr 1.15fr; align-items: start; } .faq-side { position: sticky; top: calc(var(--hdr-h) + 28px); } }
.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 2px solid var(--ink); }
.qa summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; cursor: pointer; list-style: none; font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 104%; font-size: clamp(1.04rem, 2.8vw, 1.2rem); line-height: 1.2; }
.qa summary::-webkit-details-marker { display: none; }
.qa .pm { width: 34px; height: 34px; display: grid; place-items: center; flex: none; color: var(--ink); background: var(--paper-2); border-radius: 2px; transition: transform .25s var(--ease), background .2s; }
.qa .pm svg { width: 18px; height: 18px; }
.qa[open] .pm { transform: rotate(45deg); background: var(--orange); }
.qa .ans { padding: 0 0 22px; color: var(--mute); max-width: 42em; }
.qa .ans a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------------------------------------- contact + form */
.contact { display: grid; gap: clamp(30px, 5vw, 64px); }
@media (min-width: 980px) { .contact { grid-template-columns: 1.05fr .95fr; align-items: start; } }
.form-card { background: var(--white); border: 1px solid var(--line); border-top: 5px solid var(--orange); border-radius: 2px; padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow); }
.form-card .fc-h { font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 108%; font-size: clamp(1.45rem, 4vw, 1.9rem); line-height: 1.05; }
.form-card > p { margin-top: 8px; color: var(--mute); }
.form { display: grid; gap: 16px; margin-top: 22px; }
.row2 { display: grid; gap: 16px; }
@media (min-width: 560px) { .row2 { grid-template-columns: 1fr 1fr; } }
.fld { display: grid; gap: 7px; border: 0; margin: 0; padding: 0; min-width: 0; }
.fld label, .fld legend { font-weight: 700; font-size: .95rem; padding: 0; }
.fld .opt { font-weight: 400; color: var(--mute); }
.fld input, .fld textarea { width: 100%; min-height: 50px; padding: 12px 14px; font-size: 1rem; background: var(--paper); border: 1.5px solid #cfcbc1; border-radius: 2px; transition: border-color .2s, background .2s, box-shadow .2s; }
.fld textarea { min-height: 116px; resize: vertical; line-height: 1.5; }
.fld input:hover, .fld textarea:hover { border-color: #a9a498; }
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(44, 62, 150, .18); }
.fld input[aria-invalid="true"] { border-color: var(--rust); }
.pick { display: flex; flex-wrap: wrap; gap: 8px; }
.pick label { position: relative; cursor: pointer; }
.pick input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.pick span { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px; font-weight: 600; font-size: .94rem; background: var(--paper); border: 1.5px solid #cfcbc1; border-radius: 2px; transition: background-color .18s, border-color .18s, color .18s; }
.pick input:hover + span { border-color: var(--ink); }
.pick input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.pick input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form .btn { justify-self: start; margin-top: 4px; }
.form-msg { margin-top: 14px; font-size: .96rem; }
.form-msg:empty { display: none; }
.form-msg.ok { padding: 14px 16px; background: #e9f3ea; border-left: 4px solid #2f7d3b; }
.form-msg.err { padding: 14px 16px; background: #fbeee8; border-left: 4px solid var(--rust); }
.form-msg p { margin-bottom: 10px; }
.form-msg a, .form-msg .copy { display: inline-flex; align-items: center; min-height: 44px; margin: 4px 14px 0 0; font-weight: 700; color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.direct { display: grid; gap: 18px; }
.lines { display: grid; gap: 10px; margin-top: 4px; }
.lines a, .lines > div { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 2px; transition: border-color .2s, transform .2s var(--ease); }
.lines a:hover { border-color: var(--ink); transform: translateX(3px); }
.lines .ic { width: 44px; height: 44px; display: grid; place-items: center; flex: none; background: var(--ink); color: var(--orange); border-radius: 2px; }
.lines .ic svg { width: 21px; height: 21px; }
.lines a > span:last-child, .lines > div > span:last-child { min-width: 0; }
.lines b { display: block; font-weight: 700; font-size: 1.05rem; line-height: 1.25; overflow-wrap: anywhere; }
.lines small { display: block; color: var(--mute); font-size: .88rem; }

/* ----------------------------------------------------------- CTA band */
.cta { position: relative; isolation: isolate; overflow: hidden; background: var(--blue-ink); color: #fff; padding: clamp(70px, 11vw, 128px) 0; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(22, 32, 79, .96) 0%, rgba(22, 32, 79, .9) 55%, rgba(22, 32, 79, .7) 100%); }
.cta .band-in { max-width: 760px; }
.cta .lead { color: #dde0ee; }


/* --------------------------------------------------- inner page components */
.two { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 960px) { .two { grid-template-columns: 1fr 1fr; } .two.flip > :first-child { order: 2; } }
.two .ph { aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.prose { display: grid; gap: 16px; }
.prose p { color: var(--mute); max-width: 38em; }
.dk .prose p, .dk2 .prose p { color: #cfd2d8; }
.tiles { display: grid; gap: 14px; }
@media (min-width: 640px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .tiles.t3 { grid-template-columns: repeat(3, 1fr); } .tiles.t4 { grid-template-columns: repeat(4, 1fr); } }
.tile { position: relative; display: grid; gap: 10px; align-content: start; padding: 24px 22px 22px; background: var(--white); border: 1px solid var(--line); border-radius: 2px; }
.tile::before { content: ""; position: absolute; top: -1px; left: 22px; width: 38px; height: 5px; background: var(--orange); transform: skewX(-24deg); }
.tile:nth-child(4n+2)::before, .tile:nth-child(4n+3)::before { background: var(--blue); }
.tile h3 { font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 106%; font-size: 1.2rem; line-height: 1.1; }
.tile p { color: var(--mute); font-size: .98rem; }
.dk .tile, .dk2 .tile { background: rgba(255, 255, 255, .04); border-color: var(--line-lt); }
.dk .tile p, .dk2 .tile p { color: #c7cad1; }
.photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.photo-row .ph { aspect-ratio: 1 / 1; }
.photo-row .w2 { grid-column: span 2; }
.photo-row .w2 .ph { aspect-ratio: 16 / 9; }
@media (min-width: 860px) { .photo-row { grid-template-columns: repeat(4, 1fr); gap: 10px; } .photo-row .w2 .ph, .photo-row .ph { aspect-ratio: 4 / 3; } .photo-row.p3 { grid-template-columns: repeat(3, 1fr); } }
.photo-row figure .cap { margin-top: 8px; font-size: .86rem; }
.pull { display: grid; gap: 16px; padding: clamp(26px, 4vw, 44px); background: var(--white); border: 1px solid var(--line); border-left: 6px solid var(--orange); border-radius: 2px; max-width: 900px; }
.pull blockquote { font-family: var(--body); font-weight: 500; font-size: clamp(1.1rem, 2.6vw, 1.32rem); line-height: 1.55; color: var(--text); }
.pull blockquote p::before { content: "\201C"; margin-right: .06em; color: var(--orange-ink); font-family: var(--display); font-weight: 900; }
.pull blockquote p::after { content: "\201D"; margin-left: .04em; color: var(--orange-ink); font-family: var(--display); font-weight: 900; }
.pull figcaption { font-weight: 600; color: var(--mute); font-size: .95rem; }
.pull .stars { color: var(--orange); letter-spacing: 2px; }
.xlinks { display: grid; gap: 10px; }
@media (min-width: 700px) { .xlinks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .xlinks { grid-template-columns: repeat(4, 1fr); } }
.xlink { position: relative; isolation: isolate; display: grid; align-content: end; min-height: 190px; padding: 18px; overflow: hidden; color: #fff; border-radius: 2px; background: var(--ink); }
.xlink img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.xlink::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12, 13, 16, .15), rgba(12, 13, 16, .88)); }
.xlink:hover img { transform: scale(1.06); }
.xlink b { font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 108%; font-size: 1.25rem; line-height: 1.05; }
.xlink span { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: .9rem; color: var(--copper); font-weight: 700; }
.xlink span svg { width: 16px; height: 16px; }
.svc-grid { display: grid; gap: 14px; }
@media (min-width: 720px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } .svc-grid .big { grid-column: span 2; } }
.svc-card { position: relative; isolation: isolate; display: grid; align-content: end; gap: 8px; min-height: 340px; padding: clamp(20px, 3vw, 30px); color: #fff; overflow: hidden; border-radius: 2px; background: var(--ink); }
.svc-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12, 13, 16, .12) 20%, rgba(12, 13, 16, .9) 100%); }
.svc-card:hover img { transform: scale(1.05); }
.svc-card .n { font-family: var(--display); font-style: italic; font-weight: 900; font-stretch: 122%; font-size: 2.6rem; line-height: 1; color: var(--orange); }
.svc-card h2, .svc-card h3 { font-family: var(--display); font-style: italic; font-weight: 850; font-stretch: 108%; font-size: clamp(1.45rem, 3.4vw, 1.9rem); line-height: 1.02; }
.svc-card p { color: #dfe1e5; font-size: .98rem; max-width: 30em; }
.svc-card .go { display: inline-flex; align-items: center; gap: 8px; color: var(--copper); font-weight: 700; }
.svc-card .go svg { width: 18px; height: 18px; transition: transform .2s; }
.svc-card:hover .go svg { transform: translateX(4px); }
.checks { display: grid; gap: 10px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks svg { width: 22px; height: 22px; flex: none; color: var(--orange); margin-top: 1px; }
.note-row { font-size: .9rem; color: var(--mute); }

/* ------------------------------------------------------------------- footer */
.ftr { background: var(--ink); color: #c9ccd2; padding: clamp(60px, 8vw, 96px) 0 calc(28px + env(safe-area-inset-bottom)); }
.ftr-top { display: grid; gap: 40px; }
.ftr-brand { display: grid; gap: 18px; max-width: 460px; }
.ftr-brand .lg { width: min(300px, 80%); height: auto; }
.ftr-brand .mim { width: min(260px, 70%); height: auto; opacity: .95; }
.ftr-brand p { font-size: .98rem; }
.ftr-cols { display: grid; gap: 30px; grid-template-columns: 1fr 1fr; }
.ftr .fh { margin-bottom: 14px; font-family: var(--display); font-style: italic; font-weight: 800; font-stretch: 112%; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--copper); }
.ftr ul { display: grid; gap: 4px; }
.ftr li a { display: inline-block; padding: 6px 0; color: #eceae5; }
.ftr li a:hover { color: var(--orange); }
.ftr-bot { display: grid; gap: 10px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-lt); font-size: .88rem; color: #9da1a9; }
@media (min-width: 900px) { .ftr-top { grid-template-columns: 1fr 1.4fr; } .ftr-cols { grid-template-columns: repeat(3, 1fr); } }

/* sticky mobile call bar */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left)); background: rgba(20, 21, 24, .96); border-top: 1px solid var(--line-lt); transform: translateY(110%); transition: transform .3s var(--ease); }
.callbar.show { transform: none; }
.callbar .btn { min-height: 50px; padding: 0 12px; font-size: .92rem; }
@media (min-width: 760px) { .callbar { display: none; } }
@media (max-width: 759px) { html { scroll-padding-bottom: 96px; } body { padding-bottom: 0; } .ftr { padding-bottom: calc(96px + env(safe-area-inset-bottom)); } }

/* ------------------------------------------------------------------ reveal */
html.io .rv { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.io .rv.in { opacity: 1; transform: none; }
html.io .rv.d1 { transition-delay: .08s; }
html.io .rv.d2 { transition-delay: .16s; }
html.io .rv.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { html.io .rv { opacity: 1; transform: none; transition: none; } .ph img, .xlink img, .svc-card img { transition: none; } }

/* 404 */
.nf { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.nf .band-in { justify-items: center; margin-inline: auto; }
