:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1714;
  --fg-muted: #7A7167;
  --accent: #B85C38;
  --accent-warm: #D4A84B;
  --border: #E0D9CE;
  --card-bg: #FFFFFF;
}

* { 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;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}

/* Nav */
.nav {
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
}

.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 4rem 6rem;
  gap: 4rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.eyebrow-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--fg);
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-pill-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-muted);
}

.pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* Clock */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-display {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 4px 24px rgba(26,23,20,0.06);
}

.clock-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.clock-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.clock-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.cd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.cd.active {
  background: var(--accent);
}

/* What section */
.what {
  padding: 6rem 4rem;
  background: var(--bg-alt);
}

.what-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
}

.what-col-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.what-col-header.old {
  color: var(--fg-muted);
}

.what-col-header.new {
  color: var(--accent);
}

.what-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.what-icon {
  flex-shrink: 0;
  color: var(--fg-muted);
  margin-top: 0.1rem;
}

.what-icon.newer {
  color: var(--accent);
}

.what-text {
  font-size: 0.95rem;
  color: var(--fg);
}

.what-divider {
  width: 1px;
  background: var(--border);
  margin: 0 3rem;
}

/* Features */
.features {
  padding: 8rem 4rem;
}

.features-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--card-bg);
  padding: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 10rem 4rem 8rem;
  max-width: 900px;
}

.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 55ch;
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-origin {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.origin-line {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.origin-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

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

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.wordmark-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 1.5rem 2rem; }
  .hero {
    grid-template-columns: 1fr;
    padding: 0 2rem 4rem;
    min-height: auto;
    padding-top: 2rem;
  }
  .hero-visual { display: none; }
  .what { padding: 4rem 2rem; }
  .what-grid { grid-template-columns: 1fr; gap: 2rem; }
  .what-divider { display: none; }
  .features { padding: 4rem 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 5rem 2rem 4rem; }
  .footer { flex-direction: column; gap: 1rem; padding: 2rem; text-align: center; }
  .footer-brand { flex-direction: column; gap: 0.25rem; align-items: center; }
}

/* Additional polish */
@media (max-width: 480px) {
  .feature-card { padding: 2rem; flex-direction: column; gap: 0.5rem; }
}