/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F3ED;
  --surface: #EDE8E0;
  --fg: #1A1410;
  --fg-muted: #6B6057;
  --accent: #C4603B;
  --accent-light: #E8A98C;
  --border: #D9D2C7;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--fg);
  margin-bottom: 0;
}

/* === NAV === */
.nav {
  padding: 20px 40px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* === HERO === */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Visual comparison cards */
.hero-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.visual-card { text-align: center; }
.card-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
  background: var(--surface);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
}
.badge-applique { background: var(--accent); color: white; }
.card-tee {
  width: 120px;
  height: 140px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.tee-logo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--border);
  border: 1px dashed var(--border);
  padding: 6px 12px;
  border-radius: 4px;
}
.card-tee-custom {
  background: var(--fg);
  position: relative;
  overflow: hidden;
}
.custom-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.06) 8px,
    rgba(255,255,255,0.06) 9px
  );
}
.custom-text {
  position: relative;
  z-index: 1;
  font-size: 9px;
  color: var(--accent-light);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.card-label { font-size: 12px; color: var(--fg-muted); }
.visual-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}
.divider-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* === CRAFT === */
.craft {
  background: var(--surface);
  padding: 80px 40px;
}
.craft-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.craft-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.craft-quote cite {
  display: block;
  margin-top: 16px;
  padding-left: 28px;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}
.craft-body {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.craft-body:last-child { margin-bottom: 0; }

/* === PROBLEM === */
.problem { padding: 80px 40px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-header { margin-bottom: 50px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: white;
}
.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--accent);
}
.problem-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.problem-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* === VIBE === */
.vibe {
  background: var(--fg);
  padding: 80px 40px;
  color: white;
}
.vibe-inner { max-width: 1100px; margin: 0 auto; }
.vibe-header { margin-bottom: 50px; }
.vibe-header .section-eyebrow { color: var(--accent-light); }
.vibe-header .section-headline { color: white; }
.vibe-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.vibe-text p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.vibe-text p:last-child { margin-bottom: 0; }
.vibe-features { display: flex; flex-direction: column; gap: 16px; }
.vibe-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.vibe-feature:last-child { border-bottom: none; }
.feature-mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === PROCESS === */
.process { padding: 80px 40px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 50px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.process-step { position: relative; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.step-content p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* === CLOSING === */
.closing {
  background: var(--accent);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: white;
  line-height: 1.25;
  font-weight: 600;
}

/* === FOOTER === */
.footer { padding: 32px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .craft-inner { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .vibe-content { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 60px; }
  .craft, .problem, .vibe, .process { padding: 48px 20px; }
  .closing { padding: 60px 20px; }
  .footer { padding: 24px 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-visual { flex-direction: column; gap: 12px; }
  .visual-divider { flex-direction: row; padding: 4px 0; }
  .visual-divider svg { width: 40px; height: 1; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}