/* =========================================================
   PRINT JOY — Pretoria print & branding studio
   Design system: process-colour (CMYK) on clean stock
   Type: Archivo Black (display) + Archivo (body)
   ========================================================= */

:root{
  --ink:        #1A1B1E;
  --ink-soft:   #34363B;
  --cyan:       #00AEEF;
  --magenta:    #EC0B6B;
  --yellow:     #FFC700;
  --cyan-deep:  #0089BD;
  --magenta-deep: #B80753;
  --steel:      #5B6169;
  --steel-light:#8D939B;
  --paper:      #FFFFFF;
  --paper-tint: #F3F6F8;
  --line:       #E3E7EA;

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body:    'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --container: 1160px;
  --radius: 3px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-weight: 500;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 .5em;
  letter-spacing: .1px;
}
p{ margin: 0 0 1em; color: var(--steel); max-width: 60ch; }

:focus-visible{ outline: 3px solid var(--cyan); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

.wrap{ width:100%; max-width: var(--container); margin:0 auto; padding: 0 28px; }

/* ---------------------------------------------------------
   Colour-bar divider — literal print-proof colour bar
--------------------------------------------------------- */
.colorbar{ display:flex; height:6px; width:84px; }
.colorbar span{ flex:1; }
.colorbar .c{ background: var(--cyan); }
.colorbar .m{ background: var(--magenta); }
.colorbar .y{ background: var(--yellow); }
.colorbar .k{ background: var(--ink); }
.colorbar.lg{ height:8px; width:120px; }

/* ---------------------------------------------------------
   Buttons
--------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:700; font-size:15px;
  padding: 13px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor:pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-ink{ background: var(--ink); color:var(--paper); }
.btn-ink:hover{ background: var(--ink-soft); }
.btn-magenta{ background: var(--magenta); color:var(--paper); }
.btn-magenta:hover{ background: var(--magenta-deep); }
.btn-outline{ background:transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--paper); }
.btn-outline-w{ background:transparent; color:var(--paper); border-color: rgba(255,255,255,.6); }
.btn-outline-w:hover{ border-color:var(--paper); background: rgba(255,255,255,.1); }
.btn-block{ width:100%; justify-content:center; }

/* ---------------------------------------------------------
   Header / nav
--------------------------------------------------------- */
.site-header{
  background: var(--paper);
  position: sticky; top:0; z-index:100;
  border-bottom: 3px solid var(--ink);
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; height:78px; gap:20px; }

.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand-mark{
  width:44px; height:44px; position:relative; flex-shrink:0;
}
.brand-mark svg{ width:100%; height:100%; }
.brand-word{
  font-family: var(--font-display); color: var(--ink);
  font-size: 21px; line-height:1; letter-spacing:.2px;
}
.brand-sub{ display:block; font-family:var(--font-body); color:var(--steel-light); font-size:10px; letter-spacing:.4px; font-weight:700; margin-top:4px; text-transform:uppercase; }

.main-nav{ display:flex; align-items:center; gap:28px; }
.main-nav a{
  color: var(--ink-soft); font-size:15px; font-weight:700;
  padding: 6px 2px; border-bottom: 3px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover{ color: var(--magenta); }
.main-nav a.active{ color: var(--ink); border-color: var(--magenta); }

.nav-call{ display:flex; align-items:center; gap:16px; flex-shrink:0; }
.nav-phone{ display:flex; align-items:center; gap:8px; color:var(--ink); font-weight:700; font-size:15px; }
.nav-phone svg{ width:16px; height:16px; flex-shrink:0; color: var(--magenta); }
.nav-toggle{ display:none; background:none; border:none; color:var(--ink); cursor:pointer; padding:8px; }
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width:900px){
  .main-nav{
    position:fixed; top:78px; left:0; right:0; background:var(--paper);
    flex-direction:column; align-items:flex-start; padding: 8px 28px 24px; gap:4px;
    border-bottom: 3px solid var(--ink);
    transform: translateY(-8px); opacity:0; pointer-events:none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .main-nav.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .main-nav a{ width:100%; padding:12px 0; border-bottom:1px solid var(--line); }
  .nav-toggle{ display:block; }
  .nav-phone-label{ display:none; }
}

/* ---------------------------------------------------------
   Hero — CMYK misregistration wordmark
--------------------------------------------------------- */
.hero{ background: var(--paper); position:relative; overflow:hidden; padding: 72px 0 84px; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:50px; align-items:center; }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:10px; color:var(--steel); font-size:13.5px; font-weight:700; margin-bottom:18px; text-transform:uppercase; letter-spacing:.5px; }
.hero-eyebrow .colorbar{ width:22px; }
.hero h1{ font-size: clamp(40px, 5.6vw, 62px); color:var(--ink); margin-bottom:20px; }
.hero h1 .hi{ color: var(--magenta); }
.hero p.lead{ color: var(--steel); font-size:18px; max-width:44ch; margin-bottom:30px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:38px; }
.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats .stat b{ display:block; font-family:var(--font-display); font-size:28px; color:var(--ink); font-weight:400; }
.hero-stats .stat span{ color:var(--steel-light); font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.3px; }

.hero-art{ position:relative; display:flex; align-items:center; justify-content:center; }
.misreg{ position:relative; width:100%; max-width:420px; aspect-ratio:1/1; }
.misreg .layer{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:clamp(56px,9vw,92px); mix-blend-mode:multiply; user-select:none; }
.misreg .c{ color: var(--cyan); transform: translate(-7px,-4px); }
.misreg .m{ color: var(--magenta); transform: translate(7px,-2px); }
.misreg .y{ color: var(--yellow); transform: translate(0,6px); }
.misreg .k{ color: var(--ink); transform: translate(0,0); mix-blend-mode:normal; }
.misreg-ring{ position:absolute; inset:-18px; border:1.5px dashed var(--line); border-radius:50%; }
.reg-mark{ position:absolute; width:26px; height:26px; opacity:.5; }
.reg-mark svg{ width:100%; height:100%; }
.reg-mark.tl{ top:-10px; left:-10px; }
.reg-mark.br{ bottom:-10px; right:-10px; }

/* ---------------------------------------------------------
   Section scaffolding
--------------------------------------------------------- */
section{ padding: 86px 0; }
.section-tight{ padding: 62px 0; }
.section-tint{ background: var(--paper-tint); }
.section-ink{ background: var(--ink); color: var(--paper); }
.section-ink p{ color:#B7BCC2; }
.section-ink h2,.section-ink h3{ color:var(--paper); }

.kicker{ display:flex; align-items:center; gap:12px; color:var(--magenta); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.5px; margin-bottom:16px; }
.section-ink .kicker{ color: var(--yellow); }

.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; margin-bottom:44px; }
.section-head h2{ font-size: clamp(28px,3.6vw,40px); max-width:16ch; }
.section-head p{ margin:0; }

/* ---------------------------------------------------------
   Crop-mark card frame
--------------------------------------------------------- */
.crop-card{ position:relative; background:var(--paper); border:1px solid var(--line); padding:30px 26px; }
.crop-card::before,.crop-card::after,
.crop-card .cm2::before,.crop-card .cm2::after{ content:""; position:absolute; width:14px; height:14px; }
.crop-card::before{ top:-1px; left:-1px; border-top:2px solid var(--ink); border-left:2px solid var(--ink); }
.crop-card::after{ top:-1px; right:-1px; border-top:2px solid var(--ink); border-right:2px solid var(--ink); }
.crop-card .cm2{ position:absolute; inset:0; }
.crop-card .cm2::before{ bottom:-1px; left:-1px; border-bottom:2px solid var(--ink); border-left:2px solid var(--ink); }
.crop-card .cm2::after{ bottom:-1px; right:-1px; border-bottom:2px solid var(--ink); border-right:2px solid var(--ink); }

/* ---------------------------------------------------------
   Service grid
--------------------------------------------------------- */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }

.service-tile{ padding: 8px 4px 4px; }
.service-tile .swatch{ width:38px; height:38px; margin-bottom:20px; display:flex; align-items:center; justify-content:center; }
.service-tile .swatch svg{ width:30px; height:30px; }
.service-tile h4{ font-family:var(--font-body); font-weight:800; font-size:17px; margin-bottom:8px; color:var(--ink); }
.service-tile p{ font-size:14px; margin:0; }

.group-head{ display:flex; align-items:baseline; gap:16px; margin: 60px 0 26px; padding-bottom:14px; border-bottom:3px solid var(--ink); }
.group-head:first-of-type{ margin-top:0; }
.group-head h3{ font-family:var(--font-body); font-weight:800; font-size:24px; margin:0; }
.group-head span{ color:var(--steel-light); font-size:13px; font-weight:700; }

/* ---------------------------------------------------------
   Why-choose strip
--------------------------------------------------------- */
.why-strip{ display:flex; flex-wrap:wrap; gap:14px; }
.why-chip{ display:flex; align-items:center; gap:10px; border:2px solid rgba(255,255,255,.2); padding:12px 18px; border-radius:var(--radius); font-size:14px; font-weight:700; color:var(--paper); }
.why-chip svg{ width:18px; height:18px; color:var(--yellow); flex-shrink:0; }

/* ---------------------------------------------------------
   Process steps
--------------------------------------------------------- */
.process{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process::before{ content:""; position:absolute; top:25px; left:6%; right:6%; height:2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
.proc-step{ position:relative; padding:0 18px; }
.proc-step .badge{ width:50px; height:50px; border-radius:50%; background:var(--paper); border:3px solid var(--ink); color:var(--ink); font-family:var(--font-display); font-size:18px; display:flex; align-items:center; justify-content:center; position:relative; z-index:2; margin-bottom:18px; }
.proc-step h4{ font-family:var(--font-body); font-weight:800; font-size:16px; margin-bottom:6px; }
.proc-step p{ font-size:14px; }

/* ---------------------------------------------------------
   Testimonials
--------------------------------------------------------- */
.testi-card{ background:var(--paper); border:1px solid var(--line); border-top:none; padding:28px 26px; display:flex; flex-direction:column; gap:16px; position:relative; }
.testi-card .colorbar{ position:absolute; top:0; left:0; right:0; width:auto; }
.testi-card p.quote{ color:var(--ink); font-size:15px; margin:14px 0 0; }
.testi-who{ display:flex; align-items:center; justify-content:space-between; font-size:13px; color:var(--steel-light); font-weight:700; border-top:1px solid var(--line); padding-top:14px; }
.stars{ color: var(--yellow); letter-spacing:1px; font-size:13px; }
.testi-tag{ font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:.3px; color:var(--steel-light); background:var(--paper-tint); padding:4px 9px; border-radius:2px; display:inline-block; margin-bottom:2px; }

.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.filter-btn{ font-family:var(--font-body); font-weight:700; font-size:13.5px; padding:9px 18px; border-radius:20px; border:2px solid var(--ink); background:transparent; color:var(--ink); cursor:pointer; transition: background-color .15s ease, color .15s ease; }
.filter-btn.active, .filter-btn:hover{ background:var(--ink); color:var(--paper); }

/* ---------------------------------------------------------
   CTA banner
--------------------------------------------------------- */
.cta-banner{ background: var(--magenta); color:var(--paper); padding:56px 0; position:relative; overflow:hidden; }
.cta-banner .wrap{ display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap; position:relative; z-index:2; }
.cta-banner h2{ color:var(--paper); font-size:clamp(26px,3.4vw,36px); margin:0; max-width:20ch; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.cta-banner .btn-white{ background:var(--paper); color:var(--magenta-deep); }
.cta-banner .btn-white:hover{ background:#FBE6EE; }

/* ---------------------------------------------------------
   Inner page banner
--------------------------------------------------------- */
.page-banner{ background:var(--ink); color:var(--paper); padding:56px 0 52px; border-bottom:6px solid transparent; border-image: linear-gradient(90deg, var(--cyan) 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, var(--paper) 75%) 1; position:relative; }
.page-banner h1{ color:var(--paper); font-size:clamp(32px,4.8vw,50px); margin-bottom:10px; }
.page-banner p{ color:#B7BCC2; font-size:16px; max-width:60ch; margin:0; }
.breadcrumb{ color:var(--steel-light); font-size:13px; margin-bottom:16px; display:flex; gap:8px; align-items:center; }
.breadcrumb a:hover{ color:var(--paper); }
.breadcrumb .sep{ color: rgba(255,255,255,.3); }

/* ---------------------------------------------------------
   About page bits
--------------------------------------------------------- */
.badge-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 8px; }
.owner-badge{ display:inline-flex; align-items:center; gap:9px; border:2px solid var(--ink); border-radius:20px; padding:8px 16px; font-size:13px; font-weight:700; }
.owner-badge svg{ width:16px; height:16px; color:var(--magenta); }

.value-card{ padding:22px 0; border-top:2px solid var(--ink); }
.value-card h4{ font-family:var(--font-body); font-weight:800; font-size:18px; margin-bottom:8px; }
.value-card p{ font-size:14.5px; margin:0; }

/* ---------------------------------------------------------
   DTF process page
--------------------------------------------------------- */
.tag-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.tag-pill{ font-size:13.5px; font-weight:700; padding:9px 16px; border:2px solid var(--ink); border-radius:20px; color:var(--ink); }

/* ---------------------------------------------------------
   Contact page
--------------------------------------------------------- */
.contact-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:0; border:1px solid var(--line); }
.contact-info{ background:var(--ink); color:var(--paper); padding:46px 42px; }
.contact-info h3{ color:var(--paper); font-size:24px; }
.contact-info p{ color:#B7BCC2; }
.contact-item{ display:flex; gap:16px; padding:18px 0; border-top:1px solid rgba(255,255,255,.14); }
.contact-item:first-of-type{ border-top:none; margin-top:8px; }
.contact-item svg{ width:20px; height:20px; color:var(--yellow); flex-shrink:0; margin-top:2px; }
.contact-item a, .contact-item span{ color:var(--paper); font-weight:700; font-size:15px; }
.contact-item small{ display:block; color:var(--steel-light); font-weight:500; font-size:12.5px; margin-top:2px; }

.contact-form{ background:var(--paper); padding:46px 42px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:700; color:var(--ink); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; border:2px solid var(--line); padding:12px 14px; font-family:var(--font-body); font-size:15px;
  border-radius: var(--radius); background:var(--paper-tint); color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--magenta); background:var(--paper); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-note{ font-size:12.5px; color:var(--steel-light); margin-top:10px; }

.map-embed{ border:0; width:100%; height:360px; display:block; filter: grayscale(.1) contrast(1.05); }
.map-wrap{ border:1px solid var(--line); border-top:none; }

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.site-footer{ background:var(--ink); color:#AEB4BB; padding:64px 0 28px; }
.footer-top-bar{ display:flex; }
.footer-top-bar span{ flex:1; height:6px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr .8fr .8fr 1fr; gap:40px; padding:44px 0; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand-word{ font-family:var(--font-display); color:var(--paper); font-size:19px; }
.footer-brand-sub{ display:block; color:var(--steel-light); font-size:10px; letter-spacing:.3px; text-transform:uppercase; font-weight:700; }
.site-footer p{ color:#8B9198; font-size:14px; max-width:34ch; }
.site-footer h5{ color:var(--paper); font-family:var(--font-body); font-size:13px; letter-spacing:.4px; margin-bottom:18px; font-weight:800; text-transform:uppercase; }
.site-footer ul li{ margin-bottom:11px; }
.site-footer ul a{ color:#AEB4BB; font-size:14.5px; transition:color .15s ease; }
.site-footer ul a:hover{ color:var(--paper); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; border-top:1px solid rgba(255,255,255,.1); font-size:12.5px; color:#6C737B; flex-wrap:wrap; gap:10px; }

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:300px; margin:0 auto 10px; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:1fr 1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .process{ grid-template-columns:1fr 1fr; gap:34px; }
  .process::before{ display:none; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .field-row{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .grid-4{ grid-template-columns:1fr 1fr; }
  .grid-3{ grid-template-columns:1fr; }
  .process{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:14px; }
  .cta-banner .wrap{ flex-direction:column; align-items:flex-start; }
  section{ padding:56px 0; }
  .hero{ padding:48px 0 56px; }
  .contact-info, .contact-form{ padding:34px 24px; }
}
