/* ============================================================
   wallmela — shared styles · Warm Editorial Interiors
   Warm paper base, Fraunces display + Inter body, indigo/ochre accents.
   Tailwind handles utilities; this refines components, type, icons, motion.
   ============================================================ */

:root {
  --terra: #34517E;
  --terra-light: #4E6E9E;
  --terra-dark: #263C5E;
  --olive: #2A3B5A;
  --olive-dark: #1E2B43;
  --brass: #C7902F;
  --brass-dark: #9E6F20;
  --ink: #2B2723;
  --ink-soft: #6B655C;
  --paper: #FBF7F1;
  --sand: #F1EADF;
  --line: #E7DDCF;
}

html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, .font-display { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
h1 { letter-spacing: -0.02em; line-height: 1.06; }
h2 { letter-spacing: -0.015em; line-height: 1.14; }
p { text-wrap: pretty; }
::selection { background: rgba(52,81,126,.16); }
a { text-underline-offset: 3px; }
*:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container-wm { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 768px) { .container-wm { padding-inline: 2.25rem; } }
.container-wm.grid > * { min-width: 0; }
li.flex.gap-2, li.flex.gap-3 { flex-wrap: wrap; }
.jumpnav-row { justify-content: safe center; }
.jumpnav-row > a { scroll-snap-align: start; }

/* ---------- Icons (SVG injected from main.js via [data-ico]) ---------- */
.ico { display: inline-flex; align-items: center; justify-content: center; line-height: 0; vertical-align: middle; }
.ico svg { width: 1em; height: 1em; display: block; stroke-width: 1.6; }
.ico-lg svg { width: 1.4em; height: 1.4em; }
.ico-logo svg { width: 1.4rem; height: 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.4rem; border-radius: .7rem; font-weight: 600; font-size: .92rem;
  letter-spacing: -0.005em; cursor: pointer; line-height: 1; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 1px 2px rgba(43,39,35,.10); }
.btn-primary:hover { background: var(--terra-dark); box-shadow: 0 6px 18px -8px rgba(52,81,126,.55); }
.btn-secondary { background: var(--olive); color: #fff; }
.btn-secondary:hover { background: var(--olive-dark); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.85); color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Eyebrow / kicker ---------- */
.kicker { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; color: var(--terra); font-family: 'Inter', sans-serif; }
.kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55; display: inline-block; }
.kicker.justify-center { justify-content: center; }
.kicker.text-brass { color: var(--brass); }
.kicker.text-olive { color: var(--olive); }

/* ---------- Arch frame (signature decor motif) ---------- */
.wm-arch { border-radius: 190px 190px 24px 24px; overflow: hidden; }
@media (max-width: 640px) { .wm-arch { border-radius: 130px 130px 20px 20px; } }

/* ---------- Subtle warm paper texture ---------- */
body { background-image: radial-gradient(rgba(52,81,126,0.045) 1px, transparent 1px); background-size: 26px 26px; }

/* ---------- Cards ---------- */
.wm-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(43,39,35,.03);
  transition: transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .3s ease, border-color .3s ease; }
.wm-card:hover { transform: translateY(-4px); border-color: #dcd0bd;
  box-shadow: 0 2px 6px rgba(43,39,35,.05), 0 24px 48px -28px rgba(43,39,35,.34); }
.card-img { aspect-ratio: 3 / 2; width: 100%; height: auto; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.wm-card:hover .card-img { transform: scale(1.05); }

/* ---------- Navbar ---------- */
#siteHeader { padding-block: .1rem; }
#siteHeader > .container-wm { min-height: 58px; }
.nav-link { position: relative; font-weight: 500; font-size: .92rem; color: var(--ink); transition: color .2s; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0; background: var(--terra); transition: width .25s ease; }
.nav-link:hover { color: var(--terra); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--terra); }
header.scrolled { background: rgba(251,247,241,.92); backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--line); }
#siteHeader:not(.scrolled)::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 110px; background: linear-gradient(180deg, rgba(26,23,20,.42), rgba(26,23,20,0)); pointer-events: none; z-index: -1; }
#siteHeader:not(.scrolled) .wm-brand .font-display { color: #fff; }
#siteHeader:not(.scrolled) .wm-brand .brand-sub { color: rgba(255,255,255,.8); }
#siteHeader:not(.scrolled) .nav-link { color: #fff; }
#siteHeader:not(.scrolled) .nav-link:hover { color: var(--terra-light); }
#siteHeader:not(.scrolled) .nav-link::after { background: #fff; }
/* Pages whose top is light (no dark hero) keep dark, legible header text */
body.light-top #siteHeader:not(.scrolled)::before { display: none; }
body.light-top #siteHeader:not(.scrolled) .wm-brand .font-display { color: var(--ink); }
body.light-top #siteHeader:not(.scrolled) .wm-brand .brand-sub { color: var(--terra); }
body.light-top #siteHeader:not(.scrolled) .nav-link { color: var(--ink); }
body.light-top #siteHeader:not(.scrolled) .nav-link:hover { color: var(--terra); }
body.light-top #siteHeader:not(.scrolled) .nav-link::after { background: var(--terra); }

/* ---------- Tier highlight ---------- */
.tier-popular { position: relative; overflow: visible !important; margin-top: 14px; border: 1.5px solid var(--terra); box-shadow: 0 20px 44px -26px rgba(52,81,126,.35); }
.tier-popular::before { content: "Most Chosen"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--terra); color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .08em; padding: .28rem 1rem; border-radius: 9999px; text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 10px -3px rgba(52,81,126,.5); font-family: 'Inter', sans-serif; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 0; font-weight: 600; color: var(--ink);
  width: 100%; text-align: left; background: transparent; border: 0; font-family: 'Fraunces', serif; font-size: 1.05rem; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 520px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform .3s ease; flex: 0 0 auto; color: var(--terra); font-size: 1.5rem; line-height: 1; font-weight: 300; }

/* ---------- Scroll reveal ---------- */
.wm-js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Top accent ---------- */
.accent-bar { height: 3px; background: linear-gradient(90deg, var(--terra), var(--brass)); }

/* ---------- Section jump-nav (sticky within page) ---------- */
.wm-jump { position: sticky; top: 64px; z-index: 30; background: rgba(251,247,241,.94); backdrop-filter: saturate(150%) blur(10px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wm-jump .jumpnav-row { display: flex; gap: .35rem; overflow-x: auto; scrollbar-width: none; padding: .55rem 0; scroll-snap-type: x proximity; }
.wm-jump .jumpnav-row::-webkit-scrollbar { display: none; }
.wm-jump a { flex: 0 0 auto; font-size: .82rem; font-weight: 600; color: var(--ink-soft); padding: .45rem .85rem; border-radius: 9999px; white-space: nowrap; transition: background .15s, color .15s; }
.wm-jump a:hover { background: var(--sand); color: var(--terra); }

/* ---------- Quick-facts strip ---------- */
.wm-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
@media (min-width: 768px) { .wm-facts { grid-template-columns: repeat(4, 1fr); } }
.wm-fact { background: #fff; padding: 1.1rem 1.2rem; }
.wm-fact-l { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.wm-fact-v { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-top: .15rem; }

/* ---------- Palette swatches (style pages / palette helper) ---------- */
.wm-swatches { display: flex; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(43,39,35,.04); }
.wm-swatch { flex: 1; height: 64px; display: flex; align-items: flex-end; padding: .4rem .5rem; }
.wm-swatch span { font-size: .62rem; font-weight: 700; background: rgba(255,255,255,.85); color: var(--ink); padding: .1rem .35rem; border-radius: 4px; }

/* ---------- Budget estimator / kit rows ---------- */
.calc-row { transition: opacity .2s ease; }
.calc-amount::-webkit-outer-spin-button, .calc-amount::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-amount { -moz-appearance: textfield; }
.wm-cat-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--olive); margin: 1rem 0 .25rem; }
.wm-cat-label:first-child { margin-top: 0; }

/* Steppers / segmented (from the estimator controls) */
.wm-step { display: inline-flex; align-items: center; gap: .25rem; border: 1px solid var(--line); border-radius: .7rem; padding: .2rem; background: #fff; }
.wm-step button { width: 2rem; height: 2rem; border-radius: .5rem; font-size: 1.15rem; line-height: 1; color: var(--ink); background: var(--sand); border: 0; cursor: pointer; transition: background .15s, color .15s; }
.wm-step button:hover { background: var(--terra); color: #fff; }
.wm-step input { width: 3rem; text-align: center; font-size: .95rem; font-weight: 700; border: 0; background: transparent; color: var(--ink); outline: none; }
.wm-seg { display: inline-flex; flex-wrap: wrap; border: 1px solid var(--line); border-radius: .7rem; overflow: hidden; background: #fff; }
.wm-seg button { padding: .5rem .95rem; font-size: .84rem; font-weight: 600; color: var(--ink-soft); background: #fff; border: 0; cursor: pointer; transition: background .15s, color .15s; }
.wm-seg button + button { border-left: 1px solid var(--line); }
.wm-seg button.on { background: var(--terra); color: #fff; }

/* Estimator result panel */
.wm-est-out { background: linear-gradient(160deg, #fff, var(--sand)); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow, 0 2px 6px rgba(43,39,35,.05), 0 22px 44px -30px rgba(43,39,35,.3)); }
.wm-est-total { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 600; letter-spacing: -.02em; color: var(--terra); line-height: 1; }

/* ---------- Style quiz ---------- */
.wm-quiz-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow, 0 2px 6px rgba(43,39,35,.05), 0 24px 48px -30px rgba(43,39,35,.3)); }
.wm-quiz-opt { display: flex; align-items: center; gap: .9rem; width: 100%; text-align: left; padding: 1rem 1.15rem; border: 1.5px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; font-size: .96rem; color: var(--ink); transition: border-color .15s, background .15s, transform .1s; font-family: inherit; }
.wm-quiz-opt:hover { border-color: var(--terra); background: rgba(52,81,126,.03); }
.wm-quiz-opt.sel { border-color: var(--terra); background: rgba(52,81,126,.07); }
.wm-quiz-opt .wm-quiz-ico { flex: 0 0 auto; width: 2.4rem; height: 2.4rem; border-radius: 10px; background: var(--sand); display: grid; place-items: center; color: var(--terra); font-size: 1.15rem; }
.wm-quiz-bar { height: 6px; border-radius: 9999px; background: var(--sand); overflow: hidden; }
.wm-quiz-bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--terra), var(--brass)); transition: width .3s ease; }

/* ---------- Lead form ---------- */
.wm-field { display: flex; flex-direction: column; gap: .4rem; }
.wm-field > label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.wm-input, .wm-select, .wm-textarea { width: 100%; font: inherit; font-size: .95rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: .7rem; padding: .7rem .85rem; outline: none; transition: border-color .15s; }
.wm-input:focus, .wm-select:focus, .wm-textarea:focus { border-color: var(--terra); }
.wm-textarea { min-height: 120px; resize: vertical; }

/* ---------- Product/kit table ---------- */
.wm-kit-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 1px 2px rgba(43,39,35,.03); }
.wm-kit-tbl { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 520px; }
.wm-kit-tbl thead th { text-align: left; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; background: var(--olive); padding: .7rem 1rem; font-family: 'Inter', sans-serif; }
.wm-kit-tbl tbody td { padding: .75rem 1rem; border-top: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
.wm-kit-tbl tbody tr:nth-child(even) td { background: var(--sand); }
.wm-kit-tbl .kit-piece { color: var(--ink); font-weight: 600; }
.wm-kit-tbl .kit-price { color: var(--terra); font-weight: 700; white-space: nowrap; }
.wm-tag { display: inline-block; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .12rem .5rem; border-radius: 9999px; }
.wm-tag-core { background: rgba(42,59,90,.12); color: var(--olive-dark); }
.wm-tag-opt { background: var(--sand); color: var(--ink-soft); }

/* ---------- Callouts (vastu / rental / tip) ---------- */
.wm-note { border-left: 3px solid var(--brass); background: rgba(199,144,47,.08); border-radius: 0 12px 12px 0; padding: 1rem 1.15rem; }
.wm-note.vastu { border-color: var(--olive); background: rgba(42,59,90,.07); }
.wm-note.tip { border-color: var(--terra); background: rgba(52,81,126,.06); }
.wm-note h4 { font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); margin-bottom: .3rem; }

/* ---------- Disclosure inline ---------- */
.wm-disclose { font-size: .74rem; color: var(--ink-soft); background: var(--sand); border: 1px dashed var(--line); border-radius: 10px; padding: .6rem .85rem; }

/* ---------- Mobile menu ---------- */
#mobileMenu { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
#mobileMenu.open { max-height: 640px; }

/* ---------- Toast ---------- */
.wm-toast { position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 1rem); z-index: 90; background: var(--ink); color: #fff;
  padding: .7rem 1.2rem; border-radius: 9999px; font-size: .88rem; font-weight: 600; opacity: 0; transition: opacity .25s, transform .25s; box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); }
.wm-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Utility ---------- */
.text-shadow { text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.no-scroll { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: .75rem; top: .6rem; z-index: 100; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: .6rem; font-weight: 600; font-size: .9rem; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: none; outline: 2px solid var(--terra); }

/* ---------- Mood-Board Planner ---------- */
.wm-mood-controls { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; }
.wm-seg.wrap { flex-wrap: wrap; }
.wm-mood-head { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: space-between; align-items: flex-start; }
.wm-mood-pal { min-width: 240px; flex: 1; max-width: 420px; }
.wm-mood-combo { margin-top: 1.2rem; }
.wm-mood-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 1.4rem; }
@media (min-width: 640px) { .wm-mood-grid { grid-template-columns: repeat(3, 1fr); } }
.wm-mood-tile { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 116px; border-radius: 14px; padding: .85rem; overflow: hidden; text-decoration: none; box-shadow: 0 1px 2px rgba(43,39,35,.06); transition: transform .25s cubic-bezier(.2,.6,.2,1), box-shadow .25s ease; }
.wm-mood-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -18px rgba(43,39,35,.5); }
.wm-mood-cat { align-self: flex-start; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .12rem .45rem; border-radius: 9999px; margin-bottom: auto; }
.wm-mood-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem; line-height: 1.2; margin-top: .5rem; }
.wm-mood-shop { font-size: .72rem; font-weight: 700; opacity: .9; margin-top: .3rem; }
.wm-mood-recipe { margin-top: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem 1.3rem; box-shadow: 0 1px 2px rgba(43,39,35,.03); }
.wm-recipe-rows { display: grid; gap: .9rem; }
@media (min-width: 768px) { .wm-recipe-rows { grid-template-columns: repeat(2, 1fr); } }
.wm-recipe-rows > div > b { display: block; font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--olive); margin-bottom: .4rem; }
.wm-chip { display: inline-block; font-size: .75rem; color: var(--ink-soft); background: var(--sand); border: 1px solid var(--line); border-radius: 9999px; padding: .2rem .6rem; margin: 0 .3rem .3rem 0; }
.wm-mood-avoid { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); border-top: 1px dashed var(--line); padding-top: .8rem; }
.wm-mood-avoid b { color: var(--brass-dark); }
.wm-mood-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

/* ---------- Scroll progress bar (global) ---------- */
.wm-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--terra), var(--brass)); z-index: 60; transition: width .1s linear; }

/* ---------- Back-to-top (global) ---------- */
.wm-totop { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70; width: 2.9rem; height: 2.9rem; border-radius: 9999px; background: var(--terra); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center; box-shadow: 0 10px 26px -10px rgba(52,81,126,.7); opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none; transition: opacity .25s ease, transform .25s ease, background-color .2s ease; }
.wm-totop.show { opacity: 1; transform: none; pointer-events: auto; }
.wm-totop:hover { background: var(--terra-dark); }
.wm-totop .ico { transform: rotate(-90deg); font-size: 1.1rem; }

/* ---------- Jump-nav active state (scrollspy) ---------- */
.wm-jump a.active { background: var(--terra); color: #fff; }

/* ---------- Cookie consent banner ---------- */
.wm-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: var(--ink); color: #fff; box-shadow: 0 -8px 30px -12px rgba(0,0,0,.5); transform: translateY(110%); transition: transform .35s cubic-bezier(.2,.6,.2,1); }
.wm-consent.show { transform: translateY(0); }
.wm-consent-in { max-width: 1200px; margin-inline: auto; padding: 1rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }
.wm-consent-in p { font-size: .86rem; color: rgba(255,255,255,.85); margin: 0; flex: 1; min-width: 15rem; }
.wm-consent-in a { color: var(--brass); font-weight: 600; text-decoration: underline; }
.wm-consent-btns { display: flex; gap: .6rem; flex-shrink: 0; }
.wm-consent-btns .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.wm-consent-btns .btn-ghost:hover { background: #fff; color: var(--ink); }

/* ---------- Ad slots (AdSense) ---------- */
.wm-ad:empty { display: none; }
.wm-ad { margin: 2rem auto; max-width: 100%; text-align: center; min-height: 0; overflow: hidden; }
.wm-ad-label { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); opacity: .6; margin-bottom: .35rem; }
.wm-ad .adsbygoogle { display: block; }

/* prose helper for guide/legal body copy */
.wm-prose h2 { font-size: 1.6rem; margin-top: 2.2rem; margin-bottom: .6rem; }
.wm-prose h3 { font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: .4rem; }
.wm-prose p, .wm-prose ul, .wm-prose ol { margin-bottom: 1rem; color: var(--ink-soft); }
.wm-prose ul { list-style: disc; padding-left: 1.3rem; }
.wm-prose ol { list-style: decimal; padding-left: 1.3rem; }
.wm-prose li { margin-bottom: .35rem; }
.wm-prose a { color: var(--terra); font-weight: 600; }
.wm-prose strong { color: var(--ink); }
