:root {
  --ink: #071b2c;
  --ink-2: #0d2b42;
  --blue: #155f93;
  --sky: #44aee0;
  --green: #91c83e;
  --green-deep: #4f8221;
  --paper: #f5f3eb;
  --white: #fff;
  --muted: #61707b;
  --line: rgba(7, 27, 44, .14);
  --sans: "DM Sans", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.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: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 14px; background: white; color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.section-shell { width: var(--shell); margin-inline: auto; }

.site-header { position: absolute; z-index: 50; top: 0; left: 0; right: 0; width: var(--shell); margin: 0 auto; height: 88px; display: flex; align-items: center; justify-content: space-between; color: white; }
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.brand-mark { width: 42px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--green); font-weight: 700; font-size: .8rem; letter-spacing: .08em; }
.brand-mark, .brand-copy { text-decoration: none; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: .92rem; letter-spacing: .03em; }
.brand small { color: rgba(255,255,255,.66); font-size: .69rem; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { text-decoration: none; color: rgba(255,255,255,.72); font-size: .86rem; font-weight: 600; }
.site-nav a:hover, .site-nav a.active { color: white; }
.site-nav a.active::after { content: ""; display: block; height: 2px; margin-top: 4px; background: var(--green); }
.site-nav .nav-cta { padding: 10px 17px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; color: white; }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: white; }

.hero { min-height: 740px; position: relative; overflow: hidden; color: white; background: linear-gradient(116deg, #061725 0 53%, #0f3f61 53% 72%, #6cae31 72%); display: grid; grid-template-columns: minmax(300px, 430px) minmax(0, 1fr); align-items: center; gap: 64px; padding: 105px max(40px, calc((100vw - 1180px)/2)) 55px; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(68,174,224,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(68,174,224,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, black, transparent 64%); }
.hero::after { content: ""; position: absolute; width: 54vw; height: 180%; top: -42%; right: -27vw; border: 2px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025); transform: rotate(-16deg); }
.hero-copy, .cover-stage { position: relative; z-index: 2; }
.hero-copy { grid-column: 2; grid-row: 1; }
.eyebrow { margin: 0 0 14px; color: var(--green); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.dark { color: var(--green-deep); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.8rem, 6.2vw, 6.8rem); font-weight: 500; line-height: .82; letter-spacing: -.055em; }
.hero h1 span { color: #7dc8ec; }
.hero h1 em { color: #a9d95d; font-weight: 500; }
.subtitle { margin: 19px 0 16px; font-size: clamp(1.1rem, 1.8vw, 1.45rem); font-weight: 500; color: #cfe5f0; }
.hero-deck { max-width: 580px; margin: 0; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.45rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px; border-radius: 3px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #102315; background: var(--green); box-shadow: 0 12px 35px rgba(70,115,29,.25); }
.button-primary:hover { background: #a6d958; box-shadow: 0 16px 40px rgba(70,115,29,.35); }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.35); }
.release-line { display: flex; align-items: center; gap: 10px; margin-top: 26px; color: rgba(255,255,255,.72); font-size: .81rem; }
.release-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(145,200,62,.14); }
.release-count { padding-left: 10px; border-left: 1px solid rgba(255,255,255,.22); color: white; }
.cover-stage { grid-column: 1; grid-row: 1; align-self: center; justify-self: center; perspective: 1200px; }
.cover-stage > img { width: min(330px, 28vw); border-radius: 2px 7px 7px 2px; box-shadow: -18px 28px 60px rgba(0,0,0,.48), -5px 7px 16px rgba(0,0,0,.34); transform: rotateY(-6deg) rotateZ(1deg); }
.cover-stage > img::before { content: ""; }
.cover-glow { position: absolute; inset: 18% -22% -12%; background: rgba(184,224,98,.2); filter: blur(70px); }
.format-tag { position: absolute; right: -33px; bottom: 54px; width: 83px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--ink); background: white; box-shadow: 0 12px 34px rgba(0,0,0,.25); }
.format-tag strong { font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.format-tag span { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }

.order-section { padding: 110px 0 100px; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading h2, .story-intro h2, .author-copy h2, .final-cta h2, .guest-section h2, .decline-section h2, .podcast-book-cta h2 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); max-width: 680px; }
.purchase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.purchase-option { display: grid; grid-template-columns: .78fr 1.22fr; gap: 26px; min-height: 340px; padding: 34px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(7,27,44,.06); }
.purchase-option > *, .retailer-stack, .story-intro > *, .author-section > *, .dogleg-grid > * { min-width: 0; }
.purchase-option.featured { color: white; background: var(--ink); border-color: var(--ink); }
.format { margin: 0 0 6px; color: var(--green-deep); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; }
.featured .format { color: var(--green); }
.purchase-option h3 { margin: 0; font-family: var(--serif); font-size: 1.8rem; line-height: 1.05; }
.price { margin: 24px 0 0; font-size: 1.4rem; font-weight: 700; }
.detail { color: var(--muted); font-size: .78rem; }
.featured .detail { color: rgba(255,255,255,.6); }
.retailer-stack { display: flex; flex-direction: column; gap: 9px; }
.retailer { min-width: 0; min-height: 72px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 14px; padding: 14px 16px; border: 1px solid var(--line); color: var(--ink); background: var(--paper); text-decoration: none; transition: transform .2s, border-color .2s; }
a.retailer:hover { transform: translateX(4px); border-color: var(--green-deep); }
.retailer span { font-weight: 700; }
.retailer small { color: var(--muted); text-align: right; overflow-wrap: anywhere; }
.retailer.pending { opacity: .55; cursor: not-allowed; }
.listing-note { margin: 24px 0 0; color: var(--muted); font-size: .76rem; }

.story-section { padding: 110px 0; color: white; background: var(--ink); }
.story-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.story-intro h2 { max-width: 500px; }
.story-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; color: rgba(255,255,255,.7); }
.story-columns p { margin-top: 34px; }
.themes { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 90px; border-top: 1px solid rgba(255,255,255,.16); }
.theme { padding: 34px 30px 0 0; }
.theme + .theme { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.16); }
.theme span { color: var(--green); font-size: .75rem; letter-spacing: .16em; }
.theme h3 { font-family: var(--serif); font-size: 2rem; margin: 12px 0 4px; }
.theme p { color: rgba(255,255,255,.62); }
.pull-quote { padding: 100px 40px; background: #9bcc4e; text-align: center; }
.pull-quote blockquote { max-width: 950px; margin: 0 auto; font-family: var(--serif); font-size: clamp(2.7rem, 5.5vw, 5.7rem); line-height: .98; letter-spacing: -.04em; }
.author-section { display: grid; grid-template-columns: .75fr 1fr; gap: 90px; align-items: center; padding-top: 110px; padding-bottom: 110px; }
.author-photo { position: relative; background: var(--ink); }
.author-photo::before { content: ""; position: absolute; width: 38%; height: 12px; left: -20px; top: -20px; background: var(--green); }
.author-photo img { width: 100%; aspect-ratio: .82; object-fit: cover; object-position: 50% 22%; }
.author-copy > p { color: var(--muted); }
.author-links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 30px; }
.author-links a { color: var(--blue); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.contact-lines { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-lines p { display: grid; grid-template-columns: 160px 1fr; gap: 16px; margin: 9px 0; font-size: .84rem; }
.contact-lines span { color: var(--muted); }
.contact-lines a { color: var(--ink); font-weight: 700; text-underline-offset: 3px; overflow-wrap: anywhere; }
.dogleg-section { padding: 110px 0; color: white; background: #101b16; }
.dogleg-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: center; }
.dogleg-brand { min-height: 420px; display: grid; place-items: center; align-content: center; overflow: hidden; padding: 38px; background: #f3f4ef; border-radius: 50% 50% 46% 54% / 57% 44% 56% 43%; }
.dogleg-brand img { width: min(630px, 180%); max-width: none; }
.dogleg-brand p { margin: -25px 0 0; color: #23352a; font-weight: 700; letter-spacing: .04em; }
.dogleg-copy h2 { margin: 0; max-width: 730px; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.035em; }
.dogleg-copy > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.67); }
.dogleg-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }
.button-dogleg { color: #102315; background: var(--green); }
.text-link { color: white; font-size: .82rem; font-weight: 700; text-underline-offset: 4px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.social-links a { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.78); font-size: .74rem; font-weight: 700; text-decoration: none; }
.social-links a:hover { border-color: var(--green); color: white; }
.dogleg-details { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 85px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.dogleg-details article { min-width: 0; padding: 34px 30px 38px 0; }
.dogleg-details article + article { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.16); }
.dogleg-details span { color: var(--green); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.dogleg-details h3 { margin: 13px 0 10px; font-family: var(--serif); font-size: 1.8rem; line-height: 1.05; }
.dogleg-details p { color: rgba(255,255,255,.62); font-size: .9rem; }
.dogleg-details small { display: block; margin-top: 14px; color: rgba(255,255,255,.42); font-size: .67rem; }
.dogleg-beta { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-top: 55px; }
.dogleg-beta > div { max-width: 720px; }
.dogleg-beta h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.3rem); }
.dogleg-beta p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.dogleg-beta .button { flex: 0 0 auto; }
.final-cta { padding: 110px 0; text-align: center; color: white; background: linear-gradient(115deg, var(--ink), #10496c); }
.final-cta .section-shell { max-width: 760px; }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.final-cta .button { margin-top: 16px; }
.site-footer { width: var(--shell); min-height: 120px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.site-footer strong, .site-footer span { display: block; }
.site-footer span { color: var(--muted); font-size: .72rem; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer a { color: var(--muted); font-size: .78rem; text-decoration: none; }

.podcast-page { background: #f6f5ef; }
.podcast-hero { position: relative; overflow: hidden; min-height: 590px; padding: 180px 0 100px; color: white; background: var(--ink); }
.podcast-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(68,174,224,.28), transparent 25%), radial-gradient(circle at 70% 80%, rgba(145,200,62,.18), transparent 30%); }
.podcast-hero .section-shell { position: relative; z-index: 2; }
.podcast-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(5rem, 12vw, 10rem); line-height: .8; letter-spacing: -.06em; }
.podcast-hero p:not(.eyebrow) { max-width: 730px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: 1.25rem; }
.podcast-wave { position: absolute; z-index: 1; right: 5%; bottom: 10%; display: flex; gap: 12px; align-items: center; height: 220px; opacity: .34; }
.podcast-wave i { display: block; width: 6px; border-radius: 8px; background: var(--sky); animation: pulse 1.8s ease-in-out infinite alternate; }
.podcast-wave i:nth-child(1), .podcast-wave i:nth-child(9) { height: 35%; }
.podcast-wave i:nth-child(2), .podcast-wave i:nth-child(8) { height: 58%; animation-delay: .15s; }
.podcast-wave i:nth-child(3), .podcast-wave i:nth-child(7) { height: 83%; animation-delay: .3s; }
.podcast-wave i:nth-child(4), .podcast-wave i:nth-child(6) { height: 48%; animation-delay: .45s; }
.podcast-wave i:nth-child(5) { height: 100%; animation-delay: .6s; background: var(--green); }
@keyframes pulse { to { transform: scaleY(.55); } }
.platform-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.platform-row a { padding: 11px 17px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; color: white; font-size: .8rem; font-weight: 700; text-decoration: none; }
.platform-row a:hover { border-color: var(--green); }
.podcast-subnav { position: sticky; top: 0; z-index: 40; display: flex; justify-content: center; gap: 50px; padding: 17px 20px; background: rgba(246,245,239,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.podcast-subnav a { color: var(--ink); font-size: .8rem; font-weight: 700; text-decoration: none; }
.guest-section { padding: 110px 0 120px; }
.podcast-search { max-width: 600px; height: 56px; display: flex; align-items: center; gap: 12px; padding: 0 18px; margin-bottom: 12px; border: 1px solid var(--line); background: white; }
.podcast-search svg { width: 21px; fill: none; stroke: var(--muted); stroke-width: 2; }
.podcast-search input { flex: 1; border: 0; outline: 0; color: var(--ink); background: transparent; font: inherit; }
.results-count { margin: 0 0 28px; color: var(--muted); font-size: .72rem; }
.appearance-list { border-top: 1px solid var(--line); }
.appearance { display: grid; grid-template-columns: 54px minmax(0,1fr) 150px; gap: 24px; align-items: center; min-height: 146px; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.appearance:hover { padding-inline: 16px; background: white; }
.appearance-number { color: var(--green-deep); font-size: .72rem; font-weight: 700; }
.appearance-copy p { margin: 0 0 3px; color: var(--blue); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.appearance-copy h3 { max-width: 100%; margin: 0; font-family: var(--serif); font-size: clamp(1.45rem, 3vw, 2.25rem); line-height: 1.06; overflow-wrap: anywhere; }
.appearance-copy small { display: block; margin-top: 9px; color: var(--muted); }
.appearance > a { display: flex; justify-content: space-between; padding: 12px 14px; border: 1px solid var(--line); color: var(--ink); font-size: .78rem; font-weight: 700; text-decoration: none; }
.appearance > a:hover { border-color: var(--green-deep); }
.decline-section { padding: 120px 0; color: white; background: var(--ink); }
.decline-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.decline-intro > p { color: rgba(255,255,255,.65); }
.decline-tagline { margin: 12px 0 0; color: var(--green); font-family: var(--serif); font-size: 1.55rem; }
.decline-player { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: #121212; }
.decline-player iframe { display: block; }
.platform-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 22px; }
.platform-card { min-height: 155px; display: flex; flex-direction: column; justify-content: center; padding: 25px; border: 1px solid rgba(255,255,255,.16); text-decoration: none; transition: background .2s, border-color .2s; }
.platform-card:hover { border-color: var(--green); background: rgba(255,255,255,.04); }
.platform-card span { color: rgba(255,255,255,.5); font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; }
.platform-card strong { font-family: var(--serif); font-size: 1.8rem; }
.platform-card em { margin-top: 12px; color: var(--green); font-size: .75rem; font-style: normal; }
.catalog-note { color: rgba(255,255,255,.48); font-size: .72rem; }
.podcast-book-cta { padding: 90px 0; background: #9bcc4e; }
.podcast-book-cta .section-shell { display: grid; grid-template-columns: 180px 1fr; gap: 50px; align-items: center; max-width: 880px; }
.podcast-book-cta img { width: 180px; box-shadow: 0 18px 38px rgba(7,27,44,.25); transform: rotate(-2deg); }
.podcast-book-cta .button-primary { color: white; background: var(--ink); }
.podcast-contact { padding-top: 100px; padding-bottom: 110px; }
.contact-panel { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-panel a { min-height: 145px; display: flex; flex-direction: column; justify-content: center; gap: 9px; padding: 24px; text-decoration: none; }
.contact-panel a + a { border-left: 1px solid var(--line); }
.contact-panel a:hover { background: white; }
.contact-panel span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-panel strong { font-family: var(--serif); font-size: 1.25rem; overflow-wrap: anywhere; }
.dogleg-mini { padding: 85px 0; color: white; background: #101b16; }
.dogleg-mini .section-shell { display: grid; grid-template-columns: 150px 1fr .8fr; gap: 45px; align-items: center; }
.dogleg-logo-frame { width: 100%; max-width: 150px; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; background: white; border-radius: 50%; }
.dogleg-logo-frame img { width: 180%; max-width: none; }
.dogleg-mini h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; }
.dogleg-mini p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.dogleg-mini-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dogleg-mini-links a, .dogleg-mini-links .social-link-unavailable { padding: 9px 11px; border: 1px solid rgba(255,255,255,.15); color: white; font-size: .72rem; font-weight: 700; text-decoration: none; }
.dogleg-mini-links a:hover { border-color: var(--green); }
.dogleg-mini-links .social-link-unavailable { color: rgba(255,255,255,.52); }
.home-dogleg { padding-block: 72px; }
.home-dogleg .section-shell { grid-template-columns: 130px 1fr auto; }
.dogleg-home-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

.dogleg-page { background: #f6f5ef; }
.dogleg-page-hero { min-height: 720px; display: flex; align-items: center; padding: 150px 0 100px; color: white; background: radial-gradient(circle at 20% 40%, rgba(145,200,62,.16), transparent 30%), linear-gradient(115deg, #071b2c, #101b16 70%); }
.dogleg-page-hero .section-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: center; }
.dogleg-page-logo { width: 100%; max-width: 430px; aspect-ratio: 1; justify-self: center; display: grid; place-items: center; overflow: hidden; padding: 24px; background: #f3f4ef; border-radius: 50%; }
.dogleg-page-logo img { width: 180%; max-width: none; }
.dogleg-page-hero h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(3.4rem, 6vw, 6rem); font-weight: 600; line-height: .92; letter-spacing: -.045em; }
.dogleg-page-hero p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.68); font-size: 1.06rem; }
.dogleg-purpose { padding-top: 110px; padding-bottom: 110px; }
.dogleg-purpose .section-heading h2, .dogleg-roadmap .section-heading h2, .dogleg-audience .section-heading h2, .dogleg-connect h2, .dogleg-book-link h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.035em; }
.dogleg-purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; max-width: 980px; color: var(--muted); font-size: 1.08rem; }
.dogleg-roadmap { padding: 110px 0; color: white; background: #101b16; }
.dogleg-roadmap .section-heading { max-width: 900px; }
.dogleg-roadmap .dogleg-details { margin-top: 55px; }
.dogleg-audience { padding-top: 110px; padding-bottom: 110px; }
.dogleg-audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.dogleg-audience-grid article { min-height: 190px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.dogleg-audience-grid span { color: var(--green-deep); font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.dogleg-audience-grid p { color: var(--muted); }
.dogleg-connect { padding: 110px 0; color: white; background: linear-gradient(115deg, #071b2c, #124e35); }
.dogleg-connect .section-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.dogleg-connect p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.68); }
.dogleg-connect .button { margin-top: 18px; }
.dogleg-page-social { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.dogleg-page-social > a, .dogleg-page-social > .social-link-unavailable { min-height: 95px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 18px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); color: white; text-decoration: none; }
.dogleg-page-social a:hover { background: rgba(255,255,255,.06); }
.dogleg-page-social > a > span, .dogleg-page-social > .social-link-unavailable > span { color: var(--green); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dogleg-page-social > a > strong, .dogleg-page-social > .social-link-unavailable > strong { overflow-wrap: anywhere; }
.dogleg-page-social > .social-link-unavailable { color: rgba(255,255,255,.52); }
.dogleg-book-link { padding: 100px 0; text-align: center; }
.dogleg-book-link .section-shell { max-width: 850px; }
.dogleg-book-link p:not(.eyebrow) { color: var(--muted); }
.dogleg-book-link .button { margin-top: 14px; }

.reveal { opacity: 1; transform: none; }
.delay-1, .delay-2 { transition-delay: 0s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .podcast-wave i { animation: none; } }

@media (max-width: 900px) {
  .site-header { height: 74px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 68px; right: 0; width: min(320px, calc(100vw - 40px)); display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px; color: white; background: var(--ink); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .site-nav a.active::after { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 65px; padding: 130px 40px 100px; background: linear-gradient(145deg, #061725 0 67%, #5c9b29 67%); }
  .hero-copy { grid-column: 1; grid-row: auto; max-width: 700px; }
  .cover-stage { grid-column: 1; grid-row: auto; }
  .cover-stage > img { width: min(390px, 72vw); }
  .purchase-grid { grid-template-columns: 1fr; }
  .story-intro { grid-template-columns: 1fr; gap: 20px; }
  .author-section { grid-template-columns: .8fr 1fr; gap: 45px; }
  .dogleg-grid { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .dogleg-details h3 { font-size: 1.5rem; }
  .dogleg-mini .section-shell { grid-template-columns: 120px 1fr; }
  .dogleg-mini-links { grid-column: 1 / -1; }
  .home-dogleg .section-shell { grid-template-columns: 110px 1fr; }
  .dogleg-home-actions { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .dogleg-page-hero .section-shell { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .dogleg-connect .section-shell { gap: 50px; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 30px, 1180px); }
  .brand small { display: none; }
  .hero { padding-inline: 22px; }
  .hero h1 { max-width: 100%; font-size: clamp(2.9rem, 14vw, 3.8rem); overflow-wrap: anywhere; }
  .cover-stage > img { width: min(330px, 78vw); }
  .format-tag { right: -20px; }
  .order-section, .story-section, .author-section, .guest-section, .decline-section { padding-top: 80px; padding-bottom: 80px; }
  .purchase-option { grid-template-columns: 1fr; }
  .story-columns { grid-template-columns: 1fr; gap: 0; }
  .themes { grid-template-columns: 1fr; }
  .theme, .theme + .theme { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .author-section { grid-template-columns: 1fr; }
  .dogleg-grid { grid-template-columns: 1fr; }
  .dogleg-brand { min-height: 330px; }
  .dogleg-details { grid-template-columns: 1fr; }
  .dogleg-details article, .dogleg-details article + article { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .dogleg-details article:last-child { border-bottom: 0; }
  .dogleg-beta { align-items: flex-start; flex-direction: column; gap: 18px; }
  .contact-lines p { grid-template-columns: 1fr; gap: 0; }
  .pull-quote { padding-inline: 24px; }
  .site-footer { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 32px; }
  .site-footer nav { flex-wrap: wrap; }
  .podcast-hero { min-height: 520px; padding-top: 145px; }
  .podcast-wave { right: -20%; opacity: .18; }
  .podcast-subnav { justify-content: flex-start; overflow-x: auto; }
  .appearance { grid-template-columns: 34px 1fr; padding-block: 24px; }
  .appearance-copy { min-width: 0; }
  .appearance-copy h3 { font-size: 1.24rem; overflow-wrap: anywhere; }
  .appearance > a { grid-column: 2; width: 140px; }
  .decline-intro { grid-template-columns: 1fr; gap: 20px; }
  .platform-cards { grid-template-columns: 1fr; }
  .podcast-book-cta .section-shell { grid-template-columns: 110px 1fr; gap: 24px; }
  .podcast-book-cta img { width: 110px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel a + a { border-left: 0; border-top: 1px solid var(--line); }
  .dogleg-mini .section-shell { grid-template-columns: 90px 1fr; gap: 20px; }
  .dogleg-logo-frame { width: 90px; }
  .dogleg-mini-links { grid-template-columns: 1fr 1fr; }
  .home-dogleg .section-shell { grid-template-columns: 90px 1fr; }
  .dogleg-home-actions { flex-direction: column; align-items: flex-start; }
  .dogleg-page-hero { min-height: auto; padding-top: 130px; }
  .dogleg-page-hero .section-shell, .dogleg-connect .section-shell { grid-template-columns: 1fr; gap: 36px; }
  .dogleg-page-logo { width: min(100%, 360px); padding: 42px; }
  .dogleg-purpose, .dogleg-audience { padding-top: 80px; padding-bottom: 80px; }
  .dogleg-purpose-grid, .dogleg-audience-grid { grid-template-columns: 1fr; }
  .dogleg-roadmap, .dogleg-connect { padding-block: 80px; }
  .dogleg-page-social { grid-template-columns: 1fr; }
}
