/* ==========================================================================
   PrintHut Inc. — Abuja
   Ink black + CMYK magenta. Archivo display / Inter body.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --ink:          #0B0B0C;
  --ink-soft:     #17181A;
  --ink-line:     #2A2C30;
  --paper:        #FAFAF8;
  --paper-warm:   #F1EFEA;
  --white:        #FFFFFF;

  --magenta:      #E6007E;   /* display + fills only */
  --magenta-600:  #C4006B;   /* interactive / small text — 5.9:1 on white */
  --magenta-700:  #A30059;
  --magenta-200:  #FF6FB8;   /* small text on ink surfaces — 7.5:1 on --ink */
  --cyan:         #00A3D9;
  --yellow:       #FFD100;

  --fg:           #0B0B0C;
  --fg-muted:     #55585E;   /* 7.0:1 on paper */
  --fg-invert:    #FAFAF8;
  --fg-invert-mut:#A6AAB2;   /* 6.5:1 on ink */
  --border:       #DEDCD6;
  --border-dark:  #2A2C30;

  /* Type */
  --font-display: 'Archivo', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.82rem, 0.80rem + 0.10vw, 0.88rem);
  --step-0:  clamp(1.00rem, 0.97rem + 0.15vw, 1.06rem);
  --step-1:  clamp(1.13rem, 1.06rem + 0.35vw, 1.31rem);
  --step-2:  clamp(1.35rem, 1.20rem + 0.75vw, 1.75rem);
  --step-3:  clamp(1.75rem, 1.45rem + 1.50vw, 2.60rem);
  --step-4:  clamp(2.30rem, 1.60rem + 3.40vw, 4.40rem);

  /* Space — 4/8 rhythm */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --shell: 76rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 220ms;

  --z-header: 100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--fg);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
svg { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--magenta-600);
  outline-offset: 3px;
  border-radius: 3px;
}

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

.skip-link {
  position: absolute; left: var(--space-sm); top: -100px;
  z-index: 999; background: var(--ink); color: var(--fg-invert);
  padding: var(--space-xs) var(--space-md); border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-sm); }

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}
@media (min-width: 48rem) { .shell { width: min(100% - 4rem, var(--shell)); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  min-height: 48px; padding: 0.75rem 1.5rem;
  font-family: var(--font-body); font-size: var(--step--1);
  font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; border-radius: var(--radius-pill);
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn-pill { background: var(--magenta-600); color: var(--white); }
.btn-pill:hover { background: var(--magenta-700); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--fg-invert); }
.btn-dark:hover { background: var(--magenta-600); }
/* WhatsApp's dark brand green — 7.8:1 with white text, unlike the bright
   #25D366 which only reaches 1.9:1 and fails at button text sizes. */
.btn-whatsapp { background: #075E54; color: var(--white); }
.btn-whatsapp:hover { background: #04443D; transform: translateY(-2px); }
.btn-ico { display: grid; place-items: center; width: 18px; flex: none; }

.btn-ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-ghost:hover { background: var(--ink); color: var(--fg-invert); border-color: var(--ink); }
.btn-arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow { transform: translate(2px, -2px); }
.btn:active { transform: translateY(0); }

/* ---------- Section furniture ---------- */
.section-title { font-size: var(--step-3); }
.section-head { max-width: 44rem; margin-bottom: var(--space-lg); }
.section-sub { color: var(--fg-muted); margin-top: var(--space-sm); max-width: 60ch; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); min-height: 72px;
}

.brand {
  display: flex; align-items: center; gap: 0.6rem;
  min-height: 44px; text-decoration: none; color: var(--ink);
}
.brand-mark {
  display: grid; place-items: center; color: var(--ink);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.brand-text strong { transition: color var(--dur) var(--ease); }

/* The logo is a link home — give it the same hover affordance every other
   interactive element has, or it reads as static decoration. */
.brand:hover .brand-mark,
.brand:focus-visible .brand-mark { color: var(--magenta-600); transform: translateY(-1px); }
.brand:hover .brand-text strong,
.brand:focus-visible .brand-text strong { color: var(--magenta-600); }
.brand:active .brand-mark { transform: translateY(0); }
.brand-text strong {
  display: block; font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; letter-spacing: -0.045em; line-height: 1;
}
.brand-text em {
  display: block; font-style: normal; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-muted); margin-top: 3px;
}

.primary-nav { display: flex; align-items: center; gap: var(--space-lg); }
.primary-nav ul { display: flex; gap: var(--space-md); }
/* Scoped to `ul a` so it can't override the .nav-cta button's own padding
   and weight — `.primary-nav a` would outrank `.nav-cta` on specificity. */
.primary-nav ul a {
  font-size: var(--step--1); font-weight: 500; text-decoration: none;
  padding: 0.5rem 0; position: relative;
  transition: color var(--dur) var(--ease);
}
.primary-nav ul a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--magenta);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.primary-nav ul a:hover { color: var(--magenta-600); }
.primary-nav ul a:hover::after { transform: scaleX(1); }
.nav-cta { min-height: 44px; padding: 0.5rem 1.25rem; }

.nav-toggle {
  display: none; width: 48px; height: 48px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  place-items: center;
}
.nav-toggle-bars { display: grid; gap: 5px; width: 20px; }
.nav-toggle-bars i {
  display: block; height: 2px; background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 61.9375rem) {
  .nav-toggle { display: grid; }
  .primary-nav {
    position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 1.25rem var(--space-md);
    /* Scrolls within the viewport instead of relying on a fixed max-height. */
    max-height: calc(100dvh - 72px); overflow-y: auto;
    opacity: 0; transform: translateY(-8px);
    visibility: hidden; pointer-events: none;
    box-shadow: 0 18px 30px rgba(11, 11, 12, 0.10);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
  }
  .primary-nav.is-open {
    opacity: 1; transform: none;
    visibility: visible; pointer-events: auto;
  }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav ul a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .primary-nav ul a::after { display: none; }
  .nav-cta { justify-content: center; margin-top: var(--space-sm); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  background:
    radial-gradient(60rem 34rem at 78% -10%, rgba(230, 0, 126, 0.07), transparent 65%),
    linear-gradient(180deg, #EEF6FA 0%, var(--paper) 62%);
}
.hero-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 62rem) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; align-items: center; gap: var(--space-lg); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-style: italic;
  font-size: var(--step-0); color: var(--magenta-600);
  margin-bottom: var(--space-sm);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta); flex: none;
}

.hero-title {
  font-size: var(--step-4);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero-title .accent { color: var(--magenta); font-weight: 700; }

.hero-lede {
  margin-top: var(--space-md);
  max-width: 46ch; color: var(--fg-muted); font-size: var(--step-1);
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm); margin-top: var(--space-xl);
  border-top: 1px solid var(--border); padding-top: var(--space-md);
}
.hero-stats strong {
  display: block; font-family: var(--font-display);
  font-size: var(--step-2); font-weight: 700; letter-spacing: -0.03em;
}
.hero-stats span { font-size: var(--step--1); color: var(--fg-muted); }

/* --- Hero visual: CSS press --- */
.hero-visual { position: relative; }

.press {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #2C2E33 0%, #131417 100%);
  padding: 12%;
  display: grid; align-content: center;
}
.press-body {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 4%; padding: 6% 5%;
  background: linear-gradient(180deg, #3A3D44, #23252A);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.press-vent {
  aspect-ratio: 1 / 2.4; border-radius: 3px;
  background: rgba(255, 255, 255, 0.13);
}
.press-vent:nth-child(2) { background: var(--cyan); }
.press-vent:nth-child(4) { background: var(--magenta); }
.press-vent:nth-child(6) { background: var(--yellow); }

.press-sheet {
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 26%; margin-top: 7%;
  border-radius: var(--radius-sm); overflow: hidden;
  transform: perspective(600px) rotateX(26deg);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}
.ink-c { background: var(--cyan); }
.ink-m { background: var(--magenta); }
.ink-y { background: var(--yellow); }
.ink-k { background: #1A1A1A; }

.press-base {
  height: 8%; margin-top: 7%; border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-card {
  position: absolute; right: -0.5rem; top: -1.5rem;
  width: min(15rem, 62%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-md);
  box-shadow: 0 16px 40px rgba(11, 11, 12, 0.14);
}
.hero-card-num {
  font-family: var(--font-display); font-size: var(--step-2);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
}
.hero-card-label {
  font-size: var(--step--1); color: var(--fg-muted);
  margin-top: var(--space-xs);
}
.hero-card-link {
  display: inline-block; margin-top: var(--space-sm);
  font-size: var(--step--1); font-weight: 600;
  color: var(--magenta-600); text-decoration: none;
}
.hero-card-link:hover { text-decoration: underline; }

.hero-seal {
  position: absolute; left: -1.25rem; bottom: -1.75rem;
  color: var(--ink);
  background: var(--paper); border-radius: 50%;
}
.hero-seal svg { animation: spin 26s linear infinite; }
.seal-text {
  font-family: var(--font-body); font-size: 8.2px;
  font-weight: 600; letter-spacing: 0.13em; fill: currentColor;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 34rem) {
  .hero-card { position: static; width: 100%; margin-top: var(--space-md); box-shadow: none; }
  .hero-seal { display: none; }
  .hero-stats { grid-template-columns: 1fr; text-align: left; }
}

/* ==========================================================================
   SERVICE TABS
   ========================================================================== */
.services { padding: var(--space-2xl) 0; }

.tabs {
  display: flex; gap: var(--space-xs);
  overflow-x: auto; padding-bottom: var(--space-xs);
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.tab {
  flex: 0 0 auto; scroll-snap-align: start;
  display: grid; justify-items: center; gap: 0.5rem;
  min-width: 8.5rem; min-height: 88px;
  padding: var(--space-sm) var(--space-md);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); cursor: pointer;
  font-size: var(--step--1); font-weight: 500; text-align: center;
  transition: border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.tab-ico { width: 26px; color: var(--fg-muted); transition: color var(--dur) var(--ease); }
.tab:hover { border-color: var(--ink); }
.tab.is-active {
  border-color: var(--magenta); color: var(--magenta-700);
  background: #FFF2F8; font-weight: 600;
}
.tab.is-active .tab-ico { color: var(--magenta-600); }

.tab-panels { margin-top: var(--space-lg); }
.panel {
  display: grid; gap: var(--space-lg);
  padding: var(--space-lg); background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  animation: fadeUp 300ms var(--ease) both;
}
@media (min-width: 48rem) { .panel { grid-template-columns: 1fr 1.15fr; } }
.panel[hidden] { display: none; }
.panel-lead h3 { font-size: var(--step-2); }
.panel-lead p { margin-top: var(--space-sm); color: var(--fg-muted); }
.panel-list { display: grid; gap: var(--space-sm); align-content: start; }
.panel-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.75rem;
  align-items: start; padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.panel-list li::before {
  content: ''; width: 8px; height: 8px; margin-top: 0.6em;
  border-radius: 2px; background: var(--magenta);
}
.panel-list li:last-child { border-bottom: 0; padding-bottom: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   FACILITY BAND
   ========================================================================== */
.facility-band { padding-bottom: var(--space-2xl); }
.floor {
  position: relative; aspect-ratio: 21 / 9; min-height: 240px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #1D1F24 0%, #0B0B0C 70%);
  display: grid; align-content: center; gap: var(--space-lg);
  padding: var(--space-lg);
}
.floor-swatches { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; }
.floor-swatches span { height: 44px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.floor-swatches span:nth-child(1) { background: var(--cyan); }
.floor-swatches span:nth-child(3) { background: var(--magenta); }
.floor-swatches span:nth-child(5) { background: var(--yellow); }
.floor-swatches span:nth-child(8) { background: var(--magenta-700); }
.floor-stack { display: grid; gap: 5px; max-width: 22rem; }
.floor-stack i { height: 9px; border-radius: 3px; background: rgba(255,255,255,0.16); }
.floor-stack i:nth-child(2) { width: 82%; }
.floor-stack i:nth-child(3) { width: 64%; }
.floor-stack i:nth-child(4) { width: 48%; }
.floor-stack i:nth-child(5) { width: 30%; background: var(--magenta); }
.floor-tag {
  position: absolute; right: var(--space-md); bottom: var(--space-md);
  font-size: var(--step--1); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-invert-mut);
}
@media (max-width: 48rem) { .floor { aspect-ratio: auto; } .floor-tag { position: static; } }

/* ==========================================================================
   ABOUT (dark)
   ========================================================================== */
.about {
  background: var(--ink); color: var(--fg-invert);
  padding: var(--space-2xl) 0;
}
.about-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 62rem) { .about-grid { grid-template-columns: 1.4fr 1fr; } }
.about-main p { margin-top: var(--space-md); color: var(--fg-invert-mut); max-width: 62ch; }
.about-main strong { color: var(--fg-invert); font-weight: 600; }

.about-side { display: grid; gap: var(--space-md); align-content: start; }
.mission-card {
  border: 1px solid var(--border-dark); border-radius: var(--radius-md);
  padding: var(--space-md); background: var(--ink-soft);
}
.mission-label {
  font-size: var(--step--1); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--magenta-200);
  font-weight: 600; margin-bottom: var(--space-xs);
}
.mission-text { color: var(--fg-invert-mut); }

.values-heading {
  font-size: var(--step-2); margin-top: var(--space-2xl);
  padding-top: var(--space-lg); border-top: 1px solid var(--border-dark);
}
.values {
  display: grid; gap: var(--space-md); margin-top: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.values li {
  display: grid; gap: var(--space-2xs);
  padding: var(--space-md); border-radius: var(--radius-md);
  background: var(--ink-soft); border: 1px solid var(--border-dark);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.values li:hover { border-color: var(--magenta); transform: translateY(-3px); }
.value-idx {
  font-family: var(--font-display); font-size: var(--step--1);
  font-weight: 700; color: var(--magenta-200); letter-spacing: 0.08em;
}
.values strong { font-family: var(--font-display); font-size: var(--step-1); font-weight: 600; }
.values span:last-child { color: var(--fg-invert-mut); font-size: var(--step--1); line-height: 1.6; }

/* ==========================================================================
   QUOTE BAND
   ========================================================================== */
.quote-band { display: grid; background: var(--white); }
@media (min-width: 62rem) { .quote-band { grid-template-columns: 0.85fr 1.15fr; } }

.quote-visual {
  position: relative; overflow: hidden;
  background: var(--yellow);
  min-height: 18rem;
  display: grid; place-items: center;
}
.quote-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4rem, 14vw, 9rem); letter-spacing: -0.06em;
  color: var(--white); mix-blend-mode: overlay;
}
.quote-shapes { position: absolute; inset: 0; }
.quote-shapes i { position: absolute; display: block; border-radius: 50%; }
.quote-shapes i:nth-child(1) { width: 9rem; height: 9rem; background: var(--magenta); left: -2.5rem; bottom: -2.5rem; }
.quote-shapes i:nth-child(2) { width: 5rem; height: 5rem; background: var(--ink); right: 2rem; top: 2rem; border-radius: var(--radius-sm); transform: rotate(18deg); }
.quote-shapes i:nth-child(3) { width: 3rem; height: 3rem; background: var(--cyan); right: 22%; bottom: 18%; }

.quote-form-wrap { padding: var(--space-2xl) clamp(1.25rem, 5vw, 4rem); }
.quote-kicker {
  font-family: var(--font-display); font-style: italic;
  color: var(--magenta-600); font-size: var(--step-1);
  margin-top: var(--space-sm);
}
.quote-sub { color: var(--fg-muted); margin-top: var(--space-sm); max-width: 52ch; }

.quote-form {
  display: grid; gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 40rem) { .quote-form { grid-template-columns: 1fr 1fr; } }
.field-full { grid-column: 1 / -1; }

.field { display: grid; gap: var(--space-2xs); }
.field label { font-size: var(--step--1); font-weight: 600; }
.req { color: var(--magenta-600); }

.field input, .field select, .field textarea {
  width: 100%; min-height: 48px;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: var(--step-0);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #B9B6AE; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--magenta-600); background: var(--white); outline-offset: 1px;
}
.field .help { font-size: var(--step--1); color: var(--fg-muted); }
.field .err { font-size: var(--step--1); color: #B3001B; font-weight: 500; }
.field.has-error input, .field.has-error textarea { border-color: #B3001B; background: #FFF5F6; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm); }
.form-note { font-size: var(--step--1); color: var(--fg-muted); margin-top: calc(var(--space-md) * -0.5); }
.form-note a { color: var(--magenta-600); font-weight: 600; }

.form-status {
  grid-column: 1 / -1; font-size: var(--step--1); font-weight: 500;
}
.form-status:not(:empty) {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--magenta-600);
  background: #FFF2F8;
}

/* ==========================================================================
   WORK GRID
   ========================================================================== */
.work { padding: var(--space-2xl) 0; }
.work-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.w {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--radius-md); overflow: hidden;
  display: grid; align-items: end;
  padding: var(--space-sm);
  transition: transform var(--dur) var(--ease);
}
.w:hover { transform: translateY(-4px); }

/* Photo fills the tile; the tile's aspect-ratio reserves the space, so a
   lazy-loaded image can never shift the layout. */
.w > img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.w:hover > img { transform: scale(1.04); }

.w-label {
  position: relative; z-index: 3;
  font-size: var(--step--1); font-weight: 600;
  color: var(--white);
  /* Near-opaque so the label clears 4.5:1 even over a pure-white mockup. */
  background: rgba(11, 11, 12, 0.88);
  padding: 0.35rem 0.7rem; border-radius: var(--radius-pill);
  justify-self: start;
}

/* Placeholder tints shown while each photo lazy-loads (and if one 404s). */
.w-cards      { background: linear-gradient(135deg, #F5F1E8 0%, #DCD5C4 100%); }
.w-flyer      { background: linear-gradient(135deg, var(--magenta) 0%, #FF6FB1 100%); }
.w-swatch     { background: conic-gradient(from 200deg, var(--cyan), var(--magenta), var(--yellow), var(--cyan)); }
.w-box        { background: linear-gradient(135deg, #C89B6A 0%, #8F6438 100%); }
.w-banner     { background: linear-gradient(180deg, var(--ink) 0%, #33363D 100%); }
.w-label-roll { background: linear-gradient(135deg, var(--yellow) 0%, #FF9E00 100%); }
.w-book       { background: linear-gradient(135deg, #E8EDF2 0%, #B9C4D0 100%); }
.w-sign       { background: linear-gradient(135deg, var(--cyan) 0%, #0B5E8C 100%); }
.w-merch      { background: linear-gradient(135deg, #7A5CFF 0%, #2B1B7A 100%); }
.w-wrap       { background: linear-gradient(135deg, #FF3B30 0%, #8C0F0A 100%); }

/* Scrim under the label so it stays legible over any photograph. */
.w::after {
  content: ''; position: absolute; inset: auto 0 0 0; z-index: 2;
  height: 45%;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.55), transparent);
  pointer-events: none;
}

/* ==========================================================================
   INDUSTRIES MARQUEE
   ========================================================================== */
.industries { padding: var(--space-2xl) 0; background: var(--paper-warm); overflow: hidden; }
.marquee { overflow: hidden; padding: var(--space-xs) 0; }
.marquee-track {
  display: flex; gap: var(--space-sm); width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee-b .marquee-track { animation-duration: 55s; animation-direction: reverse; }
.marquee-track span {
  flex: none; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--step-1); letter-spacing: -0.01em;
  padding: 0.6rem 1.4rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.marquee-a .marquee-track span:nth-child(3n) { background: var(--ink); color: var(--fg-invert); border-color: var(--ink); }
.marquee-b .marquee-track span:nth-child(4n) { background: var(--magenta); color: var(--white); border-color: var(--magenta); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ==========================================================================
   WHY (dark)
   ========================================================================== */
.why { background: var(--ink); color: var(--fg-invert); padding: var(--space-2xl) 0; }
.why .section-sub { color: var(--fg-invert-mut); }
.why-grid {
  display: grid; gap: 1px; background: var(--border-dark);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}
.why-grid li {
  background: var(--ink); padding: var(--space-lg) var(--space-md);
  transition: background-color var(--dur) var(--ease);
}
.why-grid li:hover { background: var(--ink-soft); }
.why-grid h3 { font-size: var(--step-1); margin-bottom: var(--space-xs); }
.why-grid h3::before {
  content: ''; display: block; width: 26px; height: 3px;
  background: var(--magenta); margin-bottom: var(--space-sm);
}
.why-grid p { color: var(--fg-invert-mut); font-size: var(--step--1); line-height: 1.65; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { padding: var(--space-2xl) 0; }
.steps {
  display: grid; gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  counter-reset: step;
}
.steps li {
  position: relative; padding: var(--space-md);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.steps li:hover { border-color: var(--magenta); transform: translateY(-3px); }
.step-n {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--fg-invert);
  font-family: var(--font-display); font-weight: 700; font-size: var(--step--1);
  margin-bottom: var(--space-sm);
}
.steps li:hover .step-n { background: var(--magenta-600); }
.steps h3 { font-size: var(--step-1); margin-bottom: var(--space-2xs); }
.steps p { color: var(--fg-muted); font-size: var(--step--1); line-height: 1.6; }

/* ==========================================================================
   EQUIPMENT
   ========================================================================== */
.equipment { padding: 0 0 var(--space-2xl); }
.equip-grid {
  display: grid; gap: var(--space-xl);
  padding: var(--space-xl) clamp(1.25rem, 4vw, 3rem);
  background: var(--paper-warm); border-radius: var(--radius-lg);
}
@media (min-width: 62rem) { .equip-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.equip-copy p { color: var(--fg-muted); margin: var(--space-md) 0 var(--space-lg); max-width: 48ch; }
.equip-list { display: grid; gap: var(--space-sm); }
.equip-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.85rem;
  align-items: start; padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.equip-list li:last-child { border-bottom: 0; }
.equip-list li::before {
  content: ''; width: 10px; height: 10px; margin-top: 0.55em;
  border-radius: 50%; border: 3px solid var(--magenta);
}

/* ==========================================================================
   ASSURANCE
   ========================================================================== */
.assurance { padding-bottom: var(--space-2xl); }
.assurance-grid {
  display: grid; gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}
.assure-card {
  padding: var(--space-lg); background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.assure-ico {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: #FFF2F8; color: var(--magenta-700);
  margin-bottom: var(--space-md);
}
.assure-ico svg { width: 24px; }
.assure-card h3 { font-size: var(--step-1); margin-bottom: var(--space-xs); }
.assure-card p { color: var(--fg-muted); font-size: var(--step--1); line-height: 1.7; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: var(--space-2xl) 0; background: var(--paper-warm); }
.contact-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 62rem) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-copy p { color: var(--fg-muted); margin: var(--space-md) 0 var(--space-lg); max-width: 48ch; }

.contact-list { display: grid; gap: var(--space-md); align-content: start; }
.contact-list li {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.35rem var(--space-md); align-items: start;
  padding-bottom: var(--space-md); border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-ico {
  grid-row: span 2; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--fg-invert);
}
.contact-ico svg { width: 22px; }
.contact-k {
  font-size: var(--step--1); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted); font-weight: 600;
}
.contact-list address { font-style: normal; }
.contact-list a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-weight: 600; text-decoration-color: var(--magenta);
  text-underline-offset: 3px;
}
.contact-list a:hover { color: var(--magenta-600); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--fg-invert); padding: var(--space-2xl) 0 var(--space-lg); }
.footer-grid {
  display: grid; gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.footer-brand { max-width: 24rem; }
.footer-brand .brand-text strong { font-size: 1.6rem; }
.footer-brand .brand-text em { color: var(--fg-invert-mut); }
.footer-brand p {
  margin-top: var(--space-md); color: var(--fg-invert-mut);
  font-size: var(--step--1); line-height: 1.7;
}
.footer-col h2 {
  font-size: var(--step--1); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--magenta-200);
  margin-bottom: var(--space-md); font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col li, .footer-col a {
  font-size: var(--step--1); color: var(--fg-invert-mut);
  text-decoration: none; line-height: 1.6;
}
.footer-col a { transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--fg-invert); text-decoration: underline; }

/* Comfortable tap spacing for the dense footer lists on touch screens. */
@media (max-width: 61.9375rem) {
  .footer-col a { display: inline-flex; align-items: center; min-height: 40px; }
  .footer-col ul { gap: 0.15rem; }
}

.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-sm);
  margin-top: var(--space-2xl); padding-top: var(--space-md);
  border-top: 1px solid var(--border-dark);
  font-size: var(--step--1); color: var(--fg-invert-mut);
}
.footer-base a { color: inherit; text-decoration: none; }
.footer-base a:hover { color: var(--fg-invert); }

/* ==========================================================================
   SCROLL REVEAL + MOTION PREFERENCES
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 550ms var(--ease), transform 550ms var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-seal svg { animation: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .nav-toggle, .quote-visual, .marquee, .hero-seal, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .about, .why, .site-footer { background: #fff !important; color: #000 !important; }
  .about-main p, .why-grid p, .footer-col a { color: #333 !important; }
}
