/* =========================
   Global reset and base
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.45;
  overflow-x: hidden;
}

/* Prevent long words from causing horizontal scroll on mobile */
h1, h2, h3, .hero-title, .lead, .testimonial__quote, .framework-pillar__def {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 14px;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.15;

  font-family: "Lato", sans-serif;
}


h2 {
  display: flex;
  align-items: center;
  gap: 14px;
}


/* =========================
   Brand typography hierarchy
   ========================= */

h1 { font-weight: 900; }
h2 { font-weight: 700; color: var(--brand-navy); }
h3 { font-weight: 500; color: var(--brand-navy); }

/* Major brand statements (Montserrat only) */
.hero-title,
.page-intro h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--brand-navy);
}
h2::before,
h2::after {
  content: "";
  flex: 1 1;
  border-bottom: 1px solid var(--line);
  opacity: 0.9;
}

button {
  font: inherit;
}

/* =========================
   Variables
   ========================= */

:root {
  --max: 1120px;
  --pad: 22px;

  
  /* Brand palette (LOCKED) */
  --brand-mustard: #F3CF13;
  --brand-navy: #2B2D70;
  --brand-grey: #E2E3E2;

--ink: #111;
  --muted: #5a5a5a;
  --line: #e6e6e6;

  --shadow: 0 12px 34px rgba(0,0,0,0.14);

  
  --card-shadow: 0 8px 22px rgba(0,0,0,0.06);
  --card-shadow-elevated: 0 12px 30px rgba(0,0,0,0.08);
  --rule: rgba(0,0,0,0.18);
--radius: 16px;

  --btn-bg: var(--brand-mustard);
  --btn-ink: var(--brand-navy);
  --btn-line: var(--brand-navy);
}

/* =========================
   Layout helpers
   ========================= */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

#content {
  padding-inline: var(--pad);
}

#content > .container {
  padding-left: 0;
  padding-right: 0;
}

#content > .hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: none;
}

.section {
  padding: 56px 0;
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
}


/* =========================
   Text utilities
   ========================= */

.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 70ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 38px 0;
}

.section-pad {
  padding: 56px 0;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin: 6px 0;
}

/* =========================
   Articles page – download links
   ========================= */

.article-download-list {
  list-style: none;
  padding-left: 0;
}

.article-download-list li {
  margin: 10px 0;
}

.article-download-link {
  display: inline-block;
  color: var(--brand-navy);
  font-weight: 600;
  padding: 10px 14px 10px 18px;
  border-radius: 10px;
  border-left: 4px solid var(--brand-mustard);
  background: linear-gradient(90deg, rgba(243, 207, 19, 0.08) 0%, transparent 100%);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, border-left-color 0.25s ease, box-shadow 0.25s ease;
}

.article-download-link:hover {
  color: var(--brand-navy);
  background: linear-gradient(90deg, rgba(243, 207, 19, 0.2) 0%, rgba(243, 207, 19, 0.06) 100%);
  border-left-color: var(--brand-navy);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(43, 45, 112, 0.12);
}

.article-download-link:focus-visible {
  outline: 3px solid rgba(43, 45, 112, 0.4);
  outline-offset: 3px;
}

/* =========================
   Skip link
   ========================= */

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #111;
}

.skip-link:focus {
  left: 14px;
}

/* =========================
   Header (RESTORED, LOCKED)
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.site-header__pattern {
  position: absolute;
  top: -18px;
  right: 0;
  width: auto;
  height: 140px;
  max-width: 50vw;
  object-fit: contain;
  object-position: top right;
  pointer-events: none;
  opacity: 0.95;
}

/* Hide header pattern on home page; hero has its own pattern */
.page-home .site-header__pattern {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.brand:focus-visible {
  outline: 3px solid rgba(0,0,0,0.25);
  outline-offset: 3px;
  border-radius: 6px;
}

.brand img {
  height: 34px;
  width: auto;
  min-width: 120px;
  opacity: 1;
}

.site-header--minimal .site-nav {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.site-nav a[aria-current="page"] {
  background: var(--brand-grey);
}

/* Insights dropdown */
.nav-item--dropdown {
  position: relative;
}
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
}
.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 100;
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown li {
  margin: 0;
}
.nav-dropdown a {
  display: block;
  padding: 8px 14px;
  color: var(--ink);
}
.nav-dropdown a:hover {
  background: var(--brand-grey);
}

/* =========================
   Buttons
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 12px;
  border: 1.5px solid var(--btn-line);
  background: var(--btn-bg);
  color: var(--btn-ink);
  cursor: pointer;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(0,0,0,0.25);
  outline-offset: 3px;
}

.btn--mustard {
  background: var(--brand-mustard);
  border-color: var(--btn-line);
}

.btn--mustard:hover {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--brand-navy);
}

.btn--secondary:hover {
  background: var(--brand-grey);
}

/* btn--large is now identical to base .btn — kept for backward compatibility */

/* =========================
   Hero (FINAL, DO NOT TOUCH)
   ========================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #f2f2f2;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  top: -18px;
  right: 0;
  z-index: 1;
  width: auto;
  height: 200px;
  max-width: 320px;
  object-fit: contain;
  object-position: top right;
  pointer-events: none;
  opacity: 0.92;
}

/* Hero pattern: smaller on tablet so it doesn’t overpower the card */
@media (max-width: 780px) {
  .hero__pattern {
    height: 140px;
    max-width: 220px;
    top: -10px;
    opacity: 0.88;
  }
}

/* Hero pattern: compact on phones, stays in corner */
@media (max-width: 480px) {
  .hero__pattern {
    height: 96px;
    max-width: 160px;
    top: -6px;
    right: -4px;
    opacity: 0.85;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 34px 0;
}

/* Transparent card as requested; background full width via pseudo-element */
.hero-card {
  position: relative;
  width: min(520px, 92%);
  margin-left: auto;
  background: transparent;
  box-shadow: none;
  padding: 28px 30px 24px;
}

.hero-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: transparent;
}

.hero-title {
  font-size: 2.35rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.hero-sub {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 54ch;
}

.hero-card {
  background: transparent;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
}

@media (max-width: 780px) {
  .hero-card {
    padding: 22px;
  }
  .hero-card::before {
    background: rgba(255,255,255,0.9);
    border-radius: 0;
    box-shadow: var(--card-shadow-elevated);
    backdrop-filter: blur(6px);
  }
}

.hero-title{
  color: var(--brand-navy);
}

.hero-sub{
  color: rgba(0,0,0,0.72);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

/* =========================
   Home: New hero (book-focused)
   ========================= */

.hero--book {
  background: linear-gradient(180deg, var(--brand-grey) 0%, #fff 100%);
  min-height: 0;
  padding: 48px 0 56px;
}

.hero--book .hero-bg,
.hero--book .hero__pattern {
  display: none;
}

.hero--book__inner {
  display: grid;
  grid-template-columns: minmax(260px, 385px) 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero--book__cover {
  justify-self: center;
}

.hero--book__cover img {
  width: 100%;
  height: auto;
  max-width: 385px;
  border-radius: 6px;
  box-shadow: var(--card-shadow-elevated);
}

.hero--book__content {
  min-width: 0;
}

.hero--book__title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.15;
}

.hero--book__title-main {
  display: block;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
}

.hero--book__title-sub {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

.hero--book__tagline {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--ink);
  max-width: 42ch;
}

.hero--book__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero--book__cred {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.hero--book__cta-primary {
  min-width: 168px;
}

/* =========================
   Home: Section spacing and problem
   ========================= */

.home-section {
  padding: 56px 0;
}

.home-section h2 {
  margin-bottom: 20px;
}

.home-problem__text {
  max-width: 60ch;
}

.home-problem__text p {
  margin-bottom: 14px;
}

.home-problem__text p:last-child {
  margin-bottom: 0;
}

.home-problem__core-line {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-left: 3px solid var(--brand-mustard);
  background: #f7f8fb;
  font-weight: 600;
  line-height: 1.5;
}

/* =========================
   Home: The Book (grid with list + cover)
   ========================= */

.home-book__grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 48px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.home-book__list {
  margin: 0 0 28px;
  padding-left: 1.4em;
  line-height: 1.6;
  color: var(--ink);
}

.home-book__list li {
  margin-bottom: 12px;
}

.home-book__list li:last-child {
  margin-bottom: 0;
}

.home-book__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.home-book__cover {
  position: sticky;
  top: 100px;
}

.home-book__cover img {
  width: 100%;
  height: auto;
  max-width: 280px;
  border-radius: 6px;
  box-shadow: var(--card-shadow-elevated);
}

/* =========================
   Home: Credibility (author + testimonial)
   ========================= */

.home-cred__bio {
  max-width: 60ch;
  margin-bottom: 14px;
}

.home-cred__bio:last-of-type {
  margin-bottom: 28px;
}

.home-cred__testimonial {
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  max-width: 52ch;
}

.home-cred__quote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
}

/* =========================
   Home: Explore the Method (links)
   ========================= */

.home-explore__intro {
  margin: 0 0 20px;
}

.home-explore__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.home-explore__links a {
  color: var(--brand-navy);
  font-weight: 600;
}

.home-explore__links a:hover {
  text-decoration: underline;
}

/* =========================
   Home: Preview section (Look Inside)
   ========================= */

.home-section--preview {
  text-align: center;
}

.home-section--preview h2 {
  margin-bottom: 12px;
}

.home-preview__intro {
  margin: 0 0 16px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.home-preview__toggle {
  margin-bottom: 24px;
}

.home-section--preview .preview-pages {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 560px;
}

#home-preview-pages[hidden] {
  display: none !important;
}

.home-section--preview .preview-page-wrap {
  border: 1px solid var(--line);
}

/* =========================
   Home: Final CTA
   ========================= */

.home-section--final-cta {
  text-align: center;
  padding-bottom: 64px;
}

.home-final__cover {
  margin: 0 auto 28px;
}

.home-final__cover img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: var(--card-shadow-elevated);
}

.home-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.home-final__tagline {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.home-final__copy {
  max-width: 70ch;
  margin: 0 auto 24px;
}

.home-final__copy p {
  margin: 0 0 14px;
}

.home-final__copy p:last-child {
  margin-bottom: 0;
}


/* =========================
   Page helpers
   ========================= */

.page {
  padding: 28px 0 64px;
}

.page-intro h1 {
  font-size: 2.1rem;
  letter-spacing: 0.01em;
}

.page-intro .lead {
  margin-bottom: 28px;
}

/* =========================
   Grid variants
   ========================= */

.grid--spacious {
  gap: 26px;
}

/* =========================
   Media (images inside cards)
   ========================= */

.media {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

/* =========================
   Product cards (Buy page)
   ========================= */

.card--product {
  padding: 18px;
}

.card--product .product-body {
  padding-top: 14px;
  text-align: left;
}

.card--product .muted {
  margin-bottom: 0;
}

/* Subtle hover polish for cards */
.card--product {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card--product:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-elevated);
}

@media (max-width: 780px) {
  .page {
    padding: 20px 0 52px;
  }

  .page-intro h1 {
    font-size: 1.85rem;
  }

  .card--product .product-body {
    text-align: left;
  }
}

/* =========================
   Content cards
   ========================= */

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 22px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card--elevated {
  box-shadow: var(--card-shadow-elevated);
}

/* Card headings: match the brand header feel */
.card h3,
.card h2 {
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

/* Optional rule above specific card titles */
h2.card-header,
h3.card-header {
  position: relative;
  text-align: center;
  padding-top: 16px; /* space for the rule */
}



/* =========================
   Home: Framework snapshot
   ========================= */

.framework-snapshot__title {
  text-align: center;
  margin-bottom: 28px;
}

.framework-snapshot__intro {
  max-width: 72ch;
  margin: 0 auto 28px;
}

.framework-snapshot__intro p {
  margin: 0 0 16px;
  line-height: 1.7;
}

.framework-snapshot__intro p:last-child {
  margin-bottom: 0;
}

.framework-pillars {
  gap: 24px;
}

.framework-pillar {
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.framework-pillar__label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.framework-pillar__def {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Method page: central diagram block (Stay Booked Method) */
.method-hero {
  padding-bottom: 32px;
}
.method-diagram-block {
  max-width: 640px;
  margin: 0 auto;
}
.method-diagram-block__title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--brand-navy);
  text-align: center;
  margin: 0 0 8px;
  display: block;
}
.method-diagram-block__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--brand-mustard);
  margin: 10px auto 0;
  border-radius: 2px;
}
.method-diagram-block__tagline {
  text-align: center;
  color: var(--ink);
  font-size: 1rem;
  margin: 0 0 32px;
  line-height: 1.4;
}

/* Method accordion: yellow buttons + white panels */
.method-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.method-accordion__item {
  margin-bottom: 20px;
}
.method-accordion__item:last-child {
  margin-bottom: 0;
}
.method-accordion__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 65%;
  min-width: 240px;
  margin: 0 auto -14px;
  padding: 16px 20px;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: var(--brand-mustard);
  border: 1px solid #5a5a5a;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(43, 45, 112, 0.12);
  position: relative;
  z-index: 1;
}
.method-accordion__icon {
  flex-shrink: 0;
  color: #5a5a5a;
  filter: drop-shadow(0 0 6px rgba(243, 207, 19, 0.6));
}
.method-accordion__icon svg {
  display: block;
}
.method-accordion__label {
  /* no flex:1 so icon + label center as a group */
}
.method-accordion__panel {
  margin-top: 0;
  padding: 28px 24px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 0;
}
.method-accordion__panel--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
@media (max-width: 560px) {
  .method-accordion__panel--cols {
    grid-template-columns: 1fr;
  }
}
.method-accordion__single {
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-size: 1rem;
}
.method-accordion__col-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.method-accordion__col ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}
.method-accordion__col li {
  margin-bottom: 6px;
}
.method-accordion__col li:last-child {
  margin-bottom: 0;
}

.method-diagram-wrap {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
}
.method-diagram {
  width: 100%;
  height: auto;
}
.method-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 12px;
}
.method-subnav a {
  text-decoration: underline;
  color: var(--muted);
}
.method-subnav a:hover {
  color: var(--ink);
}

/* Method page: pillars with examples */
.framework-pillar--method {
  padding-bottom: 20px;
}

.framework-pillar__examples {
  margin: 14px 0 0;
  padding-left: 1.2em;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.framework-pillar__examples li {
  margin-bottom: 6px;
}

.framework-pillar__examples li:last-child {
  margin-bottom: 0;
}

.start-here-prompt {
  max-width: 760px;
  margin: 0 auto;
}

/* Method page: structural lists */
.method-list {
  margin: 0;
  padding-left: 1.4em;
  line-height: 1.5;
  color: var(--muted);
}

.method-list li {
  margin-bottom: 10px;
}

.method-list li:last-child {
  margin-bottom: 0;
}

.method-list--concrete li {
  margin-bottom: 12px;
}

/* =========================
   Home: Proof block (supporting strip; “Why this exists” remains anchor)
   ========================= */

.why-anchor {
  padding-bottom: 56px;
}

.why-block p {
  margin: 0 0 14px;
}

.why-block p:last-child {
  margin-bottom: 0;
}

.proof-block-wrap {
  padding: 0 0 40px;
}

.proof-block__cta {
  text-align: center;
  margin: 24px 0 0;
}

.proof-block {
  background: #f2f3f2;
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: 800px;
}

.proof-block__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
  padding: 32px 24px;
  margin: 0 auto;
}

.proof-stat {
  display: block;
  text-align: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.proof-stat:hover {
  background: rgba(43, 45, 112, 0.06);
}

.proof-stat__number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--brand-navy);
  line-height: 1.1;
  margin-bottom: 6px;
}

.proof-stat__star {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brand-navy);
  opacity: 0.7;
  margin-left: 2px;
  vertical-align: 2px;
}

.proof-stat__label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proof-stat__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--brand-navy);
  text-decoration: underline;
}

.proof-stat:hover .proof-stat__link {
  text-decoration: none;
}

/* =========================
   Home: Testimonials
   ========================= */

.testimonials {
  padding-top: 40px;
  padding-bottom: 56px;
}

.testimonials__title {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials__grid {
  display: grid;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto 40px;
}

.testimonial {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.testimonial:last-child {
  border-bottom: none;
}

.testimonial__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.testimonial__stars {
  color: var(--brand-navy);
  opacity: 0.85;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.testimonial__author {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-navy);
}

.testimonial__date {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial__quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}

.testimonials__cta {
  text-align: center;
  margin: 0;
}

/* =========================
   Home: Final CTA
   ========================= */

.final-cta {
  padding-top: 32px;
  padding-bottom: 48px;
}

/* Home: responsive hero and sections */
@media (max-width: 780px) {
  .hero--book {
    padding: 36px 0 48px;
  }

  .hero--book__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero--book__cover {
    order: -1;
  }

  .hero--book__tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero--book__ctas {
    justify-content: center;
  }

  .hero--book__cred {
    text-align: center;
  }

  .home-book__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-book__cover {
    position: static;
    justify-self: center;
  }

  .home-book__cover img {
    margin: 0 auto;
  }

  .home-final__ctas {
    flex-direction: column;
    align-items: center;
  }

  .home-final__ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero--book__title-main {
    font-size: 1.85rem;
  }

  .hero--book__title-sub {
    font-size: 1.15rem;
  }

  .hero--book__ctas {
    flex-direction: column;
  }

  .hero--book__ctas .btn {
    width: 100%;
  }

  .home-book__ctas {
    flex-direction: column;
  }

  .home-book__ctas .btn {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .hero-ctas {
    justify-content: center;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .proof-block__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px;
  }

  .proof-stat__number {
    font-size: 2.1rem;
  }

  .proof-stat__star {
    font-size: 1.25rem;
    vertical-align: 1px;
  }

  .testimonials__grid {
    gap: 24px;
  }

  .testimonial {
    padding: 20px 0;
  }
}

/* =========================
   Quarterly Reports
   ========================= */

.container--reports {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 64px;
}

.reports-header {
  margin-bottom: 48px;
}

.reports-header h1 {
  margin-bottom: 16px;
}

.reports-intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.reports-list {
  margin: 0;
}

.report-teaser {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.report-teaser:first-child {
  padding-top: 0;
}

.report-teaser__title {
  font-size: 1.25rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.report-teaser__title a {
  color: var(--brand-navy);
}

.report-teaser__title a:hover {
  text-decoration: underline;
}

.report-teaser__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.reports-coming {
  margin: 40px 0 0;
  padding: 24px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Report single (institutional, calm) */
.page-report .report-content {
  line-height: 1.7;
  margin-bottom: 48px;
}

.page-report .report-content p {
  margin-bottom: 18px;
}

.report-section-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 36px 0 10px;
}

.report-section-heading:first-child {
  margin-top: 0;
}

.report-header__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted);
  margin: 6px 0 20px;
}

.report-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.report-teaser__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.report-framework-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.report-framework-cta__line {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.report-framework-cta__link {
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.report-framework-cta__link:hover {
  text-decoration: underline;
}

/* =========================
   Footer
   ========================= */


/* Footer alias for existing markup */
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.footer-nav a {
  color: var(--ink);
}

.footer-nav a:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}

.footer-trustpilot-line {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-trustpilot-line a {
  color: var(--brand-navy);
}

.footer-trustpilot-line a:hover {
  text-decoration: underline;
}

.footer-reports-block {
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.footer-reports-block__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}

.footer-reports-block__subline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.45;
}

.footer-reports-block__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer-reports-block__input {
  font: inherit;
  font-size: 0.95rem;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 200px;
  flex: 1 1 200px;
}

.footer-reports-block__input:focus {
  outline: 2px solid var(--brand-navy);
  outline-offset: 2px;
}

.footer-reports-block__btn {
  font: inherit;
  font-size: 0.95rem;
  padding: 10px 18px;
  border: 1px solid var(--brand-navy);
  border-radius: 8px;
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
}

.footer-reports-block__btn:hover {
  background: var(--brand-grey);
}

.footer-reports-block__btn:focus-visible {
  outline: 2px solid var(--brand-navy);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .footer-reports-block__form {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-reports-block__input {
    min-width: 0;
  }
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Site Map page */
.sitemap-root {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 480px;
  margin: 0 auto;
}

.sitemap-root > li {
  margin-bottom: 16px;
}

.sitemap-root > li > a {
  font-weight: 600;
  color: var(--brand-navy);
}

.sitemap-root ul {
  list-style: none;
  margin: 8px 0 0 20px;
  padding: 0;
}

.sitemap-root ul li {
  margin-bottom: 6px;
}

.sitemap-root ul a {
  color: var(--ink);
}

.sitemap-root ul a:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}

/* Start Here page */
.page-start-here .page-title {
  margin-bottom: 16px;
}

.page-start-here .start-here-intro {
  max-width: 720px;
  margin: 0 auto;
}

.start-here-section {
  max-width: 820px;
  margin: 0 auto;
}

.start-here-inline-cta {
  margin-top: 18px;
  font-weight: 700;
}

.start-here-next {
  margin-top: 24px;
}

.start-here-card {
  height: 100%;
}

/* Sample Chapter page */
.page-sample-chapter .sample-chapter-intro {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.sample-chapter-viewer {
  max-width: 960px;
  margin: 0 auto 48px;
}

.sample-chapter-viewer__frame {
  width: 100%;
  min-height: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.sample-chapter-viewer__fallback {
  margin-top: 14px;
  text-align: center;
}

.sample-chapter-actions {
  text-align: center;
  margin-top: 40px;
}

.sample-chapter-actions .btn + .btn {
  margin-left: 12px;
}

@media (max-width: 480px) {
  .sample-chapter-viewer__frame {
    min-height: 560px;
  }

  .sample-chapter-actions .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .sample-chapter-actions .btn {
    display: block;
    margin-bottom: 8px;
  }
}

/* Preview (Look Inside) page */
.page-preview .preview-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  text-align: center;
}

.preview-loading {
  text-align: center;
  padding: 48px 22px;
}

.preview-pages {
  max-width: 720px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preview-page-wrap {
  width: 100%;
  box-shadow: var(--card-shadow-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.preview-page-canvas {
  display: block;
  width: 100%;
  height: auto;
}

.preview-error {
  max-width: 560px;
  margin: 0 auto 32px;
  text-align: center;
}

.preview-error a {
  text-decoration: underline;
  color: var(--brand-navy);
}

.preview-actions {
  text-align: center;
  margin-top: 40px;
}

.preview-actions .btn + .btn {
  margin-left: 12px;
}

@media (max-width: 480px) {
  .preview-actions .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .preview-actions .btn {
    display: block;
    margin-bottom: 8px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 980px) {
  .hero {
    min-height: 560px;
  }

  .hero-inner {
    min-height: 560px;
    padding: 26px 0;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .hero-card {
    width: min(540px, 94%);
    padding: 26px;
  }
}

@media (max-width: 780px) {
  :root {
    --pad: 28px;
  }

  /* Mobile header: logo left, nav scrolls horizontally */
  .site-header .container {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .header-inner {
    flex-wrap: nowrap;
    padding: 12px 0;
    gap: 12px;
    min-height: 0;
  }

  .header-inner .brand {
    flex: 0 0 auto;
    margin-right: 4px;
  }

  .header-inner .site-nav {
    flex: 1 1 0;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 4px;
    font-size: 0.9rem;
    padding: 4px 0;
    /* Fade at right edge to hint scroll */
    mask-image: linear-gradient(to right, black calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 24px), transparent 100%);
  }

  .header-inner .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    padding: 8px 12px;
    flex-shrink: 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    justify-content: center;
    padding: 22px 0 26px;
  }

  .hero-card {
    width: min(680px, 94%);
    margin: 0 auto;
    padding: 24px;
  }

  .hero-title {
    font-size: 1.85rem;
    text-align: center;
  }

  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Small phones: maximize content width, prevent overflow */
@media (max-width: 480px) {
  :root {
    --pad: 18px;
  }

  .section,
  .section-pad {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-inner {
    padding: 18px 0 22px;
  }

  .hero-card {
    width: 100%;
    padding: 18px 16px;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-sub br {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .framework-snapshot__title {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }

  .framework-pillar {
    padding: 16px 14px;
  }

  .proof-block__inner {
    padding: 24px 16px;
    gap: 22px;
  }

  .proof-stat__number {
    font-size: 1.85rem;
  }

  .testimonials__title {
    font-size: 1.25rem;
    margin-bottom: 28px;
  }

  .testimonial {
    padding: 16px 0;
  }

  .testimonial__quote {
    font-size: 0.95rem;
  }

  .card {
    padding: 18px 16px;
  }

  .btn {
    padding: 12px 20px;
  }

  .final-cta {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .footer {
    padding: 20px 16px;
    font-size: 0.9rem;
  }
}

/* h2 decorative lines: simplify on narrow screens to avoid squashing text */
@media (max-width: 600px) {
  h2::before,
  h2::after {
    flex: 0 0 12px;
    min-width: 0;
  }

  h2 {
    font-size: 1.25rem;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Header nav: slightly smaller on narrow phones (scrollable nav unchanged) */
@media (max-width: 600px) {
  .site-nav {
    font-size: 0.88rem;
  }

  .site-nav a {
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 0;
  }

  .brand img {
    min-width: 100px;
    height: 28px;
  }

  .site-nav {
    font-size: 0.82rem;
  }

  .site-nav a {
    padding: 6px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  .btn:hover,
  .brand:hover {
    transform: none;
  }
}

/* =========================
   Contact page scoped styles
   ========================= */

.page-contact .contact-intro {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.page-contact .page-title h1 {
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.page-contact .page-title {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.page-contact .contact-card {
  padding: 24px 24px;
}

.page-contact .contact-card__title {
  /* “branded header” vibe like your card titles */
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding-top: 14px;
}

.page-contact .contact-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 1px;
  background: var(--line);
}

.page-contact .contact-card__value {
  margin: 0;
}

.page-contact .contact-link {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.page-contact .contact-link:hover {
  transform: translateY(-1px);
}

@media (max-width: 780px) {
  .page-contact .page-title h1 {
    font-size: 1.85rem;
  }

  .page-contact .contact-intro {
    max-width: 100%;
  }
}

/* =========================
   About page scoped styles
   ========================= */

.page-about .about-intro {
  max-width: 980px;
}

.page-about .page-title {
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.page-about .page-title h1 {
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  margin: 0;
}

.page-about .about-copy .lead{
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none; /* let the grid column control width */
  padding: 01.2rem;

}

/* replaces "two-col" behavior but scoped */
.page-about .about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.page-about .about-copy .lead {
  margin-bottom: 14px;
}

.page-about .about-media {
  display: flex;
  justify-content: flex-end;
}

/* portrait treatment */
.page-about .about-portrait {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

/* ensure it stacks cleanly on mobile */
@media (max-width: 900px) {
  .page-about .about-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-media {
    justify-content: center;
  }

  .page-about .about-portrait {
    max-width: 420px;
  }
}

@media (max-width: 780px) {
  .page-about .page-title h1 {
    font-size: 1.85rem;
  }
}

.about-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* FAQ page */
.page-faq .page-title {
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.page-faq .page-title h1 {
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  margin: 0;
}

.faq-item {
  margin-bottom: 28px;
}

.faq-item__q {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.faq-item .muted {
  margin: 0;
  line-height: 1.55;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Book page: overview, trustpilot, further reading */
.book-overview {
  max-width: 640px;
  margin: 0 auto 40px;
}

.book-main .book-trustpilot {
  margin: 40px 0;
}

.book-main .book-actions {
  margin: 32px 0;
}

.book-actions__preview-line,
.book-actions__buy-line {
  margin-bottom: 14px;
}

.book-actions__preview-line .btn + .btn,
.book-actions__buy-line .btn + .btn {
  margin-left: 12px;
}

.book-actions__more {
  margin-top: 18px;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .book-actions__preview-line .btn + .btn,
  .book-actions__buy-line .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .book-actions__preview-line .btn,
  .book-actions__buy-line .btn {
    display: inline-block;
    margin-bottom: 6px;
  }
}

.book-further-reading {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.book-further-reading nav a {
  margin-right: 4px;
}

/* =========================
   Stay Booked page scoped styles
   ========================= */

.page-staybooked .page-title {
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.page-staybooked .page-title h1 {
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}

.page-staybooked .staybooked-grid,
.page-staybooked .staybooked-preview-grid {
  gap: 26px; /* a bit more premium spacing */
}

/* Give subheads the same “branded header” DNA */
.page-staybooked .staybooked-subhead {
  display: inline-block;       
  width: fit-content;          
  max-width: 100%;
  margin-bottom: 12px;

  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  position: relative;
  padding-top: 14px;
}


.page-staybooked .staybooked-subhead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;     
  height: 1px;
  background: var(--line);
}


/* Preview images feel more product-like */
.page-staybooked .staybooked-media {
  border-radius: 18px;
}

/* CTA card alignment polish */
.page-staybooked .staybooked-preview-card .btn {
  margin-top: 4px;
}

@media (max-width: 780px) {
  .page-staybooked .page-title h1 {
    font-size: 1.85rem;
  }

  .page-staybooked .staybooked-grid,
  .page-staybooked .staybooked-preview-grid {
    gap: 18px;
  }
}

/* =========================
   Buy page (distribution hub)
   ========================= */

.buy-main {
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.container--buy {
  max-width: 400px;
  margin: 0 auto;
  padding: 32px var(--pad) 40px;
  width: 100%;
}

.buy-options {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.buy-options p {
  margin: 0;
}

.buy-header {
  text-align: center;
  margin-bottom: 48px;
}

.buy-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 8px;
}

.buy-header__sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.buy-header__divider {
  height: 1px;
  background: var(--line);
  margin-top: 24px;
}

.buy-block {
  text-align: center;
  margin-bottom: 56px;
}

.buy-block__mockup {
  margin-bottom: 28px;
}

.buy-block__mockup img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.buy-block__mockup--small img {
  max-width: 280px;
}

.buy-block__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 12px;
}

.buy-block__desc {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.buy-formats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.buy-format {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.buy-format__label {
  font-weight: 600;
  color: var(--brand-navy);
}

.buy-format__price {
  font-size: 1.1rem;
  color: var(--ink);
}

.buy-btn {
  width: 100%;
  min-width: 220px;
  text-align: center;
  justify-content: center;
}

.buy-divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

.buy-layer-title {
  margin: 48px 0 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.buy-layer-title:first-of-type {
  margin-top: 0;
}

.buy-layer-badge {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-left: 8px;
}

.buy-block--planned .buy-block__desc {
  margin-bottom: 16px;
}

.buy-block--planned .buy-block__title + .buy-block__title {
  margin-top: 28px;
}

.buy-format--planned {
  margin-bottom: 8px;
}

.buy-format--planned .buy-format__price {
  font-weight: 600;
}

.buy-btn--outline {
  background: transparent;
  border: 2px solid var(--brand-navy);
  color: var(--brand-navy);
  margin-top: 16px;
}

.buy-btn--outline:hover {
  background: var(--brand-navy);
  color: #fff;
}

.buy-reassurance {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 48px 0 0;
}

.buy-reassurance a {
  color: var(--brand-navy);
  text-decoration: underline;
}

@media (max-width: 780px) {
  .container--buy {
    padding: 24px var(--pad) 32px;
  }

  .buy-block__mockup--small img {
    max-width: 240px;
  }
}

/* =========================
   Stay Booked reader hub (QR / post-purchase)
   ========================= */

.container--companion {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px var(--pad) 64px;
}

.reader-hub-section {
  margin-bottom: 48px;
}

.reader-hub-section:last-of-type {
  margin-bottom: 40px;
}

.reader-hub-section__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 14px;
  font-family: "Lato", sans-serif;
}

.reader-hub-section__title:not(:first-child) {
  margin-top: 0;
}

.reader-hub-section__intro {
  margin-bottom: 20px;
}

.reader-hub-welcome .lead {
  margin-bottom: 8px;
}

.reader-hub-welcome .muted {
  margin: 0;
}

/* Reader Resources list – easy to add more items later */
.reader-resources-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reader-resource-link {
  display: block;
  padding: 16px 18px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reader-resource-link:hover {
  border-color: var(--brand-navy);
  box-shadow: var(--card-shadow-elevated);
}

.reader-resource-link__title {
  display: block;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.reader-resource-link__desc {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Stay Updated signup */
.reader-hub-signup .muted {
  margin: 0 0 8px;
}

.reader-hub-signup__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  max-width: 400px;
}

.reader-hub-signup__input {
  font: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 200px;
  flex: 1 1 200px;
}

.reader-hub-signup__input:focus {
  outline: 2px solid var(--brand-navy);
  outline-offset: 2px;
}

.reader-hub-signup__btn {
  flex-shrink: 0;
}

.reader-hub-signup__note {
  margin: 12px 0 0;
}

@media (max-width: 480px) {
  .reader-hub-signup__form {
    flex-direction: column;
    align-items: stretch;
  }
  .reader-hub-signup__input {
    min-width: 0;
  }
}

/* Site nav at bottom of reader hub */
.reader-hub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.reader-hub-nav a {
  color: var(--brand-navy);
}

.reader-hub-nav a:hover {
  text-decoration: underline;
}

/* Legacy companion classes (if still referenced elsewhere) */
.companion-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  font-size: 0.95rem;
}

.companion-nav a {
  color: var(--brand-navy);
  text-decoration: underline;
}

.companion-nav a:hover {
  color: var(--ink);
}

.footer--minimal {
  padding: 20px var(--pad);
}

.footer--minimal a {
  color: var(--brand-navy);
  text-decoration: underline;
}
