/* ─── Base ─────────────────────────────────────── */
:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface2: #1f1f1f;
  --fg: #f0ede6;
  --fg-muted: #8a8783;
  --accent: #9b1d1a;
  --accent-light: #c4453c;
  --border: #2a2a2a;
  --warm: #c4a882;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(155, 29, 26, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(196, 168, 130, 0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d0d 0%, #111 50%, #0a0a0a 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* vertical rule */
.hero-bg::before {
  content: '';
  position: absolute;
  left: clamp(24px, 6vw, 80px);
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 10vh, 140px) clamp(32px, 8vw, 120px);
  max-width: 760px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 40px;
}

.hero-headline em {
  font-style: italic;
  color: var(--fg);
  font-weight: 400;
}

.hero-headline .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* ─── Aesthetic ────────────────────────────────── */
.aesthetic {
  background: var(--surface);
  padding: clamp(80px, 12vh, 140px) clamp(32px, 6vw, 80px);
  border-top: 1px solid var(--border);
}

.aesthetic-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
  opacity: 0.8;
}

.aesthetic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.aesthetic-item {
  padding: 48px 40px;
  border-left: 1px solid var(--border);
  position: relative;
}

.aesthetic-item:first-child {
  border-left: none;
  padding-left: 0;
}

.aesthetic-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.aesthetic-item:hover::after { opacity: 1; }

.aesthetic-icon {
  margin-bottom: 24px;
  opacity: 0.85;
}

.aesthetic-item h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.aesthetic-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Line ─────────────────────────────────────── */
.line {
  background: var(--bg);
  padding: clamp(80px, 12vh, 140px) clamp(32px, 6vw, 80px);
  border-top: 1px solid var(--border);
}

.line-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.line-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
  border: 1px solid var(--border);
}

.stat {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.product-preview {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.product-tag {
  padding: 8px 20px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: border-color 0.3s, color 0.3s;
}

.product-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.line-note {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── Closing ───────────────────────────────────── */
.closing {
  background: var(--surface);
  padding: clamp(100px, 14vh, 180px) clamp(32px, 8vw, 120px);
  border-top: 1px solid var(--border);
}

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

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.closing-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.8;
  font-weight: 300;
}

.closing-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-mark {
  color: var(--accent);
  font-size: 14px;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--warm);
  letter-spacing: 0.05em;
}

/* ─── Footer ────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 48px clamp(32px, 6vw, 80px);
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.footer-tag {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 11px;
  color: var(--fg-muted);
  opacity: 0.5;
  font-weight: 300;
}

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .aesthetic-grid {
    grid-template-columns: 1fr;
  }
  .aesthetic-item {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 32px 0;
  }
  .aesthetic-item:first-child { border-top: none; }
  .line-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat { border-bottom: 1px solid var(--border); }
  .stat:nth-child(2) { border-right: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .line-stats { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 56px; }
}