/* joelynlutz.com — one stylesheet, no framework.
   Palette and type carried over from the previous site: steel-blue nav,
   cream sections, forest-green text, Playfair + Inter, sunset-gradient titles. */

:root {
  --blue: #4682B4;
  --blue-2: #5B9BD5;
  --blue-deep: #2f5f8a;
  --cream: #f7f5f3;
  --beige: #e8e1d8;
  --warm: #fefcfa;
  --forest: #2d4738;
  --green: #4a7c59;
  --green-2: #6b9b7c;
  --gray: #5b6470;
  --plum: #843B62;
  --plum-2: #9F4A75;
  --orange: #d97706;
  --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: 'Playfair Display', Georgia, "Times New Roman", serif;
  --wrap: 1160px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --sh-sm: 0 2px 8px rgba(45, 71, 56, .10);
  --sh-md: 0 8px 32px rgba(45, 71, 56, .15);
  --sh-lg: 0 16px 48px rgba(45, 71, 56, .20);
  --grad-title: linear-gradient(135deg, #FF8C42 0%, #FFA500 15%, #FFD700 25%, #FF1493 45%, #C71585 60%, #FF6347 80%, #FF4500 100%);
  --grad-nav: linear-gradient(135deg, #4682B4 0%, #5B9BD5 100%);
  --grad-book: linear-gradient(135deg, #843B62, #9F4A75);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--forest);
  background: #fff;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--plum); }
ul, ol { padding-left: 1.25rem; }
strong { font-weight: 600; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--forest); font-weight: 600; text-wrap: balance; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p + p { margin-top: 1rem; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section.alt { background: var(--cream); }
.section.tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section-head { max-width: 760px; margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .75rem; color: var(--gray); font-size: 1.1rem; }
.section-title, .grad { background: var(--grad-title); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; width: fit-content; padding-bottom: .1em; }
.section-head.center .section-title, .center .section-title { margin-inline: auto; }
.eyebrow { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: .75rem; }
.lead { font-size: 1.2rem; color: var(--gray); }
.muted { color: var(--gray); }
.small { font-size: .92rem; }
.icon { display: inline-block; width: 1.15em; height: 1.15em; flex: none; vertical-align: -.2em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.skip { position: absolute; left: -999px; top: 0; background: var(--forest); color: #fff; padding: .75rem 1rem; z-index: 2000; border-radius: 0 0 var(--r-sm) 0; }
.skip:focus { left: 0; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 12px rgba(0, 0, 0, .08); }
.header-row { display: flex; align-items: center; gap: 1.25rem; min-height: 84px; position: relative; }
.brand img { width: 230px; height: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; padding: 0; display: flex; align-items: center; gap: .25rem; }
.site-nav a { display: block; padding: .55rem .8rem; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--blue-deep); text-decoration: none; transition: background .2s, color .2s; }
.site-nav a:hover { background: var(--cream); color: var(--plum); }
.site-nav a[aria-current="page"] { background: var(--grad-nav); color: #fff; }
.nav-book-mobile { display: none; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; border-radius: var(--r-sm); }
.nav-burger span { display: block; width: 24px; height: 3px; background: var(--blue); border-radius: 3px; transition: transform .25s, opacity .25s; }
.nav-toggle:focus-visible ~ .nav-burger { outline: 3px solid var(--orange); outline-offset: 2px; }
.hero .eyebrow { color: #FFE8C2; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: inherit; line-height: 1.2; transition: transform .2s, box-shadow .2s, background .2s, color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-nav); color: #fff; box-shadow: 0 6px 18px rgba(70, 130, 180, .35); }
.btn-primary:hover { color: #fff; box-shadow: 0 10px 26px rgba(70, 130, 180, .45); }
.btn-book { background: var(--grad-book); color: #fff; box-shadow: 0 6px 18px rgba(132, 59, 98, .35); }
.btn-book:hover { color: #fff; box-shadow: 0 10px 26px rgba(132, 59, 98, .45); }
.btn-outline { border-color: var(--blue); color: var(--blue-deep); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-light { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .7); color: #fff; backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255, 255, 255, .3); color: #fff; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.75rem; }
.header-book { padding: .65rem 1.2rem; font-size: .92rem; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(31, 56, 82, .72) 0%, rgba(45, 71, 56, .45) 55%, rgba(31, 56, 82, .35) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .35); font-size: clamp(2.4rem, 5.5vw, 4rem); }
.hero .eyebrow { color: #FFE8C2; }
.hero p { font-size: 1.2rem; max-width: 34em; margin-top: 1.25rem; color: rgba(255, 255, 255, .94); text-shadow: 0 1px 6px rgba(0, 0, 0, .35); }
.hero-portrait { justify-self: center; width: min(100%, 420px); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, .35); border: 3px solid rgba(255, 255, 255, .45); }
.hero-portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Simple page hero (inner pages) */
.page-hero {
  position: relative; isolation: isolate; color: #fff; overflow: hidden;
  padding: clamp(2.75rem, 6vw, 5rem) 0 clamp(2.25rem, 4.5vw, 3.5rem);
  background:
    linear-gradient(115deg, rgba(38, 84, 128, .94) 0%, rgba(70, 130, 180, .86) 48%, rgba(74, 124, 89, .82) 100%),
    url('/images/hero/pismo-beach-shoreline-1024.webp') center 62% / cover no-repeat;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 34% 70% at 88% 18%, rgba(255, 140, 66, .55), transparent 70%),
    radial-gradient(ellipse 28% 60% at 72% 100%, rgba(255, 20, 147, .30), transparent 70%),
    radial-gradient(ellipse 30% 55% at 5% 95%, rgba(255, 215, 0, .22), transparent 70%);
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 1;
  background: linear-gradient(90deg, #FF8C42 0%, #FFD700 25%, #FF1493 50%, #C71585 70%, #4682B4 100%);
}
.page-hero h1 { color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, .3); }
.page-hero .lead { margin-top: 1rem; max-width: 46em; color: rgba(255, 255, 255, .94); text-shadow: 0 1px 6px rgba(0, 0, 0, .25); }
.page-hero a { color: #FFE8C2; }
.page-hero a:hover { color: #fff; }
.crumbs { font-size: .9rem; color: rgba(255, 255, 255, .82); margin-bottom: 1rem; }
.crumbs a { color: rgba(255, 255, 255, .82); }

/* ---------- layout helpers ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.split { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: clamp(1.5rem, 3vw, 2.25rem); border: 1px solid rgba(107, 155, 124, .14); }
.card h3 { margin-bottom: .6rem; }
.card.tint { background: var(--warm); }
.card-icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-nav); color: #fff; margin-bottom: 1rem; }
.card-icon .icon { width: 1.5rem; height: 1.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; }
.chips li { background: var(--cream); border: 1px solid rgba(45, 71, 56, .1); border-radius: 999px; padding: .4rem .9rem; font-size: .92rem; font-weight: 500; }
.rounded { border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden; }
.rounded img { width: 100%; }
.check-list { list-style: none; padding: 0; display: grid; gap: .75rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list .icon { color: var(--green); margin-top: .25rem; }
.inline-links a { font-weight: 600; }

/* CTA band */
.cta-band { background: var(--grad-nav); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .92); }
.cta-band .chips li { background: rgba(255, 255, 255, .15); border-color: rgba(255, 255, 255, .35); color: #fff; }
.cta-band .btn-book { box-shadow: 0 8px 24px rgba(0, 0, 0, .25); }

/* ---------- home: release + shows ---------- */
.release-cover { width: min(100%, 440px); justify-self: center; }
.release-cover img { border-radius: var(--r-lg); box-shadow: 0 16px 48px rgba(0, 0, 0, .3); width: 100%; }
.album-title { font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); margin-top: .35rem; }

.shows { list-style: none; padding: 0; display: grid; gap: 1rem; }
.show { display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center; background: #fff; border-radius: var(--r-md); padding: 1.1rem 1.35rem; box-shadow: var(--sh-sm); border: 1px solid rgba(107, 155, 124, .14); }
.show-date { text-align: center; min-width: 64px; background: var(--grad-nav); color: #fff; border-radius: var(--r-sm); padding: .5rem .6rem; line-height: 1.1; }
.show-date b { display: block; font-size: 1.5rem; font-family: var(--font-head); }
.show-date span { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.show h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.show p { font-size: .95rem; color: var(--gray); }
.show.cancelled { opacity: .7; }
.show.cancelled .show-date { background: var(--gray); }
.badge-cancel { display: inline-block; vertical-align: middle; margin-left: .4rem; padding: .1rem .55rem; border-radius: 999px; background: #fde8e8; color: #9a3412; font: 700 .72rem/1.6 var(--font-body); text-transform: uppercase; letter-spacing: .05em; }
.show-empty { background: #fff; border: 1px dashed rgba(70, 130, 180, .5); border-radius: var(--r-md); padding: 1.5rem; }
.show-empty p + p { margin-top: .5rem; }

/* ---------- albums ---------- */
.albums { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.75rem 1.5rem; list-style: none; padding: 0; }
.album { scroll-margin-top: 110px; }
.album img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-md); box-shadow: 0 8px 24px rgba(0, 0, 0, .18); transition: transform .25s; }
.album:hover img { transform: translateY(-4px); }
.album h3 { font-size: 1.15rem; margin-top: .85rem; }
.album p { font-size: .92rem; color: var(--gray); margin-top: .3rem; }
.album .small a { font-weight: 600; }
.stream-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; }
.stream-list a { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; background: #fff; border-radius: var(--r-md); border: 1px solid rgba(107, 155, 124, .16); text-decoration: none; font-weight: 600; box-shadow: var(--sh-sm); transition: transform .2s; }
.stream-list a:hover { transform: translateY(-2px); }
.stream-list .icon { width: 1.4rem; height: 1.4rem; color: var(--blue); }

.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tiktok-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; justify-items: center; margin-top: 1.5rem; }
.tiktok-embed { margin: 0; }

/* ---------- press photos ---------- */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; list-style: none; padding: 0; }
.press-item { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
.press-item picture, .press-item img { width: 100%; height: 100%; }
.press-item img { object-fit: cover; transition: transform .35s; }
.press-item:hover img { transform: scale(1.04); }
.press-item .zoom { position: absolute; right: .75rem; bottom: .75rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .9); color: var(--forest); display: grid; place-items: center; }
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(10, 20, 15, .94); display: grid; place-items: center; padding: 1.5rem; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: var(--r-md); }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .15); color: #fff; cursor: pointer; display: grid; place-items: center; }
.lightbox-close .icon { width: 1.5rem; height: 1.5rem; }

.facts { display: grid; grid-template-columns: max-content 1fr; gap: .6rem 1.25rem; font-size: .98rem; }
.facts dt { font-weight: 700; color: var(--blue-deep); }
.facts dd { margin: 0; }

/* ---------- FAQ ---------- */
.faq { list-style: none; padding: 0; max-width: 820px; }
.faq details { border-bottom: 1px solid rgba(45, 71, 56, .12); }
.faq summary { cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--blue); font-family: var(--font-body); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer { padding: 0 0 1.25rem; color: var(--gray); max-width: 62ch; }
.faq .answer a { font-weight: 600; }

/* ---------- forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .95rem; }
.field .req { color: var(--plum); }
.field input, .field select, .field textarea { width: 100%; padding: .9rem 1rem; border: 2px solid rgba(70, 130, 180, .28); border-radius: 12px; font: inherit; color: var(--forest); background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(70, 130, 180, .15); }
.field textarea { min-height: 150px; resize: vertical; }
.field.error input, .field.error select, .field.error textarea { border-color: #c2410c; }
.field-msg { font-size: .85rem; color: #c2410c; margin-top: .3rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 1rem 1.25rem; border-radius: var(--r-md); border: 1px solid; font-weight: 500; }
.alert.error { background: #fff4ee; border-color: #f2b28d; color: #9a3412; }
.alert.ok { background: #eef8f1; border-color: #a8d4b8; color: #22543d; }
.form-note { font-size: .88rem; color: var(--gray); }

/* ---------- merch banner ---------- */
.merch-banner a { display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.merch-banner img { width: 100%; transition: transform .6s; }
.merch-banner a:hover img { transform: scale(1.02); }

/* ---------- footer ---------- */
.site-footer { background: linear-gradient(135deg, #6b8e7d, #5a7a6a); color: #fff; padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; margin-top: 0; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #F5E6E8; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr .8fr; gap: 2.5rem; align-items: start; }
.footer-brand img { width: 200px; background: #fff; border-radius: var(--r-md); padding: .5rem; margin-bottom: 1rem; }
.nap { font-weight: 600; }
.footer-blurb { margin-top: .75rem; font-size: .95rem; color: rgba(255, 255, 255, .85); max-width: 42em; }
.footer-h { font-family: var(--font-head); font-size: 1.15rem; color: #F5E6E8; margin-bottom: .75rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .45rem; }
.social-list a { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.social-list a:hover { text-decoration: underline; }
.footer-qr img { background: #fff; border-radius: var(--r-sm); padding: .35rem; margin-bottom: .6rem; }
.footer-qr p { font-size: .88rem; color: rgba(255, 255, 255, .85); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .25); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .88rem; color: rgba(255, 255, 255, .8); text-align: center; }

/* ---------- 432 page ---------- */
.answer-box { background: #fff; border-left: 5px solid var(--blue); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.5rem 1.75rem; box-shadow: var(--sh-sm); }
.answer-box p { font-size: 1.12rem; }
.hz-band { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hz-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hz-band::before { content: ""; position: absolute; inset: 0; background: rgba(12, 18, 40, .62); z-index: -1; }
.hz-band h2, .hz-band p { color: #fff; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.stat { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3); border-radius: var(--r-md); padding: 1.1rem 1.25rem; backdrop-filter: blur(6px); }
.stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; }
.stat span { font-size: .9rem; color: rgba(255, 255, 255, .9); }
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.5rem; margin-bottom: .75rem; font-size: 1.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: .75rem 0 1rem 1.25rem; }
.prose li + li { margin-top: .35rem; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .header-row { min-height: 72px; gap: .75rem; }
  .brand img { width: 150px; }
  .header-book { margin-left: auto; padding: .55rem 1rem; font-size: .85rem; }
  .nav-burger { display: flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 14px 30px rgba(0, 0, 0, .12); transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; margin: 0; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: .75rem 1.25rem 1.25rem; gap: .15rem; }
  .site-nav a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-book-mobile { display: block; margin-top: .5rem; }
  .nav-book-mobile a { text-align: center; color: #fff; }
  .nav-toggle:checked ~ .site-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-block: 3rem; }
  .hero p { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .hero-portrait { width: min(100%, 320px); order: -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .show { grid-template-columns: auto 1fr; }
  .show .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .facts { grid-template-columns: 1fr; gap: .25rem; }
  .facts dt { margin-top: .6rem; }
  .btn-row .btn { width: 100%; }
  .header-book { padding: .5rem .8rem; font-size: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
