:root {
  --paper: #fbf7f1;
  --cream: #f3eadf;
  --sage: #6d8773;
  --sage-dark: #344d3d;
  --clay: #b7775d;
  --clay-dark: #87543f;
  --ink: #26322a;
  --muted: #657064;
  --white: #ffffff;
  --line: rgba(38, 50, 42, 0.14);
  --shadow: 0 24px 70px rgba(38, 50, 42, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(251, 247, 241, 0.94);
  box-shadow: 0 12px 38px rgba(38, 50, 42, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.scrolled .nav a:hover,
.site-header.menu-active .nav a:hover {
  background: rgba(109, 135, 115, 0.12);
}

.nav-action {
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) clamp(18px, 6vw, 84px) 86px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 77% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(38, 50, 42, 0.92) 0%, rgba(38, 50, 42, 0.68) 34%, rgba(38, 50, 42, 0.1) 66%),
    linear-gradient(180deg, rgba(38, 50, 42, 0.18), rgba(38, 50, 42, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f2c3ad;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 540px;
  font-size: clamp(2.45rem, 5.25vw, 4.55rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin: 14px 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button.primary:hover {
  background: var(--clay-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: 34px 0;
  background: var(--sage-dark);
  color: var(--white);
}

.intro .eyebrow {
  color: #d8b19f;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  align-items: center;
  gap: clamp(24px, 6vw, 80px);
}

.intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.about-person {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: min(100%, 460px);
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(109, 135, 115, 0.3);
  border-radius: var(--radius);
  color: var(--sage-dark);
  background: rgba(109, 135, 115, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(76px, 10vw, 124px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 88px);
}

.text-stack p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-stack p:last-child {
  margin-bottom: 0;
}

.muted {
  background: var(--cream);
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

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

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.card span {
  display: inline-block;
  color: var(--clay-dark);
  font-weight: 800;
}

.card p,
.steps p,
.contact p,
.faq p,
.note {
  color: var(--muted);
}

.note {
  margin: 22px 0 0;
  font-size: 0.95rem;
}

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

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

.steps article {
  position: relative;
  padding: 24px 24px 24px 58px;
  border-top: 1px solid var(--line);
}

.steps article::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 22px;
  left: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-weight: 800;
}

.steps strong {
  display: block;
  font-size: 1.05rem;
}

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

.ebook-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.ebook-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.ebook-card {
  padding: 28px;
  border: 1px solid rgba(109, 135, 115, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(243, 234, 223, 0.74)),
    var(--white);
  box-shadow: var(--shadow);
}

.ebook-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ebook-card h3 {
  margin-top: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
}

.ebook-card p {
  color: var(--muted);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.72;
}

.quote-band {
  padding: clamp(66px, 8vw, 100px) 0;
  color: var(--white);
  background: var(--sage-dark);
}

blockquote {
  max-width: 920px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.1;
}

.testimonials {
  background: var(--cream);
}

.testimonials .section-heading p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

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

.testimonial {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(109, 135, 115, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.testimonial p {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.22;
}

.testimonial span {
  display: block;
  margin-top: 28px;
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.accordion {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  content: "+";
  color: var(--clay);
  font-size: 1.4rem;
}

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

details p {
  margin: -4px 0 20px;
}

.contact {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--clay);
  color: var(--white);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.contact-actions {
  margin-top: 0;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.82);
  background: #1f2a23;
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(480px, 100%);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(38, 50, 42, 0.92), rgba(38, 50, 42, 0.54)),
      linear-gradient(180deg, rgba(38, 50, 42, 0.18), rgba(38, 50, 42, 0.36));
  }

  .intro-grid,
  .about-grid,
  .split,
  .ebook-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: 2;
  }

  .about-copy {
    order: 1;
  }

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

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

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

  .testimonial {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 86vh;
    padding: calc(var(--header-height) + 48px) 18px 64px;
  }

  .hero-image {
    object-position: 16% center;
  }

  .hero-content {
    width: min(236px, 100%);
  }

  h1 {
    max-width: 236px;
    font-size: clamp(1.82rem, 6.8vw, 2.12rem);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 252px;
    font-size: 0.92rem;
  }

  .button {
    width: 100%;
  }

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

  .card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }

}
