:root {
  --ink: #17181b;
  --ink-soft: #25272c;
  --paper: #f6f3ed;
  --white: #fffdfa;
  --text: #26282d;
  --muted: #686762;
  --gold: #e3a93c;
  --gold-dark: #bc7e16;
  --red: #a92d2b;
  --teal: #0d8f8d;
  --line: rgba(26, 27, 30, .14);
  --shadow: 0 24px 60px rgba(0, 0, 0, .18);
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: var(--sans); font-size: 1rem; line-height: 1.65; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 100; padding: .75rem 1rem; background: var(--gold); color: var(--ink); font-weight: 700; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; color: #fff; background: rgba(23, 24, 27, .94); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 1.15rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: #fff; text-decoration: none; font-weight: 700; letter-spacing: .01em; }
.brand-mark { display: grid; place-items: center; width: 38px; aspect-ratio: 1; color: var(--ink); background: var(--gold); font-family: var(--condensed); font-size: 1.2rem; border-radius: 50%; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .25rem 1.25rem; }
nav a { color: #e8e6e1; text-decoration: none; font-size: .93rem; font-weight: 600; }
nav a:hover, nav a:focus-visible, nav a[aria-current="page"] { color: var(--gold); }
.social-links { display: flex; align-items: center; gap: .35rem; }
.social-links a { display: grid; width: 34px; height: 34px; place-items: center; color: #e8e6e1; border-radius: 50%; text-decoration: none; transition: color .18s ease, background-color .18s ease, transform .18s ease; }
.social-links a:hover, .social-links a:focus-visible { color: var(--gold); background: rgba(255,255,255,.08); transform: translateY(-1px); }
.social-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.social-links svg { width: 19px; height: 19px; overflow: visible; }
.header-social { flex: 0 0 auto; }

.dark-section, .dark-panel, .about, .legacy-books { position: relative; overflow: hidden; color: #f7f4ed; background: var(--ink); }
.hero { min-height: 760px; display: grid; align-items: center; }
.hero-glow { position: absolute; width: 680px; height: 680px; right: -200px; top: -140px; background: radial-gradient(circle, rgba(169,45,43,.2), transparent 68%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr); align-items: center; gap: 4rem; padding-block: 6rem 7rem; }
.eyebrow, .kicker { margin: 0 0 .8rem; color: var(--gold-dark); font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { color: #dbd8d1; }
.eyebrow span { color: var(--gold); padding-inline: .45rem; }
.hero h1, .page-hero h1 { margin: 0; font-family: var(--condensed); font-size: clamp(5rem, 9vw, 8.5rem); line-height: .78; letter-spacing: -.025em; text-transform: uppercase; }
.tagline { margin: 2rem 0 1.3rem; color: var(--gold); font-family: var(--condensed); font-size: clamp(1.75rem, 3vw, 2.45rem); font-weight: 600; line-height: 1.05; }
.hero-intro { max-width: 630px; color: #c8c7c3; font-size: 1.03rem; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .78rem 1.2rem; border: 1px solid transparent; border-radius: 5px; font: inherit; font-size: .86rem; font-weight: 800; letter-spacing: .045em; line-height: 1.2; text-decoration: none; text-transform: uppercase; cursor: pointer; }
.button.primary { color: #17181b; background: var(--gold); }
.button.primary:hover, .button.primary:focus-visible { background: #f1bd56; }
.button.secondary { color: #fff; border-color: rgba(255,255,255,.28); background: transparent; }
.button.secondary:hover, .button.secondary:focus-visible { border-color: var(--gold); color: var(--gold); }
.button.ink { color: #fff; background: var(--ink); }
.button.outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.text-link { color: var(--gold); font-size: .9rem; font-weight: 700; text-underline-offset: 4px; }
.dark-link { color: var(--ink); }

.hero-visual { position: relative; min-height: 610px; }
.portrait-wrap { position: absolute; top: 0; right: 0; width: min(430px, 92%); overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 22px 22px 110px 22px; box-shadow: var(--shadow); }
.portrait-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -90px 90px rgba(23,24,27,.72); }
.portrait-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cover-fan { position: absolute; left: 0; right: 0; bottom: 0; height: 325px; }
.cover { position: absolute; bottom: 0; width: 170px; border-radius: 3px; box-shadow: 0 18px 42px rgba(0,0,0,.5); }
.cover-left { left: 0; transform: rotate(-8deg); }
.cover-center { left: 50%; z-index: 3; transform: translateX(-50%); }
.cover-right { right: 0; transform: rotate(8deg); }

.free-book { padding-block: 6rem; background: var(--paper); }
.free-grid { display: grid; grid-template-columns: 330px minmax(0, 1fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.free-cover { position: relative; width: 280px; margin-inline: auto; }
.free-cover img { border-radius: 4px; box-shadow: var(--shadow); }
.free-badge { position: absolute; z-index: 2; top: 1.2rem; right: -2.1rem; padding: .55rem .85rem; color: #fff; background: var(--red); border-radius: 3px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transform: rotate(4deg); }
h2 { margin: 0 0 1rem; font-family: var(--condensed); font-size: clamp(2.7rem, 5vw, 4.6rem); line-height: .96; letter-spacing: -.02em; }
.free-copy > p { max-width: 680px; color: var(--muted); font-size: 1.05rem; }
.signup-form { max-width: 680px; margin-top: 1.8rem; }
.signup-form label { display: block; margin-bottom: .45rem; font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: minmax(180px, 1fr) auto; gap: .65rem; }
.signup-form input { min-height: 50px; width: 100%; padding: .75rem 1rem; border: 1px solid #b9b5ac; border-radius: 5px; background: #fff; font: inherit; }
.signup-form input:focus { border-color: var(--gold-dark); outline: 3px solid rgba(227,169,60,.28); }
.form-message { margin: .55rem 0 0; color: var(--muted); font-size: .78rem; }
.preview-notice { color: var(--red); font-weight: 700; }

.latest { padding-block: 6.5rem; background: linear-gradient(125deg, #22252b, #121316); }
.latest-grid { display: grid; grid-template-columns: 330px minmax(0, 1fr); align-items: center; gap: clamp(3rem, 9vw, 8rem); }
.latest-cover { width: 275px; margin-inline: auto; transform: rotate(-2deg); }
.book-cover-link { display: block; }
.book-cover-link:focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 4px; }
.latest-cover .book-cover-link, .book-card .book-cover-link { width: 100%; }
.latest-cover img { border-radius: 3px; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.kicker.light { color: var(--gold); }
.latest-copy p { max-width: 620px; color: #c9c8c4; font-size: 1.08rem; }
.affiliate-disclosure { margin: .35rem 0 1rem; color: var(--muted); font-size: .875rem; }
.latest-copy .affiliate-disclosure.light { margin: .35rem 0 1rem; color: #c9c8c4; font-size: .875rem; }

.books-preview { padding-block: 6.5rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.book-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2.5vw, 2rem); }
.book-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 3px; box-shadow: 0 14px 32px rgba(0,0,0,.18); transition: transform .22s ease, box-shadow .22s ease; }
.book-card:hover img { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(0,0,0,.22); }
.book-card h3, .catalog-card h3 { margin: 1.1rem 0 .1rem; font-family: var(--condensed); font-size: 1.7rem; line-height: 1.05; }
.book-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.centered-action { margin-top: 3rem; text-align: center; }

.podcast { padding-block: 7rem; background-image: linear-gradient(90deg, rgba(12,13,15,.97) 0%, rgba(12,13,15,.91) 30%, rgba(12,13,15,.45) 68%, rgba(12,13,15,.68) 100%), url("podcast-guests.webp"); background-position: center; background-size: cover; }
.podcast-grid { min-height: 420px; display: grid; place-items: center; }
.podcast-feature { width: min(100%, 1040px); display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(16,17,20,.88); box-shadow: var(--shadow); backdrop-filter: blur(5px); }
.podcast-host-photo { min-height: 390px; overflow: hidden; }
.podcast-host-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.podcast-copy { align-self: center; padding: clamp(2rem, 4vw, 3.5rem); }
.podcast p:not(.kicker) { max-width: 670px; color: #c9c8c4; font-size: 1.07rem; }

.discover { padding-block: 6rem; background: var(--paper); }
.discover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.discover-card { min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--line); background: var(--white); }
.discover-card h2 { font-size: clamp(2.4rem, 4vw, 3.7rem); }
.discover-card p { color: var(--muted); }
.discover-card .button { margin-top: auto; }
.discover-card small { margin-top: .8rem; color: var(--muted); }
.shop-card { border-top: 5px solid var(--gold); }
.reviews-card { border-top: 5px solid var(--teal); }

.about { padding-block: 7rem; background: #202226; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.about-photo { overflow: hidden; border-radius: 8px 100px 8px 8px; box-shadow: var(--shadow); }
.about-photo img { width: 100%; max-height: 660px; object-fit: cover; object-position: 50% 32%; }
.about-copy p:not(.kicker) { color: #cccbc7; }

.contact-section { padding-block: 6.5rem; color: #f7f4ed; background: linear-gradient(125deg, #17181b, #0d0e10); }
.contact-inner { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); align-items: start; gap: clamp(3rem, 8vw, 7rem); }
.contact-section h2 { margin-bottom: 1rem; }
.contact-copy > p:not(.kicker) { max-width: 460px; color: #c9c8c4; }
.contact-copy .contact-direct { margin-top: 1.5rem; }
.contact-direct a { color: var(--gold); font-weight: 700; text-underline-offset: 4px; }
.contact-form { display: grid; gap: .6rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form-row > div { display: grid; gap: .6rem; }
.contact-form label { margin-top: .5rem; color: #e8e6e1; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form label span { color: var(--gold); }
.contact-form input, .contact-form textarea { width: 100%; padding: .8rem .9rem; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; color: #fff; background: rgba(255,255,255,.035); font: inherit; }
.contact-form input { min-height: 50px; }
.contact-form textarea { min-height: 190px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); outline: 3px solid rgba(227,169,60,.18); }
.contact-form .button { justify-self: start; margin-top: .8rem; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-status { min-height: 1.5rem; margin: .25rem 0 0; color: #c9c8c4; font-size: .9rem; }
.contact-status.error { color: #ff9c96; }

footer { padding-block: 3rem; color: #bcbab5; background: #101114; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr auto; align-items: end; gap: 2rem; }
.footer-brand { margin-bottom: .6rem; }
.footer-grid p { max-width: 450px; margin: 0; font-size: .87rem; }
.footer-grid .footer-disclosure { margin-top: .65rem; color: #aaa8a3; font-size: .78rem; }
.footer-social { margin-top: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; }
.footer-links a { color: #dfddd8; font-size: .88rem; text-underline-offset: 4px; }
.copyright { white-space: nowrap; }

.page-hero { padding-block: 7rem; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero p:last-child { max-width: 680px; color: #c8c7c3; font-size: 1.15rem; }
.legal-hero { padding-block: 5.5rem; }
.legal-hero h1 { max-width: 900px; font-size: clamp(3.6rem, 8vw, 7rem); line-height: .88; }
.legal { padding-block: 5rem 7rem; background: var(--paper); }
.legal-content { width: min(820px, 100%); }
.legal-content h2 { margin-top: 3rem; font-size: clamp(2rem, 4vw, 2.8rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 1.8rem 0 .4rem; font-family: var(--condensed); font-size: 1.55rem; line-height: 1.1; }
.legal-content p, .legal-content li { color: #4f4e4a; }
.legal-content a { color: #7f5208; font-weight: 650; text-underline-offset: 3px; }
.legal-content ul { padding-left: 1.3rem; }
.policy-notice { margin: 1.5rem 0 2rem; padding: 1.25rem 1.4rem; border-left: 5px solid var(--gold); background: var(--white); box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.policy-notice p { margin: 0; color: var(--text); font-weight: 700; }
.effective-date { color: #c8c7c3; font-size: .92rem; }
.booking-hero { padding-block: 5.5rem; }
.booking-hero h1 { max-width: 900px; font-size: clamp(4rem, 8vw, 7rem); line-height: .88; }
.booking-section { padding-block: 4.5rem 6.5rem; background: var(--paper); }
.booking-shell { width: min(920px, 100%); }
.booking-note { margin: 0 0 1.5rem; padding: 1.15rem 1.3rem; border-left: 5px solid var(--gold); color: #4f4e4a; background: var(--white); box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.booking-note strong { color: var(--text); }
.booking-calendar { min-height: 680px; padding: clamp(1rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 22px 55px rgba(0,0,0,.1); }
.booking-calendar noscript p { color: var(--muted); }
.catalog { padding-block: 6rem; background: var(--paper); }
.catalog-heading { margin-bottom: 3rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem; }
.catalog-card { display: grid; grid-template-columns: 150px minmax(0, 1fr); align-items: start; gap: 1.3rem; }
.catalog-card > .book-cover-link { width: 150px; }
.catalog-card img { width: 150px; aspect-ratio: 2/3; object-fit: cover; border-radius: 3px; box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.catalog-card h3 { margin-top: .4rem; }
.catalog-card p { color: var(--muted); font-size: .9rem; }
.feature-card { grid-column: 1 / -1; grid-template-columns: 260px minmax(0, 560px); align-items: center; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.feature-card > .book-cover-link { width: 260px; }
.feature-card img { width: 260px; }
.feature-card h3 { font-size: 3rem; }
.release-tag { color: var(--red); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legacy-books { padding-block: 5rem; }
.legacy-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; }
.legacy-inner p:not(.kicker) { max-width: 700px; color: #c8c7c3; }

@media (max-width: 980px) {
  .header-inner { padding-block: 1rem; align-items: flex-start; }
  .header-actions { max-width: 620px; flex-wrap: wrap; gap: .65rem 1rem; }
  nav { max-width: 520px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(560px, 100%); margin-inline: auto; }
  .book-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1160px); }
  .site-header { position: static; }
  .header-inner { display: block; }
  .header-actions { display: block; max-width: none; }
  nav { margin-top: .9rem; justify-content: flex-start; gap: .45rem 1rem; }
  nav a { font-size: .84rem; }
  .header-social { margin-top: .8rem; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 4rem; gap: 2rem; }
  .hero h1, .page-hero h1 { font-size: clamp(4.2rem, 22vw, 6.5rem); }
  .hero-intro { font-size: .97rem; }
  .hero-visual { min-height: 520px; }
  .portrait-wrap { position: relative; width: 85%; margin-left: auto; }
  .cover-fan { height: 260px; }
  .cover { width: 132px; }
  .free-grid, .latest-grid, .podcast-grid, .about-grid, .discover-grid, .contact-inner, .footer-grid, .legacy-inner { grid-template-columns: 1fr; }
  .free-book, .latest, .books-preview, .podcast, .discover, .about { padding-block: 4.5rem; }
  .legal { padding-block: 4rem 5rem; }
  .booking-section { padding-block: 3rem 4.5rem; }
  .booking-calendar { min-height: 620px; padding: .5rem; }
  .free-cover, .latest-cover { width: min(240px, 72vw); }
  .podcast { background-position: 58% center; }
  .podcast-grid { min-height: 360px; }
  .podcast-feature { grid-template-columns: 1fr; }
  .podcast-host-photo { min-height: 0; max-height: 330px; aspect-ratio: 16 / 10; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .button { width: 100%; }
  .section-heading { display: block; }
  .section-heading .text-link { display: inline-block; margin-top: .6rem; }
  .about-photo { width: min(480px, 100%); margin-inline: auto; }
  .footer-grid { align-items: start; }
  .contact-inner { gap: 1.5rem; }
  .contact-form-row { grid-template-columns: 1fr; gap: .2rem; }
  .catalog-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: minmax(120px, 210px) minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .button-row .button { width: 100%; }
  .button-row .text-link { margin-top: .5rem; }
  .book-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem .8rem; }
  .book-card h3 { font-size: 1.35rem; }
  .hero-visual { min-height: 440px; }
  .cover-fan { height: 210px; }
  .cover { width: 105px; }
  .free-badge { right: -.4rem; }
  .feature-card { grid-template-columns: 1fr; }
  .catalog-card { grid-template-columns: 115px minmax(0, 1fr); }
  .catalog-card > .book-cover-link { width: 115px; }
  .catalog-card img { width: 115px; }
  .feature-card > .book-cover-link { width: min(230px, 74vw); margin-inline: auto; }
  .feature-card img { width: min(230px, 74vw); margin-inline: auto; }
}

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