:root {
  --bg: #FAF6F1;
  --surface: #F0E9DE;
  --accent: #C0784A;
  --accent-warm: #D4956A;
  --text: #1E1A16;
  --text-muted: #7A6E63;
  --text-light: #A89888;
  --border: #E0D4C5;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}

.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 100px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
}

.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.pillar-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.card-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* Essentials */
.essentials {
  background: var(--surface);
  padding: 90px 60px;
  border-top: 1px solid var(--border);
}

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

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text);
  max-width: 600px;
  line-height: 1.15;
  margin-bottom: 60px;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.essential {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.essential-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.essential h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.essential p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Collection */
.collection {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
}

.collection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.collection-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.collection-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.collection-right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-top: 8px;
}

.category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}

.category li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-warm);
}

/* Manifesto */
.manifesto {
  background: var(--text);
  padding: 100px 60px;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifesto-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: #F5EDE3;
  line-height: 1.55;
  font-weight: 400;
}

.quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

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

.closing-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.closing-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--surface);
  padding: 48px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 24px 28px; }
  .hero { grid-template-columns: 1fr; padding: 60px 28px 80px; gap: 50px; }
  .hero-visual { display: none; }
  .essentials { padding: 70px 28px; }
  .essentials-grid { grid-template-columns: 1fr 1fr; }
  .collection { padding: 70px 28px; }
  .collection-inner { grid-template-columns: 1fr; }
  .manifesto { padding: 70px 28px; }
  .closing { padding: 70px 28px; }
  .footer { padding: 40px 28px; }
}

@media (max-width: 600px) {
  .essentials-grid { grid-template-columns: 1fr; }
  .collection-right { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
}