/* =========================================================
   PrintingWix — Design System
   Palette:  Ink #16213E · Paper #F6F3EC · Press Red #C1392B
             Plate Blue #2E6E8E · Charcoal #23262B · Slate #5B6472
   Type:     Fraunces (display) · Inter (body/UI) · IBM Plex Mono (labels)
   Signature: registration marks / spot-colour swatches (print job-ticket motif)
   ========================================================= */

:root {
  --ink: #16213e;
  --ink-soft: #1f2c50;
  --paper: #f6f3ec;
  --paper-white: #fffdf9;
  --press-red: #c1392b;
  --plate-blue: #2e6e8e;
  --charcoal: #23262b;
  --slate: #5b6472;
  --line: #dcd6c8;
  --line-strong: #b9b2a0;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --radius: 2px;
  --container-max: 1200px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--paper);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-weight: 500; }

a { color: var(--plate-blue); text-decoration: none; }
a:hover { color: var(--press-red); }

::selection { background: var(--press-red); color: #fff; }

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--press-red);
  outline-offset: 3px;
}

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

.container-wix { max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Eyebrow / job-ticket labels (signature type treatment) ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--press-red);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--press-red);
  border-radius: 50%;
  flex: 0 0 auto;
}

/* ---------- Registration mark (signature graphic element) ---------- */
.regmark { display: inline-block; }
.regmark svg { display: block; }

.regmark-corner {
  position: absolute;
  opacity: 0.35;
  color: var(--ink);
}

/* Trim-line divider styled like a cut/fold guide */
.trimline {
  border: none;
  border-top: 1px dashed var(--line-strong);
  margin: 0;
}

/* ---------- Navbar ---------- */
.site-header {
  background: var(--paper-white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* The header's inner container needs its own flex row so the logo, nav
   links, and CTA button sit side by side instead of stacking. Scoped to
   .site-header only so the generic .container-wix used elsewhere (footer,
   sections) is unaffected. */
.site-header .container-wix {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.site-header .navbar-brand.wix-brand {
  flex: 0 0 auto;
}

.site-header .navbar-toggler {
  flex: 0 0 auto;
  border-color: var(--line-strong);
}
.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(193,57,43,0.18);
}

.site-header .navbar-collapse {
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .site-header .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    justify-content: flex-end;
  }
}

.navbar-brand.wix-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink) !important;
}
.navbar-brand.wix-brand:hover { color: var(--press-red) !important; }
.navbar-brand.wix-brand img { height: 34px; width: auto; }

.wix-nav .nav-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.wix-nav .nav-link.active,
.wix-nav .nav-link:hover { color: var(--press-red) !important; }
.wix-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.15rem;
  height: 2px;
  background: var(--press-red);
}

.btn-quote {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--press-red);
  border: 1px solid var(--press-red);
  color: #fff !important;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn-quote:hover { background: #a52d20; border-color: #a52d20; color: #fff !important; }

.btn-outline-wix {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius);
  background: transparent;
  transition: all 0.15s ease;
}
.btn-outline-wix:hover { background: var(--ink); color: var(--paper-white); }

.btn-ink {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}
.btn-ink:hover { background: var(--ink-soft); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--paper-white);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,243,236,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,243,236,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.hero h1 { color: var(--paper-white); }
.hero .eyebrow { color: #e8a89f; }
.hero .eyebrow::before { border-color: #e8a89f; }
.hero-lead { color: #cfd3de; font-size: 1.1rem; max-width: 46ch; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(155deg, #1f2c50, #16213e 60%);
  border: 1px solid rgba(246,243,236,0.15);
  border-radius: var(--radius);
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-tight { padding: 3.25rem 0; }
.section-paper-white { background: var(--paper-white); }
.section-ink {
  background: var(--ink);
  color: var(--paper-white);
}
.section-ink h2, .section-ink h3 { color: var(--paper-white); }

.section-head { max-width: 60ch; margin-bottom: 2.75rem; }

/* ---------- Cards ---------- */
.card-wix {
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  height: 100%;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card-wix:hover { border-color: var(--press-red); transform: translateY(-3px); }

.card-service-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  margin-bottom: 1.1rem;
  color: var(--press-red);
}

.card-wix h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card-wix p { color: var(--slate); font-size: 0.95rem; margin-bottom: 1.1rem; }
.card-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}
.card-link:hover { color: var(--press-red); border-color: var(--press-red); }

/* ---------- Job-ticket numbered list (How It Works) ---------- */
.ticket-step {
  border: 1px solid var(--line);
  background: var(--paper-white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  position: relative;
}
.ticket-step .step-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--press-red);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.9rem;
}
.ticket-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.ticket-step p { color: var(--slate); font-size: 0.92rem; margin: 0; }

/* ---------- Why-choose list ---------- */
.reason-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.reason-item:last-child { border-bottom: none; }
.reason-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--press-red);
  margin-top: 0.5rem;
  flex: 0 0 auto;
}
.reason-item h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 0.2rem; color: var(--ink); }
.reason-item p { color: var(--slate); font-size: 0.92rem; margin: 0; }

/* ---------- Tips section ---------- */
.tip-card {
  border-left: 2px solid var(--plate-blue);
  padding: 0.2rem 0 0.2rem 1.1rem;
  height: 100%;
}
.tip-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; color: var(--ink); margin-bottom: 0.35rem; }
.tip-card p { color: var(--slate); font-size: 0.9rem; margin: 0; }

.tip-note {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--slate);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-top: 2rem;
}

/* ---------- FAQ (Bootstrap accordion re-skin) ---------- */
.accordion-wix .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.accordion-wix .accordion-button {
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  padding: 1.15rem 0;
  box-shadow: none;
}
.accordion-wix .accordion-button:not(.collapsed) { color: var(--press-red); background: transparent; }
.accordion-wix .accordion-button::after { filter: none; }
.accordion-wix .accordion-body { color: var(--slate); padding: 0 0 1.25rem; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--press-red);
  color: #fff;
  border-radius: var(--radius);
  padding: 3.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); }
.cta-band .btn-ink { background: var(--ink); border-color: var(--ink); }
.cta-band .btn-ink:hover { background: #0d1428; }

/* ---------- Forms ---------- */
.form-wix label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.form-wix .form-control,
.form-wix .form-select {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  background: var(--paper-white);
}
.form-wix .form-control:focus,
.form-wix .form-select:focus {
  border-color: var(--press-red);
  box-shadow: 0 0 0 0.2rem rgba(193,57,43,0.12);
}

/* ---------- Contact info block ---------- */
.info-line {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.info-line .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  min-width: 84px;
}
.info-line .value { color: var(--ink); font-weight: 500; }
.info-line .value a { color: var(--ink); }
.info-line .value a:hover { color: var(--press-red); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #c9cddb;
  padding-top: 3.5rem;
}
.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.site-footer a { color: #c9cddb; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.55rem; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.75rem;
  padding: 1.25rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #8b90a3;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--paper-white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,243,236,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,243,236,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: #e8a89f; }
.page-hero .eyebrow::before { border-color: #e8a89f; }

/* ---------- Legal pages ---------- */
.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--slate); font-size: 0.97rem; }
.legal-body ul { padding-left: 1.2rem; }
.legal-body strong { color: var(--ink); }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

/* ---------- Utility ---------- */
.text-press { color: var(--press-red) !important; }
.text-slate { color: var(--slate) !important; }
.bg-paper-white { background: var(--paper-white); }
.small-caps-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

@media (max-width: 767.98px) {
  .hero { padding: 3.5rem 0 3rem; text-align: left; }
  .section { padding: 3.25rem 0; }
  .cta-band { padding: 2.25rem 1.5rem; }
}
