/* ===========================================================================
   Print A Vision, "Claude Design" direction (homepage).
   Implemented from the Claude Design handoff (Home.dc.html + Site Header/Footer),
   re-grounded to the real PAV brand tokens (vodafone system, orange #FF8F40,
   Saira / Hanken Grotesk). Clean static, responsive, no inline style-hover.
   =========================================================================== */

:root {
  /* Brand (matches clients/printavision/builds/v1-src/styles.css) */
  --pv-orange: #FF8F40;
  --pv-orange-deep: #E5740E;
  --pv-orange-ink: #A8480A;
  --pv-orange-wash: #FCEBDD;
  --pv-on-accent: #1B1718;        /* ink on orange, never white */
  --pv-ink: #1B1718;
  --pv-ink-soft: #2A2526;
  --pv-body: #54504E;
  --pv-mute: #8C8682;
  --pv-canvas: #F8F6F4;
  --pv-canvas-soft: #ECE7E3;
  --pv-line: #DAD3CD;
  --pv-white: #FFFFFF;
  --pv-on-dark: #F8F6F4;

  /* Dark-section scale (from the Claude Design "why us" band) */
  --pv-dark: #1B1718;
  --pv-dark-card: #262120;
  --pv-dark-line: #34302F;
  --pv-dark-body: #A39C97;
  --pv-dark-soft: #CFC8C3;
  --pv-dark-mute: #7E7873;
  --pv-logo-grey: #B4ABA4;

  --font-display: "Saira", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --container: 1320px;
  --gutter: 40px;
  --section-pad: clamp(4rem, 8vw, 6.5rem);
  --nav-h: 78px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--pv-ink);
  background: var(--pv-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--pv-orange); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- layout primitives ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
/* longhand on purpose: .section often shares an element with .wrap, and the shorthand
   would zero .wrap's horizontal gutters (caught by the verify panel at 375px) */
.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--pv-ink); color: var(--pv-on-dark);
  padding: 12px 18px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- type roles ---------- */
.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--pv-orange-ink);
  margin-bottom: 1rem;
}
.eyebrow-dot {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--pv-body);
}
.eyebrow-dot::before { content: ""; width: 10px; height: 10px; background: var(--pv-orange); display: block; }
.h1 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.7rem, 8vw, 4.875rem); line-height: 0.93; letter-spacing: -0.02em;
  color: var(--pv-ink);
}
.h2 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 2.875rem); line-height: 0.98; letter-spacing: -0.015em;
  color: var(--pv-ink);
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 3rem; flex-wrap: wrap;
}
.section-head .h2 { max-width: 620px; }

/* ---------- buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.03em; padding: 18px 30px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-sm { padding: 13px 22px; font-size: 0.875rem; }
.btn-primary { background: var(--pv-orange); color: var(--pv-on-accent); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--pv-ink); color: var(--pv-on-dark); }
.btn-dark { background: var(--pv-ink); color: var(--pv-on-dark); }
.btn-dark:hover, .btn-dark:focus-visible { background: var(--pv-orange); color: var(--pv-on-accent); }
.btn-onorange { background: var(--pv-ink); color: var(--pv-on-dark); }
.btn-onorange:hover, .btn-onorange:focus-visible { background: var(--pv-canvas); color: var(--pv-ink); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 1rem;
  color: var(--pv-ink); border-bottom: 2px solid var(--pv-ink); padding-bottom: 4px;
  white-space: nowrap; transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-arrow:hover, .link-arrow:focus-visible { color: var(--pv-orange-ink); border-color: var(--pv-orange); }
.link-tel {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem;
  padding: 18px 4px; border-bottom: 2px solid var(--pv-ink);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-tel:hover, .link-tel:focus-visible { color: var(--pv-orange-ink); border-color: var(--pv-orange); }

/* ===========================================================================
   HEADER
   =========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60; background: var(--pv-canvas);
  border-bottom: 1px solid var(--pv-line);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 15px; height: 15px; background: var(--pv-orange); display: block; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3125rem;
  letter-spacing: -0.005em; text-transform: uppercase; color: var(--pv-ink); line-height: 1;
}
.brand-logo { height: 50px; width: auto; display: block; }
.footer-about .brand-logo { height: 56px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 0.9375rem; font-weight: 600; color: var(--pv-ink); letter-spacing: 0.005em;
  transition: color 0.2s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--pv-orange-ink); }
.nav-link[aria-current="page"] { color: var(--pv-orange-ink); }

/* services dropdown (desktop: hover / focus-within) */
.has-menu { position: relative; height: var(--nav-h); display: flex; align-items: center; }
.menu-btn {
  display: flex; align-items: center; gap: 7px; font-size: 0.9375rem; font-weight: 600;
  color: var(--pv-ink); letter-spacing: 0.005em; transition: color 0.2s var(--ease);
}
.menu-btn:hover, .has-menu:hover .menu-btn, .has-menu:focus-within .menu-btn { color: var(--pv-orange-ink); }
.menu-caret {
  display: inline-block; width: 0; height: 0; border-left: 4px solid transparent;
  border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-top: 2px;
  transition: transform 0.2s var(--ease);
}
.has-menu:hover .menu-caret, .has-menu:focus-within .menu-caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(var(--nav-h) - 12px); left: -20px; width: 300px;
  background: var(--pv-white); border: 1px solid var(--pv-line);
  box-shadow: 0 22px 44px -22px rgba(27,23,24,0.34); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 13px 14px; transition: background 0.15s var(--ease); }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--pv-canvas); }
.dropdown .d-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.01em; display: block; color: var(--pv-ink);
}
.dropdown .d-sub { font-size: 0.8125rem; color: var(--pv-body); display: block; margin-top: 2px; }
.header-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.header-tel {
  font-size: 0.875rem; font-weight: 600; color: var(--pv-body); white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.header-tel:hover, .header-tel:focus-visible { color: var(--pv-ink); }

/* hamburger + mobile overlay */
.hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--pv-ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.hamburger span { position: relative; }
.hamburger span::before { position: absolute; top: -7px; left: 0; }
.hamburger span::after { position: absolute; top: 7px; left: 0; }
.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 55; background: var(--pv-canvas);
  padding: 28px var(--gutter) 48px; overflow-y: auto;
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.3s var(--ease), visibility 0.3s;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
body.nav-open { overflow: hidden; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); }
.hamburger.open span::after { top: 0; transform: rotate(-45deg); }
.mobile-nav a, .mobile-acc-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase;
  color: var(--pv-ink); padding: 18px 0; border-bottom: 1px solid var(--pv-line); text-align: left;
}
.mobile-acc-panel { display: none; padding: 4px 0 12px; }
.mobile-acc-panel.open { display: block; }
.mobile-acc-panel a {
  font-family: var(--font-body); font-weight: 600; font-size: 1.0625rem; text-transform: none;
  color: var(--pv-body); padding: 11px 0 11px 16px; border-bottom: 0;
}
.mobile-cta { margin-top: 28px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 2.375rem; flex-wrap: wrap; }
.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;
}
/* WCAG 2.2.2 pause/play control for the looping hero video */
.video-toggle {
  position: absolute; right: 10px; bottom: 10px; z-index: 4; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(27, 23, 24, 0.62); display: flex; align-items: center;
  justify-content: center; transition: background 0.2s var(--ease);
}
.video-toggle:hover, .video-toggle:focus-visible { background: rgba(27, 23, 24, 0.88); }
.video-toggle::before, .video-toggle::after {
  content: ""; display: block; position: absolute; width: 3px; height: 13px; background: var(--pv-on-dark);
}
.video-toggle::before { transform: translateX(-3px); }
.video-toggle::after { transform: translateX(3px); }
.video-toggle.paused::before {
  width: 0; height: 0; background: transparent; border-style: solid;
  border-width: 7px 0 7px 11px; border-color: transparent transparent transparent var(--pv-on-dark);
  transform: translateX(1px);
}
.video-toggle.paused::after { display: none; }

/* ===========================================================================
   TRUST STRIP
   =========================================================================== */
.trust { background: var(--pv-canvas-soft); border-top: 1px solid var(--pv-line); border-bottom: 1px solid var(--pv-line); }
.trust-inner {
  max-width: var(--container); margin: 0 auto; padding: 30px var(--gutter);
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: space-between;
}
.trust-label { font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--pv-body); }
.trust-logos { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.trust-logos span {
  font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--pv-logo-grey);
}

/* ===========================================================================
   SERVICES
   =========================================================================== */
.svc-eyebrow { color: var(--pv-orange-ink); }
.svc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.svc-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { display: block; background: var(--pv-white); border: 1px solid var(--pv-line); transition: border-color 0.2s var(--ease); }
.svc-card:hover, .svc-card:focus-visible { border-color: var(--pv-orange); }
.svc-media { overflow: hidden; background: var(--pv-canvas-soft); }
.svc-row-2 .svc-media { aspect-ratio: 16 / 10; }
.svc-row-3 .svc-media { aspect-ratio: 3 / 2; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.04); }
.svc-body { padding: 26px 28px 28px; }
.svc-row-3 .svc-body { padding: 22px 24px 24px; }
.svc-head { display: flex; align-items: baseline; gap: 12px; }
.svc-num { font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem; color: var(--pv-orange-ink); }
.svc-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; letter-spacing: -0.01em; color: var(--pv-ink); }
.svc-row-3 .svc-title { font-size: 1.25rem; }
.svc-desc { font-size: 1rem; color: var(--pv-body); line-height: 1.55; margin-top: 12px; max-width: 420px; }
.svc-row-3 .svc-desc { font-size: 0.9375rem; line-height: 1.5; margin-top: 10px; }

/* ===========================================================================
   GALLERY
   =========================================================================== */
.gallery { background: var(--pv-white); border-top: 1px solid var(--pv-line); border-bottom: 1px solid var(--pv-line); }
.gallery .wrap { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.g-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.g-cell { overflow: hidden; background: var(--pv-canvas-soft); }
.g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.g-cell:hover img { transform: scale(1.05); }
.g-2x2 { grid-column: span 2; grid-row: span 2; }
.g-2x1 { grid-column: span 2; }

/* ===========================================================================
   WHY US + PROCESS (dark)
   =========================================================================== */
.why { background: var(--pv-dark); color: var(--pv-on-dark); }
.why .eyebrow { color: var(--pv-orange); }
.why .h2 { color: var(--pv-on-dark); margin-bottom: 3.5rem; max-width: 680px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--pv-dark-line); border: 1px solid var(--pv-dark-line); margin-bottom: 4.5rem; }
.why-item { background: var(--pv-dark); color: var(--pv-on-dark); padding: 32px 28px; }
.why-item .tick { width: 34px; height: 4px; background: var(--pv-orange); margin-bottom: 20px; }
.why-item h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.1875rem; letter-spacing: -0.005em; margin-bottom: 10px; }
.why-item p { font-size: 0.9375rem; line-height: 1.55; color: var(--pv-dark-body); }

.proc-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.proc-eyebrow { color: var(--pv-dark-body); margin-bottom: 1.75rem; }
.proc-step { display: flex; gap: 24px; padding: 22px 0; border-top: 1px solid var(--pv-dark-line); }
.proc-step:last-child { border-bottom: 1px solid var(--pv-dark-line); }
.proc-num { font-family: var(--font-display); font-weight: 800; font-size: 1.375rem; color: var(--pv-orange); line-height: 1.2; flex-shrink: 0; width: 42px; }
.proc-step h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.125rem; margin-bottom: 6px; }
.proc-step p { font-size: 0.9375rem; color: var(--pv-dark-body); line-height: 1.55; max-width: 440px; }
.specs { background: var(--pv-dark-card); border: 1px solid var(--pv-dark-line); padding: 34px; }
.specs-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.04em; color: var(--pv-orange); margin-bottom: 1.5rem; }
.specs-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--pv-dark-line); margin-bottom: 20px; }
.specs-row:last-child { padding-bottom: 0; border-bottom: 0; margin-bottom: 0; }
.specs-row .k { font-size: 0.875rem; color: var(--pv-dark-body); }
.specs-row .v { font-family: var(--font-display); font-weight: 800; font-size: 1.0625rem; text-align: right; }

/* ===========================================================================
   TESTIMONIALS
   =========================================================================== */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card { background: var(--pv-white); border: 1px solid var(--pv-line); padding: 32px; }
a.tst-card { transition: border-color 0.2s var(--ease); }
a.tst-card:hover, a.tst-card:focus-visible { border-color: var(--pv-orange); }
a.tst-card .link-arrow { margin-top: 16px; }
.tst-badge { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 1; color: var(--pv-orange-ink); text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 14px; }
.tst-stars { color: var(--pv-orange); font-size: 1.125rem; letter-spacing: 3px; margin-bottom: 20px; }
.tst-quote { font-size: 1.125rem; line-height: 1.55; color: var(--pv-ink); margin-bottom: 26px; font-weight: 500; }
.tst-by { display: flex; align-items: center; gap: 12px; }
.tst-avatar { width: 40px; height: 40px; background: var(--pv-canvas-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; color: var(--pv-body); }
.tst-name { font-weight: 700; font-size: 0.9375rem; }
.tst-role { font-size: 0.8125rem; color: var(--pv-body); }

/* ===========================================================================
   LOCATION
   =========================================================================== */
.loc { background: var(--pv-canvas-soft); border-top: 1px solid var(--pv-line); }
.loc-grid { display: grid; grid-template-columns: 1fr 1.15fr; }
.loc-info { padding: 88px 64px 88px var(--gutter); }
.loc-info .h2 { margin-bottom: 2.5rem; }
.loc-block { margin-bottom: 28px; }
.loc-k { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.8125rem; letter-spacing: 0.06em; color: var(--pv-body); margin-bottom: 8px; }
.loc-v { font-size: 1.1875rem; font-weight: 500; line-height: 1.45; }
.loc-v a { transition: color 0.2s var(--ease); }
.loc-v a:hover, .loc-v a:focus-visible { color: var(--pv-orange-ink); }
.loc-v .muted { color: var(--pv-body); font-size: 1rem; }
.loc-map { min-height: 560px; background: var(--pv-line); }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }

/* ===========================================================================
   CLOSING CTA BAND
   =========================================================================== */
.cta-band { background: var(--pv-orange); }
.cta-inner { max-width: var(--container); margin: 0 auto; padding: 84px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-band .h2 { color: var(--pv-on-accent); font-size: clamp(2.2rem, 7vw, 3.5rem); line-height: 0.94; letter-spacing: -0.02em; }
.cta-sub { font-size: 1.1875rem; color: var(--pv-on-accent); margin-top: 18px; max-width: 460px; line-height: 1.5; opacity: 0.82; }
.cta-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-tel { color: var(--pv-on-accent); font-weight: 700; font-size: 1.125rem; border-bottom: 2px solid var(--pv-on-accent); padding-bottom: 4px; }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.site-footer { background: var(--pv-dark); color: var(--pv-on-dark); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 76px var(--gutter) 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-about p { color: var(--pv-dark-body); max-width: 330px; margin: 22px 0 0; line-height: 1.65; font-size: 0.9375rem; }
.footer-about .btn { margin-top: 26px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pv-orange); }
.footer-links { display: flex; flex-direction: column; gap: 13px; margin-top: 20px; }
.footer-links a, .footer-contact a { color: var(--pv-dark-soft); font-size: 0.9375rem; transition: color 0.2s var(--ease); }
.footer-links a:hover, .footer-links a:focus-visible, .footer-contact a:hover, .footer-contact a:focus-visible { color: var(--pv-white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; font-size: 0.9375rem; }
.footer-contact .muted { color: var(--pv-dark-body); }
.footer-bottom { border-top: 1px solid var(--pv-dark-line); padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom .copy { color: var(--pv-dark-mute); font-size: 0.875rem; }
.footer-social { display: flex; align-items: center; gap: 24px; }
.footer-social a { color: var(--pv-dark-body); font-size: 0.875rem; font-weight: 600; transition: color 0.2s var(--ease); }
.footer-social a:hover, .footer-social a:focus-visible { color: var(--pv-orange); }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 460px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-info { padding: 64px var(--gutter); }
  .loc-map { min-height: 360px; }
  .tst-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 920px) {
  .nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .svc-row-2 { grid-template-columns: 1fr; }
  .svc-row-3 { grid-template-columns: 1fr; }
  .g-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-2x2 { grid-row: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .g-grid { grid-template-columns: 1fr; }
  .g-2x2, .g-2x1 { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { justify-content: flex-start; gap: 18px 28px; }
  .trust-logos { justify-content: flex-start; gap: 18px 24px; }
  .cta-inner { padding: 56px var(--gutter); }
  .loc-info { padding: 48px var(--gutter); }
}

/* ===========================================================================
   INTERIOR PAGES (service / work / about / studio / contact / 404)
   =========================================================================== */
.ihero { position: relative; min-height: clamp(340px, 46vh, 480px); display: flex; align-items: flex-end; overflow: hidden; background: var(--pv-dark); }
.ihero-media { position: absolute; inset: 0; z-index: 0; }
.ihero-media img { width: 100%; height: 100%; object-fit: cover; }
.ihero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,16,14,0.93) 0%, rgba(20,16,14,0.78) 38%, rgba(20,16,14,0.44) 72%, rgba(20,16,14,0.28) 100%); }
.ihero-inner { position: relative; z-index: 2; width: 100%; padding-top: clamp(2.5rem,6vw,4.5rem); padding-bottom: clamp(2.5rem,6vw,4.5rem); }
.ihero .h1 { color: var(--pv-on-dark); }
.ihero-sub { color: var(--pv-dark-soft); font-size: 1.1875rem; line-height: 1.55; max-width: 560px; margin-top: 1.2rem; }
.ihero .hero-actions { margin-top: 2rem; }
.crumbs { font-size: 0.85rem; color: var(--pv-dark-soft); letter-spacing: 0.02em; margin-bottom: 1rem; }
.crumbs a { color: inherit; border-bottom: 1px solid transparent; }
.crumbs a:hover, .crumbs a:focus-visible { border-color: currentColor; }
.ihero.no-photo { background: var(--pv-canvas-soft); }
.ihero.no-photo .h1 { color: var(--pv-ink); }
.ihero.no-photo .crumbs { color: var(--pv-body); }
.ihero.no-photo .ihero-sub { color: var(--pv-body); }
.studio-tag { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pv-orange); margin-bottom: 10px; }

.band-soft { background: var(--pv-canvas-soft); }
.band-dark { background: var(--pv-dark); color: var(--pv-on-dark); }
.band-dark .h2 { color: var(--pv-on-dark); }
.band-dark .eyebrow { color: var(--pv-orange); }
.band-dark p { color: var(--pv-dark-body); }

.lead { font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.5; color: var(--pv-ink-soft); max-width: 62ch; font-weight: 400; }

/* "what we make" 3-up */
.make-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.make-card { background: var(--pv-white); border: 1px solid var(--pv-line); }
.make-card .m-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--pv-canvas-soft); }
.make-card .m-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.make-card:hover .m-media img { transform: scale(1.04); }
.make-card .m-body { padding: 22px 24px 24px; }
.make-card h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; letter-spacing: -0.01em; color: var(--pv-ink); margin-bottom: 8px; }
.make-card p { font-size: 0.9375rem; color: var(--pv-body); line-height: 1.5; }

/* details: specs + chips | promise */
.detail-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.spec-list { margin-top: 1.2rem; border-top: 1px solid var(--pv-line); }
.spec-row { display: flex; justify-content: space-between; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--pv-line); }
.spec-row dt { color: var(--pv-body); font-size: 0.95rem; }
.spec-row dd { font-family: var(--font-display); font-weight: 700; color: var(--pv-ink); text-align: right; font-size: 0.95rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.chip { font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--pv-orange-ink); background: var(--pv-orange-wash); padding: 7px 13px; }
.promise { background: var(--pv-dark); color: var(--pv-on-dark); padding: 40px 36px; }
.promise blockquote { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.3; color: var(--pv-on-dark); }
.promise cite { display: block; margin-top: 20px; font-style: normal; font-size: 0.8125rem; color: var(--pv-orange); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-display); font-weight: 700; }

/* feature split (about) */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-split.flip .fs-media { order: 2; }
.fs-media { overflow: hidden; background: var(--pv-canvas-soft); aspect-ratio: 4 / 3; }
.fs-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split p { margin-top: 1rem; color: var(--pv-body); line-height: 1.6; }
.band-dark .feature-split p { color: var(--pv-dark-body); }

/* meet ruben */
.meet { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.meet-faces { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.meet-face { background: var(--pv-canvas-soft); }
.meet-face img { width: 100%; height: auto; display: block; }
.meet-face-ink { background: var(--pv-ink); }
.meet-face figcaption { font-family: var(--font-display); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--pv-mute); text-align: center; padding: 8px 0; }

/* interior gallery (uniform) */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid .g-cell { aspect-ratio: 1 / 1; }

/* contact form */
.form-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.form-card { background: var(--pv-white); border: 1px solid var(--pv-line); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--pv-ink); }
.field input, .field select, .field textarea { border: 1px solid var(--pv-line); background: var(--pv-canvas); padding: 12px 14px; font-size: 1rem; color: var(--pv-ink); border-radius: 0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--pv-orange); outline-offset: 1px; border-color: var(--pv-orange); }
.field textarea { min-height: 120px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-card .h-captcha { margin: 2px 0; }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-success { background: var(--pv-white); border: 1px solid var(--pv-orange); padding: 36px 32px; text-align: center; }
.form-success-ruben { width: 160px; height: auto; margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 10px; color: var(--pv-ink); }
.form-success p { color: var(--pv-body); max-width: 44ch; margin: 0 auto 18px; line-height: 1.6; }
.contact-aside { display: flex; flex-direction: column; gap: 24px; }
.contact-aside .block h3 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--pv-ink); margin-bottom: 6px; }
.contact-aside .block p, .contact-aside .block a { color: var(--pv-body); }
.contact-aside .block a:hover, .contact-aside .block a:focus-visible { color: var(--pv-orange-ink); }
.aside-call { display: flex; gap: 16px; align-items: center; background: var(--pv-canvas-soft); padding: 18px; }
.aside-ruben { width: 96px; height: auto; flex-shrink: 0; }
.aside-phone { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--pv-orange-ink); margin: 2px 0 4px; }
.map-frame { width: 100%; min-height: 220px; border: 1px solid var(--pv-line); filter: grayscale(0.2); display: block; }

/* 404 */
.page-404 { min-height: 68vh; display: flex; align-items: center; }
.page-404-inner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.ruben-404 { width: clamp(180px, 22vw, 280px); height: auto; }
.page-404-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 24px; }
.page-404-links a { font-weight: 600; color: var(--pv-orange-ink); border-bottom: 1px solid var(--pv-line); padding-bottom: 2px; }
.page-404-links a:hover, .page-404-links a:focus-visible { border-color: var(--pv-orange); }

@media (max-width: 900px) {
  .make-grid { grid-template-columns: 1fr; }
  .detail-split, .feature-split, .meet, .form-wrap, .meet-faces { grid-template-columns: 1fr; gap: 32px; }
  .feature-split.flip .fs-media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-404-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .ruben-404 { margin: 0 auto; }
  .page-404-links { justify-content: center; }
}
@media (max-width: 560px) {
  .form-card, .promise { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===========================================================================
   ELITE OVERHAUL SECTIONS (2026-07-02, judged design-panel spec)
   =========================================================================== */

/* ---------- 1. full-bleed hero ---------- */
.fhero {
  position: relative; min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: flex-end; background: var(--pv-dark); overflow: hidden;
}
.fhero-media { position: absolute; inset: 0; z-index: 0; }
.fhero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
/* The shop reel sits over the photo, invisible until playback actually starts
   (script adds .video-live on the `playing` event), so the photo doubles as
   poster, mobile hero, and reduced-motion fallback with no black flash. */
.fhero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.8s var(--ease);
}
.fhero.video-live .fhero-media video { opacity: 1; }
.fhero .video-toggle { top: 16px; right: 16px; bottom: auto; }
.fhero-mascot {
  position: absolute; right: clamp(16px, 4vw, 56px); bottom: 0; width: clamp(96px, 12vw, 150px);
  height: auto; z-index: 2; filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.4));
}
.fhero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(27,23,24,0.88) 0%, rgba(27,23,24,0.42) 42%, rgba(27,23,24,0.18) 100%),
    linear-gradient(to right, rgba(27,23,24,0.55) 0%, rgba(27,23,24,0.12) 60%, rgba(27,23,24,0) 100%);
}
.fhero-inner { position: relative; z-index: 2; width: 100%; padding-top: clamp(6rem, 14vh, 9rem); padding-bottom: clamp(3rem, 7vh, 5rem); }
.fhero-h1 { color: var(--pv-on-dark); font-size: clamp(2.2rem, 8.4vw, 4.6rem); max-width: 15ch; }
/* on-dark (not dark-soft): body-size text needs 4.5:1 over the reel's brightest beat (verify panel) */
.fhero-sub { color: var(--pv-on-dark); font-size: 1.1875rem; line-height: 1.55; max-width: 520px; margin-top: 1.4rem; }
.fhero .hero-actions { margin-top: 2.1rem; }
.fhero-tel {
  display: inline-flex; align-items: center; font-weight: 600; font-size: 1rem; color: var(--pv-on-dark);
  padding: 18px 4px; border-bottom: 2px solid var(--pv-on-dark);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.fhero-tel:hover, .fhero-tel:focus-visible { color: var(--pv-orange); border-color: var(--pv-orange); }
.fhero-trust {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 2.2rem;
  font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--pv-dark-soft);
}
.fhero-trust::before { content: ""; width: 10px; height: 10px; background: var(--pv-orange); display: block; }

/* ---------- 2. credentials bar ---------- */
.cred { background: var(--pv-dark); border-top: 1px solid var(--pv-dark-line); }
.cred-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--pv-dark-line); border-left: 1px solid var(--pv-dark-line); border-right: 1px solid var(--pv-dark-line);
}
.cred-cell { background: var(--pv-dark); padding: 34px 28px; display: block; }
.cred-num { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.75rem; line-height: 1; color: var(--pv-on-dark); }
.cred-label { font-size: 0.8125rem; color: var(--pv-dark-body); margin-top: 9px; text-transform: uppercase; letter-spacing: 0.08em; }
a.cred-link { transition: background 0.2s var(--ease); }
a.cred-link:hover, a.cred-link:focus-visible { background: var(--pv-dark-card); }
a.cred-link:hover .cred-num, a.cred-link:focus-visible .cred-num { color: var(--pv-orange); }

/* ---------- 3. six production lines ---------- */
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lines-grid .svc-media { aspect-ratio: 3 / 2; }
.lines-grid .svc-body { padding: 22px 24px 24px; }
.lines-grid .svc-title { font-size: 1.25rem; }
.lines-grid .svc-desc { font-size: 0.9375rem; line-height: 1.5; margin-top: 10px; }

/* ---------- 4. equipment ledger ---------- */
.ledger-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
.ledger .h2 { margin-bottom: 2.4rem; }
.ledger-list { border-top: 1px solid var(--pv-dark-line); }
.ledger-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 17px 0; border-bottom: 1px solid var(--pv-dark-line); }
.ledger-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.0625rem; letter-spacing: 0.005em; color: var(--pv-on-dark); }
.ledger-note { font-size: 0.875rem; color: var(--pv-dark-body); text-align: right; max-width: 300px; }
.ledger-close { margin-top: 1.9rem; font-family: var(--font-display); font-weight: 300; font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.35; color: var(--pv-dark-soft); max-width: 40ch; }
.ledger-media { display: grid; gap: 20px; }
.ledger-media figure { background: var(--pv-dark-card); }
.ledger-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ledger-media figcaption { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pv-dark-mute); padding: 10px 2px; }

/* ---------- 5. fabrication and inventory ---------- */
.fab-media { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-self: stretch; }
.fab-media figure { overflow: hidden; background: var(--pv-canvas-soft); margin: 0; }
.fab-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

/* ---------- 6. before / after slider ---------- */
.ba-tabs { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.ba-tab {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9375rem; text-transform: uppercase;
  letter-spacing: 0.03em; padding: 13px 22px; border: 1px solid var(--pv-line); color: var(--pv-body);
  background: var(--pv-white); transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ba-tab[aria-selected="true"] { background: var(--pv-ink); color: var(--pv-on-dark); border-color: var(--pv-ink); }
.ba-tab:hover:not([aria-selected="true"]), .ba-tab:focus-visible:not([aria-selected="true"]) { border-color: var(--pv-orange); color: var(--pv-ink); }
.ba-slider { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--pv-canvas-soft); }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: var(--pv-white); z-index: 2; box-shadow: 0 0 12px rgba(27,23,24,0.4); }
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--pv-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,23,24,0.35);
}
.ba-knob::before, .ba-knob::after {
  content: ""; width: 0; height: 0; border-style: solid; position: absolute; top: 50%; transform: translateY(-50%);
}
.ba-knob::before { border-width: 6px 8px 6px 0; border-color: transparent var(--pv-ink) transparent transparent; left: 9px; }
.ba-knob::after { border-width: 6px 0 6px 8px; border-color: transparent transparent transparent var(--pv-ink); right: 9px; }
.ba-tag {
  position: absolute; top: 14px; z-index: 2; font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(27,23,24,0.72); color: var(--pv-on-dark); padding: 7px 12px;
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; }
.ba-range {
  position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%;
  opacity: 0; margin: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}
.ba-slider:focus-within { outline: 2px solid var(--pv-orange); outline-offset: 3px; }
.ba-caption { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.ba-caption p { font-size: 1rem; color: var(--pv-body); }
.ba-step { width: 104px; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--pv-line); flex-shrink: 0; }

/* ---------- 7. field proof bento ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 215px; gap: 16px; }
.p-cell { position: relative; overflow: hidden; background: var(--pv-canvas-soft); margin: 0; }
.p-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.p-cell:hover img { transform: scale(1.04); }
.p-cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  background: linear-gradient(to top, rgba(27,23,24,0.82) 0%, rgba(27,23,24,0.55) 70%, rgba(27,23,24,0) 100%);
  color: var(--pv-on-dark); font-family: var(--font-display); font-weight: 700; font-size: 0.84rem;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 26px 16px 13px;
}
.p-2x2 { grid-column: span 2; grid-row: span 2; }
.p-1x2 { grid-row: span 2; }
.p-2x1 { grid-column: span 2; }

/* ---------- 8. the standard ---------- */
.standard-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }
.standard .h2 { margin-bottom: 2.4rem; max-width: 620px; }
.standard-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--pv-dark-line); }
.standard-steps li { display: flex; gap: 24px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--pv-dark-line); }
.standard-steps p { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.125rem; color: var(--pv-on-dark); }
.standard-policy { margin-top: 2rem; }
.standard-policy li { padding: 13px 0; border-bottom: 1px solid var(--pv-dark-line); font-size: 0.9375rem; color: var(--pv-dark-body); }
.standard-policy li:last-child { border-bottom: 0; }
.standard-policy a { color: var(--pv-dark-soft); border-bottom: 1px solid var(--pv-dark-line); }
.standard-policy a:hover, .standard-policy a:focus-visible { color: var(--pv-orange); border-color: var(--pv-orange); }
.standard-inset { background: var(--pv-dark-card); margin: 0; }
.standard-inset img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.standard-inset figcaption { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pv-dark-mute); padding: 12px 14px; }

/* ---------- 9. visit: photo + map column ---------- */
.loc-side { display: flex; flex-direction: column; }
.loc-photo { aspect-ratio: 16 / 9; overflow: hidden; background: var(--pv-canvas-soft); }
.loc-photo img { width: 100%; height: 100%; object-fit: cover; }
.loc-side .loc-map { flex: 1; min-height: 320px; }
.loc-studio { margin-top: 2rem; font-size: 0.9375rem; color: var(--pv-body); max-width: 44ch; }
.loc-studio a { font-weight: 600; color: var(--pv-orange-ink); }
.loc-studio a:hover, .loc-studio a:focus-visible { color: var(--pv-ink); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .ledger-grid { grid-template-columns: 1fr; gap: 40px; }
  .ledger-media { grid-template-columns: 1fr 1fr; }
  .standard-grid { grid-template-columns: 1fr; gap: 40px; }
  .standard-inset { max-width: 420px; }
  .proof-grid { grid-auto-rows: 180px; }
}
@media (max-width: 920px) {
  .cred-grid { grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--pv-dark-line); }
  .fab-media { max-width: 560px; }
}
@media (max-width: 700px) {
  /* tall mobile crop: bias toward the press and its operator, not the center floor.
     22% (not 26%) keeps the photographed trash bin out of the corner Ruben stands in. */
  .fhero-media img { object-position: 22% 35%; }
  .fhero-mascot { width: 84px; right: 12px; }
  /* the subhead crosses the bright wall on the tall crop; deepen the scrim (verify panel ~3.5:1) */
  .fhero-scrim {
    background:
      linear-gradient(to top, rgba(20,16,14,0.94) 0%, rgba(20,16,14,0.72) 52%, rgba(20,16,14,0.38) 100%),
      linear-gradient(to right, rgba(20,16,14,0.4) 0%, rgba(20,16,14,0.1) 70%, rgba(20,16,14,0) 100%);
  }
  .lines-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .p-1x2 { grid-row: span 1; }
  .ba-slider { aspect-ratio: 4 / 3; }
  .ledger-list li { flex-direction: column; gap: 4px; }
  .ledger-note { text-align: left; max-width: none; }
}
@media (max-width: 560px) {
  .cred-cell { padding: 24px 20px; }
  .cred-num { font-size: 1.4rem; }
  .ledger-media { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .p-2x2, .p-2x1 { grid-column: span 1; grid-row: span 1; }
  .ba-caption { align-items: flex-start; }
}
