:root {
  --bg: #FAF7F2;
  --surface: #F0EBE3;
  --charcoal: #1C1A17;
  --text: #3D3731;
  --muted: #8A8078;
  --accent: #B85C38;
  --accent-light: #D4896A;
  --border: #E2D9CE;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px 48px 80px;
  min-height: 540px;
  align-items: center;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-visual {
  position: relative;
}

.fabric-texture {
  position: absolute;
  inset: -20px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(184,92,56,0.03) 3px,
      rgba(184,92,56,0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(184,92,56,0.03) 3px,
      rgba(184,92,56,0.03) 4px
    );
  border-radius: 4px;
  pointer-events: none;
}

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

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  transition: transform 0.2s ease;
}

.stat-card:hover { transform: translateX(4px); }

.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  min-width: 80px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* Provenance */
.provenance {
  padding: 64px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
}

.provenance-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding-top: 6px;
}

.provenance-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  max-width: 560px;
  font-weight: 300;
}

.provenance-body p + p {
  margin-top: 16px;
}

/* Features */
.features {
  padding: 80px 48px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.feature {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s ease;
}

.feature:hover { background: var(--surface); }

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.9;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

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

.closing-content {
  max-width: 520px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.closing p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.footer-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px 56px; }
  .provenance { grid-template-columns: 1fr; gap: 16px; padding: 48px 24px; }
  .features { padding: 56px 24px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature { padding: 36px 28px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .stat-card { padding: 18px 24px; }
  .stat-number { font-size: 32px; }
}