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

:root {
  --brand:     #302215;
  --brand-mid: #4a3525;
  --warm:      #efeadf;
  --warm-dim:  #c2b1a2;
  --light:     #efeadf;
  --white:     #ffffff;
}

html, body {
  height: 100%;
  background: var(--brand);
  color: var(--light);
  font-family: Georgia, 'Times New Roman', serif;
}

/* ── HERO ─────────────────────────────────────── */
header {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(200,184,154,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.wordmark {
  font-family: Palatino, 'Palatino Linotype', Georgia, serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: bold;
  letter-spacing: -0.02em;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--light);
  font-style: italic;
  margin-bottom: 3rem;
  opacity: 0.85;
}

.description {
  max-width: 520px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--warm-dim);
  margin-bottom: 3.5rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.8; }

.btn-primary {
  background: var(--warm);
  color: var(--brand);
  font-weight: bold;
}

.btn-secondary {
  border: 1px solid var(--warm-dim);
  color: var(--warm-dim);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--warm-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ── FEATURES ─────────────────────────────────── */
section.features {
  max-width: 960px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.feature h3 {
  font-family: Palatino, 'Palatino Linotype', Georgia, serif;
  font-size: 1.2rem;
  color: var(--warm);
  margin-bottom: 0.75rem;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--warm-dim);
}

/* ── DIVIDER ──────────────────────────────────── */
.rule {
  width: 60px;
  height: 1px;
  background: var(--warm-dim);
  margin: 0 auto 5rem;
  opacity: 0.4;
}

/* ── PLUS ─────────────────────────────────────── */
section.plus {
  text-align: center;
  padding: 4rem 2rem 6rem;
  background: var(--brand-mid);
}

section.plus h2 {
  font-family: Palatino, 'Palatino Linotype', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--warm);
  margin-bottom: 1rem;
}

section.plus p {
  max-width: 420px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--warm-dim);
}

section.plus .price {
  font-size: 0.85rem;
  color: var(--warm-dim);
  margin-top: 0.75rem;
  opacity: 0.65;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.8rem;
  color: var(--warm-dim);
  opacity: 0.5;
  letter-spacing: 0.04em;
}
