:root{
  --ink:#122433; --ink-2:#1b3347; --ink-3:#0d1b26;
  --gold:#c29a4e; --gold-dark:#a8813a; --gold-soft:#e8d9b8;
  /* darker gold that passes AA contrast for text on light backgrounds */
  --gold-text:#8a6a2e;
  --paper:#faf8f3; --card:#fff; --line:#e6dfd0;
  /* --muted computed against BOTH backgrounds: 4.81:1 on --paper, 5.10:1 on
     white. The previous #6b7c8c was 4.05:1 / 4.30:1 and failed WCAG 2.2 AA
     (master rule §4 — low contrast is the single commonest web failure). */
  --body:#3b4d5e; --muted:#5f7080;
  /* dim text on the dark footer — 4.92:1 on --ink-3 (was #6f7f8d = 4.24:1). */
  --dim-on-dark:#7a8a98;
  --measure:68ch;
  --r:6px;
  --shadow:0 14px 32px rgba(18,36,51,.13);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',-apple-system,'Segoe UI',sans-serif;
  /* 17px body, line-height 1.65 — the top of the 1.5–1.65 band in the master
     rule §4 (Dyson & Haselgrove; NN/g mobile reading). 1.72 was outside it and
     pushed the mobile first screen down. */
  background:var(--paper);color:var(--body);line-height:1.65;font-size:1.0625rem;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
h1,h2,h3,h4{font-family:'Playfair Display',Georgia,serif;color:var(--ink);line-height:1.2}
h1{font-size:clamp(2rem,4.6vw,3.3rem);font-weight:600}
h2{font-size:clamp(1.7rem,3.3vw,2.4rem);font-weight:600}
h3{font-size:clamp(1.25rem,2.2vw,1.6rem)}
h4{font-size:1.14rem}
p,li{max-width:var(--measure)}
/* height:auto is load-bearing: every <img> carries width/height attributes for
   CLS (§13), and without it a narrower container squashes the picture to the
   attribute height instead of scaling it. Rules that need a fixed box
   (.hero-bg img, .card-media img) override this with higher specificity. */
img{max-width:100%;display:block;height:auto}
a{color:var(--gold-text)}
a:hover{color:var(--ink)}
strong{color:var(--ink)}
.wrap{max-width:1120px;margin:0 auto;padding:0 1.4rem}
.narrow{max-width:780px}
.skip-link{position:absolute;left:-999px;top:0;background:var(--ink);color:#fff;padding:.6rem 1rem;z-index:100}
.skip-link:focus{left:0}
:focus-visible{outline:2px solid var(--gold);outline-offset:2px}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:rgba(18,36,51,.97);backdrop-filter:blur(8px);border-bottom:1px solid rgba(194,154,78,.35)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.8rem 1.4rem;max-width:1120px;margin:0 auto}
.brand{display:flex;align-items:baseline;gap:.5rem;text-decoration:none;min-height:48px;padding-top:.35rem}
.brand-mark{font-family:'Playfair Display',Georgia,serif;font-weight:700;font-size:1.45rem;color:var(--gold)}
.brand-word{font-family:'Playfair Display',Georgia,serif;font-size:1.2rem;color:#fff;font-weight:500}
.main-nav{display:flex;gap:1.35rem;flex-wrap:wrap}
.main-nav a{color:#e8e2d4;text-decoration:none;font-size:.82rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase}
.main-nav a:hover,.main-nav a[aria-current=page]{color:var(--gold)}
.nav-toggle{display:none;background:none;border:1px solid rgba(255,255,255,.4);color:#fff;border-radius:4px;padding:.4rem .7rem;font:inherit;font-size:.8rem;cursor:pointer}
@media(max-width:900px){
  .main-nav{display:none;position:absolute;top:100%;left:0;right:0;background:var(--ink);flex-direction:column;gap:0;padding:.5rem 1.4rem 1.2rem;border-bottom:1px solid rgba(194,154,78,.35)}
  .main-nav.open{display:flex}
  /* 48px rows: Google Material / Apple HIG touch minimum (§11). */
  .main-nav a{padding:.85rem 0;border-top:1px solid rgba(255,255,255,.08);min-height:48px;display:flex;align-items:center}
  .nav-toggle{display:flex;align-items:center;justify-content:center;min-height:48px;min-width:48px}
}

/* ---------- Hero ---------- */
.hero{position:relative;display:flex;align-items:center;overflow:hidden;min-height:72vh}
/* .wrap is a flex item here, so without width:100% it shrink-wraps its content
   and its "margin:0 auto" then CENTRES the headline block — measured 178px right
   of the logo and of every section below it. Users spend about two thirds of
   their time on the left half of an LTR page (NN/g F-pattern), so the headline
   and the primary CTA belong in the top-left quadrant, on the same grid line as
   the rest of the page. */
.hero>.wrap{width:100%}
.hero.compact{min-height:0}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center 62%}
.hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(14,28,40,.92) 0%,rgba(14,28,40,.66) 55%,rgba(14,28,40,.36) 100%)}
.hero-content{position:relative;z-index:2;padding:5rem 0;max-width:720px}
.hero.compact .hero-content{padding:3.2rem 0}
.hero h1{color:#fff;margin-bottom:1rem}
.hero h1 em{color:var(--gold);font-style:italic}
.hero p{color:#dcd7ca;font-size:1.1rem;margin-bottom:1.8rem}
/* Phones: the whole first screen has to hold logo/nav + H1 + one proof line +
   the CTA without scrolling (§1, §2, §11). A 72vh hero pushed the buttons under
   the fold on a 390x844 screen, so the hero is capped and its padding halved. */
@media(max-width:900px){
  .hero{min-height:52vh}
  /* The desktop scrim fades to 36% opacity on the right, which is fine when the
     text column stops at 720px — but on a phone the copy runs the full width and
     the last third would sit on bright sky at roughly 3.6:1. A near-flat scrim
     keeps every hero line over 4.5:1 (§4). */
  .hero-bg::after{background:linear-gradient(180deg,rgba(14,28,40,.88) 0%,rgba(14,28,40,.80) 60%,rgba(14,28,40,.86) 100%)}
  .hero-content{padding:2.4rem 0 2.2rem}
  .hero.compact .hero-content{padding:2rem 0}
  .hero p{font-size:1.05rem;margin-bottom:1.3rem}
  .hero .eyebrow{margin-bottom:.7rem}
}
.eyebrow{display:inline-block;color:var(--gold);font-size:.78rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;margin-bottom:1rem}
.eyebrow.dark{color:var(--gold-text)}
.btn-row{display:flex;gap:.85rem;flex-wrap:wrap}
/* min-height 48px everywhere, not only on phones: a tablet is a touch desktop
   (§11b) and a 44px button is below both Material and HIG minimums. */
.btn{display:inline-flex;align-items:center;justify-content:center;min-height:48px;text-align:center;text-decoration:none;font-weight:600;font-size:.94rem;padding:.7rem 1.8rem;border-radius:3px;transition:all .2s ease;border:none;cursor:pointer;font-family:inherit}
.btn-gold{background:var(--gold);color:var(--ink);font-weight:700;box-shadow:0 4px 14px rgba(194,154,78,.42)}
.btn-gold:hover{background:#d4ac5f;color:var(--ink);transform:translateY(-2px);box-shadow:0 7px 20px rgba(194,154,78,.5)}
.btn-ghost{border:1px solid rgba(255,255,255,.55);color:#fff}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)}
.btn-dark{background:var(--ink);color:#fff}
.btn-dark:hover{background:var(--ink-2);color:#fff}

/* ---------- Breadcrumb ---------- */
.crumbs{background:#fff;border-bottom:1px solid var(--line);font-size:.83rem}
.crumbs ol{list-style:none;display:flex;flex-wrap:wrap;gap:.45rem;padding:.7rem 0;max-width:none}
.crumbs li{max-width:none;color:var(--muted)}
.crumbs li+li::before{content:"›";margin-right:.45rem;color:var(--muted)}
@media(max-width:900px){.crumbs a{display:inline-block;padding:.35rem 0}}

/* ---------- Sections ---------- */
section{padding:4.2rem 0}
section.tight{padding:2.8rem 0}
/* Phone sessions are micro-sessions (§11b): shorter bands mean more of the page
   is reachable inside one 30-second scroll. */
@media(max-width:600px){
  section{padding:3.2rem 0}
  section.tight{padding:2.2rem 0}
}
.band-white{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.band-ink{background:var(--ink);color:#cfd8df}
.band-ink h2,.band-ink h3{color:#fff}
.band-ink strong{color:#fff}
.section-head{max-width:720px;margin-bottom:2.5rem}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head.center p{margin-left:auto;margin-right:auto}
.section-head h2{margin:.3rem 0 .9rem}
.gold-rule{width:54px;height:3px;background:var(--gold);border:none;margin:1.2rem 0 0}
.center .gold-rule{margin-left:auto;margin-right:auto}
.prose>*+*{margin-top:1.05rem}
.prose h2{margin-top:2.4rem}
.prose h3{margin-top:1.9rem}
.prose ul,.prose ol{padding-left:1.2rem}
.prose li+li{margin-top:.35rem}
.prose blockquote{border-left:3px solid var(--gold);padding-left:1.1rem;font-style:italic;color:var(--muted)}

/* ---------- Stats ---------- */
.stats{background:var(--ink);border-top:1px solid rgba(194,154,78,.3)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);max-width:1120px;margin:0 auto}
.stat{padding:1.7rem 1rem;text-align:center;border-left:1px solid rgba(255,255,255,.08)}
.stat:first-child{border-left:none}
.stat b{display:block;font-family:'Playfair Display',Georgia,serif;font-size:1.85rem;color:var(--gold);font-weight:600}
.stat span{font-size:.76rem;color:#b9c3cc;letter-spacing:.08em;text-transform:uppercase}
@media(max-width:760px){
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat:nth-child(3){border-left:none}
  .stat{border-top:1px solid rgba(255,255,255,.08)}
  .stat:nth-child(-n+2){border-top:none}
}

/* ---------- Site cards ---------- */
.group{margin-bottom:2.8rem}
.group:last-child{margin-bottom:0}
.group-head{display:flex;align-items:baseline;gap:1rem;margin-bottom:1.3rem}
.group-head h3{white-space:nowrap;font-size:1.28rem}
.group-head span{font-size:.83rem;color:var(--muted);max-width:none}
.group-head::after{content:"";flex:1;height:1px;background:var(--line)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.45rem}
@media(max-width:980px){.cards{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.cards{grid-template-columns:1fr}}
.site-card{background:var(--card);border:1px solid var(--line);border-radius:var(--r);overflow:hidden;display:flex;flex-direction:column;text-decoration:none;color:inherit;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.site-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--gold);color:inherit}
.card-media{position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--ink)}
.card-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.site-card:hover .card-media img{transform:scale(1.05)}
.flag{position:absolute;top:.7rem;right:.7rem;background:rgba(18,36,51,.92);color:var(--gold);font-size:.67rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase;padding:.28rem .58rem;border-radius:3px}
.card-body{padding:1.1rem 1.2rem 1.25rem;display:flex;flex-direction:column;flex:1}
.card-body h4{line-height:1.25;margin-bottom:.08rem}
.card-domain{font-size:.77rem;color:var(--gold-text);font-weight:600;margin-bottom:.55rem}
.card-body p{font-size:.89rem;margin-bottom:.85rem;flex:1}
.card-meta{font-size:.74rem;color:var(--muted);letter-spacing:.04em;text-transform:uppercase;border-top:1px solid var(--line);padding-top:.65rem;display:flex;justify-content:space-between;gap:.5rem;max-width:none}
.card-meta .go{color:var(--ink);font-weight:600}
.site-card:hover .card-meta .go{color:var(--gold-text)}

/* ---------- Generic feature grid ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.45rem}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.45rem}
@media(max-width:860px){.grid-3,.grid-2{grid-template-columns:1fr}}
.tile{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:1.6rem}
.band-ink .tile{background:var(--ink-2);border-color:rgba(194,154,78,.35)}
.tile h3,.tile h4{margin-bottom:.5rem}
.tile p{font-size:.94rem}
.tile-num{font-family:'Playfair Display',Georgia,serif;font-size:1.9rem;color:var(--gold);line-height:1;margin-bottom:.5rem}

/* ---------- Split ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.split.wide-left{grid-template-columns:1.2fr 1fr}
@media(max-width:860px){.split,.split.wide-left{grid-template-columns:1fr;gap:1.8rem}}
.split img{border-radius:var(--r)}

/* ---------- Trust card ----------
   Light card with its own colours so it stays readable on BOTH the white band
   (home) and the dark band (about). Every colour here is set explicitly —
   nothing is inherited from the surrounding section. */
.trust-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-top:3px solid var(--gold);
  border-radius:var(--r);
  padding:1.5rem 1.6rem;
  color:var(--body);
  box-shadow:0 8px 24px rgba(18,36,51,.10);
}
.trust-card h3{color:var(--ink);font-size:1.18rem;margin:0 0 .15rem}
.trust-card .trust-sub{
  font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold-text);font-weight:600;margin:0 0 1.1rem;max-width:none;
}
.trust-card ul{list-style:none;padding:0;margin:0}
.trust-card li{
  position:relative;padding:.8rem 0 .8rem 2rem;
  border-top:1px solid var(--line);max-width:none;color:var(--body);
}
.trust-card li:first-child{border-top:none;padding-top:0}
.trust-card li:first-child::before{top:.05rem}
.trust-card li:last-child{padding-bottom:0}
.trust-card li::before{
  content:"✓";position:absolute;left:0;top:.85rem;
  width:1.25rem;height:1.25rem;line-height:1.25rem;text-align:center;
  background:var(--gold);color:var(--ink);border-radius:50%;
  font-size:.72rem;font-weight:700;
}
.trust-card .t-label{display:block;color:var(--ink);font-weight:600;font-size:.95rem;line-height:1.4}
.trust-card .t-detail{display:block;font-size:.87rem;line-height:1.55;color:var(--body);margin-top:.12rem}
.trust-card a{color:var(--gold-text);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.trust-card a:hover{color:var(--ink)}
.trust-card strong{color:var(--ink)}

/* ---------- FAQ ---------- */
.faq{max-width:820px}
.faq details{background:#fff;border:1px solid var(--line);border-radius:var(--r);margin-bottom:.7rem}
.faq summary{padding:1rem 1.2rem;font-weight:600;color:var(--ink);cursor:pointer;list-style:none;display:flex;justify-content:space-between;gap:1rem;align-items:flex-start}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--gold-text);font-size:1.3rem;line-height:1;flex-shrink:0}
.faq details[open] summary::after{content:"–"}
.faq .faq-body{padding:0 1.2rem 1.1rem}
.faq .faq-body p+p{margin-top:.8rem}

/* ---------- Reviews ---------- */
.review-stars{color:var(--gold);font-size:1.45rem;letter-spacing:.28em}

/* ---------- Contact / forms ---------- */
.contact-wrap{display:grid;grid-template-columns:1fr 1.3fr;gap:1.6rem;align-items:start}
@media(max-width:860px){.contact-wrap{grid-template-columns:1fr}}
.contact-side{display:grid;gap:1.5rem}
.contact-form{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:2rem}
.form-row{margin-bottom:1.1rem}
.form-row label{display:block;font-weight:600;font-size:.87rem;color:var(--ink);margin-bottom:.35rem}
/* 17px inputs (font:inherit) — anything under 16px triggers the iOS zoom-on-
   focus jump; labels sit ABOVE the field (Penzo eye-tracking, NordiCHI 2008). */
.form-row input,.form-row textarea{width:100%;min-height:48px;padding:.78rem .92rem;border:1px solid var(--line);border-radius:4px;font:inherit;color:var(--body);background:var(--paper)}
.form-row input:focus,.form-row textarea:focus{outline:2px solid var(--gold);outline-offset:1px;border-color:var(--gold)}
.contact-form .btn{width:100%}
.form-note{font-size:.82rem;color:var(--muted);margin-top:.85rem;text-align:center;max-width:none}
.hp-field{position:absolute;left:-5000px;opacity:0;pointer-events:none}

/* ---------- Blog ---------- */
.post-list{display:grid;gap:1.4rem}
.post-card{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:1.6rem;transition:border-color .2s ease,box-shadow .2s ease}
.post-card:hover{border-color:var(--gold);box-shadow:var(--shadow)}
.post-card h3{margin-bottom:.4rem}
.post-card h3 a{text-decoration:none;color:var(--ink)}
.post-card h3 a:hover{color:var(--gold-text)}
.post-meta{font-size:.78rem;color:var(--muted);letter-spacing:.05em;text-transform:uppercase;margin-bottom:.6rem;max-width:none}
.post-hero{border-radius:var(--r)}

/* ---------- Figures & captions ----------
   Poynter EyeTrack: after headlines and photographs, captions take the first
   fixations — so every content photograph carries one (§3, §6). */
figure{margin:1.8rem 0}
figure img{border-radius:var(--r)}
figcaption{
  font-size:.85rem;line-height:1.5;color:var(--body);
  border-left:3px solid var(--gold);padding:.15rem 0 .15rem .7rem;
  margin-top:.7rem;max-width:var(--measure);
}
figcaption b,figcaption strong{color:var(--ink)}
.post-figure{margin:0 0 1.6rem}
.key-facts{background:#fff;border-left:3px solid var(--gold);border-radius:0 var(--r) var(--r) 0;padding:1.2rem 1.4rem;margin:1.6rem 0}
.key-facts p{font-weight:600;color:var(--ink);margin-bottom:.5rem}
.key-facts ul{padding-left:1.1rem}

/* ---------- Author / E-E-A-T note ----------
   §9: author identity, licence and a visible contact route are design elements,
   not metadata. Shown at the foot of every article. */
.author-note{
  background:#fff;border:1px solid var(--line);border-top:3px solid var(--gold);
  border-radius:var(--r);padding:1.3rem 1.5rem;margin-top:2.2rem;
}
.author-note h3{font-size:1.05rem;margin-bottom:.4rem}
.author-note p{font-size:.9rem;max-width:none}
.author-note p+p{margin-top:.5rem}
.author-note .author-cred{font-size:.83rem;color:var(--muted)}

/* ---------- Related / internal links ---------- */
.related{background:var(--paper);border:1px solid var(--line);border-radius:var(--r);padding:1.5rem;margin-top:2.5rem}
.related h3{font-size:1.1rem;margin-bottom:.8rem}
.related ul{list-style:none;padding:0;display:grid;gap:.5rem}
.related li{max-width:none}

/* ---------- Footer ---------- */
.site-footer{background:var(--ink-3);color:#97a5b1;padding:3.2rem 0 2rem;font-size:.87rem}
.footer-grid{display:grid;grid-template-columns:1.25fr 1fr 1.5fr;gap:2.4rem;margin-bottom:2.3rem}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr}}
.site-footer h4{color:#fff;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:.9rem;font-family:'Inter',sans-serif}
.site-footer a{color:#c9b482;text-decoration:none}
.site-footer a:hover{color:var(--gold);text-decoration:underline}
.site-footer ul{list-style:none;padding:0}
.site-footer li{margin-bottom:.5rem;max-width:none}
/* Footer links: ~36px tall with >=8px separation on phones. Comfortably over
   WCAG 2.2 AA's 24x24 minimum; deliberately short of the 48px ideal because
   these are ~30 low-frequency links and 48px rows would add roughly 400px of
   footer to every page (§11 — spacing matters as much as size for mis-taps). */
.site-footer li a{display:inline-block;padding:.2rem 0}
@media(max-width:900px){.site-footer li a{padding:.4rem 0}}
.site-footer p{max-width:none}
.footer-brand{font-family:'Playfair Display',Georgia,serif;color:var(--gold);font-size:1.35rem;margin-bottom:.6rem}
.footer-sites{columns:2;column-gap:1.6rem}
@media(max-width:560px){.footer-sites{columns:1}}
.footer-sites li{break-inside:avoid;margin-bottom:.5rem}
.footer-sites span{display:block;font-size:.76rem;color:var(--dim-on-dark)}
.footer-legal{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;text-align:center;font-size:.79rem;color:var(--dim-on-dark)}
.footer-legal p{margin-bottom:.3rem}
.tursab-badge strong{color:var(--gold)}

/* ---------- In-content CTA ----------
   Chartbeat scroll-depth + NN/g: roughly half of readers never reach the end of
   a long page, so the offer goes mid-content, after the 2nd section. Styled as
   site content (brand palette, card radius, caption + CTA) and placed in the
   content column — NOT as a boxed right-margin banner, which banner-blindness
   research (Benway 1998; NN/g 2007, 2018) shows is skipped. */
.cta-inline{
  background:var(--paper);border:1px solid var(--line);border-left:4px solid var(--gold);
  border-radius:0 var(--r) var(--r) 0;padding:1.4rem 1.6rem;margin:2.4rem 0;
  box-shadow:0 6px 18px rgba(18,36,51,.07);max-width:none;
}
.cta-inline .cta-kicker{
  font-size:.74rem;letter-spacing:.13em;text-transform:uppercase;color:var(--gold-text);
  font-weight:700;margin:0 0 .4rem;max-width:none;
}
.cta-inline p{max-width:none}
.cta-inline p+p{margin-top:.7rem}
.cta-inline .cta-trust{font-size:.83rem;color:var(--body);margin-top:.7rem}

/* ---------- Trust strip beside the submit button ----------
   Baymard Institute checkout research: licence number, no-prepayment and
   response promise placed ADJACENT to the action lift completion. */
.form-trust{list-style:none;padding:0;margin:0 0 1rem}
.form-trust li{
  position:relative;padding:.32rem 0 .32rem 1.45rem;font-size:.85rem;
  color:var(--body);max-width:none;line-height:1.5;
}
.form-trust li::before{
  content:"✓";position:absolute;left:0;top:.32rem;color:var(--gold-text);font-weight:700;font-size:.8rem;
}

/* ---------- Mobile action bar ----------
   Thumb-zone research (Hoober 2013): primary actions belong at the BOTTOM of a
   phone screen, not in the top corners where the menu button sits. */
.mbar{display:none}
@media(max-width:900px){
  .mbar{
    display:flex;gap:.6rem;position:fixed;left:0;right:0;bottom:0;z-index:60;
    padding:.6rem .8rem calc(.6rem + env(safe-area-inset-bottom,0px));
    background:rgba(18,36,51,.97);backdrop-filter:blur(8px);
    border-top:1px solid rgba(194,154,78,.4);
  }
  /* Three targets, not two: NN/g measures ~20% worse discoverability when the
     only navigation is a hamburger, and Material/Smashing tests put a visible
     bottom bar of 3–5 items at up to 2x the menu use of a top hamburger (§11).
     min-height 48px = Material touch minimum; the bar is ~9% of a 390x844
     screen, inside the 15% ceiling. */
  .mbar-btn{
    flex:1;display:flex;align-items:center;justify-content:center;min-height:48px;
    text-align:center;text-decoration:none;font-weight:700;font-size:.84rem;
    line-height:1.2;padding:.5rem .35rem;border-radius:4px;
  }
  .mbar-primary{background:var(--gold);color:var(--ink);box-shadow:0 2px 10px rgba(194,154,78,.35)}
  .mbar-ghost{border:1px solid rgba(255,255,255,.45);color:#fff}
  /* keep the fixed bar from covering the end of the page */
  body{padding-bottom:5.2rem}
}
@media(max-width:360px){
  .mbar{gap:.4rem;padding-left:.5rem;padding-right:.5rem}
  .mbar-btn{font-size:.78rem}
}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(16px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .site-card,.card-media img{transition:none}
}
