/* VibePrint USA — Editorial Print-Craft Theme
   Fraunces (display) + Inter (body/UI)
   Palette: paper #f4efe6 · paper2 #ece4d6 · ink #16130d · blue #1b4df0 · rust #d4541f · line #d8cdb8
   ─────────────────────────────────────────────────────────────────────── */

/* ─── Design tokens ──────────────────────────────────────────────────── */
:root {
  --paper:   #f4efe6;
  --paper2:  #ece4d6;
  --ink:     #16130d;
  --blue:    #1b4df0;
  --rust:    #d4541f;
  --line:    #d8cdb8;
  --muted:   #5b5444;
  --radius:  2px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", system-ui, sans-serif;
}

/* ─── Reset & base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout helpers ─────────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 30px; }

/* ─── Site header ────────────────────────────────────────────────────── */
.site-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 30px;
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}

/* Brand logo — left column */
.brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}
.brand-word .usa {
  color: var(--blue);
  margin: 0;
}
/* Legacy badge (kept for fallback) */
.brand-badge {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.brand .usa { color: var(--blue); }

/* Nav links — center column */
.site-head nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  gap: 22px;
  flex-wrap: nowrap;
}
.site-head nav a {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms;
}
.site-head nav a:hover,
.site-head nav a[aria-current="page"] { color: var(--blue); }
.site-head nav a[aria-current="page"] {
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 1px;
}

/* CTA button */
.head-cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 200ms;
  white-space: nowrap;
}
.head-cta:hover { opacity: .82; }
.head-cta:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ─── Fixed social rail (left edge, follows scroll) ─────────────────── */
.social-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .18);
}
.social-rail a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 42px;
  color: var(--paper);
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}
.social-rail a + a { border-top: 1px solid rgba(255, 255, 255, .14); }
.social-rail a:hover,
.social-rail a:focus-visible { background: var(--blue); color: #fff; outline: none; }
.social-rail svg { width: 18px; height: 18px; display: block; }
@media (max-width: 991px) { .social-rail { display: none; } }

/* ─── Review banner (legal pages) ───────────────────────────────────── */
.review-banner {
  background: #fffbe6;
  border-bottom: 1.5px solid #f5c400;
  color: #6b4c00;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 24px;
}

/* ─── Kicker rule ────────────────────────────────────────────────────── */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
}
.kicker-rule {
  flex: 1;
  height: 1.5px;
  background: var(--line);
}
.kicker-rule--ink { background: var(--ink); }
.kicker .accent { color: var(--blue); }

/* ─── Shared section utilities ───────────────────────────────────────── */
.section { padding: 80px 0; }
.section--paper2 { background: var(--paper2); }
.section--ink { background: var(--ink); color: var(--paper); }

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 14px;
}
.section--ink .section-eyebrow { color: var(--line); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: .95;
  letter-spacing: .025em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 500; color: var(--blue); }
.section-title .accent { color: var(--blue); }
.section--ink .section-title { color: var(--paper); }

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}
.section--ink .section-lead { color: var(--line); }
.section-header { margin-bottom: 52px; }

/* ─── Shared button styles ───────────────────────────────────────────── */
.btn-ink {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 13px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid var(--blue);
  transition: opacity 200ms, background 200ms;
}
.btn-ink:hover { opacity: .85; }
.btn-ink:active { opacity: .7; }
.btn-ink:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 12px 21px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-outline:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn-blue {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 13px 22px;
  background: var(--blue);
  color: #fff;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 200ms;
}
.btn-blue:hover { opacity: .88; }
.btn-blue:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn-paper {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 13px 22px;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--paper);
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 200ms;
}
.btn-paper:hover { opacity: .88; }
.btn-paper:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn-ghost-paper {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: 12px 21px;
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(244,239,230,.4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
}
.btn-ghost-paper:hover { border-color: var(--paper); background: rgba(244,239,230,.1); }
.btn-ghost-paper:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  padding: 54px 30px 0;
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
}
.hero-kicker { margin-top: 0; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(54px, 10vw, 116px);
  line-height: .88;
  letter-spacing: .025em;
  max-width: 14ch;
  margin: 0;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

.hero-under {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1.5px solid var(--ink);
}
.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 46ch;
  color: var(--ink);
}
.hero-lede em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.hero-acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Stat band (hero bottom) */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  border: 1.5px solid var(--ink);
  border-bottom: none;
}
.stat-band-cell {
  padding: 20px 18px;
  border-right: 1.5px solid var(--ink);
}
.stat-band-cell:last-child { border-right: none; }
.stat-band-cell b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  display: block;
  line-height: 1;
  color: var(--ink);
}
.stat-band-cell.blue b { color: var(--blue); }
.stat-band-cell span {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── Service cards ──────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-card {
  background: var(--paper);
  border-right: 1.5px solid var(--ink);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 200ms;
  cursor: pointer;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--paper2); }
.svc-card:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }

.svc-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: var(--line);
  margin-bottom: 16px;
}
.svc-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.15;
}
.svc-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin: 0 0 18px;
}
.svc-card-items {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.svc-card-items li {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  background: var(--paper2);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 1px;
}
.svc-card-cta {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.svc-card-cta::after { content: "\2192"; }

/* ─── Features / Why grid ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.feature-item { display: flex; flex-direction: column; gap: 10px; }
.feature-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--blue);
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ─── Process steps (bordered row) ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 28px 22px;
  border-right: 1.5px solid var(--ink);
  background: var(--paper);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.step-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ─── Testimonials ───────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.testimonial {
  background: var(--paper);
  border-right: 1.5px solid var(--ink);
  padding: 28px 24px;
}
.testimonial:last-child { border-right: none; }
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 18px;
}
.testimonial-author {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
}
.testimonial-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* ─── CTA band ───────────────────────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  background: var(--ink);
  border-top: 1.5px solid rgba(244,239,230,.12);
  border-bottom: 1.5px solid rgba(244,239,230,.12);
}
.cta-band-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-band-copy { max-width: 52ch; }
.cta-band-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  line-height: .95;
  letter-spacing: .025em;
  margin: 0 0 12px;
  color: var(--paper);
}
.cta-band-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.cta-band-lead {
  font-size: 16px;
  color: var(--line);
  line-height: 1.6;
  margin: 0;
}
.cta-band-acts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.site-foot-full {
  border-top: 1.5px solid var(--ink);
  background: var(--paper2);
  padding: 48px 30px 28px;
}
.foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.foot-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.foot-wordmark .usa { color: var(--blue); }
.foot-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.foot-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink);
  margin: 0 0 12px;
  display: block;
}
.foot-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-col-links a {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms;
}
.foot-col-links a:hover { color: var(--blue); }
.foot-col-contact {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.foot-col-contact a {
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.foot-col-contact a:hover { color: var(--blue); }
.foot-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.foot-social-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 1px;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.foot-social-link:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.foot-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.foot-bottom-links {
  display: flex;
  gap: 18px;
}
.foot-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.foot-bottom-links a:hover { color: var(--ink); }

/* Simple footer (legal pages) */
.site-foot {
  border-top: 1.5px solid var(--ink);
  background: var(--paper2);
  padding: 22px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  font-size: 13px;
  color: var(--muted);
}
.site-foot .foot-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.site-foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-left: auto;
}
.site-foot nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 150ms;
}
.site-foot nav a:hover { color: var(--blue); }
.site-foot .copy { width: 100%; font-size: 12px; }

/* ─── Legal / prose layout ───────────────────────────────────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 30px 96px;
}
.legal-header { margin-bottom: 52px; }
.legal-header .eyebrow {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue);
  margin: 0 0 14px;
}
.legal-header h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 56px);
  line-height: .92;
  letter-spacing: .025em;
  margin: 0 0 18px;
}
.legal-header h1 .accent { color: var(--blue); }
.legal-header .meta {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 18px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.015em;
  margin: 52px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--line);
  color: var(--ink);
}
.legal-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  margin: 28px 0 8px;
  color: var(--ink);
}
.legal-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
}
.legal-body ul, .legal-body ol {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  padding-left: 24px;
  margin: 0 0 16px;
}
.legal-body li { margin-bottom: 6px; }
.legal-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms;
}
.legal-body a:hover { opacity: .8; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body .callout {
  background: var(--paper2);
  border-left: 2px solid var(--blue);
  padding: 14px 18px;
  margin: 24px 0;
  font-size: 14.5px;
  line-height: 1.65;
}
.legal-body .callout p { margin: 0; color: var(--ink); }
.contact-block {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 48px;
  font-size: 14.5px;
  line-height: 1.7;
}
.contact-block p { color: rgba(244,239,230,.7); margin: 0 0 6px; }
.contact-block a { color: var(--blue); text-decoration: none; font-weight: 600; }
.contact-block a:hover { text-decoration: underline; }
.contact-block strong { color: var(--paper); }

/* ─── Services page ──────────────────────────────────────────────────── */
.svc-detail {
  padding: 64px 0;
  border-bottom: 1.5px solid var(--line);
}
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.svc-detail-inner.flip { grid-template-columns: 1fr 320px; }
.svc-detail-inner.flip .svc-detail-meta { order: 2; }
.svc-detail-inner.flip .svc-detail-body { order: 1; }
.svc-detail-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.svc-detail-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: .025em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: .98;
}
.svc-detail-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 18px;
}
.svc-detail-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 22px;
}
.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.product-list li {
  background: var(--paper2);
  border: 1px solid var(--line);
  padding: 4px 11px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  border-radius: 1px;
}
.svc-detail-meta { position: sticky; top: 88px; }
.svc-meta-box {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.svc-meta-box h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: var(--paper);
}
.svc-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 13px;
}
.svc-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(244,239,230,.1);
  color: rgba(244,239,230,.65);
}
.svc-meta-list li:last-child { border-bottom: none; }
.svc-meta-list li span:last-child { color: var(--paper); font-weight: 700; }

/* ─── About page ─────────────────────────────────────────────────────── */
.about-hero {
  padding: 64px 30px 60px;
  border-bottom: 1.5px solid var(--ink);
}
.about-hero-inner { max-width: 1180px; margin: 0 auto; }
.about-story {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1.5px solid var(--line);
}
.about-body {
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
}
.about-body p { margin: 0 0 20px; }
.about-body p:last-child { margin: 0; }
.about-sidebar { position: sticky; top: 88px; }
.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.capability-list li {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.capability-list li:last-child { border-bottom: none; }
.cap-dot {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}
.diff-card {
  background: var(--paper);
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 26px 22px;
}
.diff-card:nth-child(3n) { border-right: none; }
.diff-card:nth-last-child(-n+3) { border-bottom: none; }
.diff-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--line);
  line-height: 1;
  margin-bottom: 8px;
}
.diff-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.diff-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ─── Contact page ───────────────────────────────────────────────────── */
.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 30px 96px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.form-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .03em;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1;
}
.form-lead {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 13px;
  transition: border-color 200ms, box-shadow 200ms;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,77,240,.12);
}
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.form-field select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 17px, calc(100% - 13px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  background-color: var(--paper2);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-submit {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 15px 18px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 200ms;
  margin-top: 8px;
}
.form-submit:hover { opacity: .85; }
.form-submit:active { opacity: .7; }
.form-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}
.form-status.success {
  display: block;
  background: #e6f4ed;
  color: #1a5c3a;
  border: 1.5px solid #2d9c68;
}
.form-status.error {
  display: block;
  background: #fdeaea;
  color: #a32424;
  border: 1.5px solid #d23b3b;
}
.contact-sidebar { position: sticky; top: 88px; }
.contact-info-block {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 18px;
}
.contact-info-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--paper);
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-list li { color: rgba(244,239,230,.65); line-height: 1.5; }
.contact-info-list a { color: var(--blue); text-decoration: none; font-weight: 600; }
.contact-info-list a:hover { text-decoration: underline; }
.contact-info-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(244,239,230,.4);
  display: block;
  margin-bottom: 3px;
}
.social-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.social-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  color: rgba(244,239,230,.55);
  background: rgba(244,239,230,.06);
  border: 1px solid rgba(244,239,230,.15);
  padding: 5px 10px;
  border-radius: 1px;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.social-link:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.response-badge {
  background: var(--paper2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.response-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.estimator-nudge {
  margin-top: 16px;
  padding: 18px 16px;
  background: var(--paper2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}
.estimator-nudge p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.5;
}
.estimator-nudge .nudge-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

/* ─── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ─── Responsive — 900px ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-under { grid-template-columns: 1fr; gap: 24px; }
  .hero-acts { justify-content: flex-start; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-acts { flex-direction: row; }
  .svc-detail-inner,
  .svc-detail-inner.flip {
    grid-template-columns: 1fr;
  }
  .svc-detail-inner.flip .svc-detail-meta { order: 0; }
  .svc-detail-inner.flip .svc-detail-body { order: 0; }
  .svc-detail-meta { position: static; }
  .about-story { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .diff-card:nth-child(3n) { border-right: 1.5px solid var(--ink); }
  .diff-card:nth-child(2n) { border-right: none; }
  .diff-card:nth-last-child(-n+3) { border-bottom: 1.5px solid var(--ink); }
  .diff-card:nth-last-child(-n+2) { border-bottom: none; }
}

/* ─── Responsive — 780px (header collapse) ──────────────────────────── */
@media (max-width: 780px) {
  .site-head {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    padding: 14px 18px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .head-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .site-head nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

/* ─── Responsive — 600px ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .wrap, .hero, .about-hero, .svc-detail-inner, .contact-layout { padding-left: 18px; padding-right: 18px; }
  .wrap { padding-left: 18px; padding-right: 18px; }
  .site-head { padding: 12px 14px; gap: 8px 12px; }
  .site-head nav { display: none; }
  .head-cta { display: none; }
  .hero { padding: 40px 18px 0; }
  .hero-title { font-size: clamp(42px, 14vw, 72px); }
  .hero-under { margin-top: 24px; padding-top: 20px; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-band-cell:nth-child(2) { border-right: none; }
  .stat-band-cell { border-bottom: 1.5px solid var(--ink); }
  .stat-band-cell:nth-child(3),
  .stat-band-cell:nth-child(4) { border-bottom: none; }
  .section { padding: 52px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .step:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .testimonial:last-child { border-bottom: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 52px 0; }
  .cta-band-inner { padding: 0 18px; }
  .cta-band-acts { flex-direction: column; }
  .legal-wrap { padding: 40px 18px 72px; }
  .site-foot nav { margin-left: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .svc-card:last-child { border-bottom: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .diff-card:last-child { border-bottom: none; }
  .folio-grid { grid-template-columns: 1fr; }
  .folio-card { border-right: none; border-bottom: 1.5px solid var(--ink); }
  .folio-card:last-child { border-bottom: none; }
}

/* ─── Portfolio page ──────────────────────────────────────────────── */
.folio-hero {
  padding: 64px 30px 60px;
  border-bottom: 1.5px solid var(--ink);
}
.folio-hero-inner { max-width: 1180px; margin: 0 auto; }

.folio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

.folio-card {
  display: flex;
  flex-direction: column;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--paper);
  transition: background 200ms;
}
.folio-card:hover { background: var(--paper2); }
.folio-card:focus-within { outline: 2px solid var(--blue); outline-offset: -2px; }

/* Remove trailing borders */
.folio-grid .folio-card:last-child { border-bottom: none; }

.folio-card-visual {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}

/* Per-category gradient visuals */
.folio-card[data-cat="signage"] .folio-card-visual {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2520 60%, #1b4df0 100%);
}
.folio-card[data-cat="banners"] .folio-card-visual {
  background: linear-gradient(135deg, #1b4df0 0%, #1236b0 50%, var(--ink) 100%);
}
.folio-card[data-cat="wraps"] .folio-card-visual {
  background: linear-gradient(135deg, var(--rust) 0%, #a83d15 50%, var(--ink) 100%);
}
.folio-card[data-cat="window"] .folio-card-visual {
  background: linear-gradient(135deg, #1b4df0 0%, rgba(27,77,240,.45) 50%, var(--paper2) 100%);
}
.folio-card[data-cat="tradeshow"] .folio-card-visual {
  background: repeating-linear-gradient(
    45deg,
    var(--paper2) 0px,
    var(--paper2) 10px,
    var(--line) 10px,
    var(--line) 11px
  );
}
.folio-card[data-cat="channel"] .folio-card-visual {
  background: linear-gradient(135deg, #0a0906 0%, #1b4df0 60%, #4a72f5 100%);
}
.folio-card[data-cat="retractable"] .folio-card-visual {
  background: linear-gradient(160deg, var(--paper2) 0%, var(--line) 40%, var(--ink) 100%);
}
.folio-card[data-cat="apparel"] .folio-card-visual {
  background: linear-gradient(135deg, var(--rust) 0%, #c0431a 40%, var(--paper2) 100%);
}

.folio-visual-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 32px);
  letter-spacing: .025em;
  line-height: .95;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(22,19,13,.4);
  position: relative;
  z-index: 1;
}
.folio-card[data-cat="window"] .folio-visual-label,
.folio-card[data-cat="tradeshow"] .folio-visual-label,
.folio-card[data-cat="retractable"] .folio-visual-label {
  color: var(--ink);
  text-shadow: none;
}

.folio-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.folio-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .025em;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.folio-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.folio-card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-top: 4px;
}

.folio-note {
  background: var(--paper2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
}
.folio-note a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.folio-note a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .folio-hero { padding: 40px 18px 40px; }
}
