:root {
  color-scheme: light;
  --paper: #fbf7f1;
  --paper-soft: #f2e9de;
  --rose-soft: #f3ddd7;
  --rose: #b9827a;
  --rose-dark: #9e6b63;
  --ink: #3b322b;
  --muted: #8a7c70;
  --line: #e7ded2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 Inter, system-ui, sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.serif { font-family: "Playfair Display", Georgia, serif; }
.nav { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgb(251 247 241 / 92%); backdrop-filter: blur(14px); }
.nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font: 600 21px/1.2 "Playfair Display", Georgia, serif; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 14px; text-decoration: none; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 22px; background: var(--rose); color: white; font-weight: 600; text-decoration: none; }
.button:hover { background: var(--rose-dark); }
.button.secondary { border: 1px solid var(--rose); background: transparent; color: var(--rose-dark); }
.breadcrumb { padding-top: 28px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--rose-dark); text-decoration: none; }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 54px 0 76px; }
.eyebrow { color: var(--rose-dark); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.12; }
h1 { margin: 16px 0 22px; font-size: clamp(42px, 6vw, 66px); font-weight: 600; }
h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 44px); }
h3 { margin: 0 0 8px; font-size: 24px; }
.lead { max-width: 650px; color: var(--muted); font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-image { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: 30px; object-fit: cover; box-shadow: 0 24px 70px rgb(185 130 122 / 16%); }
.hero-visual { display: block; }
.section { padding: 76px 0; }
.section.alt { background: var(--paper-soft); }
.section-copy { max-width: 760px; }
.section-copy p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.card { border: 1px solid var(--line); border-radius: 24px; padding: 26px; background: var(--paper); }
.card p { margin: 0; color: var(--muted); }
.list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; padding: 0; list-style: none; }
.list li { position: relative; padding-left: 24px; color: var(--muted); }
.list li::before { content: "✦"; position: absolute; left: 0; color: var(--rose); }
.note { margin-top: 30px; padding: 24px; border-radius: 22px; background: var(--rose-soft); color: #5c4b3f; }
.related { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.related a { border: 1px solid var(--line); border-radius: 20px; padding: 22px; background: var(--paper); text-decoration: none; }
.related a:hover { border-color: var(--rose); }
.related strong { display: block; font: 600 22px/1.2 "Playfair Display", Georgia, serif; }
.related span { display: block; margin-top: 7px; color: var(--muted); font-size: 14px; }
.cta { padding: 86px 0; background: var(--ink); color: var(--paper); text-align: center; }
.cta p { max-width: 620px; margin: 0 auto 24px; color: #f2e9de; }
.footer { padding: 42px 0; background: #2e2722; color: #f2e9de; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer a { color: #f2e9de; }

@media (max-width: 760px) {
  .nav-inner { align-items: flex-start; padding: 14px 0; }
  .nav-links { justify-content: flex-end; gap: 10px 14px; }
  .nav-links .optional { display: none; }
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 36px; }
  .grid, .related, .list { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}
