/* ==========================================================================
   Mark Wade — kidshowvent.com
   Design system. Mentor-first authority site.
   ========================================================================== */

:root{
  --ink:        #101E2C;
  --ink-2:      #1C3145;
  --ink-3:      #2C4257;
  --paper:      #FBF7F1;
  --paper-2:    #FFFFFF;
  --paper-3:    #F3EDE3;
  --rule:       #E3D9C9;
  --body:       #46545F;
  --muted:      #6C7A85;
  --accent:     #B4302A;
  --accent-dk:  #8E241F;
  --gold:       #C08A2E;
  --gold-soft:  #F0E3C6;

  --w:          1120px;
  --w-narrow:   760px;

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(16,30,44,.06), 0 4px 12px rgba(16,30,44,.06);
  --shadow-md: 0 2px 6px rgba(16,30,44,.08), 0 16px 40px rgba(16,30,44,.10);
  --shadow-lg: 0 4px 12px rgba(16,30,44,.10), 0 32px 70px rgba(16,30,44,.16);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--paper);
  color:var(--body);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ max-width:100%; height:auto; display:block; }

a{ color:var(--accent); text-decoration:none; }
a:hover{ color:var(--accent-dk); text-decoration:underline; }

h1,h2,h3,h4{
  font-family:var(--serif);
  color:var(--ink);
  font-weight:600;
  line-height:1.16;
  letter-spacing:-.015em;
  margin:0 0 .5em;
  font-variation-settings:"SOFT" 0,"WONK" 0;
}
h1{ font-size:clamp(2.3rem,5.2vw,4rem); line-height:1.08; margin-bottom:.42em; }
h2{ font-size:clamp(1.8rem,3.4vw,2.7rem); }
h3{ font-size:clamp(1.15rem,1.9vw,1.45rem); }
p{ margin:0 0 1.15em; }
p:last-child{ margin-bottom:0; }

.wrap{ width:100%; max-width:var(--w); margin:0 auto; padding:0 24px; }
.narrow{ max-width:var(--w-narrow); margin-left:auto; margin-right:auto; }
.section{ padding:clamp(44px,5.5vw,76px) 0; }
.section--tight{ padding:clamp(32px,4vw,52px) 0; }
.center{ text-align:center; }
/* the centred intro that sits above a card grid / quote row */
.section-intro{ margin-bottom:clamp(28px,3.2vw,38px); }

/* --- eyebrow / kicker --------------------------------------------------- */
.eyebrow{
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  margin:0 0 .9em;
}
.eyebrow--light{ color:var(--gold-soft); }

.lede{ font-size:clamp(1.1rem,1.7vw,1.28rem); line-height:1.6; color:var(--ink-3); }

/* --- buttons ------------------------------------------------------------ */
.btn{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--sans); font-size:.95rem; font-weight:600; letter-spacing:.01em;
  padding:.95em 1.7em; border-radius:999px; border:1.5px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration:none !important;
}
.btn:hover{ transform:translateY(-1px); }
.btn--primary{ background:var(--accent); color:#fff; box-shadow:var(--shadow-sm); }
.btn--primary:hover{ background:var(--accent-dk); color:#fff; box-shadow:var(--shadow-md); }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:#fff; }
.btn--onDark{ background:transparent; color:#fff; border-color:rgba(255,255,255,.5); }
.btn--onDark:hover{ background:#fff; color:var(--ink); }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }

/* --- header ------------------------------------------------------------- */
.site-head{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,241,.92);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--rule);
}
.head-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; min-height:74px; }

.brand{ display:flex; flex-direction:column; text-decoration:none !important; line-height:1; }
.brand:hover{ text-decoration:none; }
.brand b{
  font-family:var(--serif); font-weight:600; font-size:1.34rem;
  color:var(--ink); letter-spacing:-.02em;
}
.brand span{
  font-family:var(--sans); font-size:.6rem; font-weight:700;
  letter-spacing:.19em; text-transform:uppercase; color:var(--muted); margin-top:5px;
}

.nav{ display:flex; align-items:center; gap:28px; }
.nav a{
  font-size:.88rem; font-weight:500; color:var(--ink-3); text-decoration:none;
  padding:6px 0; border-bottom:2px solid transparent; transition:color .15s, border-color .15s;
}
.nav a:hover{ color:var(--accent); text-decoration:none; }
.nav a.is-active{ color:var(--ink); border-bottom-color:var(--accent); }
.nav .btn{ padding:.62em 1.25em; font-size:.85rem; border-bottom:none; }
/* .nav a sets a colour, so the button variants have to win it back */
.nav a.btn--primary,
.nav a.btn--primary:hover{ color:#fff; }
.nav a.btn--ghost{ color:var(--ink); }
.nav a.btn--ghost:hover{ color:#fff; }

.nav-toggle{
  display:none; background:none; border:0; padding:8px; cursor:pointer;
  color:var(--ink); font-size:1.5rem; line-height:1;
}

/* --- hero --------------------------------------------------------------- */
.hero{
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(192,138,46,.16), transparent 60%),
    linear-gradient(170deg, var(--ink) 0%, var(--ink-2) 62%, #24394D 100%);
  color:#E9EDF1;
  overflow:hidden;
  position:relative;
}
.hero::after{
  content:""; position:absolute; inset:auto 0 0 0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(192,138,46,.5),transparent);
}
.hero-grid{
  display:grid; grid-template-columns:1.08fr .92fr; gap:clamp(28px,5vw,72px);
  align-items:center;
  padding:clamp(40px,5vw,72px) 0 clamp(40px,5vw,68px);
}
.hero-logo{ display:block; width:auto; height:clamp(44px,5.4vw,68px); margin:0 0 22px; }
.hero h1{ color:#fff; margin-bottom:.35em; }
.hero h1 em{ font-style:normal; color:var(--gold); }
.hero .lede{ color:#C6D2DC; max-width:34em; }
.hero .btn-row{ margin-top:32px; }
.hero-figure{ position:relative; align-self:end; }
.hero-figure img{
  width:100%; max-width:520px; margin:0 0 0 auto;
  border-radius:14px;
  box-shadow:0 30px 70px rgba(0,0,0,.42);
}

/* genuine pre-made cut-outs (transparent PNG) sit straight on the hero */
.hero-figure img.cutout{
  border-radius:0; box-shadow:none;
  max-width:440px;
  filter:drop-shadow(0 22px 40px rgba(0,0,0,.45));
}
/* the Mark Wade show trunk — a brand mark, used as an accent */
.trunk{ width:150px; height:auto; margin:0 0 18px; }

/* --- credential strip --------------------------------------------------- */
.creds{ background:var(--ink-2); border-top:1px solid rgba(255,255,255,.09); }
.creds-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(255,255,255,.09);
}
.cred{ background:var(--ink-2); padding:26px 22px; text-align:center; }
.cred b{
  display:block; font-family:var(--serif); font-size:clamp(1.5rem,2.6vw,2.1rem);
  color:var(--gold); font-weight:600; line-height:1;
}
.cred span{
  display:block; margin-top:9px; font-size:.78rem; line-height:1.4;
  color:#A9B8C5; letter-spacing:.03em;
}

/* --- generic panels ----------------------------------------------------- */
.panel-dark{ background:var(--ink); color:#D3DCE4; }
.panel-dark h2,.panel-dark h3{ color:#fff; }
.panel-dark .lede{ color:#B9C7D3; }
.panel-cream{ background:var(--paper-3); }

.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,72px); align-items:center; }
.split--wideL{ grid-template-columns:1.15fr .85fr; }
.split--wideR{ grid-template-columns:.85fr 1.15fr; }

.framed{ border-radius:14px; overflow:hidden; box-shadow:var(--shadow-lg); }
.framed img{ width:100%; }

/* --- cards -------------------------------------------------------------- */
.cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:22px; }
.card{
  background:var(--paper-2); border:1px solid var(--rule); border-radius:14px;
  padding:30px 28px; box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.card > img{ width:100%; display:block; }
.card h3{ margin-bottom:.45em; }
.card p{ font-size:.96rem; }
.card .num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%; margin-bottom:16px;
  background:var(--gold-soft); color:var(--gold);
  font-family:var(--serif); font-weight:600; font-size:1rem;
}

/* --- checklist ---------------------------------------------------------- */
.checks{ list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.checks li{ position:relative; padding-left:34px; font-size:1rem; }
.checks li::before{
  content:""; position:absolute; left:0; top:.42em;
  width:18px; height:18px; border-radius:50%;
  background:var(--gold-soft);
  box-shadow:inset 0 0 0 2px var(--gold);
}
.checks li b{ color:var(--ink); font-weight:600; }
.panel-dark .checks li b{ color:#fff; }
.panel-dark .checks li::before{ background:rgba(192,138,46,.25); box-shadow:inset 0 0 0 2px var(--gold); }

/* --- archive plates ------------------------------------------------------ */
.plates{ display:grid; grid-template-columns:repeat(auto-fit,minmax(330px,1fr)); gap:clamp(24px,3vw,36px); }
.plate{ margin:0; }
.plate--wide{ grid-column:1 / -1; max-width:900px; }
.plate img{
  width:100%; border-radius:12px; box-shadow:var(--shadow-md); background:var(--paper-3);
}
.plate figcaption{
  margin-top:14px; font-size:.93rem; line-height:1.55; color:var(--body);
}
.plate figcaption b{ color:var(--ink); font-weight:600; }
.plate .credit{ display:block; margin-top:7px; font-size:.78rem; color:var(--muted); }
.plate--dark figcaption{ color:#B9C7D3; }
.plate--dark figcaption b{ color:#fff; }
.plate--dark .credit{ color:#8FA1B0; }

/* --- single feature video ------------------------------------------------ */
.videoblock{ margin:0; }
.videoblock .frame{
  position:relative; display:block; width:100%; aspect-ratio:16/9; padding:0;
  border:0; border-radius:14px; overflow:hidden; cursor:pointer;
  background:var(--ink); box-shadow:var(--shadow-lg);
}
.videoblock .frame img{ width:100%; height:100%; object-fit:cover; }
.videoblock .frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.videoblock .frame::after{
  content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:84px; height:84px; border-radius:50%; background:rgba(180,48,42,.94);
  box-shadow:0 8px 28px rgba(0,0,0,.45); transition:transform .18s ease, background .18s ease;
}
.videoblock .frame::before{
  content:""; position:absolute; left:calc(50% + 6px); top:50%; transform:translate(-50%,-50%);
  border-style:solid; border-width:15px 0 15px 25px;
  border-color:transparent transparent transparent #fff; z-index:2;
}
.videoblock .frame:hover::after{ transform:translate(-50%,-50%) scale(1.07); background:var(--accent-dk); }
.videoblock .frame.is-playing::after,
.videoblock .frame.is-playing::before{ display:none; }
.videoblock figcaption{ margin-top:14px; font-size:.9rem; color:var(--muted); text-align:center; }

/* --- tribute video cards ------------------------------------------------- */
.tributes{ display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:22px; }
.tribute{
  margin:0; background:var(--paper-2); border:1px solid var(--rule); border-radius:14px;
  overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease;
}
.tribute:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.tribute .frame{
  position:relative; aspect-ratio:16/9; background:var(--ink); display:block;
  width:100%; border:0; padding:0; cursor:pointer;
}
.tribute .frame img{ width:100%; height:100%; object-fit:cover; }
.tribute .frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
/* play button */
.tribute .frame::after{
  content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:60px; height:60px; border-radius:50%;
  background:rgba(180,48,42,.94);
  box-shadow:0 6px 22px rgba(0,0,0,.4);
  transition:transform .18s ease, background .18s ease;
}
.tribute .frame::before{
  content:""; position:absolute; left:calc(50% + 4px); top:50%; transform:translate(-50%,-50%);
  border-style:solid; border-width:11px 0 11px 18px;
  border-color:transparent transparent transparent #fff;
  z-index:2;
}
.tribute .frame:hover::after{ transform:translate(-50%,-50%) scale(1.08); background:var(--accent-dk); }
.tribute .frame.is-playing::after,
.tribute .frame.is-playing::before{ display:none; }
/* no video yet — show the placeholder state instead of a play button */
.tribute[data-video=""] .frame{ cursor:default; }
.tribute[data-video=""] .frame::after,
.tribute[data-video=""] .frame::before{ display:none; }
.tribute .pending{
  position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:center;
  padding:14px; background:linear-gradient(to top,rgba(16,30,44,.86) 0%,rgba(16,30,44,.25) 45%,transparent 75%);
  color:#E3D9C9; font-size:.78rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase;
}
.tribute figcaption{
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  padding:16px 20px;
}
.tribute figcaption b{ font-family:var(--serif); font-size:1.1rem; color:var(--ink); font-weight:600; }
.tribute figcaption span{ font-size:.82rem; color:var(--muted); font-variant-numeric:tabular-nums; }

/* --- name grid (the tribute roll-call) ---------------------------------- */
.namegrid{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:1px; background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10); border-radius:14px; overflow:hidden;
}
.namegrid li{
  background:var(--ink); padding:20px 18px; text-align:center;
  font-family:var(--serif); font-size:1.06rem; color:#fff; line-height:1.25;
}

/* --- quotes ------------------------------------------------------------- */
.quotes{ display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:24px; }
.quote{
  background:var(--paper-2); border:1px solid var(--rule); border-radius:14px;
  padding:32px 30px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
}
.quote p{ font-family:var(--serif); font-size:1.05rem; line-height:1.55; color:var(--ink-2); flex:1; }
.quote::before{
  content:"\201C"; display:block; font-family:var(--serif); font-size:3.2rem; line-height:.6;
  color:var(--gold); margin-bottom:12px;
}
.quote cite{
  font-style:normal; font-size:.84rem; line-height:1.5; color:var(--muted);
  margin-top:18px; padding-top:16px; border-top:1px solid var(--rule);
}
.quote cite b{ display:block; color:var(--ink); font-weight:600; font-size:.92rem; }

/* --- pull quote --------------------------------------------------------- */
.pull{
  font-family:var(--serif); font-size:clamp(1.4rem,2.8vw,2.05rem); line-height:1.35;
  color:var(--ink); border-left:3px solid var(--gold); padding-left:clamp(20px,3vw,34px);
  margin:0;
}
.panel-dark .pull{ color:#fff; }

/* --- the Jeopardy! moment ------------------------------------------------ */
.trivia{
  border:1px solid rgba(192,138,46,.42); border-radius:14px;
  padding:clamp(20px,2.4vw,26px) clamp(22px,2.8vw,30px);
  background:rgba(192,138,46,.07);
}
.trivia-q{
  display:block; margin-bottom:8px;
  font-family:var(--serif); font-weight:600; line-height:1.2;
  font-size:clamp(1.25rem,2.2vw,1.7rem); color:var(--gold);
}
.trivia p{ margin:0; font-size:.97rem; }
.panel-dark .trivia p{ color:#B9C7D3; }
/* --- timeline ----------------------------------------------------------- */
.timeline{ list-style:none; margin:0; padding:0; position:relative; }
.timeline::before{
  content:""; position:absolute; left:7px; top:8px; bottom:8px; width:2px; background:var(--rule);
}
.timeline li{ position:relative; padding:0 0 30px 40px; }
.timeline li:last-child{ padding-bottom:0; }
.timeline li::before{
  content:""; position:absolute; left:0; top:7px; width:16px; height:16px;
  border-radius:50%; background:var(--paper); box-shadow:inset 0 0 0 3px var(--gold);
}
.timeline b{ display:block; font-family:var(--serif); color:var(--ink); font-size:1.06rem; font-weight:600; }
.timeline .yr{
  font-family:var(--sans); font-size:.74rem; font-weight:700; letter-spacing:.13em;
  text-transform:uppercase; color:var(--gold); display:block; margin-bottom:3px;
}
.timeline p{ margin:.3em 0 0; font-size:.95rem; }

/* --- book / product ----------------------------------------------------- */
.book{ display:grid; grid-template-columns:190px 1fr; gap:32px; align-items:start; }
.book-cover{ border-radius:6px; box-shadow:var(--shadow-md); overflow:hidden; }
.book-cover--none{
  aspect-ratio:.72; display:flex; align-items:center; justify-content:center; text-align:center;
  background:linear-gradient(150deg,var(--ink-2),var(--ink)); color:var(--gold-soft);
  font-family:var(--serif); font-size:1.15rem; line-height:1.3; padding:24px; border-radius:6px;
  box-shadow:var(--shadow-md);
}
.meta{ font-size:.86rem; color:var(--muted); margin-top:.6em; }

/* --- article index ------------------------------------------------------ */
.artlist{ list-style:none; margin:0; padding:0; columns:2; column-gap:44px; }
.artlist li{ break-inside:avoid; padding:9px 0; border-bottom:1px solid var(--rule); font-size:.94rem; }
.artlist li a{ color:var(--ink-2); }
.artlist li a:hover{ color:var(--accent); }

/* --- logo strip --------------------------------------------------------- */
.logostrip{
  display:flex; flex-wrap:wrap; justify-content:center; gap:14px 34px;
  font-family:var(--serif); font-size:1.05rem; color:var(--ink-3);
}
.logostrip span{ opacity:.85; }

/* --- form --------------------------------------------------------------- */
.form{ display:grid; gap:18px; }
.field{ display:grid; gap:7px; }
.field label{ font-size:.83rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-3); }
.field input,.field select,.field textarea{
  font-family:var(--sans); font-size:1rem; color:var(--ink);
  padding:.85em 1em; border:1.5px solid var(--rule); border-radius:9px;
  background:var(--paper-2); width:100%; transition:border-color .15s, box-shadow .15s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(192,138,46,.16);
}
.field textarea{ min-height:130px; resize:vertical; }
.row2{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.formnote{ font-size:.85rem; color:var(--muted); }

/* --- contact detail block ---------------------------------------------- */
.contactcard{
  background:var(--ink); color:#D3DCE4; border-radius:14px; padding:36px 34px;
}
.contactcard h3{ color:#fff; }
.contactcard a{ color:var(--gold); }
.contactcard dl{ margin:0; display:grid; gap:18px; }
.contactcard dt{
  font-size:.72rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase;
  color:#8FA1B0; margin-bottom:3px;
}
.contactcard dd{ margin:0; font-size:1.05rem; color:#fff; }

/* --- CTA band ----------------------------------------------------------- */
.cta{
  background:linear-gradient(135deg,var(--ink) 0%,var(--ink-2) 100%);
  color:#fff; border-radius:18px; padding:clamp(38px,5vw,60px);
  text-align:center; box-shadow:var(--shadow-lg);
}
.cta h2{ color:#fff; }
.cta p{ color:#BCCAD6; max-width:44em; margin-left:auto; margin-right:auto; }
.cta .btn-row{ justify-content:center; margin-top:28px; }

/* --- footer ------------------------------------------------------------- */
.site-foot{ background:var(--ink); color:#93A3B1; padding:56px 0 34px; font-size:.9rem; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; }
.site-foot h4{ color:#fff; font-family:var(--sans); font-size:.74rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; margin:0 0 16px; }
.site-foot a{ color:#C4D0DA; }
.site-foot a:hover{ color:var(--gold); }
.site-foot ul{ list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.foot-brand b{ font-family:var(--serif); font-size:1.3rem; color:#fff; display:block; margin-bottom:8px; }
.foot-bottom{
  margin-top:44px; padding-top:22px; border-top:1px solid rgba(255,255,255,.11);
  display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; font-size:.82rem; color:#7C8B98;
}

/* --- responsive --------------------------------------------------------- */
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; text-align:left; }
  .hero-figure{ max-width:400px; margin:8px auto 0; }
  .hero-figure img{ margin:0 auto; }
  .creds-grid{ grid-template-columns:1fr 1fr; }
  .split,.split--wideL,.split--wideR{ grid-template-columns:1fr; }
  .split .framed{ order:-1; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .artlist{ columns:1; }
  .book{ grid-template-columns:150px 1fr; gap:24px; }

  .nav-toggle{ display:block; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--paper); border-bottom:1px solid var(--rule);
    padding:8px 24px 20px; box-shadow:var(--shadow-md);
    display:none;
  }
  .nav.is-open{ display:flex; }
  .nav a{ padding:13px 0; border-bottom:1px solid var(--rule); }
  .nav a.is-active{ border-bottom-color:var(--rule); color:var(--accent); }
  .nav .btn{ margin-top:16px; justify-content:center; border:1.5px solid transparent; }
}

@media (max-width:560px){
  body{ font-size:16px; }
  .creds-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; gap:32px; }
  .row2{ grid-template-columns:1fr; }
  .book{ grid-template-columns:1fr; }
  .book-cover,.book-cover--none{ max-width:180px; }
  .btn{ width:100%; justify-content:center; }
  .btn-row{ flex-direction:column; }
  .nav .btn{ width:100%; }
}

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