/* PREMIUM ADVISORY THEME */
:root {
  --bg-cream: #FBF9F6;
  --text-burgundy: #5C1A1B;
  --accent-gold: #D4AF37;
  --bg-warm-sand: #F4EFEA;
  --bg-charcoal: #1E1B1B;
  --text-dark: #1a1a1a;
  --white: #ffffff;
  --text-muted: #5f5a54;
  --border-soft: rgba(92, 26, 27, 0.14);
  --section-space-y: 80px;
  --section-space-y-mobile: 64px;
  --hero-space-top: 48px;
  --hero-trust-overlap: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--text-burgundy);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  color: var(--text-burgundy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 em {
  color: var(--text-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h3 {
  margin-bottom: 12px;
  color: var(--text-burgundy);
  font-size: 22px;
  line-height: 1.2;
}

h4 {
  margin-bottom: 18px;
  color: var(--text-burgundy);
  font-size: 24px;
  line-height: 1.2;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 56px;
  background: rgba(251, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  color: var(--text-burgundy);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 36px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 5px 0;
  color: var(--text-burgundy);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.nav-scrolled {
  background: var(--bg-charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-scrolled .nav-logo {
  color: var(--white);
}

.nav-scrolled .nav-links a {
  color: rgba(255,255,255,0.8);
}

.nav-scrolled .nav-links a:hover {
  color: var(--accent-gold);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-burgundy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-scrolled .hamburger span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}

/* HERO SECTION */
.hero-premium,
.hero-section {
  padding: var(--hero-space-top) 1rem 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

/* Hero Text Constraints */
.hero-section h1,
.hero-premium h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content-left p:not(.hero-lead) {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-content-left {
  align-self: start;
  padding-top: 36px;
  padding-bottom: 0;
}

.hero-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-premium-eyebrow,
.section-label,
.report-card-eyebrow {
  margin-bottom: 16px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-premium-sub,
.body-text {
  color: var(--text-muted);
  font-size: 19px;
}

.hero-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
  margin: 0 0 0 auto;
  background-color: transparent;
  box-shadow: none;
  border: none;
  object-position: bottom;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-burgundy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.btn-burgundy {
  background: var(--text-burgundy);
  color: var(--white);
}

.cta-button { display: inline-block; margin-top: 1.25rem; padding: 1rem 2rem; background-color: #eab308; color: #450a0a; text-decoration: none; font-weight: 700; border-radius: 6px; transition: background-color 0.2s ease, transform 0.1s ease; font-size: 1.125rem; border: none; }
.cta-button:hover { background-color: #ca8a04; transform: translateY(-2px); }

.cta-group {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.hero-cta-group {
  width: fit-content;
  align-items: center;
}

.contact-cta-group {
  margin-top: 30px;
}

.microcopy,
.hero-content-left .cta-group p.microcopy {
  margin: 6px 0 0;
  color: #77716b;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
}

.hero-lead { font-size: 1.25rem; color: #4b5563; margin-bottom: 2rem; line-height: 1.6; }
.hero-benefits { list-style: none; padding: 0; margin: 0 0 1.5rem 0; text-align: left; }
.hero-benefits li { font-size: 1.25rem; color: #374151; margin-bottom: 1.25rem; padding-left: 1.75rem; position: relative; }
.hero-benefits li::before { content: '\2713'; position: absolute; left: 0; color: #eab308; font-weight: bold; }

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
  padding: 18px 44px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

/* TRUST STRIP */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  padding: 22px 56px;
  background: var(--text-burgundy);
  color: var(--white);
}

@media (min-width: 901px) {
  .trust-strip {
    position: relative;
    z-index: 2;
    margin-top: calc(-1 * var(--hero-trust-overlap));
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SHARED SECTIONS */
.section-yellow,
.section-white,
.section-black,
.section-cta {
  padding: var(--section-space-y) 56px;
}

.section-yellow {
  background: var(--bg-warm-sand);
}

.section-white {
  background: var(--white);
}

.section-black {
  background: var(--bg-charcoal);
  color: var(--white);
}

.section-cta {
  background: var(--bg-cream);
}

.section-black-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.section-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.section-white-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-black h2,
.section-black .body-text {
  color: var(--white);
}

.attr {
  color: var(--text-burgundy);
  font-weight: 800;
}

/* REALITY CHECK */
.agitation-section {
  padding: var(--section-space-y) 20px;
  background: #f3e6e2;
}

.agitation-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.agitation-heading {
  grid-column: 1 / -1;
  max-width: 900px;
}

.kicker {
  display: block;
  margin-bottom: 15px;
  color: var(--text-burgundy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.agitation-heading h2 {
  margin-bottom: 0;
  color: #800000;
  font-size: 2.8rem;
  line-height: 1.2;
}

.agitation-heading h2 em {
  font-style: italic;
  font-weight: 400;
}

.agitation-body > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.6;
}

.agitation-body {
  align-self: stretch;
  padding: 32px;
  background: var(--text-burgundy);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(92, 26, 27, 0.14);
}

.quote-pull {
  margin: 0;
  padding-left: 24px;
  border-left: 4px solid var(--accent-gold);
}

.quote-pull blockquote {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.55;
}

.quote-pull figcaption {
  color: var(--accent-gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.stats-panel {
  align-self: stretch;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e7e0d8;
  border-top: 4px solid var(--accent-gold);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

.stats-source {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 28px;
  background: #fcfaf7;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
  border-top: 1px solid #ece6df;
}

.stats-source a {
  color: var(--text-burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stat-item {
  padding: 32px 28px;
}

.stat-item + .stat-item {
  border-left: 1px solid #ece6df;
}

.stat-item h3 {
  min-height: auto;
  margin: 0 0 10px 0;
  color: #800000;
  font-size: 1.6rem;
  line-height: 1.2;
}

.stat-item p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.process-card {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid #e7e0d8;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.process-num {
  margin-bottom: 18px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* DELIVERABLE */
.deliverable-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.dl-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.dl-text strong,
.dl-text span {
  display: block;
}

.dl-text strong {
  margin-bottom: 4px;
  color: var(--white);
}

.dl-text span {
  color: rgba(255, 255, 255, 0.72);
}

.report-card {
  padding: 40px;
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid #eee;
  border-radius: 8px;
}

.report-card-title {
  color: var(--text-burgundy);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.report-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 12px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--text-burgundy);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.report-hr {
  height: 1px;
  margin: 28px 0 12px;
  background: #ece7df;
}

.report-row {
  padding: 16px 0;
  border-bottom: 1px solid #ece7df;
}

.report-row-title {
  color: var(--text-burgundy);
  font-weight: 800;
}

/* CTA */
.prepare-box {
  padding: 36px;
  background: var(--white);
  border: 1px solid #e7e0d8;
  border-radius: 8px;
}

.prepare-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  nav {
    align-items: center;
    flex-direction: row;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu.open {
    position: fixed;
    top: 57px;
    right: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px 24px;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .mobile-menu a {
    padding: 10px 0;
    color: var(--text-burgundy);
    font-weight: 600;
    text-decoration: none;
  }

  .hero-premium {
    padding-top: calc(var(--section-space-y-mobile) + 56px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-content-left {
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .hero-img {
    margin: 0 auto;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    top: 0;
    padding: 16px 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-premium,
  .agitation-section,
  .section-white,
  .section-black,
  .section-cta {
    padding-top: var(--section-space-y-mobile);
    padding-right: 24px;
    padding-bottom: var(--section-space-y-mobile);
    padding-left: 24px;
  }

  .hero-premium {
    padding-bottom: 0;
  }

  .hero-premium-grid,
  .agitation-container,
  .section-black-inner,
  .section-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .agitation-heading h2 {
    font-size: 2.2rem;
  }

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

@media (max-width: 560px) {
  nav {
    align-items: center;
    flex-direction: row;
    gap: 0;
  }

  .trust-strip {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding-right: 24px;
    padding-left: 24px;
    text-align: center;
  }

  .trust-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    justify-content: initial;
    width: min(100%, 320px);
    text-align: left;
  }

  .trust-item svg {
    justify-self: center;
  }

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

  .report-card,
  .prepare-box,
  .process-card {
    padding: 24px;
  }

  .agitation-body {
    padding: 24px;
  }

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

  .stat-item + .stat-item {
    border-top: 1px solid #ece6df;
    border-left: 0;
  }

  .cta-group {
    align-items: center;
    text-align: center;
  }
}

.bottom-footer { background: var(--bg-charcoal); color: rgba(255,255,255,0.7); text-align: center; padding: 60px 20px; font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); }
.bottom-footer .logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 16px; font-weight: 700; }
.bottom-footer .logo span { color: var(--accent-gold); }
.bottom-footer p { margin-bottom: 8px; }

/* PROBLEM / AGITATION SECTION */
.bg-offwhite {
  background: var(--bg-warm-sand);
}

.bg-maroon {
  background: var(--text-burgundy);
}

.bg-white {
  background: var(--white);
}

.text-gold {
  color: #9a7100;
}

.text-maroon {
  color: var(--text-burgundy);
}

.text-white {
  color: var(--white);
}

.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-space-y) 20px;
}

.eyebrow {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-intro {
  max-width: 800px;
  margin: 15px 0 40px;
  color: #444;
  font-size: 1.1rem;
}

.agitation-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: stretch;
}

.quote-card-solid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-left: 5px solid #e5c158;
  border-radius: 8px;
}

.quote-card-solid blockquote {
  margin: 0 0 20px;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.4;
}

.quote-card-solid .quote-author {
  margin: 0;
  color: #e5c158;
  font-weight: 700;
}

.stats-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stats-data {
  display: flex;
  flex: 1;
  padding: 40px 30px;
}

.stats-data .stat-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.stat-divider {
  width: 1px;
  margin: 0 25px;
  background-color: #e0e0e0;
}

.stat-number {
  display: flex;
  align-items: baseline;
  min-height: 3.1rem;
  margin-bottom: 10px;
  font-size: 2.8rem;
  font-weight: 900;
  gap: 0.25em;
  line-height: 1.1;
}

.stat-number small {
  font-size: 0.5em;
  font-weight: 800;
}

.stat-label {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

.stats-footer {
  padding: 15px 30px;
  background-color: var(--white);
  color: #777;
  border-top: 1px solid #e0e0e0;
  font-size: 0.8rem;
}

.stats-footer p {
  margin: 0;
}

.stats-footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .hero-premium {
    padding-top: calc(var(--section-space-y-mobile) + 56px);
  }

  .section-wrapper {
    padding: var(--section-space-y-mobile) 24px;
  }

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

  .stats-data {
    flex-direction: column;
    padding: 30px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
    margin: 25px 0;
  }

  .stat-number {
    font-size: 2.4rem;
  }
}

/* EBOOK PITCH */
.ebook-section {
  background: linear-gradient(135deg, #5c1a1b 0%, #351719 100%);
  color: var(--white);
}

.ebook-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.ebook-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 22px;
  background: #fbefdc;
  border: 1px solid #d6a94f;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.mockup-placeholder,
.ebook-image {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  border-radius: 5px 12px 12px 5px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.18), 18px 18px 36px rgba(0, 0, 0, 0.32);
}

.mockup-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 48px 38px;
  background: linear-gradient(145deg, #fff9ec 0%, #efd7b1 100%);
  color: var(--text-burgundy);
  border: 2px solid #d6a94f;
  border-left: 16px solid #3f1012;
  text-align: left;
  transition: transform 0.3s ease;
}

.mockup-placeholder::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(135deg, #681a1b, #3f1012);
  border-bottom: 3px solid #d6a94f;
  content: "";
}

.mockup-placeholder:hover {
  transform: translateY(-5px);
}

.mockup-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: #8a641d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mockup-title {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 15px;
  color: var(--text-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.12;
}

.mockup-subtitle {
  position: relative;
  z-index: 1;
  color: #4d3b2c;
  font-size: 1rem;
  line-height: 1.5;
}

.ebook-image {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: 0 8px 20px rgba(63, 16, 18, 0.22);
}

.ebook-content .eyebrow {
  color: #e5c158;
}

.ebook-content h2 {
  margin: 10px 0 20px;
  color: var(--white);
}

.ebook-content .section-intro {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.benefit-list {
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 35px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.5;
}

.benefit-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #e5c158;
  content: "\2713";
  font-size: 1.3rem;
  font-weight: 900;
}

.benefit-list strong {
  color: var(--white);
}

.cta-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
}

.ebook-content .microcopy {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .ebook-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mockup-placeholder,
  .ebook-image {
    max-width: 300px;
  }

  .ebook-visual {
    padding: 14px;
    border-radius: 12px;
  }
}

/* DONE-FOR-YOU SERVICE */
.service-section {
  background: #f7efe4;
}

.service-grid {
  display: grid;
  grid-template-areas:
    "eyebrow ."
    "intro visual"
    "details visual"
    "disclaimer cta";
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px 60px;
  align-items: start;
}

.service-eyebrow {
  grid-area: eyebrow;
  margin-bottom: -18px;
}

.service-intro {
  grid-area: intro;
}

.service-intro h2 {
  margin: 0 0 22px;
}

.service-intro p {
  margin: 0;
  color: #514a43;
  font-size: 1.08rem;
  line-height: 1.65;
}

.service-visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.service-image {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 1px solid rgba(92, 26, 27, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(51, 24, 21, 0.18);
  object-fit: contain;
}

.service-details {
  grid-area: details;
  align-self: start;
}

.service-list {
  display: grid;
  gap: 18px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 34px;
}

.service-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--text-burgundy);
  color: #f4d37c;
  border-radius: 50%;
  content: "\2713";
  font-size: 0.78rem;
  font-weight: 900;
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list strong {
  margin-bottom: 4px;
  color: var(--text-burgundy);
  font-size: 1.02rem;
}

.service-list span {
  color: #5a534c;
  line-height: 1.5;
}

.service-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-self: center;
  width: fit-content;
  margin-top: 6px;
}

.service-cta .cta-button {
  margin-top: 0;
  min-height: 60px;
  padding: 18px 38px;
  font-size: 1.2rem;
}

.service-cta .microcopy {
  margin-top: 8px;
  color: #71685f;
  font-size: 0.76rem;
}

.service-disclaimer {
  grid-area: disclaimer;
  max-width: 620px;
  margin: 6px 0 0;
  color: #756d65;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-areas:
      "eyebrow"
      "intro"
      "visual"
      "details"
      "cta"
      "disclaimer";
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-image {
    max-width: 480px;
  }

  .service-eyebrow {
    margin-bottom: -26px;
  }
}

/* LARGE DESKTOPS */
@media (min-width: 1440px) {
  :root {
    --section-space-y: 112px;
    --hero-space-top: 64px;
  }

  .container,
  .hero-premium-grid,
  .section-wrapper,
  .section-black-inner,
  .section-cta-inner,
  .section-white-inner {
    max-width: 1400px;
  }

  .hero-grid {
    gap: 72px;
  }

  .hero-premium h1 {
    font-size: clamp(3.5rem, 3.3vw, 4.25rem);
  }

  #problem,
  .ebook-section,
  .service-section,
  .section-black,
  .section-cta {
    display: grid;
    align-items: center;
    min-height: clamp(720px, 80svh, 960px);
  }
}

/* OPTION 2 COLUMN BALANCE */
.service-grid {
  display: grid;
  grid-template-areas: none;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: start;
}

.service-copy,
.service-action {
  display: flex;
  flex-direction: column;
}

.service-eyebrow {
  margin-bottom: 10px;
}

.service-details {
  margin-top: 30px;
}

.service-action-spacer {
  visibility: hidden;
  margin-bottom: 10px;
}

.service-cta {
  align-self: center;
  margin-top: 32px;
}

.service-disclaimer {
  margin-top: 26px;
}

@media (max-width: 768px) {
  .service-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service-copy,
  .service-action {
    display: contents;
  }

  .service-action-spacer {
    display: none;
  }

  .service-eyebrow {
    order: 1;
    margin-bottom: 10px;
  }

  .service-intro {
    order: 2;
  }

  .service-visual {
    order: 3;
    margin-top: 36px;
  }

  .service-details {
    order: 4;
    margin-top: 36px;
  }

  .service-cta {
    order: 5;
    align-self: center;
    margin-top: 32px;
  }

  .service-disclaimer {
    order: 6;
    margin-top: 22px;
  }
}
