:root {
  color-scheme: light;
  --bg: #fff8f3;
  --surface: #fffdfa;
  --ink: #30232b;
  --muted: #715d69;
  --rose: #b95f66;
  --rose-soft: #f2d8d5;
  --plum: #553749;
  --gold: #a6742e;
  --line: rgba(85, 55, 73, 0.16);
  --shadow: 0 24px 70px rgba(85, 55, 73, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 216, 213, 0.8), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(231, 220, 240, 0.62), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.72;
}

a { color: var(--rose); text-underline-offset: 0.18em; }
a:hover { color: var(--plum); }

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header { min-height: 82px; }
.brand {
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}
.brand span { color: var(--gold); }
.site-header nav,
.site-footer nav { display: flex; align-items: center; gap: 20px; }
.site-header nav a,
.site-footer nav a { font-size: 15px; font-weight: 600; text-decoration: none; }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--plum);
  color: white !important;
  padding: 10px 18px;
  text-decoration: none;
}

main { display: block; }
.article { width: min(820px, calc(100% - 40px)); margin: 52px auto 110px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.article-header { padding: 52px 0 42px; border-bottom: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3 {
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.06;
  text-wrap: balance;
}
h1 { margin: 0; font-size: clamp(46px, 8vw, 74px); letter-spacing: -0.025em; }
h2 { margin: 56px 0 18px; font-size: clamp(34px, 5vw, 48px); }
h3 { margin: 34px 0 12px; font-size: 29px; }
.dek { max-width: 730px; margin: 24px 0 0; color: var(--muted); font-size: 22px; line-height: 1.55; }
.byline { margin: 24px 0 0; color: var(--muted); font-size: 14px; }
.disclosure {
  margin: 20px 0 0;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.5);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.article-body { padding-top: 22px; }
.article-body > p:first-child { color: var(--plum); font-size: 23px; line-height: 1.6; }
.article-body p,
.article-body li { color: #493b44; }
.article-body ul,
.article-body ol { padding-left: 26px; }
.article-body li + li { margin-top: 10px; }
.answer-box,
.note-box,
.method-box {
  margin: 34px 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}
.answer-box { border-left: 4px solid var(--rose); }
.note-box { background: rgba(242, 216, 213, 0.35); }
.answer-box > :first-child,
.note-box > :first-child,
.method-box > :first-child { margin-top: 0; }
.answer-box > :last-child,
.note-box > :last-child,
.method-box > :last-child { margin-bottom: 0; }
blockquote {
  margin: 38px 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--gold);
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  line-height: 1.3;
}
table { width: 100%; margin: 30px 0; border-collapse: collapse; font-size: 16px; }
th, td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--plum); font-weight: 700; }
.source-list { font-size: 15px; }

.article-cta,
.faq-section,
.related-section { margin-top: 76px; }
.article-cta {
  padding: 38px;
  border: 1px solid rgba(185, 95, 102, 0.2);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(242,216,213,0.82), rgba(255,255,255,0.72));
  box-shadow: var(--shadow);
}
.article-cta h2 { margin-top: 0; }
.article-cta .button { margin-top: 10px; padding: 13px 22px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-list summary { cursor: pointer; color: var(--plum); font-weight: 700; }
.faq-list p { margin-bottom: 0; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card,
.guide-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 12px 38px rgba(85,55,73,0.05);
}
.related-card:hover,
.guide-card:hover { border-color: rgba(185,95,102,0.38); transform: translateY(-2px); }
.related-card span,
.guide-card span { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.related-card strong { display: block; margin-top: 8px; color: var(--plum); line-height: 1.3; }

.hub { width: min(1180px, calc(100% - 40px)); margin: 70px auto 120px; }
.hub-hero { max-width: 860px; margin-bottom: 56px; }
.hub-hero p:last-child { max-width: 700px; color: var(--muted); font-size: 22px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card h2 { margin: 18px 0 12px; font-size: 34px; }
.guide-card p { color: var(--muted); font-size: 16px; }
.guide-card strong { color: var(--rose); font-size: 15px; }

.site-footer { padding: 32px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.site-footer p { margin: 0; }

@media (max-width: 820px) {
  body { font-size: 17px; }
  .related-grid,
  .guide-grid { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer nav { flex-wrap: wrap; }
  .article-cta { padding: 28px 24px; }
}

@media (max-width: 520px) {
  .site-header nav > a:first-child { display: none; }
  h1 { font-size: 45px; }
  h2 { font-size: 36px; }
  .article { margin-top: 30px; }
  .article-header { padding-top: 38px; }
  .dek { font-size: 19px; }
}
