:root {
  --ink: #2a2327;
  --paper: #fffdf8;
  --cream: #f4ede2;
  --sage: #6d7b63;
  --rose: #91495e;
  --gold: #c8a661;
  --line: #ded3c5;
  --dark: #261f25;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, system-ui, sans-serif; }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero { min-height: 88vh; color: white; background:
  linear-gradient(90deg, rgba(28,22,27,.86), rgba(28,22,27,.25)),
  radial-gradient(circle at 75% 25%, rgba(190,77,116,.6), transparent 25%),
  radial-gradient(circle at 85% 70%, rgba(77,126,104,.55), transparent 28%),
  linear-gradient(135deg, #2b2228, #614357 45%, #314f43); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.brand { text-decoration: none; font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 700; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { text-decoration: none; opacity: .9; }
.hero-inner { padding: 13vh 0 10vh; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; color: var(--gold); }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; margin-top: 0; }
h1 { max-width: 900px; font-size: clamp(4.2rem, 10vw, 8.5rem); line-height: .82; margin-bottom: 28px; }
h2 { font-size: clamp(2.6rem, 5vw, 4.7rem); line-height: .95; margin-bottom: 0; }
h3 { font-size: 1.8rem; margin-bottom: 8px; }
.lede { max-width: 760px; font-family: "Cormorant Garamond", serif; font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.35; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 50px; }
.button { display: inline-block; text-decoration: none; padding: 14px 20px; border-radius: 999px; font-weight: 700; }
.primary { background: white; color: var(--ink); }
.secondary { border: 1px solid rgba(255,255,255,.55); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; max-width: 940px; }
.stats div { border-top: 1px solid rgba(255,255,255,.32); padding-top: 12px; }
.stats dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; opacity: .68; }
.stats dd { margin: 5px 0 0; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; }
.section { padding: 100px 0; }
.intro, .two-col, .section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.intro > p, .section-heading > p, .two-col > p { font-size: 1.15rem; line-height: 1.8; margin: 0; }
.palette-section { background: var(--cream); }
.swatch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 45px; }
.swatch { position: relative; aspect-ratio: 1; overflow: hidden; background: #ddd; display: block; }
.swatch img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.swatch:hover img { transform: scale(1.03); }
.swatch::after { content: attr(data-name); position: absolute; inset: auto 0 0 0; padding: 35px 14px 12px; background: linear-gradient(transparent, rgba(0,0,0,.72)); color: white; font-size: .82rem; opacity: 0; transition: opacity .2s ease; }
.swatch:hover::after { opacity: 1; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 45px; }
.card { border: 1px solid var(--line); border-radius: 18px; padding: 28px; background: white; }
.card span { display: inline-block; font-size: .75rem; letter-spacing: .14em; color: var(--rose); font-weight: 700; margin-bottom: 35px; }
.card p { line-height: 1.65; }
.card .button { margin-top: 16px; background: var(--ink); color: white; padding: 10px 18px; font-size: .9rem; }
.card .button:hover { background: var(--rose); }
.dark { background: var(--dark); color: white; }
.dark .eyebrow { color: #d8b46d; }
.journal-placeholder { margin-top: 45px; border: 1px solid var(--line); padding: 40px; border-radius: 20px; background: linear-gradient(135deg, #fff, #f8f1e8); }
footer { border-top: 1px solid var(--line); padding: 28px 0; font-size: .82rem; color: #6d6167; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .intro, .two-col, .section-heading { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .shell { width: min(100% - 24px, 1180px); }
  .section { padding: 72px 0; }
  .plan-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
