:root {
  --brown-950: #24140f;
  --brown-850: #3a2118;
  --brown-750: #573426;
  --brown-600: #7b503d;
  --brown-200: #d7c3b6;
  --white: #fffdf9;
  --paper: #f8f1ea;
  --line: rgba(87, 52, 38, 0.18);
  --shadow: 0 24px 70px rgba(36, 20, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown-950);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  color: var(--brown-950);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 12px 34px rgba(36, 20, 15, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
}

.brand-symbol {
  width: 72px;
  height: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.96;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--brown-950);
  background: var(--white);
  border-radius: 999px;
}

.site-header.scrolled .nav-cta,
.site-header.menu-visible .nav-cta {
  color: var(--white);
  background: var(--brown-750);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 130px clamp(20px, 5vw, 72px) 70px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 20, 15, 0.88) 0%, rgba(36, 20, 15, 0.58) 36%, rgba(36, 20, 15, 0.18) 100%),
    url("assets/hero-florescer.png") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brown-200);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.meeting-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 7rem);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--brown-950);
  background: var(--white);
}

.button-secondary {
  color: var(--white);
  background: var(--brown-750);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.7);
}

section {
  padding: 88px clamp(20px, 5vw, 72px);
}

.band {
  background: var(--paper);
}

.intro {
  display: grid;
  grid-template-columns: minmax(230px, 390px) minmax(300px, 620px) minmax(230px, 360px);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.intro-copy p,
.meeting-copy p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
}

.intro-copy p + p {
  margin-top: 18px;
}

.intro-image {
  position: relative;
  margin: 0;
  min-height: 420px;
}

.intro-image::before {
  content: "";
  position: absolute;
  inset: 22px -14px -14px 22px;
  border: 1px solid var(--brown-200);
  border-radius: 8px;
}

.intro-image img {
  position: relative;
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(36, 20, 15, 0.14);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.meeting-copy h2,
.final-cta h2 {
  color: var(--brown-850);
  font-size: clamp(2rem, 4vw, 4rem);
}

.plan-heading-note {
  display: block;
  margin-top: 10px;
  font-family: Inter, sans-serif;
  font-size: 0.36em;
  font-weight: 700;
  line-height: 1.35;
}

.how,
.plans,
.meeting,
.final-cta {
  background: var(--white);
}

.steps,
.benefit-grid,
.plan-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.steps article,
.plan,
.book-row article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps article {
  min-height: 260px;
  padding: 28px;
}

.steps span {
  color: var(--brown-600);
  font-weight: 900;
}

h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
}

.steps p,
.plan p,
.book-row small {
  color: rgba(36, 20, 15, 0.74);
  line-height: 1.65;
}

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

.benefit-grid p {
  min-height: 108px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 22px;
  border-left: 4px solid var(--brown-750);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(36, 20, 15, 0.06);
  font-weight: 800;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 420px));
}

.plan {
  position: relative;
  padding: 32px;
}

.plan.featured {
  color: var(--white);
  background: var(--brown-850);
  box-shadow: var(--shadow);
}

.plan.featured p,
.plan.featured .price span {
  color: rgba(255, 253, 249, 0.78);
}

.price {
  margin: 10px 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.price span {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.meeting {
  display: grid;
  grid-template-columns: minmax(190px, 300px) minmax(280px, 620px) minmax(220px, 340px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.meeting-date {
  padding: 30px;
  color: var(--white);
  background: var(--brown-850);
  border-radius: 8px;
}

.meeting-date span,
.meeting-date small {
  display: block;
  color: var(--brown-200);
  font-weight: 800;
}

.meeting-date strong {
  display: block;
  margin: 10px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.meeting-copy .button {
  margin-top: 26px;
}

.book-authors {
  margin: 10px 0 22px;
  color: var(--brown-600);
  font-weight: 800;
}

.book-cover-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(36, 20, 15, 0.12);
}

.book-cover-wrap img {
  width: min(100%, 280px);
  height: auto;
  display: block;
  border-radius: 4px;
  filter: drop-shadow(0 22px 28px rgba(36, 20, 15, 0.22));
}

.book-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 34px;
  overflow-x: auto;
  padding: 4px 0 12px;
}

.book-row article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  color: var(--brown-950);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(36, 20, 15, 0.1);
}

.book-row span {
  display: block;
  margin-top: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.1;
}

.book-row small {
  margin-top: 6px;
  color: rgba(36, 20, 15, 0.68);
  line-height: 1.35;
}

.book-row img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
}

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

.final-cta p:not(.eyebrow) {
  max-width: 580px;
  margin: 18px auto 28px;
  line-height: 1.7;
}

.final-cta .eyebrow {
  color: var(--brown-600);
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-button {
  min-width: 156px;
  color: var(--white);
  border-radius: 999px;
  font-size: 1.05rem;
}

.whatsapp-button {
  background: #5a9f68;
}

.instagram-button {
  background: #9b5a6b;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--brown-950);
}

@media (max-width: 880px) {
  .menu-button {
    display: block;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    color: var(--brown-950);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-cta {
    color: var(--white);
    background: var(--brown-750);
  }

  .hero {
    min-height: 92vh;
    padding-top: 120px;
  }

  .intro,
  .meeting,
  .steps,
  .benefit-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .intro-image {
    max-width: 520px;
    min-height: auto;
  }

  .intro-image img {
    height: min(72vw, 430px);
  }

  .book-cover-wrap {
    min-height: auto;
    padding: 26px;
  }
}

@media (max-width: 560px) {
  section {
    padding: 68px 20px;
  }

  .site-header {
    min-height: 66px;
    padding: 14px 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand-symbol {
    width: 54px;
    height: 31px;
  }

  .brand-mark {
    font-size: 1.22rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .book-row {
    grid-template-columns: repeat(6, 170px);
  }
}
