@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,400&display=swap");

:root {
  --ivory: #fdfbf7;
  --sand: #f1eae0;
  --sand-2: #e4d9c8;
  --deep: #0f2a1d;
  --deep-2: #173726;
  --moss: #39604a;
  --sage: #9bb49c;
  --sage-soft: #d7e2d5;
  --terra: #c1653f;
  --terra-2: #a2502f;
  --honey: #e0b15e;
  --ink: #1e211d;
  --ink-2: #5c635a;
  --line: rgba(15, 42, 29, 0.12);
  --r-lg: 32px;
  --r-md: 22px;
  --r-sm: 14px;
  --shadow: 0 30px 70px -40px rgba(15, 42, 29, 0.45);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; padding-bottom: 0; color: var(--ink); background: var(--ivory); font-family: var(--sans); font-size: 17px; line-height: 1.72; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.015em; }
h1 { font-size: clamp(3rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.7rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.75rem); }
p { margin: 0 0 1.05em; }
.wrap { width: min(var(--max), calc(100% - 52px)); margin-inline: auto; }
.kicker { margin: 0 0 1rem; color: var(--moss); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; }
.kicker.on-dark { color: var(--honey); }
.lede { max-width: 64ch; color: var(--ink-2); font-size: 1.16rem; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.skip { position: absolute; left: -9999px; z-index: 999; padding: 0.7rem 1.2rem; color: #fff; background: var(--terra); }
.skip:focus { top: 8px; left: 8px; }

.preview { padding: 0.35rem 1rem; color: var(--deep); background: var(--sage-soft); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-align: center; text-transform: uppercase; }
.util { color: rgba(255, 255, 255, 0.8); background: var(--deep); font-size: 0.78rem; letter-spacing: 0.04em; }
.util .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.4rem 1.5rem; padding-block: 0.5rem; }
.util a { color: #fff; text-decoration: none; }
.util .right { display: flex; flex-wrap: wrap; gap: 1.3rem; }
header.site { position: sticky; z-index: 120; top: 0; border-bottom: 1px solid var(--line); background: rgba(253, 251, 247, 0.92); backdrop-filter: blur(16px); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 0.85rem; padding-block: 0.8rem; }
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 0.75rem; text-decoration: none; }
.leaf { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--deep); }
.leaf svg { width: 22px; height: 22px; fill: none; stroke: var(--sage); stroke-width: 1.7; }
.brand b { display: block; color: var(--deep); font-family: var(--serif); font-size: 1.44rem; font-weight: 400; line-height: 1; }
.brand small { display: block; margin-top: 4px; color: var(--ink-2); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; }
.menu { display: flex; margin: 0 0 0 auto; padding: 0; list-style: none; }
.menu a { display: block; padding: 0.62rem 0.72rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500; text-decoration: none; }
.menu a:hover, .menu a[aria-current="page"] { color: var(--deep); background: var(--sage-soft); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.menu-toggle { display: none; padding: 0.6rem 0.75rem; border: 1.5px solid var(--line); border-radius: 999px; background: none; cursor: pointer; }
.menu-toggle span { width: 19px; height: 2px; display: block; margin: 4px 0; border-radius: 2px; background: var(--deep); }
.mobile-menu { display: none; padding: 1rem 26px 1.6rem; border-top: 1px solid var(--line); background: var(--ivory); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.72rem 0; border-bottom: 1px solid var(--line); font-weight: 500; text-decoration: none; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 1.55rem; border: 1.5px solid transparent; border-radius: 999px; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; line-height: 1.2; text-decoration: none; transition: 0.2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-terra { color: #fff; background: var(--terra); box-shadow: 0 14px 30px -16px rgba(193, 101, 63, 0.8); }
.btn-terra:hover { background: var(--terra-2); }
.btn-deep { color: #fff; background: var(--deep); }
.btn-outline { border-color: var(--deep); color: var(--deep); }
.btn-outline:hover { color: #fff; background: var(--deep); }

.crumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; color: var(--ink-2); font-size: 0.75rem; }
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(58px, 8vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: clamp(30px, 5vw, 68px); }
.hero h1 em { color: var(--terra); font-style: italic; }
.hero .lede { margin-top: 1.5rem; font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.hero-art { position: relative; }
.hero-art .frame { overflow: hidden; border-radius: 280px 280px var(--r-lg) var(--r-lg); background: var(--sand-2); box-shadow: var(--shadow); }
.hero-art .frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.hero-badge { position: absolute; bottom: -18px; left: -14px; max-width: 240px; padding: 1rem 1.25rem; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; box-shadow: var(--shadow); }
.hero-badge b { display: block; color: var(--deep); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1; }
.hero-badge small { display: block; margin-top: 0.35rem; color: var(--ink-2); font-size: 0.78rem; line-height: 1.4; }

.facts { padding: 0; color: #fff; background: var(--deep); }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.14); }
.fact { padding: clamp(25px, 3.2vw, 40px); background: var(--deep); }
.fact b { display: block; color: var(--honey); font-family: var(--serif); font-size: 2.1rem; font-weight: 400; line-height: 1; }
.fact strong { display: block; margin-top: 0.7rem; font-size: 0.92rem; }
.fact span { display: block; margin-top: 0.35rem; color: rgba(255, 255, 255, 0.72); font-size: 0.8rem; }

section { position: relative; padding: clamp(68px, 9vw, 122px) 0; }
.sand { background: var(--sand); }
.dark { color: #fff; background: var(--deep); }
.dark .lede { color: rgba(255, 255, 255, 0.78); }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 7vw, 88px); align-items: start; }
.copy p { color: var(--ink-2); }
.dark .copy p { color: rgba(255, 255, 255, 0.78); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.check-grid li { position: relative; min-height: 68px; display: flex; align-items: center; padding: 0.9rem 0.9rem 0.9rem 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: 0.9rem; }
.check-grid li::before { content: ""; position: absolute; left: 0.6rem; width: 8px; height: 8px; border: 2px solid var(--sage); border-radius: 50%; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: clamp(34px, 5vw, 56px); }
.card { min-height: 260px; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; transition: 0.22s ease; }
.card:hover { transform: translateY(-5px); border-color: var(--sage); box-shadow: var(--shadow); }
.card b { color: var(--moss); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.card h2, .card h3 { margin: auto 0 0.65rem; color: var(--deep); font-size: 1.45rem; }
.card p { color: var(--ink-2); font-size: 0.94rem; }
.card a { margin-top: auto; color: var(--terra); font-size: 0.84rem; font-weight: 700; text-decoration: none; }
.dark .card { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.06); }
.dark .card h3 { color: #fff; }
.dark .card p { color: rgba(255, 255, 255, 0.75); }
.dark .card b { color: var(--honey); }

.faq-list { max-width: 900px; margin: clamp(32px, 4vw, 48px) auto 0; }
details { overflow: hidden; margin-bottom: 12px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--ivory); }
details[open] { border-color: var(--sage); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.4rem; color: var(--deep); font-size: 1.02rem; font-weight: 600; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--terra); font-family: var(--serif); font-size: 1.5rem; }
details[open] summary::after { content: "–"; }
details .answer { padding: 0 1.4rem 1.3rem; color: var(--ink-2); font-size: 0.97rem; }

.cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: clamp(28px, 5vw, 56px); border-radius: var(--r-lg); color: #fff; background: var(--deep); box-shadow: var(--shadow); }
.cta p { max-width: 62ch; margin-top: 1rem; color: rgba(255, 255, 255, 0.75); }

footer.site { padding: clamp(56px, 7vw, 88px) 0 0; color: rgba(255, 255, 255, 0.72); background: var(--deep); font-size: 0.93rem; }
footer.site h4 { margin: 0 0 1.1rem; color: var(--honey); font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 34px; }
.footer-name { margin-bottom: 0.6rem; color: #fff; font-family: var(--serif); font-size: 1.6rem; }
footer.site ul { margin: 0; padding: 0; list-style: none; }
footer.site li { padding: 0.3rem 0; }
footer.site a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; }
.legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.6rem 1.4rem; margin-top: clamp(40px, 5vw, 64px); padding: 1.4rem 0; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.82rem; }
.disclaimer { padding: 1.1rem 0; color: rgba(255, 255, 255, 0.55); background: rgba(0, 0, 0, 0.25); font-size: 0.78rem; line-height: 1.6; }
.sticky { position: fixed; z-index: 130; right: 0; bottom: 0; left: 0; display: none; gap: 0.5rem; padding: 0.7rem 0.8rem; border-top: 1px solid var(--line); background: rgba(253, 251, 247, 0.96); backdrop-filter: blur(12px); }
.sticky .btn { flex: 1; }

@media (max-width: 980px) {
  .menu { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-badge { position: static; max-width: none; margin-top: 1.2rem; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .wrap { width: min(100% - 32px, var(--max)); }
  .util { display: none; }
  .nav-actions .btn { display: none; }
  .facts-grid, .cards, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .sticky { display: flex; }
  .check-grid li { border-right: 0; }
}

@media (max-width: 430px) {
  .brand small { display: none; }
  .brand b { font-size: 1.2rem; }
  .leaf { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
