/* ════════════════════════════════════════════════════════════════════
   ORMOND INDUSTRIAL TOOLS — ormondtools.com
   A Diversified Group company. Palette from the Ormond hex-nut mark:
   yellow #FFCB05 + warm ink #231F20, on aged-catalog paper and a WARM
   near-black (DP's surface is cool blue-black — Ormond's runs warm:
   oil, enamel, incandescent light). The family "bar" element (DP's
   green logo bar) translates here to the yellow/ink hazard stripe.
   DP forest green appears ONLY in the Diversified Group section.
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* Ormond charm */
  --yellow:        #FFCB05;   /* the hex-nut yellow — the signature   */
  --yellow-deep:   #E5B400;
  --brass:         #7A5F16;   /* yellow's contrast-safe voice on paper — dark
                                 enough to clear 4.5:1 on paper-deep too */
  --ink:           #231F20;   /* Ormond logo ink — warm near-black     */
  --ink-soft:      #4C4540;
  --muted:         #6E6557;   /* ≥4.5:1 on paper — trade eyes, small caps */

  /* Paper (light sections) */
  --paper:         #F5F1E6;
  --paper-deep:    #ECE5D2;
  --card:          #FFFEFA;
  --line:          #DFD7C3;
  --line-strong:   #CCC2A8;

  /* Workshop dark (hero, capability band, footer) */
  --surface:       #131008;
  --surface-2:     #1D1912;
  --hairline-dark: rgba(255, 244, 209, 0.10);

  /* Group section only — the corporate link back to DP */
  --dp-green:      #83DD37;
  --dp-forest:     #3A512A;

  --font-sans:  "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-disp:  "Oswald", "Arial Narrow", sans-serif;
  --font-retro: "Lobster", ui-serif, serif;
  /* Mono is reserved for genuine data — model numbers, spec tables,
     domains — never decorative labels. */
  --font-mono:  ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;

  --ease-brand: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-long:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ──────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Brand-true keyboard focus — brass on paper, yellow on the dark bands */
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.nav :focus-visible, .hero :focus-visible, .page-hero :focus-visible,
.rc :focus-visible, .visit :focus-visible, .rent-tease :focus-visible,
.capability :focus-visible, .footer :focus-visible,
.marquee-band :focus-visible { outline-color: var(--yellow); }

/* Anchor jumps land clear of the 72px fixed nav */
main [id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  /* Flex column so the footer sits at the bottom of the viewport on short
     pages (404, and any thin page added later) instead of leaving a strip
     of bare paper beneath it. The nav and grain are fixed, so the only
     in-flow children are <main> and <footer>. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection { background: rgba(255, 203, 5, 0.45); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Skip link — hidden until tabbed to, so a keyboard user isn't dragged
   through the whole nav (and the 13-plate marquee) on every page. */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 3000;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 3px;
  transition: top 0.2s var(--ease-brand);
}
.skip-link:focus { top: 16px; }

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

/* Film grain over everything — the retro print feel. Pure decoration. */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1.5%, 1%); }
  50%  { transform: translate(1%, -1.5%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ── Shared utilities ─────────────────────────────────────────────── */

/* The tracked-uppercase eyebrow — the family typographic tell. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 4px, var(--ink) 4px 8px);
  border-radius: 1px;
}
.eyebrow--dark { color: var(--yellow); }
.eyebrow--green { color: var(--dp-forest); }
.eyebrow--green::before { background: var(--dp-green); height: 3px; width: 26px; border-radius: 2px; }

/* The Ormond bar — hazard stripe. The family "bar" element, reskinned. */
.stripe-bar {
  height: 8px;
  border-radius: 2px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 14px, var(--ink) 14px 28px);
  background-size: 200% 100%;
}
.stripe-bar--crawl { animation: stripe-crawl 26s linear infinite; }
@keyframes stripe-crawl { to { background-position: -396px 0; } }

/* Faint warm grid for dark bands (DP .bg-grid, warmed). */
.bg-grid-warm {
  background-image:
    linear-gradient(to right,  rgba(255, 236, 179, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 236, 179, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.mask-radial-fade {
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 90%);
}

main { flex: 1 0 auto; }

/* 404 — the page is shorter than the viewport, so <main> carries the dark
   surface itself and centres its band. Without this the flex slack renders
   as a strip of bare paper between the masthead and the footer. */
.main--error {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Section rhythm */
.section { padding-block: clamp(72px, 11vh, 128px); }

.section-head { max-width: 720px; }
.section-head h2 {
  margin: 18px 0 0;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.section-head p.lede {
  margin: 20px 0 0;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
}

/* Scroll reveals (IntersectionObserver adds .is-in) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-brand), transform 0.7s var(--ease-brand);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ── Buttons — the family physical-key recipe, Ormond skin ─────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 42px;
  padding: 0 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  user-select: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-brand),
    box-shadow 0.3s var(--ease-brand),
    background-color 0.3s ease,
    color 0.3s ease,
    letter-spacing 0.3s var(--ease-brand);
}
.btn:hover  { transform: translateY(-1px); letter-spacing: 0.07em; }
.btn:active { transform: translateY(0); }

/* Primary — Ormond ink, warm top-light */
.btn-primary {
  background-color: var(--ink);
  color: #FFFBEF;
  box-shadow:
    rgba(255, 246, 224, 0.20) 0px 3px 1px 0px inset,
    rgba(35, 31, 32, 0.13) 0px 0.84px 0.5px -0.31px,
    rgba(35, 31, 32, 0.13) 0px 1.99px 1.19px -0.63px,
    rgba(35, 31, 32, 0.13) 0px 3.63px 2.18px -0.94px,
    rgba(35, 31, 32, 0.13) 0px 6.04px 3.62px -1.25px,
    rgba(35, 31, 32, 0.13) 0px 9.75px 5.85px -1.56px,
    rgba(35, 31, 32, 0.13) 0px 15.96px 9.57px -1.88px,
    rgba(35, 31, 32, 0.13) 0px 27.48px 16.49px -2.19px,
    rgba(35, 31, 32, 0.13) 0px 50px 30px -2.5px;
}
.btn-primary:hover {
  background-color: #38322F;
  box-shadow:
    rgba(255, 246, 224, 0.25) 0px 3px 1px 0px inset,
    rgba(35, 31, 32, 0.18) 0px 0.84px 0.5px -0.31px,
    rgba(35, 31, 32, 0.18) 0px 1.99px 1.19px -0.63px,
    rgba(35, 31, 32, 0.18) 0px 3.63px 2.18px -0.94px,
    rgba(35, 31, 32, 0.18) 0px 6.04px 3.62px -1.25px,
    rgba(35, 31, 32, 0.18) 0px 9.75px 5.85px -1.56px,
    rgba(35, 31, 32, 0.18) 0px 15.96px 9.57px -1.88px,
    rgba(35, 31, 32, 0.18) 0px 27.48px 16.49px -2.19px,
    rgba(35, 31, 32, 0.18) 0px 50px 30px -2.5px;
}

/* Accent — the hex-nut yellow. Shadows stay neutral (family rule:
   the button must not glow); one faint yellow halo outermost. */
.btn-accent {
  background-color: var(--yellow);
  color: var(--ink);
  box-shadow:
    rgba(255, 255, 255, 0.45) 0px 3px 1px 0px inset,
    rgba(35, 31, 32, 0.13) 0px 0.84px 0.5px -0.31px,
    rgba(35, 31, 32, 0.13) 0px 1.99px 1.19px -0.63px,
    rgba(35, 31, 32, 0.13) 0px 3.63px 2.18px -0.94px,
    rgba(35, 31, 32, 0.13) 0px 6.04px 3.62px -1.25px,
    rgba(35, 31, 32, 0.10) 0px 9.75px 5.85px -1.56px,
    rgba(35, 31, 32, 0.10) 0px 15.96px 9.57px -1.88px,
    rgba(35, 31, 32, 0.10) 0px 27.48px 16.49px -2.19px,
    rgba(255, 203, 5, 0.07) 0px 50px 30px -2.5px;
}
.btn-accent:hover { filter: brightness(1.05); }

/* Ghost — hairline, for the dark bands */
.btn-ghost {
  background-color: transparent;
  color: #FFF9E8;
  border: 1px solid rgba(255, 244, 209, 0.22);
  box-shadow:
    rgba(255, 244, 209, 0.08) 0px 3px 1px 0px inset,
    rgba(0, 0, 0, 0.20) 0px 0.84px 0.5px -0.31px,
    rgba(0, 0, 0, 0.20) 0px 1.99px 1.19px -0.63px,
    rgba(0, 0, 0, 0.20) 0px 3.63px 2.18px -0.94px,
    rgba(0, 0, 0, 0.20) 0px 6.04px 3.62px -1.25px,
    rgba(0, 0, 0, 0.18) 0px 9.75px 5.85px -1.56px,
    rgba(0, 0, 0, 0.18) 0px 15.96px 9.57px -1.88px,
    rgba(0, 0, 0, 0.16) 0px 27.48px 16.49px -2.19px,
    rgba(0, 0, 0, 0.16) 0px 50px 30px -2.5px;
}
.btn-ghost:hover {
  background-color: rgba(255, 244, 209, 0.06);
  border-color: rgba(255, 244, 209, 0.4);
}

.btn-sm { height: 36px; padding: 0 14px; font-size: 12px; }
.btn-sm.btn-accent, .btn-sm.btn-primary, .btn-sm.btn-ghost {
  box-shadow:
    rgba(255, 250, 235, 0.2) 0px 2px 1px 0px inset,
    rgba(20, 16, 10, 0.16) 0px 1px 0.5px -0.2px,
    rgba(20, 16, 10, 0.14) 0px 2px 1.5px -0.4px,
    rgba(20, 16, 10, 0.12) 0px 4px 3px -0.8px,
    rgba(20, 16, 10, 0.10) 0px 8px 6px -1.5px;
}

.btn-shine::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3) 50%, transparent);
  transform: translateX(-100%);
  transition: transform 800ms var(--ease-brand);
  pointer-events: none;
}
.btn-shine:hover::before { transform: translateX(100%); }

/* ── Navbar ────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset-inline: 0; top: 0;
  z-index: 100;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
  color: #FFF9E8;
}
.nav .container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
/* The call button lives outside .nav-links so it stays in the bar
   when the links collapse into the hamburger on mobile. */
.nav-phone { flex-shrink: 0; }
.nav-brand svg { height: 26px; width: auto; display: block; }
/* Inline Ormond SVG themes via currentColor on .o-ink paths */
.o-ink { fill: currentColor; }
.o-yel { fill: var(--yellow); }

.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
/* Current page: opacity alone is too faint a cue and says nothing to a
   screen reader, so the active link is also underlined and carries
   aria-current in the markup. */
.nav-links a.is-active:not(.btn) {
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--yellow);
}
.nav-links a:not(.btn) {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;   /* "SINCE 1956" / "LINE CARD" must never wrap */
  opacity: 0.75;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.nav-links a:not(.btn):hover { opacity: 1; }

.nav.is-scrolled {
  background: rgba(245, 241, 230, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.nav.is-scrolled .btn-ghost {
  color: var(--ink);
  border-color: rgba(35, 31, 32, 0.25);
  box-shadow: none;
}
.nav.is-scrolled .btn-ghost:hover { background: rgba(35, 31, 32, 0.05); border-color: rgba(35, 31, 32, 0.45); }

.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 72px; right: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    padding: 28px clamp(20px, 4vw, 48px) 36px;
    background: rgba(19, 16, 8, 0.97);
    color: #FFF9E8;
    width: min(320px, 86vw);
    border-left: 1px solid var(--hairline-dark);
    border-bottom: 1px solid var(--hairline-dark);
    transform: translateX(110%);
    /* visibility (not just transform) so the six links leave the tab order
       when the menu is shut — otherwise a keyboard user tabs into offscreen
       links they can't see and can't scroll to. Delayed so the slide-out
       animation still plays on close. */
    visibility: hidden;
    transition: transform 0.45s var(--ease-brand), visibility 0s 0.45s;
  }
  .nav.menu-open .nav-links {
    transform: none;
    visibility: visible;
    transition: transform 0.45s var(--ease-brand), visibility 0s 0s;
  }
  .nav.is-scrolled .nav-links { color: #FFF9E8; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span {
    width: 22px; height: 2px;
    background: currentColor;
    transition: transform 0.3s var(--ease-brand), opacity 0.3s;
  }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--surface);
  color: #FFF9E8;
  overflow: hidden;
  padding: 96px 20px 48px;
}

/* Hamilton Harbour, 1913 — a plate from the City of Hamilton's own
   centennial volume, sunk to a whisper behind the hero so the place has
   some depth behind it. Public domain; full provenance in README.
   Duotoned warm so it reads as aged paper rather than a cold photograph,
   and vignetted so the edges dissolve into the dark surface instead of
   ending on a hard rectangle. */
.hero-archive {
  position: absolute;
  inset: 0;
  background: url("../assets/archive/hamilton-canal-1913-bg.jpg") center 58% / cover no-repeat;
  opacity: 0.085;
  filter: grayscale(1) sepia(0.62) contrast(1.35) brightness(0.92);
  pointer-events: none;
  /* Mask sits high on purpose: the plate reads across the upper band
     behind the lockup and dissolves before it reaches the body copy and
     CTAs, so nothing textured ever sits under running text. */
  -webkit-mask-image: radial-gradient(ellipse 86% 74% at 50% 38%, #000 18%, transparent 82%);
  mask-image: radial-gradient(ellipse 86% 74% at 50% 38%, #000 18%, transparent 82%);
}

/* faint warm grid, masked so it settles behind the wordmark */
.hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* (A giant flat hex-nut watermark rotated behind the hero here. Removed
   when the emblem became a real 3D object in the foreground — two of the
   same mark on one screen read as a mistake.) Keyframes stay: the
   EST · HAMILTON roundel still uses them. */
@keyframes nut-turn { to { transform: rotate(360deg); } }

.hero-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.72);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  width: 44px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 209, 0.45));
}
.hero-eyebrow::after { transform: scaleX(-1); }
/* Keep the eyebrow on one line at phone widths — a split date is the
   worst possible break in the family's signature typographic tell. */
@media (max-width: 520px) {
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.18em; gap: 8px; }
  .hero-eyebrow::before, .hero-eyebrow::after { display: none; }
}

/* the halftone canvas wordmark */
/* ── Hero lockup: 3D emblem + crisp vector wordmark ────────────────
   The emblem is the spectacle; the wordmark stays flat vector so the
   company name is always sharp. Side by side they reproduce the real
   logo lockup at hero scale. */
.hero-lockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 54px);
  width: min(1180px, 94vw);
  margin-top: clamp(10px, 2.5vh, 28px);
}

/* The stage is the LAYOUT box and the grab target — it stays the size of
   the emblem itself. The canvas inside it is deliberately much larger. */
.hero-3d {
  position: relative;
  flex: 0 0 auto;
  width: clamp(150px, 23vw, 300px);
  aspect-ratio: 1;
  cursor: grab;
  /* Horizontal drags rotate the emblem; vertical drags still scroll the
     page, so the hero never traps a thumb on mobile. */
  touch-action: pan-y;
  /* Hold the space before WebGL reports in, so the wordmark doesn't
     jump sideways once the canvas sizes itself. */
  opacity: 0;
  transition: opacity 0.9s var(--ease-long);
}
.hero-3d.is-ready { opacity: 1; }
.hero-3d.is-grabbing { cursor: grabbing; }

/* Overscan. Sparks and shockwaves have to travel well past the emblem,
   and a canvas cropped to the emblem sliced them off against its own
   edges — which read as a hard box drawn around the logo. The canvas is
   therefore ~2x the stage and centred on it, with the camera pulled back
   to match so the emblem's on-screen size is unchanged. pointer-events
   stays off it so the enlarged, mostly-empty rectangle never steals
   clicks; the stage above handles dragging. */
.hero-3d canvas {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 207%;
  height: 207%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Warm pool of light under the metal — sells it as a lit object
   rather than a sticker. Sits behind the canvas, never over it. */
.hero-3d::before {
  content: "";
  position: absolute;
  left: 50%; top: 54%;
  width: 116%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 176, 32, 0.20), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}

/* Shown only if WebGL is unavailable or the emblem fails to load. */
.hero-emblem-fallback {
  display: none;
  width: 100%;
  height: 100%;
}
.hero-emblem-fallback.is-shown { display: block; }
.hero-3d.is-failed { opacity: 1; }

.hero-wordmark {
  position: relative;
  z-index: 2;   /* the overscanned canvas reaches under it; keep type on top */
  flex: 0 1 auto;
  width: clamp(220px, 46vw, 660px);
  height: auto;
  color: #FFF9E8;
}

@media (max-width: 700px) {
  .hero-lockup { flex-direction: column; gap: 14px; }
  .hero-3d { width: clamp(132px, 34vw, 190px); }
  .hero-wordmark { width: min(78vw, 420px); }
}

.hero-script {
  font-family: var(--font-retro);
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.6rem);
  color: var(--yellow);
  transform: rotate(-2.5deg);
  margin: clamp(2px, 1vh, 10px) 0 0;
  /* Flat enamel, not neon — the halftone already carries the signage
     nostalgia; a heavy glow tips the hero into diner-sign territory. */
  text-shadow: 0 0 12px rgba(255, 203, 5, 0.14);
}

.hero-sub {
  position: relative;
  max-width: 620px;
  margin: clamp(16px, 2.6vh, 26px) auto 0;
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 249, 232, 0.66);
}
.hero-sub strong { font-weight: 600; color: rgba(255, 249, 232, 0.92); }

.hero-ctas {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(20px, 3.2vh, 34px);
}

.hero-bar {
  width: min(300px, 60vw);
  margin-top: clamp(24px, 4vh, 44px);
}

/* ── Page hero (subpages) — compact dark masthead ──────────────────── */

.page-hero {
  background: var(--surface);
  color: #FFF9E8;
  padding: 150px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  margin: 16px 0 0;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(2.4rem, 1.4rem + 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.page-hero .lede {
  margin: 18px 0 0;
  max-width: 620px;
  font-weight: 300;
  font-size: clamp(0.98rem, 0.93rem + 0.3vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 249, 232, 0.65);
}
.page-hero .stripe-bar { width: 120px; height: 6px; margin-top: 30px; }

/* Dark masthead meeting another dark band: collapse the double padding
   so the page opens as one composed spread, not two drifting plates. */
.page-hero + .rc, .page-hero + .visit { padding-block-start: clamp(28px, 4vh, 52px); }

/* Dark masthead meeting paper: the first card row rides up over the
   seam (classic premium-industrial overlap) instead of a hard cut. */
.page-hero--deep { padding-bottom: 118px; }
.grid-overlap {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * clamp(44px, 7vh, 76px)) !important;
}
.grid-overlap > * { box-shadow: 0 14px 34px -20px rgba(35, 31, 32, 0.4); }

/* Flagship rentals masthead — split with a genuine fleet photo */
.page-hero--split .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .page-hero--split .container { grid-template-columns: 1fr; } }
.page-hero--split .ph {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--hairline-dark);
}
.page-hero--split .ph img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero--split .ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(19, 16, 8, 0.5), rgba(19, 16, 8, 0.08) 45%, transparent);
}

/* ── Brand marquee ─────────────────────────────────────────────────── */

.marquee-band {
  background: var(--surface);
  padding-bottom: 56px;
  overflow: hidden;
  position: relative;
}
/* edge dissolve into the band's own surface — machined, not clipped */
.marquee-band::before, .marquee-band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(48px, 8vw, 140px);
  z-index: 1;
  pointer-events: none;
}
.marquee-band::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.marquee-band::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.58);
  margin-bottom: 26px;
}
.marquee {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 60s linear infinite;
  will-change: transform;
}
@keyframes marquee { to { transform: translate3d(-33.3333%, 0, 0); } }
.marquee:hover { animation-play-state: paused; }
.marquee .plate {
  flex: 0 0 auto;
  width: 168px; height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFEFA;
  border-radius: 4px;
  border: 1px solid rgba(255, 244, 209, 0.12);
  padding: 18px 22px;
}
.marquee .plate img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.marquee .plate:hover img { filter: none; opacity: 1; }

/* ── The Shop (about / heritage) ───────────────────────────────────── */

.shop { background: var(--paper); position: relative; }

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
@media (max-width: 880px) { .shop-grid { grid-template-columns: 1fr; } }

.shop-copy p {
  margin: 0 0 1.2em;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.13rem);
  line-height: 1.75;
  color: var(--ink-soft);
}
.shop-copy p strong { color: var(--ink); font-weight: 600; }

/* Stat plates — machined tags on a hairline grid */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  background: var(--card);
  padding-top: 4px;
}
/* hazard keyline — the one yellow beat in the light mid-page stretch */
.stats::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, var(--ink) 12px 24px);
}
.stat {
  padding: clamp(20px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-child(n+3) { border-bottom: 0; }
.stat .num {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.stat .num sup { font-size: 0.5em; color: var(--brass); }
.stat .lbl {
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stats-col { position: relative; }

/* Rotating roundel — EST · HAMILTON badge */
.roundel {
  position: absolute;
  top: -34px; right: -20px;
  width: 108px; height: 108px;
  pointer-events: none;
}
.roundel svg { width: 100%; height: 100%; animation: nut-turn 40s linear infinite reverse; }
.roundel text {
  font-family: var(--font-sans);
  font-size: 10.2px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: var(--brass);
}
.roundel .hexcore { fill: var(--yellow); }
@media (max-width: 880px) { .roundel { display: none; } }

/* ── Services ──────────────────────────────────────────────────────── */

.services { background: var(--paper-deep); border-block: 1px solid var(--line); }

.svc-grid {
  margin-top: clamp(36px, 5vh, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  transition: transform 0.3s var(--ease-brand), box-shadow 0.3s var(--ease-brand), border-color 0.3s ease;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 109, 31, 0.35);
  box-shadow: 0 18px 40px -18px rgba(35, 31, 32, 0.22);
}
/* hazard rule wipes in across the card top */
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 9px, var(--ink) 9px 18px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-brand);
}
.svc:hover::before { transform: scaleX(1); }

.svc .no {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.svc .ic { margin: 18px 0 0; width: 44px; height: 44px; color: var(--ink); }
.svc .ic svg { width: 100%; height: 100%; }
.svc h3 {
  margin: 16px 0 0;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.svc p { margin: 10px 0 0; font-size: 0.94rem; line-height: 1.65; color: var(--ink-soft); }

/* ── Line card (brand wall) ────────────────────────────────────────── */

.brands { background: var(--paper); }

/* Five featured lines in an editorial 3-over-2. The second row's two cards
   run wider (span 3 of 6) — that extra width is what gives the two newest
   lines their weight without demoting anything above them. */
.feature-grid {
  margin-top: clamp(36px, 5vh, 56px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.feature-grid > * { grid-column: span 2; }
.feature-grid > *:nth-child(4),
.feature-grid > *:nth-child(5) { grid-column: span 3; }

@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid > *,
  .feature-grid > *:nth-child(4),
  .feature-grid > *:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(22px, 2.4vw, 30px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-brand), box-shadow 0.3s var(--ease-brand), border-color 0.3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 109, 31, 0.35);
  box-shadow: 0 18px 40px -18px rgba(35, 31, 32, 0.22);
}
/* Flagship (Enerpac) — the one authorization that differentiates the
   shop gets a quiet hazard keyline; everything else stays identical. */
.feature--flagship {
  padding-top: 4px;
}
.feature--flagship::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, var(--ink) 12px 24px);
}
.feature--flagship .authorized { color: var(--brass); }

.feature .logo-zone {
  height: 58px;
  display: flex;
  align-items: center;
}
.feature .logo-zone img { max-height: 46px; max-width: 78%; object-fit: contain; }
/* Optical balance, not geometric: Momento is a heavy slab wordmark with no
   tagline under it, so at a shared 46px cap it outweighs every other mark in
   the row. Capped per-logo, the same way the DP divisions list sizes each
   mark for equal optical weight rather than equal height. */
.feature .logo-zone img[src*="momento"] { max-height: 37px; }
.feature h3 { margin: 18px 0 0; font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.feature .tagline {
  margin: 2px 0 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.feature p { margin: 12px 0 0; font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); }
.feature .authorized {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature .authorized::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--yellow);
  border: 1px solid rgba(35,31,32,.5);
  border-radius: 1px;
  transform: rotate(45deg);
}

.logo-wall {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1080px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
.logo-wall .plate {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 74px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-brand);
}
/* one-line caption turns the wall into an actual line card */
.logo-wall .plate span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.logo-wall .plate:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.logo-wall .plate img {
  max-height: 34px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-wall .plate:hover img { filter: none; opacity: 1; }

.linecard-note {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--ink-soft);   /* conversion line — keep it fully legible */
}

/* ── Capability band (dark value statement) ────────────────────────── */

.capability {
  position: relative;
  background: var(--surface);
  color: #FFF9E8;
  overflow: hidden;
  text-align: center;
}
.capability .inner { position: relative; max-width: 880px; margin-inline: auto; }
.capability h2 {
  margin: 24px 0 0;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.capability h2 .dim { color: rgba(255, 249, 232, 0.58); }
.capability h2 .yel { color: var(--yellow); }
.capability p {
  margin: 26px auto 0;
  max-width: 640px;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 249, 232, 0.65);
}
.capability .specs {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.capability .spec {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.72);
  border: 1px solid var(--hairline-dark);
  background: rgba(255, 244, 209, 0.04);
  border-radius: 3px;
  padding: 10px 16px;
}
.capability .spec b { color: var(--yellow); font-weight: 600; }
.capability .stripe-bar { width: 200px; margin: 48px auto 0; }

/* ── Diversified Group section ─────────────────────────────────────── */

/* Pure white ground (DP's canonical light), not Ormond paper — a quiet
   cue that this section speaks the parent brand's language. */
.group { background: #FFFFFF; border-top: 1px solid var(--line); }

.group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vh, 44px);
  align-items: start;
}
.group .group-copy { max-width: 720px; }

.group h2 {
  margin: 18px 0 0;
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-family: var(--font-sans);
  text-transform: none;
}
.group h2 .lite { color: var(--muted); font-weight: 300; }
.group .group-copy p {
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
}

.group-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .group-cards { grid-template-columns: 1fr; } }

.gcard {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(22px, 2.4vw, 30px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-brand), box-shadow 0.3s var(--ease-brand), border-color 0.3s ease;
}
.gcard:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 81, 42, 0.3);
  box-shadow: 0 18px 40px -18px rgba(35, 31, 32, 0.2);
}
/* (A blurred green corner glow lived here. Removed — a soft colour wash
   behind a card corner is exactly the generated-looking tell the house
   rules ban. The cards already lift and shift border colour on hover.) */
.gcard .logo-zone { height: 56px; display: flex; align-items: center; }
.gcard .logo-zone img { max-height: 100%; max-width: 200px; object-fit: contain; }
.gcard .logo-zone svg { height: 44px; width: auto; }
.gcard h3 { margin: 18px 0 0; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; padding-top: 16px; border-top: 1px solid var(--line); }
.gcard p { margin: 8px 0 0; font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); }
.gcard .domain {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dp-forest);
  display: flex;
  align-items: center;
  gap: 6px;
}
.gcard .domain svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease-brand); }
.gcard:hover .domain svg { transform: translate(2px, -2px); }

/* The self card — not a link, no lift, hazard keyline instead of the
   green corner glow: Ormond's palette sitting beside the DP family's. */
.gcard--self { padding-top: 4px; }
.gcard--self::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, var(--ink) 12px 24px);
}
.gcard--self:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.gcard--self .domain { color: var(--brass); }
.gcard--self .domain::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--yellow);
  border: 1px solid rgba(35, 31, 32, 0.5);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ── Contact / visit the shop ──────────────────────────────────────── */

.visit {
  position: relative;
  background: var(--surface);
  color: #FFF9E8;
  overflow: hidden;
}
.visit-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }

.visit h2 {
  margin: 18px 0 0;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(2.2rem, 1.3rem + 3.6vw, 3.8rem);
  line-height: 1.03;
  text-transform: uppercase;
}
.visit .visit-copy p {
  margin: 18px 0 0;
  max-width: 460px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 249, 232, 0.65);
}
.visit .visit-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Slim centered variant for the home-page contact strip */
.visit--strip { text-align: center; }
.visit--strip .visit-copy p { margin-inline: auto; }
.visit--strip .visit-ctas { justify-content: center; }

/* The shop card — a brass-plate business card */
.shop-card {
  background: var(--surface-2);
  border: 1px solid var(--hairline-dark);
  border-radius: 4px;
  padding: clamp(26px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
.shop-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, var(--ink) 12px 24px);
}
.shop-card dl { margin: 0; display: grid; gap: 20px; }
.shop-card dt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.4);
}
.shop-card dd { margin: 6px 0 0; font-size: 1.05rem; line-height: 1.55; }
.shop-card dd a { text-decoration: none; border-bottom: 1px solid rgba(255, 203, 5, 0.35); transition: border-color 0.25s, color 0.25s; }
.shop-card dd a:hover { color: var(--yellow); border-color: var(--yellow); }
.shop-card dd .mono { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.08em; }

/* One warm grade across all photography — reads as a commissioned set,
   and ties the shop-floor yellows to the brand yellow. */
.rent-photo img, .rc-photo img, .rc-gallery .ph img, .page-hero--split .ph img {
  filter: sepia(0.12) saturate(0.88) contrast(1.05) brightness(0.98);
}

/* Service-desk facts row (services page) — the spec-plate idiom on paper */
.svc-desk {
  margin-top: clamp(28px, 4vh, 44px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(20px, 2.6vw, 32px);
}
.svc-desk dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
}
@media (max-width: 1080px) { .svc-desk dl { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .svc-desk dl { grid-template-columns: 1fr; } }
.svc-desk dt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.svc-desk dd { margin: 6px 0 0; font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }

/* Map embed (contact page) */
.map-frame {
  margin-top: clamp(36px, 5vh, 56px);
  border: 1px solid var(--hairline-dark);
  border-radius: 4px;
  overflow: hidden;
  height: 340px;
  position: relative;
  z-index: 1;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Touch devices have no hover — genuine logos read at full strength */
@media (hover: none) {
  .logo-wall .plate img, .marquee .plate img { filter: none; opacity: 1; }
}

/* Gloved-thumb CTAs on phones: full-width, 48px */
@media (max-width: 560px) {
  .hero-ctas .btn, .visit-ctas .btn, .rc-cta .actions .btn, .rent-tease .ctas .btn {
    width: 100%;
    height: 48px;
  }
}

/* ── Footer ────────────────────────────────────────────────────────── */

.footer {
  background: var(--surface);
  color: rgba(255, 249, 232, 0.6);
  border-top: 1px solid var(--hairline-dark);
  padding: 56px 0 40px;
  font-size: 0.9rem;
}
.footer .top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer .brand-lock { display: flex; align-items: center; gap: 16px; color: #FFF9E8; }
.footer .brand-lock svg { height: 22px; width: auto; }
.footer .division-note {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.58);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .division-note img { height: 20px; width: auto; opacity: 0.9; }
/* the vitals row — the three facts a buyer scrolls to the bottom for */
.footer .vitals {
  padding-top: 24px;
  font-size: 0.88rem;
  color: rgba(255, 249, 232, 0.72);
}
.footer .vitals a { border-bottom: 1px solid rgba(255, 203, 5, 0.3); }
.footer .bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}
.footer .slogan {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.58);
}
.footer a { color: inherit; text-decoration: none; transition: color 0.25s; }
.footer a:hover { color: var(--yellow); }
.footer nav { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; }

/* ── Arrow links (section teasers) ─────────────────────────────────── */

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
  border-bottom: 1px solid rgba(138, 109, 31, 0.35);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.section-link:hover { color: var(--ink); border-color: var(--ink); }
.section-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-brand); }
.section-link:hover svg { transform: translateX(3px); }
.section-link--dark { color: var(--yellow); border-color: rgba(255, 203, 5, 0.35); }
.section-link--dark:hover { color: #FFF9E8; border-color: #FFF9E8; }

/* ── Rentals teaser (home) ─────────────────────────────────────────── */

.rent-tease {
  background: var(--surface);
  color: #FFF9E8;
  position: relative;
  overflow: hidden;
}
.rent-tease-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .rent-tease-grid { grid-template-columns: 1fr; } }
.rent-tease h2 {
  margin: 18px 0 0;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(2.1rem, 1.2rem + 3.2vw, 3.4rem);
  line-height: 1.03;
  text-transform: uppercase;
}
.rent-tease h2 .dim { color: rgba(255, 249, 232, 0.58); }
.rent-tease p.body {
  margin: 18px 0 0;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 249, 232, 0.65);
}
.rent-tease .ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.rent-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--hairline-dark);
}
.rent-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.rent-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(19, 16, 8, 0.55), rgba(19, 16, 8, 0.1) 45%, transparent);
}
.rent-photo .tag {
  position: absolute;
  bottom: 16px; left: 18px;
  z-index: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rent-photo .tag::before {
  content: "";
  width: 20px; height: 6px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 4px, var(--ink) 4px 8px);
}

/* ── Rentals catalog (rentals.html) — editorial, not cards ─────────── */

.rc { background: var(--surface); color: #FFF9E8; position: relative; overflow: hidden; }

.rc-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 880px) { .rc-intro { grid-template-columns: 1fr; } }
.rc-intro h2 {
  margin: 0;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.2rem);
  line-height: 1.04;
  text-transform: uppercase;
}
.rc-intro h2 .dim { color: rgba(255, 249, 232, 0.58); }
.rc-intro p {
  margin: 20px 0 0;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 249, 232, 0.62);
}

.rc-lines .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.58);
  margin-bottom: 18px;
}
.rc-lines ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  font-family: var(--font-mono);
}
.rc-lines li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 244, 209, 0.08);
  padding-bottom: 9px;
}
.rc-lines li b { font-size: 0.85rem; font-weight: 700; letter-spacing: -0.01em; }
.rc-lines li span { font-size: 10.5px; color: rgba(255, 249, 232, 0.58); }

.rc-featured {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 3vw, 48px);
  margin: clamp(56px, 9vh, 104px) 0;
  align-items: stretch;
}
@media (max-width: 880px) { .rc-featured { grid-template-columns: 1fr; } }
.rc-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
}
.rc-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.rc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(19, 16, 8, 0.55), rgba(19, 16, 8, 0.12) 45%, transparent);
}
.rc-photo .corner {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.75);
}
.rc-photo .corner::after { content: ""; width: 24px; height: 1px; background: rgba(255, 249, 232, 0.4); }

.rc-feat-copy { display: flex; flex-direction: column; justify-content: space-between; padding-block: 6px; }
.rc-feat-copy .code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
}
.rc-feat-copy h3 {
  margin: 14px 0 0;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem);
  font-weight: 700;   /* 800 isn't loaded — don't let the browser fake it */
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.rc-feat-copy p { margin: 16px 0 0; font-weight: 300; font-size: 0.95rem; line-height: 1.7; color: rgba(255, 249, 232, 0.6); }
.rc-feat-copy p a { color: rgba(255, 249, 232, 0.85); text-decoration: underline; text-decoration-color: rgba(255, 203, 5, 0.55); text-underline-offset: 4px; }
.rc-feat-copy p a:hover { color: #fff; text-decoration-color: var(--yellow); }
.rc-specs {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 20px;
}
.rc-specs dt {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.58);
}
.rc-specs dd { margin: 5px 0 0; font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700; }

.rc-cats { border-top: 1px solid rgba(255, 244, 209, 0.12); }
.rc-cat {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 5fr) minmax(0, 5fr);
  gap: clamp(18px, 2.5vw, 40px);
  padding-block: clamp(32px, 5vh, 52px);
  border-bottom: 1px solid rgba(255, 244, 209, 0.12);
}
@media (max-width: 880px) { .rc-cat { grid-template-columns: 1fr; gap: 14px; } }
.rc-cat .idx {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  color: rgba(255, 249, 232, 0.34);
  transition: color 0.5s ease;
}
.rc-cat:hover .idx { color: var(--yellow); }
.rc-cat h3 { margin: 0 0 10px; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
.rc-cat .blurb { margin: 0; font-weight: 300; font-size: 0.94rem; line-height: 1.7; color: rgba(255, 249, 232, 0.58); max-width: 420px; }
.rc-cat ul {
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.5;
  display: grid;
  gap: 8px;
}
.rc-cat li { display: flex; align-items: baseline; gap: 10px; color: rgba(255, 249, 232, 0.62); }
/* Entries that are plain sentences rather than model numbers or specs opt
   back out of mono — mono is for data, not for prose. */
.rc-cat li.txt { font-family: var(--font-sans); font-size: 0.9rem; }
.rc-cat li::before { content: "›"; color: var(--yellow); }

.rc-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: clamp(40px, 6vh, 64px);
}
@media (max-width: 640px) { .rc-gallery { grid-template-columns: 1fr; } }
.rc-gallery figure { margin: 0; }
.rc-gallery .ph {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--hairline-dark);
}
.rc-gallery .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rc-gallery figcaption {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.58);
}

/* Closing beat — the brass-plate recipe from .shop-card, so the
   flagship page ends on a signed-off physical object. */
.rc-cta {
  margin-top: clamp(48px, 7vh, 72px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 24px;
  align-items: end;
  background: var(--surface-2);
  border: 1px solid var(--hairline-dark);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.rc-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 12px, var(--ink) 12px 24px);
}
.rc-cta p a { text-decoration: none; border-bottom: 1px solid rgba(255, 203, 5, 0.35); }
.rc-cta p a:hover { color: var(--yellow); border-color: var(--yellow); }
@media (max-width: 880px) { .rc-cta { grid-template-columns: 1fr; } }
.rc-cta .k {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 249, 232, 0.58);
  margin-bottom: 14px;
}
.rc-cta h3 { margin: 0; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); font-weight: 700; letter-spacing: -0.01em; max-width: 560px; }
.rc-cta p { margin: 12px 0 0; font-weight: 300; font-size: 0.94rem; color: rgba(255, 249, 232, 0.55); max-width: 520px; line-height: 1.65; }
.rc-cta .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
@media (min-width: 881px) { .rc-cta .actions { justify-content: flex-end; } }

/* ── Reduced motion ────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .grain, .stripe-bar--crawl,
  .marquee, .roundel svg { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
