:root {
  --bg: #F7F5F0;
  --fg: #111111;
  --accent: #C4522A;
  --accent-light: #F0E8E3;
  --muted: #888880;
  --border: #E0DDD6;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.brand-mark {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg);
}

nav { display: flex; gap: 32px; }
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* Section Tags */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.6;
}

/* TEE DISPLAY */
.tee-display {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tee-silhouette {
  width: 280px;
  height: 340px;
  background: var(--fg);
  border-radius: 4px 4px 12px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.tee-silhouette::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 20px;
  background: var(--fg);
  border-radius: 4px 4px 0 0;
}

.tee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tee-line {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bg);
  text-align: center;
  line-height: 1.2;
}

.tee-line.accent {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.manifesto-text em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-body {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Products */
.products {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.products h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-tee {
  background: var(--fg);
  border-radius: 4px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  gap: 4px;
  transition: transform 0.2s;
}

.product-tee:hover {
  transform: translateY(-4px);
}

.product-tee.dark {
  background: #1a1a1a;
}

.product-tee.accent-bg {
  background: var(--accent);
}

.product-line {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg);
  text-align: center;
}

.product-line.small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #999;
}

.product-line.light {
  color: #fff;
}

.product-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.price {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
}

/* Philosophy */
.philosophy {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 4px;
  min-width: 28px;
}

.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.85rem;
  color: var(--muted);
}

.statement-block {
  padding: 48px 40px;
  background: var(--accent-light);
  border-radius: 4px;
}

.big-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
}

/* Closing */
.closing {
  padding: 100px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.closing-tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Footer */
footer {
  padding: 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--fg);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  header { padding: 16px 24px; }
  nav { display: none; }

  .hero { padding: 48px 24px 40px; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text h1 { font-size: 2.5rem; }
  .tee-display { order: -1; }

  .manifesto, .products, .philosophy, .closing { padding: 64px 24px; }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-copy { order: -1; }
}