/* ============================================================
   RIPPRINT — "THE SEPARATION"
   DNA: RIP-DNA-2026-0731 (r2) · Staatliches / Barlow · Card-Stack Cinematic
   Black ground · Volt #96FF00 = brand + CTA only · channel colors = services only
   Shape: rectilinear panels, 10px radius on interactive controls (Justyn re-lock)
   ============================================================ */

:root {
  --ink: #000000;
  --panel: #131e24;
  --panel-2: #0b1116;
  --volt: #96ff00;
  --paper: #ffffff;
  --muted: #9aa6a0;
  --body: #ccd6d0;
  --rule: #243038;
  --r: 10px;
  --snap: cubic-bezier(0.2, 0.8, 0.2, 1);
  --gut: clamp(20px, 5vw, 64px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--ink);
  color: var(--paper);
  font-family:
    "Barlow",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 3px solid var(--volt);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--volt);
  color: #000;
  padding: 12px 20px;
  border-radius: 0 0 var(--r) 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}
.skip:focus {
  left: 0;
}

h1,
h2,
h3,
.disp {
  font-family: "Staatliches", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.95;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(44px, 8.2vw, 100px);
}
h2 {
  font-size: clamp(31px, 5.2vw, 62px);
}
h3 {
  font-size: clamp(19px, 2.3vw, 27px);
}
p {
  color: var(--body);
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
section {
  position: relative;
}

/* ---------- registration marks: structural ---------- */
.reg {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0.45;
  z-index: 3;
}
.reg::before,
.reg::after {
  content: "";
  position: absolute;
  background: var(--volt);
}
.reg::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
.reg::after {
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}
.reg.tl {
  top: 16px;
  left: 16px;
}
.reg.tr {
  top: 16px;
  right: 16px;
}
.reg.br {
  bottom: 16px;
  right: 16px;
}

/* ---------- eyebrow ---------- */
.plate-no {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--volt);
  display: inline-block;
  margin-bottom: 18px;
}
.plate-no span {
  color: var(--muted);
}

/* ---------- buttons: 10px radius, instant invert ---------- */
.btn {
  display: inline-block;
  font-family: "Staatliches", sans-serif;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 2px solid var(--volt);
  background: var(--volt);
  color: #000;
  border-radius: var(--r);
  cursor: pointer;
  transition:
    background 0.12s linear,
    color 0.12s linear;
}
.btn:hover {
  background: transparent;
  color: var(--volt);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  background: var(--paper);
  color: #000;
  border-color: var(--paper);
}
.btn-dark {
  background: transparent;
  color: #000;
  border-color: #000;
}
.btn-dark:hover {
  background: #000;
  color: var(--volt);
}

/* ---------- nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 2px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
}
.brand img {
  height: 42px;
  width: auto;
}
.nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav a {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cbd4cf;
}
.nav a:hover {
  color: var(--volt);
}
.nav .btn {
  padding: 10px 20px;
  font-size: 15px;
}
.m-only {
  display: none;
}
.navtoggle {
  display: none;
  background: none;
  border: 2px solid var(--rule);
  border-radius: var(--r);
  padding: 9px 10px;
  cursor: pointer;
  width: 44px;
  height: 40px;
}
.navtoggle span {
  display: block;
  height: 2px;
  background: var(--paper);
  margin: 4px 0;
  transition:
    transform 0.2s var(--snap),
    opacity 0.2s;
}
.navtoggle.x span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navtoggle.x span:nth-child(2) {
  opacity: 0;
}
.navtoggle.x span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(70px, 11vw, 150px) 0 0;
  border-bottom: 2px solid var(--rule);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(0.3) contrast(1.14) brightness(0.66);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.93) 0%,
      rgba(0, 0, 0, 0.72) 46%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0.95) 100%
    );
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 760px;
  padding-bottom: clamp(44px, 7vw, 88px);
}
.hero h1 span {
  color: var(--volt);
  display: block;
}
.hero .sub {
  font-size: clamp(17px, 1.55vw, 20px);
  max-width: 50ch;
  margin: 26px 0 34px;
  color: #dbe4de;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* stat rail */
.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--rule);
}
.stat {
  padding: 24px 20px;
  border-right: 2px solid var(--rule);
}
.stat:last-child {
  border-right: none;
}
.stat b {
  display: block;
  font-family: "Staatliches", sans-serif;
  font-size: clamp(27px, 3.4vw, 42px);
  color: var(--volt);
  line-height: 1;
}
.stat span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- SIGNATURE: separation stack ---------- */
.sep {
  padding: clamp(64px, 9vw, 120px) 0;
}
.sep-head {
  max-width: 62ch;
  margin-bottom: 42px;
}
.sep-head p {
  margin-top: 16px;
}
/* live "made for" line — swaps content with the selected plate */
.sep-live {
  display: block;
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 3px solid var(--volt, #96ff00);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--r) var(--r) 0;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}
.sep-live.swap {
  opacity: 0;
  transform: translateY(4px);
}
.sep-live b {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.sep-live-chip {
  float: right;
  width: 12px;
  height: 12px;
  margin: 4px 0 0 12px;
  border-radius: 3px;
  background: #96ff00;
}
.stack {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}
.plates {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel-2);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  transition:
    transform 0.2s var(--snap),
    background 0.2s var(--snap),
    border-color 0.2s var(--snap);
}
.plate.on,
.plate:hover {
  background: var(--panel);
  border-color: #33424c;
  transform: translateX(5px);
}
.plate .chip {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.plate .nm {
  font-family: "Staatliches", sans-serif;
  font-size: clamp(20px, 2.3vw, 29px);
  letter-spacing: 0.02em;
}
.plate .idx {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.plate.on .idx {
  color: var(--volt);
}
.plate .desc {
  grid-column: 1 / -1;
  font-size: 15px;
  color: #aab5af;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.25s var(--snap),
    padding-top 0.25s var(--snap);
}
.plate.on .desc {
  max-height: 140px;
  padding-top: 10px;
}

.press {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel);
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.press::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 7px 7px;
}
.press .layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s var(--snap);
}
.press .layer.on {
  opacity: 1;
}
.press .mark {
  font-family: "Staatliches", sans-serif;
  font-size: clamp(44px, 8.6vw, 96px);
  line-height: 0.86;
  text-align: center;
  letter-spacing: 0.02em;
  padding: 0 18px;
}
.press .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 18px;
  border-top: 2px solid var(--rule);
  background: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  z-index: 2;
}

/* ---------- full-bleed band ---------- */
.bleed {
  position: relative;
  min-height: clamp(300px, 42vw, 480px);
  display: grid;
  align-items: center;
  border-block: 2px solid var(--rule);
  overflow: hidden;
}
.bleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.1) brightness(0.42);
}
.bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.8)
  );
}
.bleed-in {
  position: relative;
  z-index: 2;
}
.pull {
  font-family: "Staatliches", sans-serif;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.06;
  max-width: 22ch;
  letter-spacing: 0.01em;
}

/* ---------- credentials ---------- */
.creds {
  padding: clamp(58px, 8vw, 100px) 0;
  background: var(--panel-2);
  border-bottom: 2px solid var(--rule);
}
.creds-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
}
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.6vw, 30px);
  margin-top: 38px;
}
.cred {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  padding: 28px;
  background: var(--ink);
  position: relative;
}
.cred .badge {
  font-family: "Staatliches", sans-serif;
  color: var(--volt);
  font-size: 25px;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 10px;
}
.cred p {
  font-size: 15px;
}
.cred strong {
  color: var(--paper);
}

/* ---------- bands ---------- */
.band {
  padding: clamp(64px, 9vw, 112px) 0;
  border-bottom: 2px solid var(--rule);
}
.band-alt {
  background: var(--panel-2);
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.4vw, 60px);
  align-items: center;
}
.stackcol {
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
}
.figbox {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.figbox img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.08) brightness(0.82);
}
.figbox .cnr {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-top: 3px solid var(--volt);
  border-left: 3px solid var(--volt);
  border-top-left-radius: var(--r);
  z-index: 2;
}

.steps {
  list-style: none;
  counter-reset: s;
  margin-top: 30px;
}
.steps li {
  counter-increment: s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 2px solid var(--rule);
}
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: "Staatliches", sans-serif;
  font-size: 26px;
  color: var(--volt);
  line-height: 1;
}
.steps h3 {
  margin-bottom: 5px;
}
.steps p {
  font-size: 15px;
}

/* ---------- info boards ---------- */
.board {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel);
  padding: 26px;
  position: relative;
}
.board-h {
  font-size: clamp(19px, 2.1vw, 25px);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rule);
}
.board-t {
  width: 100%;
  border-collapse: collapse;
}
.board-t th,
.board-t td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.board-t th {
  font-weight: 600;
  color: var(--paper);
}
.board-t td {
  color: var(--volt);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.board-t tr:last-child th,
.board-t tr:last-child td {
  border-bottom: none;
}
.board-list {
  list-style: none;
}
.board-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 2px;
}
.board-list li:last-child {
  border-bottom: none;
}
.board-list b {
  font-family: "Staatliches", sans-serif;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--volt);
  font-weight: 400;
}
.board-list span {
  font-size: 14.5px;
  color: #aab5af;
}
.board-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid var(--rule);
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- closer ---------- */
.closer {
  padding: clamp(62px, 8.5vw, 110px) 0;
  background: var(--volt);
  color: #000;
}
.closer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
}
/* CUTOVER MODE: the JotForm is a tall, self-contained 4-section form with its
   own header graphic, so it does not belong in the narrow right-hand column.
   Stack the closer and give the form its native width, centered. */
.closer-grid.closer-stack {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 40px;
}
.closer-stack .closer-copy {
  max-width: 62ch;
}
.closer-stack h2,
.closer-stack p {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.closer-stack .hero-cta {
  justify-content: center;
}
.closer-stack .qform-jot {
  width: 100%;
  max-width: 780px;
}
.closer h2 {
  color: #000;
  max-width: 18ch;
}
.closer p {
  color: #14260a;
  max-width: 50ch;
  margin: 18px 0 30px;
  font-weight: 500;
}
.closer .reg::before,
.closer .reg::after {
  background: #000;
}
.formslot {
  border: 2px dashed rgba(0, 0, 0, 0.4);
  border-radius: var(--r);
  padding: 30px;
  background: rgba(0, 0, 0, 0.06);
}
.formslot-lbl {
  font-family: "Staatliches", sans-serif;
  font-size: 24px;
  color: #000;
  display: block;
  margin-bottom: 8px;
}
.formslot p {
  color: #21380e;
  margin: 0;
  font-size: 15px;
}

/* ---------- footer ---------- */
footer {
  background: #000;
  padding: clamp(48px, 6vw, 78px) 0 0;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 38px;
  padding-bottom: 44px;
}
footer img {
  height: 34px;
  width: auto;
  margin-bottom: 18px;
}
footer h4 {
  font-family: "Staatliches", sans-serif;
  font-size: 17px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: var(--paper);
}
footer ul {
  list-style: none;
}
footer li {
  margin-bottom: 9px;
}
footer a,
footer p {
  font-size: 15px;
  color: #9aa79f;
}
footer a:hover {
  color: var(--volt);
}
.lyf {
  border-top: 2px solid var(--rule);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.lyf p {
  font-size: 13px;
  color: #79857e;
}

/* ---------- motion (guarded on .js so a script failure never blanks the page) ---------- */
.js .rise {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}
.js .rise.in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.22s var(--snap),
    transform 0.22s var(--snap);
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid,
  .stack,
  .two,
  .cred-grid,
  .f-grid,
  .creds-head,
  .closer-grid {
    grid-template-columns: 1fr;
  }
  .hero,
  .sep,
  .band,
  .creds,
  .closer,
  .bleed-in {
    text-align: center;
  }
  .hero-copy,
  .hero .sub,
  .sep-head,
  .closer p,
  .closer h2,
  .pull {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.95) 100%
    );
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    border-bottom: 2px solid var(--rule);
  }
  .stat:nth-child(odd) {
    border-right: 2px solid var(--rule);
  }
  .stat:nth-child(even) {
    border-right: none;
  }
  .plate,
  .steps li,
  .cred,
  .board,
  .formslot {
    text-align: left;
  }
  .f-grid {
    text-align: center;
  }
  .lyf {
    justify-content: center;
    text-align: center;
  }
  .d-only {
    display: none;
  }
  .m-only {
    display: block;
  }
  .navtoggle {
    display: block;
  }
  .nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    border-bottom: 2px solid var(--rule);
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
  }
  .nav ul.open {
    display: flex;
  }
  .nav ul li {
    width: 100%;
    text-align: center;
    padding: 13px 0;
    border-top: 2px solid var(--rule);
  }
}
@media (max-width: 520px) {
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none !important;
  }
  .hero-cta .btn {
    display: block;
    text-align: center;
  }
  .d-only {
    display: none !important;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
  .js .rise {
    opacity: 1;
    transform: none;
  }
  .plate {
    transform: none !important;
  }
}

/* ---------- signature panel polish (press plate) ---------- */
.press::before {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.075) 1px,
    transparent 1px
  );
  background-size: 6px 6px;
  z-index: 1;
}
.press::after {
  content: "";
  position: absolute;
  inset: 34px 34px 62px 34px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}
.press .layer {
  z-index: 2;
}
.press .mark {
  font-size: clamp(48px, 9.6vw, 112px);
}
.press .ghost {
  position: absolute;
  right: 22px;
  bottom: 70px;
  font-family: "Staatliches", sans-serif;
  font-size: clamp(92px, 15vw, 190px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
  pointer-events: none;
}

/* ---------- who we serve ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: 38px;
}
.who {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel-2);
  padding: 24px 22px;
  display: grid;
  gap: 6px;
  align-content: start;
}
.who b {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: clamp(19px, 2.1vw, 25px);
  letter-spacing: 0.02em;
  color: var(--paper);
}
.who span {
  font-size: 14.5px;
  color: #aab5af;
}
.who::before {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: var(--volt);
  border-radius: 2px;
  margin-bottom: 8px;
}

/* ---------- proof / quotes ---------- */
.quotes {
  columns: 2;
  column-gap: clamp(16px, 2.4vw, 26px);
  margin-top: 38px;
}
.q {
  break-inside: avoid;
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--ink);
  padding: 26px 24px;
  margin: 0 0 clamp(16px, 2.4vw, 26px);
  position: relative;
}
.q p {
  font-size: 16px;
  color: var(--body);
}
.q cite {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 2px solid var(--rule);
  font-style: normal;
  font-family: "Staatliches", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--volt);
}
@media (max-width: 1020px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .who {
    text-align: left;
  }
  .quotes {
    columns: 1;
  }
  .q {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

/* proof heading: let the authored <br> control the break, no orphan words */
.proof-head {
  max-width: none;
}
.proof-head h2 {
  max-width: none;
}
@media (max-width: 1020px) {
  .proof-head h2 {
    max-width: none;
  }
}

/* FIX: `.nav a` (0,1,1) was overriding `.btn` (0,1,0), painting the header CTA
   light grey on volt (~1.3:1). Re-assert the button identity at higher specificity. */
.nav .btn {
  font-family: "Staatliches", sans-serif;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.nav .btn:hover {
  background: transparent;
  color: var(--volt);
}

/* ---------- service area ---------- */
.areatwo {
  align-items: start;
}
.towns {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
  margin-top: 26px;
}
.towns li {
  font-size: 15px;
  color: #aab5af;
  padding-left: 16px;
  position: relative;
}
.towns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 2px;
  background: var(--volt);
}
.visit {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel);
  padding: 28px 26px;
  position: relative;
}
.vlist dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--volt);
  font-weight: 700;
  margin-top: 18px;
}
.vlist dt:first-child {
  margin-top: 0;
}
.vlist dd {
  font-size: 15.5px;
  color: var(--body);
  margin-top: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.vlist dd:last-of-type {
  border-bottom: none;
}
.vlist a:hover {
  color: var(--volt);
}
.vlist .hint {
  font-size: 13px;
  color: var(--muted);
}
.vlist-sub {
  display: inline-block;
  margin-top: 5px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 1020px) {
  .towns {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .visit {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .towns {
    grid-template-columns: 1fr;
  }
}

/* FIX: primary .btn on the volt closer band was volt-on-volt (invisible fill).
   Invert it so the primary action reads as a real button. */
.closer .btn {
  background: #000;
  color: var(--volt);
  border-color: #000;
}
.closer .btn:hover {
  background: transparent;
  color: #000;
  border-color: #000;
}
.closer .btn-dark {
  background: transparent;
  color: #000;
  border-color: #000;
}
.closer .btn-dark:hover {
  background: #000;
  color: var(--volt);
  border-color: #000;
}

/* ---------- why ripprint ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  margin-top: 38px;
}
.why-c {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel);
  padding: 28px 26px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.why-c::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--volt);
  border-radius: 2px;
}
.why-c b {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: clamp(21px, 2.3vw, 28px);
  letter-spacing: 0.02em;
  color: var(--paper);
}
.why-c span {
  font-size: 15.5px;
  color: #aab5af;
}

/* ---------- industries ---------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.7vw, 18px);
  margin-top: 38px;
}
.ind {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  background: var(--panel-2);
  padding: 20px 20px;
  display: grid;
  gap: 5px;
  align-content: start;
  transition:
    border-color 0.18s var(--snap),
    background 0.18s var(--snap);
}
.ind:hover {
  border-color: #3a4a55;
  background: var(--panel);
}
.ind b {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--volt);
}
.ind span {
  font-size: 14px;
  color: #9faba4;
  line-height: 1.5;
}
.ind-note {
  margin-top: 26px;
  font-size: 15.5px;
  color: var(--muted);
}
@media (max-width: 1020px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-c,
  .ind {
    text-align: left;
  }
}
@media (max-width: 560px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- faq (grid, deliberately not an accordion) ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.2vw, 26px);
  margin-top: 38px;
}
.faq {
  border-top: 2px solid var(--rule);
  padding-top: 20px;
}
.faq h3 {
  color: var(--volt);
  margin-bottom: 8px;
  font-size: clamp(18px, 2vw, 23px);
}
.faq p {
  font-size: 15.5px;
  color: #aab5af;
}
@media (max-width: 1020px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq {
    text-align: left;
  }
}

/* ---------- sticky mobile action bar (conversion) ---------- */
.mbar {
  display: none;
}
@media (max-width: 1020px) {
  .mbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.93);
    border-top: 2px solid var(--rule);
    backdrop-filter: saturate(140%) blur(8px);
    transform: translateY(110%);
    transition: transform 0.22s var(--snap);
  }
  .mbar.show {
    transform: translateY(0);
  }
  .mbar-b {
    display: block;
    text-align: center;
    padding: 14px 10px;
    border-radius: var(--r);
    font-family: "Staatliches", sans-serif;
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 2px solid var(--volt);
  }
  .mbar-call {
    background: transparent;
    color: var(--volt);
  }
  .mbar-quote {
    background: var(--volt);
    color: #000;
  }
  /* keep the closer clear of the bar */
  .closer {
    padding-bottom: calc(clamp(62px, 8.5vw, 110px) + 80px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mbar {
    transition: none;
  }
}

/* ---------- trust bar (verified signals, directly under hero CTA) ---------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  align-items: center;
}
.trust-i {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.trust-i b {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.trust-rev .stars {
  color: var(--volt);
  font-size: 15px;
  letter-spacing: 1px;
}
.trust-rev {
  border: 2px solid var(--rule);
  border-radius: var(--r);
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.45);
}
.trust-rev:hover {
  border-color: var(--volt);
}
@media (max-width: 1020px) {
  .trust {
    justify-content: center;
  }
}

/* ---------- service pages ---------- */
.svc-hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(46px, 6vw, 80px);
  border-bottom: 2px solid var(--rule);
  overflow: hidden;
  position: relative;
}
.svc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.1) brightness(0.42);
}
.svc-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.78) 50%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.92)
    );
}
.svc-in {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.svc-in h1 {
  font-size: clamp(36px, 6.4vw, 76px);
}
.svc-in .sub {
  font-size: clamp(16.5px, 1.5vw, 19px);
  max-width: 62ch;
  margin: 22px 0 30px;
  color: #dbe4de;
}
.crumb {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.crumb a:hover {
  color: var(--volt);
}
.crumb span {
  opacity: 0.45;
  margin: 0 4px;
}
.crumb em {
  font-style: normal;
  color: var(--paper);
}
.hows {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}
.how-b {
  border-top: 2px solid var(--rule);
  padding-top: 18px;
}
.how-b h3 {
  color: var(--paper);
  margin-bottom: 7px;
}
.how-b p {
  font-size: 15.5px;
  color: #aab5af;
}
.svc-links {
  list-style: none;
}
.svc-links li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.svc-links li:last-child {
  border-bottom: none;
}
.svc-links a {
  color: #14260a;
  font-weight: 600;
  font-size: 15.5px;
}
.svc-links a:hover {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 1020px) {
  .svc-hero {
    text-align: center;
  }
  .svc-in .sub,
  .crumb {
    margin-left: auto;
    margin-right: auto;
  }
  .how-b {
    text-align: left;
  }
  .svc-links {
    text-align: left;
  }
}

/* FIX: board-t values were nowrap, which was safe for short homepage entries but
   forced horizontal overflow on service pages where the spec values are long. */
.board-t td {
  white-space: normal;
}
.board-t {
  table-layout: fixed;
  width: 100%;
}
.board-t th {
  width: 42%;
  word-break: break-word;
}
.board-t td {
  width: 58%;
  word-break: break-word;
}

/* ---------- quote form (posts to /api/quote -> Sales Intake) ---------- */
.qform {
  border: 2px solid rgba(0, 0, 0, 0.35);
  border-radius: var(--r);
  padding: 28px 26px;
  background: rgba(0, 0, 0, 0.07);
}
/* cutover mode: JotForm carries intake so Printavo automations keep working.
   min-height reserves space for the injected iframe so the closer does not
   reflow under the visitor when JotForm reports its real height. */
.qform-jot {
  padding: 10px;
  background: #fff;
  overflow: hidden;
  min-height: 620px;
}
.qform-jot iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: calc(var(--r) - 4px);
}
.qform-fallback {
  padding: 40px 20px;
  text-align: center;
}
.qform-fallback a {
  color: #21380e;
  font-weight: 700;
}
.qf-sub {
  color: #21380e;
  font-size: 14.5px;
  margin: 6px 0 18px;
}
#quoteForm label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #14260a;
  margin-bottom: 12px;
}
#quoteForm label span[aria-hidden] {
  color: #6b1a1a;
  margin-left: 3px;
}
#quoteForm input,
#quoteForm select,
#quoteForm textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  font-family: "Barlow", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #0d1a04;
}
#quoteForm input:focus,
#quoteForm select:focus,
#quoteForm textarea:focus {
  outline: 3px solid #000;
  outline-offset: 1px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.qf-set {
  border: none;
  padding: 0;
  margin: 0 0 12px;
}
.qf-set legend {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #14260a;
  margin-bottom: 8px;
  padding: 0;
}
.qf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.qf-chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.qf-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.qf-chip span {
  display: inline-block;
  padding: 8px 13px;
  border: 2px solid rgba(0, 0, 0, 0.32);
  border-radius: 999px;
  font-family: "Barlow", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #14260a;
  background: rgba(255, 255, 255, 0.55);
}
.qf-chip input:checked + span {
  background: #000;
  color: var(--volt);
  border-color: #000;
}
.qf-chip input:focus-visible + span {
  outline: 3px solid #000;
  outline-offset: 2px;
}
.qf-check {
  display: flex !important;
  align-items: center;
  gap: 9px;
  align-self: end;
  margin-bottom: 20px !important;
}
.qf-check input {
  width: auto !important;
  margin: 0 !important;
  accent-color: #000;
  width: 18px !important;
  height: 18px !important;
}
.qf-check span {
  letter-spacing: 0.08em;
}
.qf-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}
.qf-btn {
  width: 100%;
  margin-top: 6px;
  background: #000;
  color: var(--volt);
  border-color: #000;
}
.qf-btn:hover {
  background: transparent;
  color: #000;
}
.qf-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.qf-msg {
  font-size: 14.5px;
  margin-top: 12px;
  color: #14260a;
  font-weight: 600;
  min-height: 1px;
}
.qf-msg.err {
  color: #6b1a1a;
}
.qf-alt {
  font-size: 13.5px;
  color: #21380e;
  margin-top: 10px;
}
.qf-alt a {
  text-decoration: underline;
  font-weight: 700;
}
@media (max-width: 620px) {
  .qf-row {
    grid-template-columns: 1fr;
  }
}
.qf-thanks {
  color: #14260a;
  font-size: 16px;
  line-height: 1.6;
}
.qf-thanks strong {
  display: block;
  font-family: "Staatliches", sans-serif;
  font-size: 26px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* ---------- quote form: two roads ---------- */
.qf-roads {
  display: grid;
  gap: 12px;
  margin: 18px 0 16px;
}
.qf-road {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 20px 22px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.55);
  font-family: inherit;
}
.qf-road:hover {
  background: #000;
  border-color: #000;
}
.qf-road b {
  display: block;
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #0d1a04;
  margin-bottom: 5px;
}
.qf-road span {
  display: block;
  font-size: 14.5px;
  color: #21380e;
  line-height: 1.5;
}
.qf-road:hover b {
  color: var(--volt);
}
.qf-road:hover span {
  color: #cfe6b8;
}
.qf-prog {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}
.qf-prog span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.18);
}
.qf-prog span.on {
  background: #000;
}
.qf-stepno {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #21380e;
}
.qf-h {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: clamp(23px, 2.6vw, 30px);
  color: #000;
  margin: 6px 0 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.qf-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.qf-f {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}
.qf-f.half {
  grid-column: span 1;
}
.qf-f label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #14260a;
  margin-bottom: 6px;
}
.qf-req {
  color: #6b1a1a;
}
.qf-hint {
  display: block;
  font-size: 13px;
  color: #2c4715;
  margin: -2px 0 7px;
}
.qf-f input,
.qf-f textarea {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  font-family: "Barlow", sans-serif;
  font-size: 15.5px;
  color: #0d1a04;
}
.qf-f input:focus,
.qf-f textarea:focus {
  outline: 3px solid #000;
  outline-offset: 1px;
}
.qf-chipwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.qf-chip2 {
  cursor: pointer;
  padding: 9px 14px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  font-family: "Barlow", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #14260a;
  background: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}
.qf-chip2:hover {
  border-color: #000;
}
.qf-chip2.on {
  background: #000;
  color: var(--volt);
  border-color: #000;
}
.qf-chip2:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}
.qf-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 8px;
}
.qf-nav .btn {
  width: 100%;
}
.qf-done p {
  color: #14260a;
  font-size: 15.5px;
  margin-top: 8px;
}
.qf-done strong {
  font-family: "Staatliches", sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 620px) {
  .qf-fields {
    grid-template-columns: 1fr;
  }
  .qf-f.half {
    grid-column: 1 / -1;
  }
  .qf-nav {
    grid-template-columns: 1fr;
  }
}

/* ---------- SMS consent (A2P compliance) ---------- */
.qf-consent {
  margin-top: 4px;
}
.qf-cbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #21380e !important;
  line-height: 1.45;
}
.qf-cbox input {
  width: 18px !important;
  height: 18px !important;
  margin: 1px 0 0 !important;
  flex: none;
  accent-color: #000;
}
