:root {
  --ink: #171013;
  --charcoal: #262022;
  --merlot: #6f1d3f;
  --wine: #461426;
  --rose: #b96d7c;
  --blush: #efd6da;
  --ivory: #fff9f0;
  --linen: #f4ece0;
  --champagne: #d8b56e;
  --gold-deep: #9f7430;
  --emerald: #155f52;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(23, 16, 19, 0.22);
  --display: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --serif: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Manrope", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 56px);
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 64px);
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(23, 16, 19, 0.94), rgba(38, 32, 34, 0.88)),
    rgba(23, 16, 19, 0.9);
  border-bottom: 1px solid rgba(216, 181, 110, 0.28);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: clamp(104px, 12vw, 138px);
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: clamp(18px, 3vw, 36px);
  border-left: 1px solid rgba(216, 181, 110, 0.28);
}

.brand-mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(216, 181, 110, 0.16));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(8px, 1.6vw, 22px);
  min-width: 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 9px 10px;
  color: rgba(255, 249, 240, 0.82);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ivory);
  background: rgba(255, 249, 240, 0.06);
}

.primary-nav a[aria-current="page"] {
  color: var(--champagne);
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  min-height: calc(100svh - 104px);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 76px) clamp(34px, 6vw, 76px);
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(23, 16, 19, 0.95) 0%, rgba(23, 16, 19, 0.72) 42%, rgba(23, 16, 19, 0.22) 100%),
    url("assets/power-playbook-hero-original.png") center / cover no-repeat;
}

.hero-scrim {
  z-index: -1;
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 181, 110, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(23, 16, 19, 0.08), rgba(23, 16, 19, 0.54));
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-label,
.episode-meta {
  margin: 0 0 12px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 18px 46px rgba(23, 16, 19, 0.44);
}

h2 {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 4.75rem;
}

h3 {
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 2.25rem;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 249, 240, 0.86);
  font-size: 1.22rem;
}

.hero-host {
  margin-bottom: 24px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--champagne);
  border-color: var(--champagne);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e5c984;
}

.button-secondary {
  color: var(--ivory);
  background: rgba(255, 249, 240, 0.08);
  border-color: rgba(255, 249, 240, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 249, 240, 0.16);
  border-color: var(--champagne);
}

.button-outline {
  color: var(--wine);
  background: transparent;
  border-color: rgba(70, 20, 38, 0.24);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ivory);
  background: var(--wine);
  border-color: var(--wine);
}

.hero-panel {
  align-self: end;
  width: min(100%, 420px);
  padding: 28px;
  color: var(--ivory);
  background: rgba(23, 16, 19, 0.62);
  border: 1px solid rgba(216, 181, 110, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel p {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.04;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.panel-stats span {
  display: grid;
  gap: 2px;
  min-height: 66px;
  padding: 12px;
  color: rgba(255, 249, 240, 0.82);
  background: rgba(255, 249, 240, 0.08);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-stats strong {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}

.intro-band,
.audio-section,
.section-shell,
.episode-section,
.host-section,
.merch-section,
.social-section,
.guest-section {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 76px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(111, 29, 63, 0.96), rgba(38, 32, 34, 0.98)),
    var(--wine);
}

.intro-band h2 {
  color: var(--ivory);
}

.intro-band > p {
  max-width: 640px;
  margin: 0;
  align-self: end;
  color: rgba(255, 249, 240, 0.82);
  font-size: 1.16rem;
}

.section-shell,
.audio-section,
.episode-section {
  background: var(--ivory);
}

.section-heading {
  display: grid;
  max-width: 920px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.pillar-grid,
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audio-section {
  background:
    linear-gradient(180deg, var(--ivory), #f7eee6);
}

.audio-player {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(20px, 4vw, 42px);
  color: var(--ivory);
  background:
    radial-gradient(circle at 88% 14%, rgba(216, 181, 110, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(70, 20, 38, 0.98), rgba(23, 16, 19, 0.96));
  border: 1px solid rgba(216, 181, 110, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audio-art {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 24px;
  background: rgba(23, 16, 19, 0.52);
  border: 1px solid rgba(216, 181, 110, 0.26);
  border-radius: 8px;
}

.audio-art img {
  width: min(100%, 280px);
  filter: drop-shadow(0 18px 42px rgba(216, 181, 110, 0.18));
}

.audio-details h3 {
  max-width: 820px;
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 0.94;
}

.audio-details p {
  max-width: 760px;
  color: rgba(255, 249, 240, 0.76);
}

.audio-details [data-latest-summary] {
  max-width: 700px;
  margin-bottom: 0;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.player-controls {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.player-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(216, 181, 110, 0.72);
  border-radius: 999px;
  cursor: pointer;
  background: var(--champagne);
  box-shadow: 0 14px 34px rgba(216, 181, 110, 0.22);
}

.player-toggle:disabled,
.player-toggle[aria-label="Episode audio coming soon"] {
  cursor: default;
  opacity: 0.74;
}

.play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--ink);
}

.player-toggle.is-playing .play-icon {
  width: 16px;
  height: 20px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, var(--ink) 0 35%, transparent 35% 65%, var(--ink) 65% 100%);
}

.player-timeline {
  min-width: 0;
}

.player-time {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: rgba(255, 249, 240, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.player-progress {
  width: 100%;
  accent-color: var(--champagne);
}

.player-progress:disabled {
  opacity: 0.5;
}

.audio-note {
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.listen-links a {
  padding: 10px 14px;
  color: var(--champagne);
  border: 1px solid rgba(216, 181, 110, 0.32);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.listen-links a:first-child {
  color: var(--ink);
  background: var(--champagne);
}

.listen-links a:hover,
.listen-links a:focus-visible {
  color: var(--ink);
  background: var(--champagne);
}

.pillar-card,
.episode-card {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(70, 20, 38, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(70, 20, 38, 0.08);
}

.pillar-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-number {
  width: fit-content;
  padding: 8px 12px;
  color: var(--wine);
  background: var(--blush);
  border: 1px solid rgba(111, 29, 63, 0.12);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.pillar-card p,
.episode-card p,
.host-copy p,
.guest-section p {
  color: rgba(23, 16, 19, 0.72);
}

.episode-section {
  background:
    linear-gradient(180deg, var(--ivory), var(--linen));
}

.episode-card {
  display: grid;
  align-content: start;
}

.episode-card-featured {
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(70, 20, 38, 0.96), rgba(21, 95, 82, 0.92)),
    var(--wine);
  border-color: rgba(216, 181, 110, 0.42);
}

.episode-card-featured h3,
.episode-card-featured p {
  color: var(--ivory);
}

.episode-card a {
  align-self: end;
  width: fit-content;
  margin-top: 26px;
  color: var(--wine);
  font-weight: 800;
  border-bottom: 2px solid var(--champagne);
}

.episode-card-featured a {
  color: var(--champagne);
}

.host-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: center;
  background: var(--charcoal);
}

.host-gallery {
  width: min(100%, 430px);
}

.host-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 181, 110, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--wine);
}

.host-portrait-primary {
  aspect-ratio: 4 / 5;
}

.host-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-portrait-primary img {
  object-position: center top;
}

.host-copy h2 {
  color: var(--ivory);
}

.host-copy p {
  max-width: 680px;
  color: rgba(255, 249, 240, 0.78);
  font-size: 1.15rem;
}

.host-social-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  max-width: 720px;
  margin-top: 22px;
  padding-top: 18px;
  padding-bottom: 2px;
  overflow-x: auto;
  border-top: 1px solid rgba(216, 181, 110, 0.2);
  scrollbar-width: none;
}

.host-social-tags::-webkit-scrollbar {
  display: none;
}

.host-social-tags a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 9px;
  color: rgba(255, 249, 240, 0.78);
  background: rgba(255, 249, 240, 0.055);
  border: 1px solid rgba(216, 181, 110, 0.24);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.host-social-tags a:hover,
.host-social-tags a:focus-visible {
  color: var(--ivory);
  background: rgba(216, 181, 110, 0.14);
  border-color: rgba(216, 181, 110, 0.58);
  transform: translateY(-1px);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--champagne);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.merch-section {
  background:
    linear-gradient(180deg, var(--linen), var(--ivory));
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.merch-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(70, 20, 38, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(70, 20, 38, 0.08);
}

.merch-thumb {
  aspect-ratio: 1;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--linen);
  border-radius: 8px;
}

.merch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-card-featured {
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(70, 20, 38, 0.96), rgba(23, 16, 19, 0.94)),
    var(--wine);
  border-color: rgba(216, 181, 110, 0.42);
}

.merch-card p {
  color: rgba(23, 16, 19, 0.72);
}

.merch-card-featured h3,
.merch-card-featured p {
  color: var(--ivory);
}

.merch-card-featured .episode-meta {
  color: var(--champagne);
}

.merch-price {
  align-self: end;
  margin-top: 18px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.merch-card-featured .merch-price {
  color: var(--champagne);
}

.merch-button {
  margin-top: 28px;
}

.merch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 181, 110, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(23, 16, 19, 0.98), rgba(70, 20, 38, 0.94) 58%, rgba(21, 95, 82, 0.88));
  border-top: 1px solid rgba(216, 181, 110, 0.22);
}

.social-section h2 {
  max-width: 760px;
  color: var(--ivory);
}

.social-section p {
  max-width: 640px;
  color: rgba(255, 249, 240, 0.76);
}

.social-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 126px;
  padding: 20px;
  color: rgba(255, 249, 240, 0.76);
  background: rgba(255, 249, 240, 0.06);
  border: 1px solid rgba(216, 181, 110, 0.24);
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link span {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 1.86rem;
  font-weight: 700;
  line-height: 0.98;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 249, 240, 0.1);
  border-color: rgba(216, 181, 110, 0.62);
}

.social-link-featured {
  grid-column: 1 / -1;
  min-height: 150px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(216, 181, 110, 0.98), rgba(239, 214, 218, 0.9));
  border-color: rgba(255, 249, 240, 0.42);
}

.social-link-featured span {
  color: var(--wine);
  font-size: 2.35rem;
}

.shop-hero,
.shop-section,
.shop-cta {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 76px);
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: calc(100svh - 78px);
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(23, 16, 19, 0.96), rgba(70, 20, 38, 0.82)),
    url("assets/power-playbook-hero-original.png") center / cover no-repeat;
}

.shop-hero-copy {
  max-width: 850px;
}

.shop-hero-art {
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 34px);
  background: rgba(23, 16, 19, 0.72);
  border: 1px solid rgba(216, 181, 110, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shop-hero-art img {
  width: min(100%, 360px);
  filter: drop-shadow(0 18px 38px rgba(216, 181, 110, 0.16));
}

.shop-hero-product {
  padding: 12px;
}

.shop-hero-product img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.shop-section {
  background:
    linear-gradient(180deg, var(--ivory), var(--linen));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  align-content: start;
  min-height: 570px;
  padding: clamp(18px, 2.5vw, 26px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(70, 20, 38, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(70, 20, 38, 0.08);
}

.product-card-dark {
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(70, 20, 38, 0.98), rgba(23, 16, 19, 0.96)),
    var(--wine);
  border-color: rgba(216, 181, 110, 0.42);
}

.product-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(70, 20, 38, 0.08), rgba(216, 181, 110, 0.18)),
    var(--linen);
  border-radius: 8px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-logo img {
  width: 78%;
  height: auto;
  object-fit: contain;
}

.product-media-text {
  padding: 24px;
  color: var(--champagne);
  background:
    radial-gradient(circle at 70% 24%, rgba(216, 181, 110, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(23, 16, 19, 0.98), rgba(70, 20, 38, 0.96));
  text-align: center;
}

.product-media-text span {
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 0.95;
}

.product-media-rose {
  color: var(--wine);
  background:
    linear-gradient(145deg, rgba(239, 214, 218, 0.95), rgba(255, 249, 240, 0.92));
}

.product-card p {
  color: rgba(23, 16, 19, 0.72);
}

.product-card-dark h3,
.product-card-dark p {
  color: var(--ivory);
}

.product-purchase {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.product-price {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.product-card-dark .product-price {
  color: var(--champagne);
}

.product-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ivory);
  background: var(--wine);
  border: 1px solid rgba(70, 20, 38, 0.16);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.product-card-dark .product-checkout {
  color: var(--ink);
  background: var(--champagne);
  border-color: rgba(216, 181, 110, 0.48);
}

.product-checkout[data-checkout-pending="true"] {
  cursor: pointer;
}

.checkout-note {
  max-width: 760px;
  margin: 28px 0 0;
  padding: 16px 18px;
  color: rgba(23, 16, 19, 0.74);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(70, 20, 38, 0.14);
  border-radius: 8px;
}

.checkout-note:focus {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.product-status {
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  color: var(--wine);
  background: var(--blush);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card-dark .product-status {
  color: var(--ink);
  background: var(--champagne);
}

.shop-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr) auto;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(70, 20, 38, 0.94), rgba(23, 16, 19, 0.94)),
    var(--wine);
}

.shop-cta h2 {
  margin-bottom: 0;
  color: var(--ivory);
}

.shop-cta p {
  margin: 0;
  color: rgba(255, 249, 240, 0.76);
}

.guest-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr) auto;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(70, 20, 38, 0.94), rgba(23, 16, 19, 0.92)),
    var(--wine);
  border-top: 1px solid rgba(216, 181, 110, 0.28);
}

.guest-section h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--ivory);
}

.guest-section p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 249, 240, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 76px);
  color: var(--ivory);
  background: var(--ink);
  border-top: 1px solid rgba(216, 181, 110, 0.24);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 249, 240, 0.72);
}

.footer-brand {
  color: var(--ivory) !important;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.footer-legal {
  margin-top: 10px !important;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.9rem;
  }

  h2 {
    font-size: 3.75rem;
  }

  h3 {
    font-size: 2rem;
  }

  .hero-section,
  .intro-band,
  .audio-player,
  .host-section,
  .social-section,
  .guest-section,
  .shop-hero,
  .shop-cta {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-panel {
    width: 100%;
  }

  .pillar-grid,
  .episode-grid,
  .merch-grid,
  .social-panel,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .episode-card,
  .merch-card,
  .product-card {
    min-height: 230px;
  }

  .host-gallery {
    width: 100%;
    max-width: 430px;
  }

  .audio-details h3 {
    font-size: 2.7rem;
  }

  .guest-section .button {
    width: fit-content;
  }

  .shop-cta .button {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    align-items: stretch;
    flex-direction: column-reverse;
    min-height: 0;
  }

  .brand-mark {
    align-self: flex-end;
    width: 116px;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-section {
    padding-top: 78px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(23, 16, 19, 0.9) 0%, rgba(23, 16, 19, 0.78) 54%, rgba(23, 16, 19, 0.7) 100%),
      url("assets/power-playbook-hero-original.png") 58% center / cover no-repeat;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.85rem;
  }

  .hero-copy,
  .intro-band > p,
  .host-copy p {
    font-size: 1.04rem;
  }

  .hero-host {
    font-size: 1.55rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .guest-section .button,
  .shop-cta .button {
    width: 100%;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }

  .player-controls {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .primary-nav {
    font-size: 0.82rem;
  }
}
