/* =============================================================================
   Theme: T4 Specialty / Editorial
   Domains: copier.press, payperprint.org, freeprinter.org, printer-doc.com,
            canonimagepress.com, canonservice.org
   Style: Editorial Magazine — serif display, ink-on-paper, high-contrast
   Font: Lora (serif display) + Source Sans 3 (body) — print-inspired
   Palette: rich black + white + single editorial accent
   ============================================================================= */

@import url('https://fonts.bunny.net/css?family=lora:400,400i,600,700|source-sans-3:300,400,600,700&display=swap');

:root {
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --ink: #0f0f0f;
  --paper: #fafaf8;
  --rule: #e0ddd8;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
}

/* ── Nav — editorial masthead ───────────────────────────────────────────── */
.site-header {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky; top: 0; z-index: 100;
}
.site-logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-link { color: var(--ink); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-link--active { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
}
.nav-cta:hover { background: var(--color-primary); color: #fff; }

/* ── Hero — editorial full-width feature ────────────────────────────────── */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 5rem 0 4rem;
}
.hero-inner {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-overline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--color-primary); }
.hero-sub {
  font-size: 1.2rem;
  color: #4a4845;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-actions { justify-content: center; }
.hero-trust { justify-content: center; }
.hero-graphic { display: none; }

/* Rule divider after hero */
.editorial-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--rule);
}
.editorial-rule::before,
.editorial-rule::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { background: var(--paper); }
.section--tinted { background: #f0ede8; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin-top: 0.75rem;
}
.section-header--centered .section-title::after { margin-left: auto; margin-right: auto; }

/* ── Value props — editorial columns ────────────────────────────────────── */
.prop-card {
  border: none;
  background: transparent;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  padding: 1.75rem 0;
  box-shadow: none;
}
.prop-icon { color: var(--color-accent); }
.prop-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.prop-body { color: #5a5754; }

/* ── Service cards — editorial ──────────────────────────────────────────── */
.services-section { background: var(--paper); }
.service-card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  border-radius: 0;
  background: #fff;
}
.service-card:hover {
  border-top-color: var(--color-accent);
  box-shadow: 4px 4px 0 var(--ink);
  transform: none;
}
.service-card-title { font-family: var(--font-display); font-weight: 700; color: var(--ink); }

/* ── Proof ──────────────────────────────────────────────────────────────── */
.proof-section { background: var(--ink); }
.proof-stat {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--color-accent);
}
.proof-label { color: rgba(255,255,255,.65); }

/* ── CTA band — editorial ────────────────────────────────────────────────── */
.cta-band { background: var(--color-primary); }
.cta-headline { font-family: var(--font-display); font-style: italic; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-accent {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.btn-accent:hover { background: var(--color-primary); }
.btn-outline {
  border-radius: 0;
  border-width: 2px;
}

/* ── Footer — newspaper footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 4px solid var(--color-accent);
}
