/* ==========================================================================
   TCR PRINT — design tokens
   Modeled on thebestscreenprinting.com's structure: dark photo hero,
   two-tone headlines (first word dark, second word orange), pill-shaped
   outlined buttons, one-section-per-service slides with dot nav.
   ========================================================================== */

:root {
  --ink: #14161a;
  --ink-soft: #5b5f66;
  --paper: #ffffff;
  --paper-soft: #f7f7f8;

  --spot-orange: #e8552a;
  --accent-blue: #2f6fed;
  --accent-purple: #7c3aed;

  --line: rgba(20, 22, 26, 0.12);

  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

.tone-b { color: var(--spot-orange); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 42em;
}

.text-link {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--spot-orange);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--spot-orange); }

/* ---------- nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a { text-decoration: none; color: var(--ink); }
.nav-links a:hover { color: var(--spot-orange); }
.nav-links a.nav-community:hover { color: var(--accent-purple); }

/* ---------- pill buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  background: transparent;
  color: var(--ink);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--spot-orange);
  border-color: var(--spot-orange);
  color: #fff;
}
.btn-primary:hover { background: #cf4620; border-color: #cf4620; }

.btn-ghost-light {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

.btn-check::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid currentColor;
  font-size: 10px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(14,15,18,0.6), rgba(14,15,18,0.72)),
    url('images/hero-placeholder.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 0 70px;
}

.hero-photo-tag {
  position: absolute;
  bottom: 16px;
  left: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-inner { max-width: 640px; }
.hero-inner .eyebrow-line {
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.hero-inner h1 {
  font-size: clamp(44px, 7vw, 76px);
  color: var(--spot-orange);
  margin-top: 6px;
  line-height: 1.0;
}
.hero-inner .lede {
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  font-size: 18px;
}
.hero-inner .text-link {
  color: #fff;
  border-bottom-color: var(--accent-purple);
  display: inline-block;
  margin-top: 18px;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- sections ---------- */

section { padding: 90px 0; }
.section-head { max-width: 42em; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); margin-top: 8px; }
.section-alt { background: var(--paper-soft); }

.divider-line { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---------- product cards (garment types) ---------- */

.product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.product-card { text-align: center; }
.product-card .eyebrow { color: var(--ink-soft); }
.product-card h3 { font-size: 26px; margin-top: 6px; }
.product-card .sub { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }

/* ---------- capability cards (what we do) ---------- */

.capability-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.capability-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  border-top: 4px solid var(--accent-bar, var(--spot-orange));
}
.capability-card[data-accent="purple"] { --accent-bar: var(--accent-purple); }
.capability-card[data-accent="blue"] { --accent-bar: var(--accent-blue); }
.capability-card[data-accent="orange"] { --accent-bar: var(--spot-orange); }

.capability-card .cap-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-bar, var(--spot-orange));
}
.capability-card h3 { font-size: 23px; margin-top: 8px; }
.capability-card p { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; }

/* ---------- process ---------- */

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.process-list .step-no {
  font-weight: 800;
  font-size: 15px;
  color: var(--spot-orange);
}
.process-list h4 { font-size: 20px; font-weight: 700; }
.process-list p { color: var(--ink-soft); font-size: 15px; }

@media (max-width: 700px) {
  .process-list li { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- work gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/5;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  color: var(--ink-soft);
  font-size: 12.5px;
}
.gallery-item span { display: block; color: var(--spot-orange); font-weight: 700; font-size: 11px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- customer logo strip ---------- */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.logo-chip {
  height: 56px;
  min-width: 140px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  padding: 0 18px;
}

/* ---------- local cities ---------- */

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-chip {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- CTA band ---------- */

.cta-band { background: var(--ink); color: #fff; }
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); max-width: 14em; }

/* ---------- footer ---------- */

footer { border-top: 1px solid var(--line); padding: 44px 0; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-blurb { max-width: 34em; color: var(--ink-soft); font-size: 14px; }
.footer-social { display: flex; gap: 14px; margin-bottom: 10px; }
.footer-social span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--ink-soft);
  transition: border-color .15s, color .15s;
}
.footer-social span:hover { border-color: var(--accent-purple); color: var(--accent-purple); }
.footer-call { font-weight: 800; font-size: 17px; }
.footer-call a { color: var(--spot-orange); text-decoration: none; }
.footer-contact { margin-top: 6px; }
.footer-contact a { color: var(--ink); text-decoration: underline; font-size: 14px; font-weight: 600; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .product-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent-purple);
  outline-offset: 2px;
}
