/* ============================================================
   Kingstons Construction — homepage
   Palette from the client's own logo: ink black, brand red,
   drawing paper. Type: Besley (Clarendon revival) + Archivo,
   with Saira Stencil for site-marking numerals only.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Besley'; src: url('../fonts/besley-v22-latin-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Besley'; src: url('../fonts/besley-v22-latin-900.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Besley'; src: url('../fonts/besley-v22-latin-500italic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-v25-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-v25-latin-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-v25-latin-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo-v25-latin-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Saira Stencil'; src: url('../fonts/saira-stencil-v2-latin-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --ink: #131110;
  --ink-2: #1c1916;
  --ink-3: #262220;
  --paper: #f4f1ea;
  --paper-2: #eae5da;
  --red: #e01b1c;
  --red-deep: #b31315;
  --graphite: #423e38;
  --white: #ffffff;
  --t-on-ink: #f2efe9;
  --t-on-ink-dim: rgba(242, 239, 233, 0.68);
  --t-on-paper: #211d19;
  --t-on-paper-dim: rgba(33, 29, 25, 0.72);
  --line-on-ink: rgba(242, 239, 233, 0.16);
  --line-on-paper: rgba(33, 29, 25, 0.16);
  --font-display: 'Besley', Georgia, 'Times New Roman', serif;
  --font-body: 'Archivo', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-stencil: 'Saira Stencil', var(--font-body);
  --wrap-max: 1480px;
  --wrap-pad: clamp(20px, 4vw, 64px);
  --hdr-h: 104px;
  --hdr-h-small: 68px;
  --sec-pad: clamp(4.5rem, 9vw, 8.5rem);
}
@media (max-width: 900px) {
  :root { --hdr-h: 80px; --hdr-h-small: 62px; }
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--t-on-paper);
  background: var(--ink);
  min-width: 0;
}
main { overflow-x: clip; }   /* never on body/html — breaks fixed headers on touch */
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 18px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.wrap { max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad); }

/* ---------- Type system ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.12;
}
/* A drawn red datum line above each section heading: the drawing-sheet motif,
   no label text. */
.head-rule {
  display: block; width: 44px; height: 3px; background: var(--red);
  margin-bottom: 1.5rem; transform-origin: left center;
  position: relative;
}
.head-rule::after {
  content: ''; position: absolute; right: -8px; top: -2.5px;
  width: 8px; height: 8px; background: var(--red);
  transform: rotate(45deg) scale(0.6);
}

.section-head { margin-bottom: clamp(2.4rem, 5vw, 4rem); max-width: none; }

/* ---------- Sections ---------- */
.s-ink { background: var(--ink); color: var(--t-on-ink); }
.s-ink .h2, .s-ink .h3 { color: var(--white); }
.s-paper { background: var(--paper); color: var(--t-on-paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 18px 30px; border: 1px solid transparent;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(242, 239, 233, 0.4); color: var(--t-on-ink); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(10, 9, 8, 0.82), rgba(10, 9, 8, 0));
  transition: background-color 0.35s;
}
.site-header.is-solid { background: rgba(15, 13, 12, 0.96); box-shadow: 0 1px 0 var(--line-on-ink); }
.header-bar {
  max-width: var(--wrap-max); margin-inline: auto; padding-inline: var(--wrap-pad);
  height: var(--hdr-h);
  display: flex; align-items: center; gap: clamp(18px, 3vw, 44px);
  transition: height 0.35s ease;
}
.site-header.is-solid .header-bar { height: var(--hdr-h-small); }
.header-logo { flex: none; }
.header-logo img {
  height: 70px; width: auto;
  transition: height 0.35s ease;
}
.site-header.is-solid .header-logo img { height: 42px; }
.header-nav { display: flex; gap: clamp(16px, 2.2vw, 34px); margin-left: auto; }
.header-nav a {
  color: var(--t-on-ink); font-weight: 500; font-size: 0.98rem;
  position: relative; padding: 6px 0;
}
.header-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left center;
  transition: transform 0.25s;
}
.header-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-tel { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; color: var(--t-on-ink); }
.header-tel-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--t-on-ink-dim); }
.header-tel-num { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; }
.header-tel:hover .header-tel-num { color: var(--red); }
.menu-toggle { display: none; align-items: center; gap: 10px; padding: 10px; }
.menu-toggle-box { display: inline-flex; flex-direction: column; gap: 6px; width: 26px; }
.menu-toggle-box span { height: 2px; background: var(--t-on-ink); transition: transform 0.3s, opacity 0.3s; }
.menu-toggle-text { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
body.menu-open .menu-toggle-box span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-toggle-box span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 1240px) {
  .header-logo img { height: 58px; }
}
@media (max-width: 1080px) {
  .header-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 900px) {
  .header-logo img { height: 48px; }
  .site-header.is-solid .header-logo img { height: 38px; }
  .header-tel { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(15, 13, 12, 0.98);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-menu nav a {
  color: var(--t-on-ink);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 8vw, 2.9rem); line-height: 1.3;
  padding: 6px 20px;
}
.mobile-menu nav a:hover { color: var(--red); }
.mobile-menu-tel { font-family: var(--font-body) !important; font-size: 1.15rem !important; font-weight: 600 !important; color: var(--t-on-ink-dim) !important; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--t-on-ink);
  overflow: clip;
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
}
.hero-media { position: absolute; inset: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12, 10, 9, 0.92) 0%, rgba(12, 10, 9, 0.45) 38%, rgba(12, 10, 9, 0.18) 62%, rgba(12, 10, 9, 0.5) 100%),
    linear-gradient(100deg, rgba(12, 10, 9, 0.72) 0%, rgba(12, 10, 9, 0.15) 55%, rgba(12, 10, 9, 0) 75%);
}
.hero-truss {
  position: absolute; right: -7vw; bottom: 16vh;
  width: clamp(300px, 36vw, 600px);
  opacity: 0.32;
  pointer-events: none;
}
.truss-line { stroke: var(--red); stroke-width: 2; }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3.4rem, 9.2vw, 8.2rem);
  line-height: 0.98; letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 1.6rem;
  max-width: 12ch;
}
/* Each line is a reveal mask for the entrance animation. The mask needs
   descender room (the g in "drawing") because line-height is tighter than the
   glyph extents; the negative margin keeps the set solid. */
.hero-line { display: block; overflow: hidden; padding-bottom: 0.18em; margin-bottom: -0.18em; }
.hero-line > span { display: inline-block; }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6;
  color: rgba(242, 239, 233, 0.88);
  max-width: 56ch;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 0; align-items: center; }
.hero-trust li {
  font-size: 0.85rem; font-weight: 500; color: rgba(242, 239, 233, 0.75);
  display: flex; align-items: center;
}
.hero-trust li + li::before {
  content: ''; width: 5px; height: 5px; background: var(--red);
  display: inline-block; margin-inline: 16px; transform: rotate(45deg);
}
.hero-scrollcue {
  position: absolute; z-index: 2; right: var(--wrap-pad); bottom: clamp(3rem, 7vh, 5.5rem);
  width: 30px; height: 54px; border: 1px solid rgba(242, 239, 233, 0.4); border-radius: 16px;
  display: flex; justify-content: center; padding-top: 9px;
}
.hero-scrollcue span { width: 3px; height: 9px; background: var(--red); border-radius: 2px; animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(16px); opacity: 0.2; } 70% { opacity: 0; } 71% { transform: translateY(0); opacity: 0; } }
@media (max-width: 900px) {
  .hero-scrollcue { display: none; }
  .hero-truss { right: -18vw; bottom: 42vh; opacity: 0.32; width: 90vw; }
}

/* ============================================================
   Welcome
   ============================================================ */
.welcome { padding-block: var(--sec-pad); position: relative; }
.welcome-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
.welcome-copy .h2 { margin-bottom: 1.6rem; }
.welcome-copy p + p { margin-top: 1.05em; }
.welcome-copy > p { color: var(--t-on-paper-dim); max-width: 62ch; }
.welcome-sig { margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-on-paper); }
.sig-name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--t-on-paper); }
.sig-role { font-size: 0.9rem; color: var(--t-on-paper-dim); }
.welcome-media { position: relative; }

.framed-photo { position: relative; }
.framed-photo img { position: relative; z-index: 1; box-shadow: 0 24px 60px -24px rgba(23, 19, 15, 0.55); }
.framed-photo::before {
  content: ''; position: absolute; z-index: 0;
  inset: 0; transform: translate(18px, 18px);
  border: 1px solid var(--red);
}
.framed-photo::after {
  content: ''; position: absolute; z-index: 2;
  width: 14px; height: 14px; background: var(--red);
  top: -7px; left: -7px;
}
.welcome-seal {
  position: absolute; z-index: 3; right: -22px; bottom: -34px;
  width: 152px; height: 152px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 2px;
  box-shadow: 0 18px 40px -18px rgba(179, 19, 21, 0.7);
}
.seal-num { font-family: var(--font-stencil); font-size: 3rem; line-height: 1; }
.seal-text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.35; }
@media (max-width: 980px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-media { max-width: 560px; }
  .welcome-seal { right: 8px; bottom: -28px; }
}

/* ============================================================
   Services
   ============================================================ */
.services { padding-block: var(--sec-pad); }
.services-grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start;
}
.services-list { border-top: 1px solid var(--line-on-ink); }
.svc { border-bottom: 1px solid var(--line-on-ink); }
.svc-row {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 2.5vw, 30px); align-items: start;
  padding-block: clamp(1.2rem, 2.4vw, 1.9rem);
  transition: padding-left 0.3s;
}
.svc-num {
  font-family: var(--font-stencil); font-size: 1.05rem; color: var(--red);
  padding-top: 0.55em; min-width: 2ch;
}
.svc-arrow { align-self: center; }
.svc-name {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.1; color: #fff;
  transition: color 0.25s;
}
.svc-desc { display: block; color: var(--t-on-ink-dim); margin-top: 6px; max-width: 52ch; }
.svc-arrow { font-size: 1.5rem; color: var(--red); opacity: 0; transform: translateX(-8px); transition: opacity 0.25s, transform 0.25s; }
.svc-row:hover { padding-left: 10px; }
.svc-row:hover .svc-name { color: var(--red); }
.svc-row:hover .svc-arrow { opacity: 1; transform: none; }
.svc-inline-media { display: none; }
.services-media { position: sticky; top: calc(var(--hdr-h-small) + 24px); display: grid; gap: 1.4rem; }
.services-media-frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.services-media-frame::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  border: 1px solid var(--red); transform: translate(14px, 14px);
  pointer-events: none;
}
.services-video, .services-still {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.services-still { z-index: 2; opacity: 0; transition: opacity 0.4s; }
.services-media.show-still .services-still { opacity: 1; }
.services-media-note {
  font-size: 0.9rem; color: var(--t-on-ink-dim);
  padding-left: 18px; border-left: 2px solid var(--red);
}
.services-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--ink-3); border: 1px solid var(--line-on-ink);
  padding: 20px 22px;
}
.services-cta strong { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: #fff; line-height: 1.2; }
.services-cta .btn { padding: 13px 20px; font-size: 0.92rem; flex: none; }
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-media { display: none; }
  .svc-inline-media { display: block; margin: 0 0 1.4rem 0; }
  .svc-inline-media img { width: 100%; }
}

/* ============================================================
   Projects reel
   ============================================================ */
.reel-section { background: var(--ink-2); color: var(--t-on-ink); }
.reel-intro { padding-block: var(--sec-pad) clamp(2rem, 5vw, 3.5rem); }
.reel-sub { color: var(--t-on-ink-dim); max-width: 60ch; }

/* Fallback stack (no-JS / reduced motion): big readable slides */
.reel-stage { position: relative; }
.reel-slide { position: relative; margin-bottom: 4px; }
.reel-slide img { width: 100%; height: auto; }
.reel-cap {
  position: relative;
  padding: 1.2rem var(--wrap-pad) 2.6rem;
  max-width: 900px;
}
.reel-cap-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; background: var(--red); padding: 5px 10px; margin-bottom: 10px;
}
.reel-cap-title { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 2.1rem); color: #fff; }
.reel-cap-fact { display: block; color: var(--t-on-ink-dim); margin-top: 6px; max-width: 60ch; }
.reel-ui { display: none; }

/* Live reel (JS adds .is-live when motion is welcome) */
.reel.is-live { /* height set by JS: one viewport per slide + one exit */ }
.reel.is-live .reel-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: clip;
}
.reel.is-live .reel-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden;
}
.reel.is-live .reel-slide.is-first { opacity: 1; visibility: visible; }
.reel.is-live .reel-slide picture { position: absolute; inset: 0; }
.reel.is-live .reel-slide img { width: 100%; height: 100%; object-fit: cover; }
.reel.is-live .reel-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.25) 34%, rgba(12, 10, 9, 0) 55%);
}
.reel.is-live .reel-cap {
  position: absolute; z-index: 2; left: 0; right: auto; bottom: clamp(2rem, 6vh, 4rem);
  padding: 0 var(--wrap-pad);
}
.reel.is-live .reel-ui { display: block; }
.reel-count {
  position: absolute; z-index: 20; top: calc(var(--hdr-h-small) + 20px); right: var(--wrap-pad);
  font-family: var(--font-stencil); font-size: 1.5rem; color: #fff;
  text-shadow: 0 1px 14px rgba(10, 9, 8, 0.75), 0 0 3px rgba(10, 9, 8, 0.6);
}
.reel-count em { font-style: normal; color: rgba(242, 239, 233, 0.78); font-size: 1rem; margin-left: 4px; }
.reel-rail {
  position: absolute; z-index: 20; right: var(--wrap-pad); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px;
}
.reel-dot {
  width: 12px; height: 12px; padding: 0; border: 1px solid rgba(242, 239, 233, 0.55);
  transform: rotate(45deg); background: transparent;
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}
.reel-dot:hover { border-color: #fff; transform: rotate(45deg) scale(1.2); }
.reel-dot.is-active { background: var(--red); border-color: var(--red); }
@media (max-width: 900px) {
  .reel-rail { right: 14px; gap: 12px; }
  .reel.is-live .reel-cap { right: 54px; }
}

/* ============================================================
   Numbers
   ============================================================ */
.numbers { padding-block: var(--sec-pad); position: relative; overflow: clip; }
.numbers-plan {
  position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
  background-image: url('../img/plan-texture-1600.webp');
  background-size: 1100px auto; background-position: right -80px top -40px;
  background-repeat: no-repeat;
}
.numbers .wrap { position: relative; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 3rem);
}
.stat { padding-top: 1.6rem; position: relative; }
.stat::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--graphite); transform-origin: left center;
}
.stat::after {
  content: ''; position: absolute; top: -4px; left: 0; width: 2px; height: 10px;
  background: var(--graphite);
}
.stat-num {
  display: flex; align-items: baseline;
  font-family: var(--font-stencil);
  font-size: clamp(3.6rem, 7.5vw, 6.4rem);
  line-height: 1; color: var(--t-on-paper);
}
.stat-num i { font-style: normal; color: var(--red); font-size: 0.6em; margin-left: 4px; }
.stat-num-text { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.stat-label { display: block; margin-top: 0.8rem; color: var(--t-on-paper-dim); font-size: 0.95rem; max-width: 30ch; }
@media (max-width: 980px) {
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .numbers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Craft
   ============================================================ */
.craft { padding-block: var(--sec-pad); overflow: clip; }
.craft-head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 4vw, 4rem); align-items: end; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.craft-head .h2 { grid-column: 1; }
.craft-head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.craft-sub { color: var(--t-on-ink-dim); }
.craft-feature { position: relative; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.craft-video { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.craft-feature-cap {
  position: absolute; left: calc(var(--wrap-pad) + 20px); bottom: 20px;
  background: rgba(12, 10, 9, 0.82); color: var(--t-on-ink);
  padding: 12px 18px; font-size: 0.9rem;
  border-left: 2px solid var(--red);
}
.craft-feature-cap span { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: #fff; }
.filmstrip { display: grid; gap: 4px; }
.strip-row { overflow: hidden; }
.drift-track { display: flex; width: max-content; will-change: transform; }
html.has-motion .strip-row, html.has-motion .areas-track { cursor: grab; touch-action: pan-y; }
html.has-motion .strip-row.is-dragging, html.has-motion .areas-track.is-dragging { cursor: grabbing; }
html.has-motion .strip-row img, html.has-motion .areas-track * { user-select: none; -webkit-user-select: none; }
.strip-set { display: flex; gap: 4px; flex: none; padding-right: 4px; }
.strip-set figure { position: relative; flex: none; width: clamp(240px, 26vw, 420px); }
.strip-set img { width: 100%; height: clamp(170px, 19vw, 300px); object-fit: cover; }
.strip-set figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 26px 14px 10px;
  font-size: 0.78rem; color: rgba(242, 239, 233, 0.92);
  background: linear-gradient(to top, rgba(12, 10, 9, 0.85), rgba(12, 10, 9, 0));
}
@media (max-width: 900px) {
  .craft-head { grid-template-columns: 1fr; align-items: start; }
  .craft-video { aspect-ratio: 16 / 9; }
}

/* ============================================================
   Quotes
   ============================================================ */
.quotes { padding-block: var(--sec-pad); }
.quotes-stage { position: relative; margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.quote { padding-block: 1rem; }
.quote + .quote { border-top: 1px solid var(--line-on-paper); }
.quote-text {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  line-height: 1.22; letter-spacing: -0.005em;
  color: var(--t-on-paper);
  max-width: 28ch;
}
.quote-by { margin-top: 1.2rem; font-size: 0.95rem; font-weight: 600; color: var(--t-on-paper-dim); }
.quote-by::before { content: ''; display: inline-block; width: 26px; height: 2px; background: var(--red); vertical-align: middle; margin-right: 12px; }
.quotes.is-live .quotes-stage { min-height: 340px; }
.quotes.is-live .quote { position: absolute; inset: 0; opacity: 0; visibility: hidden; border: 0; padding: 0; }
.quotes.is-live .quote.is-active { opacity: 1; visibility: visible; }
.quotes-nav { display: none; gap: 12px; margin-top: 2rem; }
.quotes.is-live .quotes-nav { display: flex; }
.quotes-nav button {
  width: 12px; height: 12px; padding: 0;
  border: 1px solid rgba(33, 29, 25, 0.45); transform: rotate(45deg);
  transition: background-color 0.25s, border-color 0.25s;
}
.quotes-nav button.is-active { background: var(--red); border-color: var(--red); }
.quotes-note { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-on-paper); color: var(--t-on-paper-dim); font-size: 0.95rem; max-width: 64ch; }
@media (max-width: 700px) {
  .quotes.is-live .quotes-stage { min-height: 420px; }
}

/* ============================================================
   Areas marquee
   ============================================================ */
.areas { padding-block: clamp(1.4rem, 3vw, 2.2rem); border-block: 1px solid var(--line-on-ink); overflow: clip; }
.areas-track { overflow: hidden; }
.areas-set {
  display: flex; align-items: center; gap: 30px; padding-right: 30px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  color: rgba(242, 239, 233, 0.85);
  white-space: nowrap;
}
.areas-set i { color: var(--red); font-style: normal; font-size: 0.55em; }

/* ============================================================
   Trust
   ============================================================ */
.trust { padding-block: var(--sec-pad); }
.trust-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.trust-copy .h3 { margin-bottom: 1.2rem; }
.trust-copy p { color: var(--t-on-paper-dim); max-width: 56ch; }
.trust-badges {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.trust-badges li {
  background: #fff; border: 1px solid var(--line-on-paper);
  display: flex; align-items: center; justify-content: center;
  padding: 22px 18px; min-height: 116px;
}
.trust-badges img { max-height: 62px; width: auto; max-width: 100%; }
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-badges { max-width: 560px; }
}
@media (max-width: 520px) {
  .trust-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   Contact
   ============================================================ */
.contact { position: relative; padding-block: var(--sec-pad); overflow: clip; }
.contact-media { position: absolute; inset: 0; }
.contact-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.contact-scrim { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(12, 10, 9, 0.94) 26%, rgba(12, 10, 9, 0.62) 64%, rgba(12, 10, 9, 0.38) 100%); }
.contact-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.contact-sub { color: var(--t-on-ink-dim); max-width: 54ch; margin-top: 1.2rem; }
.contact-details { margin-top: 2.4rem; display: grid; gap: 4px; }
.contact-line {
  display: grid; grid-template-columns: 110px minmax(0, 1fr); align-items: baseline; gap: 18px;
  padding: 14px 0; border-top: 1px solid var(--line-on-ink);
}
.contact-line span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--t-on-ink-dim); }
.contact-line strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.25rem, 2.4vw, 1.9rem); color: #fff; transition: color 0.25s; overflow-wrap: anywhere; }
a.contact-line:hover strong { color: var(--red); }
.contact-line.is-addr strong { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.contact-line.is-email strong { font-size: clamp(1.05rem, 1.9vw, 1.45rem); }
@media (max-width: 640px) {
  .contact-line { grid-template-columns: 1fr; gap: 2px; padding: 12px 0; }
  .contact-line strong { font-size: 1.25rem; }
  .contact-line.is-addr strong { font-size: 1.05rem; }
}
.contact-card {
  position: relative; background: var(--paper); color: var(--t-on-paper);
  padding: clamp(2rem, 4vw, 3rem); overflow: clip;
}
.contact-truss { position: absolute; right: -60px; top: -30px; width: 340px; opacity: 0.16; }
.contact-truss .truss-line { stroke-width: 2; }
.contact-card-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.05; margin-bottom: 1rem; }
.contact-card-text { color: var(--t-on-paper-dim); margin-bottom: 1.8rem; }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { max-width: 560px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #0c0b0a; color: var(--t-on-ink); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand img { height: 51px; width: auto; margin-bottom: 1.2rem; }
.footer-addr { color: var(--t-on-ink-dim); font-size: 0.95rem; }
.footer-nav { display: grid; gap: 10px; align-content: start; }
.footer-nav a { color: var(--t-on-ink-dim); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: grid; gap: 10px; align-content: start; }
.footer-contact a { color: var(--t-on-ink-dim); transition: color 0.2s; word-break: break-word; }
.footer-contact a:hover { color: #fff; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line-on-ink);
  font-size: 0.88rem; color: var(--t-on-ink-dim);
}
.footer-credit a { color: var(--t-on-ink); font-weight: 600; border-bottom: 1px solid var(--red); padding-bottom: 1px; }
.footer-credit a:hover { color: var(--red); }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Anchor offsets ---------- */
section[id] { scroll-margin-top: calc(var(--hdr-h-small) + 8px); }

/* ---------- Stat rule draw-in (class set by JS) ---------- */
html.has-motion .stat::before,
html.has-motion .stat::after { transform: scaleX(0); transform-origin: left center; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
html.has-motion .stat::after { transform: scaleY(0); transform-origin: top center; }
html.has-motion .stat.stat-in::before { transform: scaleX(1); }
html.has-motion .stat.stat-in::after { transform: scaleY(1); }

/* ============================================================
   Motion guards
   ============================================================ */
/* Elements GSAP will reveal: keep visible unless the page has
   confirmed motion (html.has-motion set by JS inside the
   no-preference media query). */
html.has-motion [data-reveal] { visibility: hidden; }
html.has-motion.motion-ready [data-reveal] { visibility: visible; }

@media (prefers-reduced-motion: reduce) {
  .hero-scrollcue span { animation: none; }
  * { scroll-behavior: auto !important; }
}
