/* === TOKENS === */
:root {
  --bg: #FAF6F1;
  --bg-warm: #F5EDE3;
  --fg: #2A2118;
  --fg-muted: #7A6A58;
  --accent: #B85C38;
  --accent-light: #E8C4A8;
  --accent-warm: #D4916A;
  --border: #DDD3C5;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse, var(--accent-light) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: var(--space-md);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 560px;
  color: var(--fg-muted);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}
.hero-stat-row {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-xl) var(--space-md);
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.55;
  font-weight: 400;
}
.manifesto-text em { font-style: italic; color: var(--accent-warm); }

/* === CRAFT === */
.craft {
  padding: var(--space-xl) var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: var(--space-lg);
}
.craft-header { margin-bottom: var(--space-md); }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.craft-card {
  background: var(--bg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.craft-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.craft-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
}
.craft-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}
.craft-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-top: var(--space-sm);
}

/* === COLLECTION === */
.collection {
  background: var(--bg-warm);
  padding: var(--space-xl) var(--space-md);
}
.collection-header { max-width: 1100px; margin: 0 auto var(--space-lg); }
.collection-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}
.col-item {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.col-item--tall { grid-row: span 2; }
.col-visual {
  height: 200px;
  position: relative;
}
.col-item--tall .col-visual { height: 340px; }
.col-visual--wool {
  background: linear-gradient(135deg, #C4B49A 0%, #E8DDD0 40%, #A89878 100%);
}
.col-visual--silk {
  background: linear-gradient(135deg, #E8D5B0 0%, #F5E9D5 50%, #C4A870 100%);
}
.col-visual--kilim {
  background: repeating-linear-gradient(
    45deg,
    #7A8C7A 0px,
    #7A8C7A 12px,
    #B8C4B8 12px,
    #B8C4B8 24px
  );
}
.col-visual--braided {
  background: repeating-linear-gradient(
    -45deg,
    #8B6F4A 0px,
    #8B6F4A 8px,
    #C4A878 8px,
    #C4A878 16px
  );
}
.col-info {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.col-technique {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.col-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.col-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.col-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* === DIFFERENCE === */
.difference {
  padding: var(--space-xl) var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.diff-marker {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  padding: var(--space-xl) var(--space-md);
}
.closing-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}
.closing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  padding: var(--space-lg) var(--space-md);
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-warm);
  margin-bottom: var(--space-xs);
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(250,246,241,0.6);
  margin-bottom: var(--space-sm);
}
.footer-note {
  font-size: 0.7rem;
  color: rgba(250,246,241,0.3);
  letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: var(--space-lg) var(--space-sm); }
  .hero-stat-row { gap: var(--space-md); }
  .craft-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; }
  .col-item--tall { grid-row: auto; }
  .col-item--tall .col-visual { height: 220px; }
  .diff-inner { grid-template-columns: 1fr; gap: var(--space-md); }
  .section-title { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .stat-num { font-size: 1.5rem; }
}