/* === TOKENS === */
:root {
  --bg: #F9F5EF;
  --bg-alt: #F0EAE0;
  --fg: #1A1410;
  --fg-muted: #6B5E52;
  --accent: #C4905A;
  --accent-dark: #9E7240;
  --warm: #E8D5B7;
  --border: #D9C9B5;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

/* === BASE === */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.nav-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

/* === HERO === */
.hero {
  padding: 80px 60px 100px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.hero-card {
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
}
.hero-card--tall {
  background: linear-gradient(145deg, #1A1410 0%, #2D2420 100%);
  color: #F9F5EF;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-card--short {
  background: linear-gradient(145deg, #C4905A 0%, #9E7240 100%);
  color: #F9F5EF;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 40px;
}
.hero-card-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dress-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  display: block;
}
.dress-meaning {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.8;
  line-height: 1.5;
}
.hero-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  font-family: 'Cormorant Garamond', serif;
}

/* === IMPACT === */
.impact {
  padding: 90px 60px;
  background: var(--fg);
  color: var(--bg);
}
.impact-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
}
.impact-lead {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--warm);
  margin-bottom: 28px;
}
.impact-causes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cause {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cause-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.cause strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.cause span {
  font-size: 0.9rem;
  color: #9A8A7E;
  font-style: italic;
}

/* === COLLECTION === */
.collection {
  padding: 100px 60px;
  background: var(--bg);
}
.collection-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 60px;
}
.collection-header {
  margin-bottom: 0;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.collection-item {
  background: var(--bg);
}
.collection-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-abstract {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hebrew-word {
  font-size: 4rem;
  color: rgba(26, 20, 16, 0.15);
  font-family: serif;
  line-height: 1;
}
.hebrew-read {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: rgba(26, 20, 16, 0.6);
  letter-spacing: 0.05em;
}
.collection-info {
  padding: 28px 32px 36px;
}
.collection-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.collection-info p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 60px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 24px;
}
.manifesto-attribution {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: 'Cormorant Garamond', serif;
}

/* === CLOSING === */
.closing {
  padding: 100px 60px 120px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  padding: 48px 60px;
  background: var(--fg);
  color: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #9A8A7E;
  margin-bottom: 12px;
}
.footer-legal {
  font-size: 0.7rem;
  color: #6B5E52;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 24px 32px; }
  .hero { padding: 60px 32px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .impact { padding: 70px 32px; }
  .impact-inner { grid-template-columns: 1fr; gap: 40px; }
  .collection { padding: 80px 32px; }
  .manifesto { padding: 80px 32px; }
  .closing { padding: 80px 32px 100px; }
  .footer { padding: 40px 32px; }
}

@media (max-width: 600px) {
  .nav { padding: 20px 20px; }
  .hero { padding: 48px 20px 60px; }
  .hero-visual { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-card--tall, .hero-card--short { min-height: 200px; }
  .impact { padding: 60px 20px; }
  .impact-inner { grid-template-columns: 1fr; gap: 32px; }
  .collection { padding: 60px 20px; }
  .collection-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 20px; }
  .closing { padding: 60px 20px 80px; }
  .footer { padding: 36px 20px; }
  .hero-body { font-size: 1rem; }
  .dress-name { font-size: 1.4rem; }
}