:root {
  --bg: #0A0A0A;
  --bg-warm: #1A1110;
  --fg: #FFF8E7;
  --fg-muted: rgba(255, 248, 231, 0.6);
  --accent: #D4A017;
  --accent-dim: rgba(212, 160, 23, 0.15);
  --border: rgba(212, 160, 23, 0.2);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 64px;
  padding-top: 80px;
  gap: 80px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 8px 16px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-line-1 { color: var(--fg-muted); }
.hero-line-2 { color: var(--accent); display: block; }
.hero-line-3 { color: var(--fg); }

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 360px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plate-icon {
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.badge-day {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.features {
  padding: 120px 64px;
  background: var(--bg-warm);
}

.features-header {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.feature {
  padding: 32px;
  border: 1px solid var(--border);
  background: rgba(212, 160, 23, 0.03);
}

.feature-day {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.features-rules {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rule-icon {
  color: var(--accent);
  font-size: 12px;
}

.closing {
  padding: 160px 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 64px;
}

.closing-quote {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}

.closing-quote::before {
  content: '"';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
}

.closing-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--fg-muted);
}

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

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

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

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { 
    padding: 100px 24px 80px; 
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
  .hero-title { font-size: 48px; }
  .hero-visual { display: none; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-rules { flex-direction: column; gap: 24px; }
  .closing { padding: 100px 24px; }
  .footer { 
    flex-direction: column; 
    gap: 24px; 
    padding: 40px 24px;
    text-align: center;
  }
}