:root {
  --paper: #fbfaf7;
  --cream: #f4eee4;
  --sage: #91ad86;
  --sage-dark: #4e6b52;
  --ink: #313234;
  --muted: #6f716c;
  --line: rgba(49, 50, 52, 0.12);
  --rose: #b95b53;
  --gold: #d7a940;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(49, 50, 52, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(143, 174, 140, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #fffdf9 52%, var(--paper));
  background-size: 92px 92px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  min-height: 76px;
  padding: 0.75rem clamp(1rem, 5vw, 4rem);
  background: rgba(251, 250, 247, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(215px, 48vw);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--sage-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  min-height: calc(100svh - 76px);
  padding: calc(76px + clamp(2.2rem, 5vw, 4.5rem)) clamp(1.2rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: min(60vw, 760px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(143, 174, 140, 0.25), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 19% auto auto 4%;
  width: min(34vw, 380px);
  aspect-ratio: 1.35;
  border: 1px solid rgba(83, 111, 85, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.hero__media {
  position: relative;
  align-self: stretch;
  display: grid;
  align-items: center;
  min-height: 440px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
  animation: fadeIn 900ms ease 120ms both;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 8% 0 8% 22%;
  background: linear-gradient(180deg, rgba(143, 174, 140, 0.20), rgba(215, 169, 64, 0.10));
  border-radius: 999px 0 0 999px;
  pointer-events: none;
}

.hero__media img {
  position: relative;
  width: min(390px, 100%);
  margin-left: auto;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: none;
}

.hero__content {
  position: relative;
  max-width: 760px;
  padding-left: clamp(0rem, 4vw, 3rem);
  animation: rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 6.8vw, 6.2rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.9vw, 3.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.hero__lead {
  max-width: 660px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.86rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  box-shadow: 0 16px 34px rgba(83, 111, 85, 0.24);
}

.button--secondary {
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(83, 111, 85, 0.28);
}

.hero__note {
  position: relative;
  display: grid;
  gap: 0.15rem;
  width: fit-content;
  max-width: 100%;
  min-width: min(330px, 100%);
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(83, 111, 85, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(49, 50, 52, 0.08);
}

.hero__note span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero__note strong {
  font-size: 1.05rem;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 6vw, 5rem);
}

.intro,
.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.offer {
  display: block;
}

.offer .section__text {
  max-width: 980px;
  margin-bottom: clamp(2rem, 5vw, 3.6rem);
}

.offer .section__text h2 {
  max-width: 900px;
}

.intro__copy,
.about__text,
.forms__intro,
.final-cta {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro__copy p,
.about__text p {
  margin: 0 0 1rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(1.2rem, 6vw, 5rem);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.trust-band div {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  display: block;
  font-size: 1.08rem;
}

.trust-band span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 0;
}

.offer-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 285px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 45px rgba(49, 50, 52, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.offer-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(49, 50, 52, 0.08);
}

.offer-item .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--sage-dark);
  background: rgba(143, 174, 140, 0.18);
  font-weight: 800;
}

.offer-item h3,
.offer-item p {
  margin: 0;
}

.offer-item p,
.form-list p,
.faq p {
  color: var(--muted);
}

.path {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 85% 12%, rgba(215, 169, 64, 0.20), transparent 24rem),
    linear-gradient(135deg, rgba(143, 174, 140, 0.22), rgba(241, 234, 223, 0.78)),
    var(--cream);
}

.path__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(83, 111, 85, 0.22);
}

.steps article {
  position: relative;
  min-height: 250px;
  padding: 1.65rem 1.35rem;
  border-right: 1px solid rgba(83, 111, 85, 0.22);
  border-radius: 0;
  background: transparent;
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 800;
}

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

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(2rem, 7vw, 5.5rem);
  align-items: center;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(143, 174, 140, 0.08) 48% 100%);
}

.about__mark {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 340px;
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid rgba(83, 111, 85, 0.16);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 169, 64, 0.14), transparent 11rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(143, 174, 140, 0.14));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about__mark::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 13rem;
  aspect-ratio: 1;
  border: 1px solid rgba(83, 111, 85, 0.16);
  border-radius: 50%;
}

.about__mark span {
  position: relative;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 1;
}

.about__mark p {
  position: relative;
  max-width: 300px;
  margin: 1.2rem 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
}

.book {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 91, 83, 0.10), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 238, 228, 0.62));
}

.book__cover {
  position: relative;
  justify-self: center;
  width: min(310px, 72vw);
}

.book__cover::before {
  content: "";
  position: absolute;
  inset: 9% -12% -9% 12%;
  border: 1px solid rgba(83, 111, 85, 0.20);
  border-radius: 2rem;
}

.book__cover img {
  position: relative;
  width: 100%;
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.book__text {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.08rem;
}

.availability {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(83, 111, 85, 0.20);
  border-radius: 1rem;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.forms {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, #ffffff, rgba(244, 238, 228, 0.62));
}

.forms__intro {
  max-width: 850px;
}

.form-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
  border: 0;
  background: transparent;
}

.form-list article {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--white);
}

.form-list article:nth-child(1),
.form-list article:nth-child(2) {
  grid-column: span 3;
}

.form-list article:nth-child(n+3) {
  grid-column: span 2;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
  margin-top: auto;
}

.form-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: none;
}

.form-actions a:hover {
  text-decoration: underline;
}

.email-note {
  margin-top: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(83, 111, 85, 0.18);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(143, 174, 140, 0.16), rgba(215, 169, 64, 0.12));
}

.email-note p {
  max-width: 850px;
  color: var(--muted);
}

.legal-note {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.faq__items {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1.25rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.final-cta {
  margin: 0 clamp(1.2rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 2rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(49, 50, 52, 0.84), rgba(83, 111, 85, 0.86)),
    var(--sage-dark);
  overflow: hidden;
}

.final-cta .eyebrow,
.final-cta p,
.final-cta a,
.final-cta span {
  color: var(--white);
}

.final-cta p {
  max-width: 760px;
}

.final-cta__fineprint {
  margin-top: 1rem;
  font-size: 0.92rem;
  opacity: 0.82;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin: 1.4rem 0 1.8rem;
}

.contact-lines a {
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1.2rem, 6vw, 5rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1050px) {
  .hero,
  .intro,
  .offer,
  .book,
  .about,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: calc(76px + 2rem);
  }

  .hero__media {
    order: 2;
    min-height: auto;
    border-left: 0;
    padding: 2rem 0 4rem;
  }

  .hero__media::before {
    inset: 14% 10% 12% 18%;
  }

  .hero__media img {
    width: min(520px, 94%);
    margin: 0;
  }

  .hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
  }

  .steps,
  .offer__grid,
  .form-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps article:nth-child(2n),
  .steps article:last-child {
    border-right: 0;
  }

  .form-list article:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .trust-band,
  .steps,
  .offer__grid,
  .form-list {
    grid-template-columns: 1fr;
  }

  .trust-band {
    margin-inline: 1rem;
  }

  .steps article,
  .form-list article {
    min-height: auto;
    border-right: 0;
  }

  .offer-item {
    min-height: auto;
  }

  .about {
    background: transparent;
  }

  .about__mark {
    min-height: 260px;
    border-radius: 1.25rem;
  }

  .book__cover {
    justify-self: start;
    width: min(260px, 78vw);
  }

  .final-cta {
    margin-inline: 1rem;
    border-radius: 1.4rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
