/* =========================================
   PrintCraft — Landing Page Theme
   ========================================= */

:root {
  --bg: #f5f0e6;
  --bg-alt: #ede7d9;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --primary: #1a3a2a;
  --accent: #e05a1b;
  --accent-light: #f0c4a8;
  --surface: #ffffff;
  --border: rgba(26,58,42,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Navigation ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,230,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 48px 100px;
  min-height: 85vh;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,90,27,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- Product Stack ---- */
.hero-right {
  position: relative;
  z-index: 1;
}

.product-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.product-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 20px rgba(26,58,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26,58,42,0.12);
}

.card-1 { transform: rotate(-2deg); }
.card-2 { transform: rotate(1.5deg); }
.card-3 { transform: rotate(2deg); }
.card-4 { transform: rotate(-1deg); }

.card-1:hover { transform: rotate(-2deg) translateY(-4px); }
.card-2:hover { transform: rotate(1.5deg) translateY(-4px); }
.card-3:hover { transform: rotate(2deg) translateY(-4px); }
.card-4:hover { transform: rotate(-1deg) translateY(-4px); }

.card-art {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}

.tee-art svg {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.card-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: center;
}

.hero-cta-strip {
  margin-top: 20px;
  text-align: center;
}

.shop-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.shop-link:hover {
  color: var(--primary);
}

/* ---- Manifesto ---- */
.manifesto {
  background: var(--primary);
  color: #f5f0e6;
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-quote {
  position: relative;
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 20px;
  display: block;
}

blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245,240,230,0.9);
}

.manifesto-answer h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5f0e6;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.manifesto-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,240,230,0.75);
  margin-bottom: 16px;
}

.manifesto-answer p:last-child {
  color: var(--accent-light);
  font-weight: 500;
  font-size: 1.05rem;
}

.manifesto-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
}

.circle-1 {
  width: 500px;
  height: 500px;
  right: -150px;
  top: -200px;
  background: radial-gradient(circle, rgba(224,90,27,0.15) 0%, transparent 70%);
}

.circle-2 {
  width: 300px;
  height: 300px;
  left: -100px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(245,240,230,0.05) 0%, transparent 70%);
}

.bg-stripe {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(245,240,230,0.1), transparent);
}

.stripe-1 { right: 10%; bottom: 20%; }
.stripe-2 { right: 20%; bottom: 40%; }

/* ---- How It Works ---- */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  max-width: 600px;
  margin: 0 auto;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 16px auto 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(26,58,42,0.06);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-top: 60px;
  flex-shrink: 0;
  opacity: 0.4;
}

.step-connector:last-child {
  display: none;
}

.shopify-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  padding: 10px 20px;
  background: rgba(26,58,42,0.05);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ---- Catalog ---- */
.catalog {
  padding: 100px 48px;
  background: var(--bg);
}

.catalog-header {
  text-align: center;
  margin-bottom: 64px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.catalog-item {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,58,42,0.1);
}

.catalog-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--accent);
  opacity: 0.05;
  border-radius: 0 20px 0 80px;
}

.cat-design {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-design svg {
  width: 80px;
  height: 80px;
}

.cat-icon {
  color: var(--primary);
  margin-bottom: 20px;
}

.catalog-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.catalog-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-tags span {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 100px;
  color: var(--fg-muted);
  font-weight: 500;
  border: 1px solid var(--border);
}

/* ---- Closing ---- */
.closing {
  padding: 120px 48px;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-deco {
  width: 200px;
  height: 200px;
  margin: 0 auto 48px;
  opacity: 0.5;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.closing-body {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.closing-vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.vision-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  opacity: 0.6;
}

.vision-statement {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.5;
  max-width: 480px;
}

/* ---- Footer ---- */
.footer {
  background: var(--primary);
  color: rgba(245,240,230,0.6);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(245,240,230,0.9);
}

.footer-note {
  font-size: 0.78rem;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  cursor: pointer;
}

.footer-sep {
  opacity: 0.4;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px 80px;
    min-height: auto;
  }
  .hero-right {
    max-width: 400px;
    margin: 0 auto;
  }
  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }
  .step-card { max-width: 320px; }
  .step-connector { display: none; }
  .catalog-grid { grid-template-columns: 1fr; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-note { text-align: left; }
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .product-stack { gap: 12px; }
  .product-card { padding: 16px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.5rem; }
  .manifesto, .how-it-works, .catalog, .closing { padding: 64px 24px; }
}