:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-read: "Literata", Georgia, serif;
  --bg: #f6f3ea; --surface: #fffdf7; --surface-2: #efe9da;
  --ink: #1d1a14; --text: #33302a; --muted: #756e5e;
  --line: #e3dcc8; --line-soft: #ece6d6;
  --brand: #1c5e40; --brand-ink: #fff; --brand-deep: #123f2b; --brand-soft: #e4efe6;
  --gold: #a97e17; --gold-soft: #f5e9cf;
  --danger: #b3372f; --ok: #1c7c4f; --star: #e0a419;
  --shadow-sm: 0 1px 2px rgb(23 20 12/.06), 0 4px 12px rgb(23 20 12/.05);
  --shadow-md: 0 6px 18px rgb(23 20 12/.08), 0 2px 6px rgb(23 20 12/.05);
  --shadow-lg: 0 24px 48px -12px rgb(23 20 12/.22);
  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-pill: 999px;
  --header-h: 68px; color-scheme: light;
}
[data-theme="dark"] {
  --bg: #0f120f; --surface: #161a16; --surface-2: #1d231d;
  --ink: #f0ecdd; --text: #d9d4c4; --muted: #9a937f;
  --line: #2a312a; --line-soft: #232a23;
  --brand: #3fae74; --brand-ink: #07130c; --brand-deep: #0d2b1c; --brand-soft: #16301f;
  --gold: #d9a93f; --gold-soft: #2e2612;
  --danger: #e07a70; --ok: #57c48c; --star: #e2ae2f;
  --shadow-sm: 0 1px 2px rgb(0 0 0/.3), 0 4px 12px rgb(0 0 0/.25);
  --shadow-md: 0 6px 18px rgb(0 0 0/.35), 0 2px 6px rgb(0 0 0/.3);
  --shadow-lg: 0 24px 48px -12px rgb(0 0 0/.6);
  color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.65; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; } a { color: inherit; text-decoration: none; } img,svg { max-width: 100%; display: block; } button { font: inherit; color: inherit; }
.ic { width: 20px; height: 20px; }
::selection { background: var(--gold-soft); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }
button, a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.container { width: min(1200px, 100% - 40px); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 100px); }
main { min-height: 60vh; }
.muted { color: var(--muted); } .small { font-size: .85rem; } .mono { font-variant-numeric: tabular-nums; } .ok { color: var(--ok); }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--brand); color: var(--brand-ink); padding: .6em 1.2em; border-radius: var(--r-pill); }
.skip-link:focus { left: 8px; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 46ch; }
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.topbar { background: var(--brand-deep); color: #f2e8c9; text-align: center; font-size: .8rem; padding: .5em 1em; }
.topbar b { color: var(--star); }
.navbar { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); transition: box-shadow .25s; }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--brand); color: var(--brand-ink); }
.brand-text { line-height: 1.05; }
.brand-text small { display: block; font-family: var(--font-body); font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: .25rem; margin-left: auto; }
.nav-links a { position: relative; padding: .5em .85em; font-weight: 600; font-size: .92rem; color: var(--muted); border-radius: var(--r-pill); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after { content: ""; position: absolute; left: .85em; right: .85em; bottom: .15em; height: 2px; background: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: .35rem; }
.icon-btn { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border: none; background: transparent; border-radius: 50%; cursor: pointer; color: var(--ink); transition: background .2s, transform .15s; }
.icon-btn:hover { background: var(--surface-2); }
.icon-btn:active { transform: scale(.94); }
.cart-badge { position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px; display: grid; place-items: center; border-radius: 99px; background: var(--gold); color: #fff; font-size: .65rem; font-weight: 800; }
.burger { display: none; }
.mobile-menu { position: sticky; top: var(--header-h); z-index: 99; background: var(--surface); border-bottom: 1px solid var(--line); padding: .75rem 1.25rem 1rem; display: flex; flex-direction: column; gap: .25rem; animation: fadeDown .25s ease; }
.mobile-menu a { padding: .7em .5em; font-weight: 600; border-bottom: 1px solid var(--line-soft); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } }
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px); background: radial-gradient(700px 420px at 85% 0%, var(--gold-soft), transparent 65%), radial-gradient(600px 400px at 0% 100%, var(--brand-soft), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 6.5vw, 4.6rem); font-weight: 600; line-height: 1.03; margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.75rem 0 2rem; }
.hero-meta { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin: 0; padding: 0; font-size: .88rem; color: var(--muted); font-weight: 600; }
.hero-art { position: relative; min-height: 440px; }
.float-chip { position: absolute; z-index: 3; background: var(--surface); border: 1px solid var(--line-soft); box-shadow: var(--shadow-md); border-radius: var(--r-pill); padding: .5em 1em; font-size: .8rem; font-weight: 700; animation: float 5s ease-in-out infinite alternate; }
.chip-a { left: -2%; bottom: 14%; }
@keyframes float { from { transform: translateY(-7px); } to { transform: translateY(9px); } }
/* ===== GALAXY (v2+v3+v4 final) ===== */
.galaxy { position: absolute; inset: 0; display: grid; place-items: center; overflow: visible; }
.gx-nebula { position: absolute; inset: -22%; background: radial-gradient(38% 30% at 22% 30%, rgba(124,93,250,.14), transparent 70%), radial-gradient(30% 26% at 78% 68%, rgba(45,212,191,.12), transparent 70%), radial-gradient(26% 22% at 68% 22%, rgba(255,217,138,.10), transparent 70%); filter: blur(8px); }
.gx-tilt { position: relative; width: 82%; aspect-ratio: 1; transform: rotate(calc(-14deg + var(--py, 0deg))) scaleY(.62) translateX(var(--px, 0px)); transition: transform .3s ease-out; }
.gx-spin { position: absolute; inset: 0; animation: spin 90s linear infinite; }
.gx-disk { position: absolute; inset: 3%; border-radius: 50%; background: radial-gradient(closest-side, rgba(255,244,214,.85) 0%, rgba(255,217,138,.35) 22%, rgba(126,231,196,.22) 40%, rgba(125,170,255,.14) 56%, transparent 72%); filter: blur(3px); }
.gx-arm { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0deg 15deg, rgba(159,212,255,.55) 35deg 55deg, transparent 75deg 180deg, rgba(126,231,196,.5) 200deg 225deg, transparent 245deg 360deg); -webkit-mask: radial-gradient(closest-side, transparent 16%, #000 30% 60%, transparent 70%); mask: radial-gradient(closest-side, transparent 16%, #000 30% 60%, transparent 70%); filter: blur(5px); }
.gx-a2 { inset: 7%; transform: rotate(150deg); opacity: .75; background: conic-gradient(from 0deg, transparent 0deg 20deg, rgba(255,217,138,.4) 40deg 60deg, transparent 80deg 190deg, rgba(159,212,255,.35) 210deg 235deg, transparent 255deg 360deg); }
.gx-dust { position: absolute; inset: 9%; border-radius: 50%; background: conic-gradient(from 30deg, transparent 0deg 28deg, rgba(8,12,18,.6) 42deg 58deg, transparent 74deg 195deg, rgba(8,12,18,.5) 212deg 230deg, transparent 248deg 360deg); -webkit-mask: radial-gradient(closest-side, transparent 18%, #000 32% 56%, transparent 66%); mask: radial-gradient(closest-side, transparent 18%, #000 32% 56%, transparent 66%); filter: blur(4px); }
.gx-core { position: absolute; inset: 0; margin: auto; width: 24%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #fff 0%, #ffefc9 28%, rgba(255,217,138,.5) 52%, transparent 74%); filter: blur(2px); box-shadow: 0 0 34px 10px rgba(255,236,179,.35), 0 0 90px 30px rgba(255,217,138,.12); animation: gx-pulse 7s ease-in-out infinite alternate; }
@keyframes gx-pulse { from { transform: scale(.95); opacity: .92; } to { transform: scale(1.06); opacity: 1; } }
.gx-stars { position: absolute; inset: -35% -20%; pointer-events: none; background-repeat: repeat; }
.gx-s1 { background-image: radial-gradient(1px 1px at 25px 35px, #fff 50%, transparent 51%), radial-gradient(1px 1px at 75px 120px, rgba(255,255,255,.8) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 150px 60px, #ffe9c4 50%, transparent 51%), radial-gradient(1px 1px at 190px 160px, rgba(255,255,255,.7) 50%, transparent 51%); background-size: 220px 220px; animation: twinkle 3.5s ease-in-out infinite alternate; }
.gx-s2 { background-image: radial-gradient(1px 1px at 40px 80px, rgba(126,231,196,.9) 50%, transparent 51%), radial-gradient(1.5px 1.5px at 120px 30px, #fff 50%, transparent 51%), radial-gradient(1px 1px at 200px 90px, rgba(159,212,255,.9) 50%, transparent 51%); background-size: 260px 260px; animation: twinkle 5s ease-in-out infinite alternate-reverse; transition: transform .4s ease-out; }
.gx-s3 { background-image: radial-gradient(2px 2px at 60px 140px, #fff 50%, transparent 51%), radial-gradient(1px 1px at 170px 40px, rgba(255,236,179,.9) 50%, transparent 51%); background-size: 340px 340px; filter: blur(.4px); animation: twinkle 7s ease-in-out infinite alternate; }
@keyframes twinkle { from { opacity: .35; } to { opacity: .95; } }
.gx-shoot { --ang: -35deg; --dist: -300px; position: absolute; top: 16%; left: 74%; width: 130px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); filter: drop-shadow(0 0 6px rgba(255,255,255,.8)); opacity: 0; pointer-events: none; animation: shoot 7.5s ease-in 2.5s infinite; }
.gx-shoot::before { content: ""; position: absolute; left: -2px; top: -1.5px; width: 5px; height: 5px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px 2px rgba(255,255,255,.6); }
.gx-shoot2 { --ang: -24deg; --dist: -240px; top: 60%; left: 30%; width: 100px; animation-duration: 9s; animation-delay: 6s; }
@keyframes shoot { 0% { opacity: 0; transform: rotate(var(--ang)) translateX(0); } 3% { opacity: 1; } 11% { opacity: 0; transform: rotate(var(--ang)) translateX(var(--dist)); } 100% { opacity: 0; transform: rotate(var(--ang)) translateX(var(--dist)); } }
.g-ring { position: absolute; inset: 0; margin: auto; width: min(98%, 520px); aspect-ratio: 1; border-radius: 50%; border: 1.5px dashed color-mix(in srgb, var(--gold) 62%, transparent); animation: spin 70s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0; }
.chip-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.shelf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; }
.shelf-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 1.1rem 1.2rem 1.2rem; display: grid; gap: .3rem; transition: transform .25s, box-shadow .25s; }
.shelf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shelf-spines { display: flex; align-items: flex-end; gap: 5px; height: 46px; margin-bottom: .5rem; }
.shelf-spines i { width: 11px; border-radius: 2px 2px 0 0; }
.shelf-spines i:nth-child(1) { height: 70%; background: var(--brand); }
.shelf-spines i:nth-child(2) { height: 95%; background: var(--gold); }
.shelf-spines i:nth-child(3) { height: 55%; background: #2b5b96; }
.shelf-spines i:nth-child(4) { height: 82%; background: #8c2f4b; }
.shelf-spines i:nth-child(5) { height: 64%; background: var(--ink); opacity: .7; }
.shelf-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.quote-sec { background: var(--brand-deep); color: #e9e4d2; }
.quote-sec .container { max-width: 880px; text-align: center; }
.quote { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.4; margin-bottom: 1.25rem; }
.quote::before { content: "\201C"; color: var(--gold); font-size: 1.4em; }
.quote-by { color: #b9c4b3; font-size: .95rem; }
.cta-band { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; box-shadow: var(--shadow-sm); }
.news-form { display: flex; gap: .5rem; margin-top: 1rem; }
.news-form input { flex: 1; min-width: 0; }
.site-foot { background: var(--brand-deep); color: #cfd8d0; margin-top: clamp(40px, 6vw, 80px); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-block: 3.5rem 2.5rem; }
.site-foot .brand { color: #f2e8c9; margin-bottom: 1rem; }
.site-foot .brand-mark { background: var(--gold); color: #241c05; }
.site-foot h4 { color: #f2e8c9; font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.site-foot a { display: block; padding: .28em 0; opacity: .85; transition: opacity .2s; }
.site-foot a:hover { opacity: 1; color: var(--gold-soft); }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.25rem; border-top: 1px solid rgb(255 255 255/.12); font-size: .82rem; opacity: .75; }
.bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--surface); border-top: 1px solid var(--line); padding: .35rem .5rem calc(.35rem + env(safe-area-inset-bottom)); }
.bottom-nav a { display: grid; justify-items: center; gap: .1rem; flex: 1; font-size: .62rem; font-weight: 700; color: var(--muted); padding: .3rem 0; border-radius: 10px; }
.bottom-nav a .ic { width: 21px; height: 21px; }
.bottom-nav a.active { color: var(--brand); }
.skel { border-radius: var(--r-md); background: linear-gradient(90deg, var(--surface-2) 25%, var(--line-soft) 50%, var(--surface-2) 75%); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.skel-hero { height: 340px; margin-block: 2rem; }
.checkout-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.2rem); }
.form-card h2 { font-size: 1.15rem; margin-top: 1.75rem; }
.form-card h2:first-child { margin-top: 0; }
.pay-options { display: flex; gap: .75rem; margin-bottom: 1.25rem; }
.pay-opt { flex: 1; border: 1.5px solid var(--line); border-radius: var(--r-md); padding: .85em 1em; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: .6em; }
.pay-opt input { width: auto; accent-color: var(--brand); }
.pay-opt:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.checkout-aside { position: sticky; top: calc(var(--header-h) + 24px); background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.5rem; }
.os-row { display: grid; grid-template-columns: 44px 1fr auto; gap: .8rem; align-items: center; padding: .6rem 0; border-bottom: 1px solid var(--line-soft); }
.os-cover { width: 44px; aspect-ratio: 3/4.1; }
.secure-note { font-size: .78rem; color: var(--muted); text-align: center; margin: 1rem 0 0; }
.crumbs { font-size: .84rem; color: var(--muted); margin-block: 1.5rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brand); }
.pd-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.pd-cover { position: sticky; top: calc(var(--header-h) + 24px); }
.pd-cover .bdgs { top: 18px; left: 18px; }
.pd-cover .cover { aspect-ratio: 3/4.1; box-shadow: var(--shadow-lg); }
.pd-info h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: .2em; }
.pd-author { color: var(--muted); margin-bottom: .75rem; }
.pd-rating { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pd-rating a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.pd-price { display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1.1rem; }
.pd-price b { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.pd-short { font-size: 1.05rem; max-width: 56ch; }
.pd-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-block: 1.5rem; }
.pd-perks { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; margin: 0; padding: 1rem 0 0; border-top: 1px solid var(--line-soft); font-size: .88rem; font-weight: 600; color: var(--muted); }
.pd-section { margin-top: clamp(2.5rem, 5vw, 4rem); }
.pd-section h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.prose p { max-width: 72ch; }
.learn-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .75rem 2rem; }
.learn-grid li { display: flex; gap: .6rem; align-items: flex-start; padding: .65rem .9rem; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-sm); }
.li-ic { color: var(--brand); flex: none; margin-top: .1em; }
.li-ic .ic { width: 17px; height: 17px; }
.info-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .5rem 2rem; margin: 0; }
.info-table > div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line-soft); }
.info-table dt { color: var(--muted); font-weight: 600; }
.info-table dd { margin: 0; font-weight: 700; color: var(--ink); }
.reviews-grid { display: grid; grid-template-columns: 340px 1fr; gap: 1.5rem; align-items: start; margin-bottom: 2.5rem; }
.rating-card, .review-form-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 1.6rem; }
.rating-big { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--ink); }
.rating-big span { font-size: 1.2rem; color: var(--muted); }
.rbars { margin-top: 1.25rem; display: grid; gap: .45rem; }
.rbar-row { display: grid; grid-template-columns: 34px 1fr 26px; gap: .6rem; align-items: center; }
.rbar-label { font-size: .8rem; font-weight: 700; }
.rbar-track { height: 8px; border-radius: 99px; background: var(--surface-2); overflow: hidden; }
.rbar-fill { display: block; height: 100%; border-radius: 99px; background: var(--star); transition: width .6s ease; }
.rev-list-title { margin-bottom: 1rem; }
#reviewList { display: grid; gap: 1rem; }
.review-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 1.25rem 1.4rem; }
.rv-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .5rem; flex-wrap: wrap; }
.rv-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); font-weight: 800; font-family: var(--font-display); }
.rv-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; flex: 1; }
.rv-date { margin-left: auto; }
.review-card p { margin: .5rem 0 0; }
.legal { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal .updated { color: var(--muted); font-size: .85rem; margin-bottom: 2rem; }
.legal details { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 1rem 1.25rem; margin-bottom: .8rem; }
.legal summary { cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.legal summary::-webkit-details-marker { display: none; }
.legal summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); transition: transform .2s; }
.legal details[open] summary::after { transform: rotate(45deg); }
.legal details p, .legal details ul { margin-top: .8rem; }
.legal h2 { margin-top: 2.4rem; font-size: 1.3rem; }
.legal p, .legal li { line-height: 1.8; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
