:root {
  --bg: #080604;
  --bg-soft: #100c08;
  --panel: #15110c;
  --panel-strong: #1f1710;
  --gold: #d7a941;
  --gold-bright: #f7d77d;
  --gold-soft: #7c6128;
  --ivory: #f6efe2;
  --muted: #b9aa91;
  --muted-2: #8d8170;
  --line: rgba(247, 215, 125, 0.2);
  --line-strong: rgba(247, 215, 125, 0.42);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(247, 215, 125, 0.07), transparent 310px),
    linear-gradient(120deg, #060403 0%, #100b07 45%, #060403 100%);
  color: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 75%);
  pointer-events: none;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 5.6vw, 5.35rem);
}

.hero-title-main,
.hero-title-author {
  display: block;
}

.hero-title-author {
  margin-top: 0.65rem;
  color: var(--gold-bright);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #171006;
  border-radius: var(--radius);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 110px 0;
}

.border-band {
  border-top: 1px solid rgba(247, 215, 125, 0.12);
  border-bottom: 1px solid rgba(247, 215, 125, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(0, 0, 0, 0.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(8, 6, 4, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(247, 215, 125, 0.18);
  background: rgba(8, 6, 4, 0.94);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgba(5, 4, 3, 0.62);
  box-shadow: 0 0 24px rgba(215, 169, 65, 0.2);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
}

.brand-text {
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.38rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-bright);
  box-shadow: inset 0 0 18px rgba(215, 169, 65, 0.08);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding-top: 74px;
}

.hero::after,
.page-hero::after,
.final-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(780px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(247, 215, 125, 0.72), transparent);
  box-shadow: 0 0 28px rgba(247, 215, 125, 0.38);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-subhead {
  max-width: 680px;
  margin-top: 1.35rem;
  color: #d9ceb9;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-gold {
  background: linear-gradient(135deg, #f8dc82, #d7a941 42%, #8f6a25);
  color: #120c05;
  box-shadow: 0 18px 42px rgba(215, 169, 65, 0.28);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 22px 58px rgba(247, 215, 125, 0.38);
}

.button-dark {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
  box-shadow: inset 0 0 18px rgba(247, 215, 125, 0.05);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: rgba(247, 215, 125, 0.72);
  background: rgba(247, 215, 125, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25), inset 0 0 26px rgba(247, 215, 125, 0.1);
}

.trust-line {
  margin-top: 1.35rem;
  color: var(--gold-bright);
  font-size: 0.93rem;
  font-weight: 700;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust-strip span,
.support-list span {
  border: 1px solid rgba(247, 215, 125, 0.16);
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  background: rgba(255, 255, 255, 0.035);
  color: #d6c7aa;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  justify-content: center;
  width: 100%;
  min-width: 0;
  perspective: 1400px;
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 620px;
  align-items: stretch;
}

.product-stage {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 525px;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(247, 215, 125, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 215, 125, 0.06), transparent 45%),
    rgba(10, 7, 4, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  transition: filter 180ms ease, transform 180ms ease;
  --rotate-y: -8deg;
  --mid-rotate-y: -5deg;
  --rotate-x: 2deg;
  --shift: -14px;
  --delay: 0s;
}

.book-stage {
  z-index: 2;
}

.bundle-stage {
  z-index: 1;
  margin-top: 1.5rem;
  --rotate-y: 6deg;
  --mid-rotate-y: 3deg;
  --rotate-x: 1deg;
  --shift: -12px;
  --delay: -1.6s;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(247, 215, 125, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 0 44px rgba(247, 215, 125, 0.2), inset 0 0 44px rgba(247, 215, 125, 0.05);
}

.product-stage::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -0.45rem;
  z-index: -2;
  height: 30px;
  background: rgba(0, 0, 0, 0.62);
  filter: blur(18px);
}

.bundle-stage::before {
  box-shadow: 0 0 54px rgba(247, 215, 125, 0.24), inset 0 0 44px rgba(247, 215, 125, 0.06);
}

.product-stage:hover,
.product-stage:focus-visible {
  filter: brightness(1.06);
}

.product-image {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 36px 54px rgba(0, 0, 0, 0.7));
  transform: rotateY(var(--rotate-y)) rotateX(var(--rotate-x));
  animation: floatProduct 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.product-media {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.book-stage .product-image {
  width: auto;
  max-width: 100%;
  max-height: 375px;
}

.bundle-cover {
  width: auto;
  max-width: 100%;
  max-height: 350px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.72));
}

.visual-caption {
  position: absolute;
  right: 0.2rem;
  bottom: 0.8rem;
  display: grid;
  gap: 0.1rem;
  min-width: 150px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(247, 215, 125, 0.42);
  border-radius: var(--radius);
  background: rgba(8, 6, 4, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 28px rgba(247, 215, 125, 0.18);
}

.visual-caption span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-caption strong {
  color: var(--gold-bright);
  font-size: 1.35rem;
}

.bundle-caption {
  right: 0.2rem;
  bottom: 0.8rem;
}

.product-copy {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(247, 215, 125, 0.16);
}

.product-copy span {
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-copy strong {
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.25;
}

.product-copy p {
  color: #cdbf9f;
  font-size: 0.88rem;
  line-height: 1.45;
}

@keyframes floatProduct {
  0%,
  100% {
    transform: translateY(0) rotateY(var(--rotate-y)) rotateX(var(--rotate-x));
  }

  50% {
    transform: translateY(var(--shift)) rotateY(var(--mid-rotate-y)) rotateX(var(--rotate-x));
  }
}

.quick-buy {
  border-top: 1px solid rgba(247, 215, 125, 0.12);
  border-bottom: 1px solid rgba(247, 215, 125, 0.12);
  background: rgba(5, 4, 3, 0.58);
  padding: 1.1rem 0;
}

.quick-buy-inner,
.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quick-buy-inner > span,
.section-cta p {
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
}

.quick-buy-actions,
.section-cta-actions,
.mini-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mini-cta-row {
  margin-top: 0.8rem;
}

.section-cta {
  margin-top: 2rem;
  padding: 1.1rem;
  border: 1px solid rgba(247, 215, 125, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(247, 215, 125, 0.08), transparent),
    rgba(8, 6, 4, 0.58);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.section-cta .button,
.quick-buy .button,
.mini-cta-row .button {
  min-height: 46px;
  padding-inline: 1.05rem;
}

.two-col,
.faq-layout,
.contact-grid,
.author-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 110px;
}

.rich-copy {
  display: grid;
  gap: 1.25rem;
  font-size: 1.04rem;
}

.rich-copy em {
  color: var(--ivory);
  font-style: italic;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.75rem;
  color: var(--muted-2);
}

.text-link {
  color: var(--gold-bright);
  font-weight: 800;
  border-bottom: 1px solid rgba(247, 215, 125, 0.42);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.center-heading p:not(.eyebrow) {
  margin-top: 1rem;
  font-size: 1.04rem;
}

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

.feature-card,
.timeline-card,
.offer-card,
.review-card,
.contact-form,
.contact-aside {
  border: 1px solid rgba(247, 215, 125, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(16, 12, 8, 0.82);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 250px;
  padding: 1.35rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 215, 125, 0.42);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.48), 0 0 28px rgba(247, 215, 125, 0.1);
}

.wide-card {
  grid-column: span 3;
  min-height: 0;
}

.card-number {
  display: inline-flex;
  margin-bottom: 2.25rem;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-card p,
.timeline-card p,
.offer-card p,
.review-card span,
.contact-aside p {
  margin-top: 0.8rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.split-heading p:not(.eyebrow) {
  font-size: 1.02rem;
}

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

.timeline-card {
  position: relative;
  min-height: 250px;
  padding: 1.25rem;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.timeline-card span,
.offer-label {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offers-section {
  position: relative;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.25rem;
  align-items: stretch;
}

.offer-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.offer-card-featured {
  border-color: rgba(247, 215, 125, 0.62);
  background:
    linear-gradient(180deg, rgba(247, 215, 125, 0.12), transparent 46%),
    rgba(18, 13, 8, 0.95);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52), 0 0 54px rgba(247, 215, 125, 0.22);
  padding-top: clamp(3.4rem, 5vw, 4.2rem);
  transform: translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(247, 215, 125, 0.5);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  background: rgba(247, 215, 125, 0.1);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.offer-top strong {
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #d7c9af;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.65rem;
  height: 0.35rem;
  border-left: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: rotate(-45deg);
}

.full-button {
  width: 100%;
}

.bundle-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(247, 215, 125, 0.12);
}

.bundle-showcase img {
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.62));
}

.bundle-showcase h3 {
  max-width: 680px;
  font-size: clamp(1.8rem, 3.7vw, 3.4rem);
}

.bundle-showcase p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 1rem;
}

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

.review-card {
  padding: 1.4rem;
}

.review-card p {
  color: var(--ivory);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.review-card span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
}

.author-band {
  background: linear-gradient(135deg, rgba(247, 215, 125, 0.08), transparent 40%, rgba(255, 255, 255, 0.025));
}

.author-grid {
  align-items: center;
}

.author-mark,
.portrait-panel {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 215, 125, 0.12), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #0c0805;
  box-shadow: var(--shadow), inset 0 0 70px rgba(247, 215, 125, 0.07);
}

.author-mark span,
.portrait-panel span {
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  text-shadow: 0 0 28px rgba(247, 215, 125, 0.32);
}

.author-grid p:not(.eyebrow) {
  margin-top: 1rem;
  font-size: 1.04rem;
}

.author-grid .button {
  margin-top: 1.6rem;
}

.faq-list,
.faq-page-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid rgba(247, 215, 125, 0.16);
  border-radius: var(--radius);
  background: rgba(16, 12, 8, 0.82);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  color: var(--ivory);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--gold-bright);
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 1.2rem 1.15rem;
}

.final-cta {
  position: relative;
  text-align: center;
}

.final-cta-inner {
  max-width: 840px;
  margin-inline: auto;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 660px;
  margin: 1rem auto 0;
}

.center-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(247, 215, 125, 0.14);
  padding: 46px 0 30px;
  background: #050403;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-grid p {
  max-width: 460px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.5rem 1.5rem;
}

.footer-links a,
.footer-bottom {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(247, 215, 125, 0.1);
}

.page-hero {
  position: relative;
  padding-top: 90px;
}

.page-hero-grid {
  align-items: center;
}

.narrow-page {
  max-width: 860px;
}

.portrait-panel {
  min-height: 360px;
}

.author-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-email {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0.6rem 0 0.2rem;
  border-bottom: 1px solid rgba(247, 215, 125, 0.46);
  color: var(--gold-bright);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--ivory);
  border-color: var(--gold-bright);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(247, 215, 125, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: var(--ivory);
  outline: none;
  padding: 0.85rem 0.95rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(247, 215, 125, 0.65);
  box-shadow: 0 0 0 3px rgba(247, 215, 125, 0.12);
}

select option {
  background: #100c08;
  color: var(--ivory);
}

.form-note {
  min-height: 1.4rem;
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.contact-aside {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 2.3rem;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin-top: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 1060px) {
  h1 {
    font-size: clamp(2.65rem, 7.4vw, 4.65rem);
  }

  .hero-grid,
  .offer-grid,
  .bundle-showcase,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-products {
    width: 100%;
    max-width: 680px;
  }

  .product-stage {
    min-height: 500px;
  }

  .bundle-stage {
    margin-top: 0;
  }

  .offer-card-featured {
    transform: none;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding: 76px 0;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-text {
    max-width: 190px;
    white-space: normal;
    line-height: 1.15;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid rgba(247, 215, 125, 0.18);
    border-radius: var(--radius);
    background: rgba(8, 6, 4, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
    border-radius: 6px;
  }

  .nav-cta {
    margin-top: 0.3rem;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-subhead,
  .trust-strip,
  .hero-actions {
    justify-content: center;
    margin-inline: auto;
  }

  .quick-buy-inner,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .quick-buy-actions,
  .section-cta-actions,
  .mini-cta-row {
    justify-content: center;
  }

  .two-col,
  .faq-layout,
  .contact-grid,
  .author-grid,
  .feature-grid,
  .review-grid,
  .author-detail-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .wide-card {
    grid-column: auto;
  }

  .feature-card {
    min-height: 0;
  }

  .author-mark {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-grid {
    gap: 0.65rem;
  }

  .hero-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .product-stage {
    width: min(330px, 92vw);
    max-width: none;
    min-height: 0;
    margin-inline: auto;
  }

  .bundle-stage {
    width: min(350px, 94vw);
    max-width: none;
    margin-top: 0;
  }

  .product-media {
    min-height: 0;
  }

  .book-stage .product-image {
    max-height: 420px;
  }

  .bundle-cover {
    max-height: 390px;
  }

  .product-copy {
    text-align: left;
  }

  .trust-line {
    font-size: 0.84rem;
  }

  .visual-caption {
    right: 0.6rem;
    bottom: 10%;
    min-width: 132px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .offer-top {
    display: grid;
  }

  .popular-badge {
    position: static;
    width: max-content;
    margin-bottom: 1rem;
  }

  .center-heading {
    text-align: left;
  }

  .center-actions {
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
