:root {
  --rose: #a96260;
  --rose-dark: #8f4f4e;
  --cream: #ece4da;
  --cream-soft: #f8f4ef;
  --taupe: #c1b2a4;
  --brown: #51453e;
  --dark: #383029;
  --text: #3f3935;
  --white: #ffffff;
  --border: rgba(81, 69, 62, 0.15);
  --shadow: 0 24px 70px rgba(81, 69, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--dark);
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.25rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1240px, calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.header-cta {
  padding: 12px 20px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 88px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f1cec8;
}

.hero-date {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 26px;
  gap: 10px;
}

.hero-date span {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--brown);
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 15px 28px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rose);
  border-radius: 5px;
  color: var(--white);
  background: var(--rose);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.button:focus-visible,
.header-cta:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(169, 98, 96, 0.35);
  outline-offset: 4px;
}

.hero-portrait {
  position: relative;
  margin: 0;
  text-align: center;
}

.portrait-ring {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(169, 98, 96, 0.36);
  border-radius: 50%;
}

.portrait-ring::before {
  position: absolute;
  inset: -18px 30px 30px -18px;
  z-index: -1;
  border-radius: 50%;
  background: var(--cream);
  content: "";
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-portrait figcaption {
  display: inline-flex;
  margin: -30px auto 0;
  padding: 12px 20px;
  flex-direction: column;
  border-radius: 6px;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(81, 69, 62, 0.15);
  font-size: 0.8rem;
  line-height: 1.35;
  position: relative;
}

.hero-portrait figcaption strong {
  color: var(--dark);
  font-family: "Marcellus", Georgia, serif;
  font-size: 1.2rem;
}

.truth-strip {
  padding: 30px 24px;
  color: var(--white);
  background: var(--brown);
  text-align: center;
}

.truth-strip p {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.truth-strip strong {
  color: #f2c5bd;
}

.registration {
  display: grid;
  padding: clamp(58px, 7vw, 92px) max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
  color: var(--white);
  background: var(--rose);
  scroll-margin-top: 20px;
}

.registration h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.registration-copy > p:not(.eyebrow) {
  max-width: 500px;
}

.registration-facts {
  display: flex;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.registration-facts li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-card {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 14px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 25px 60px rgba(56, 48, 41, 0.24);
}

getresponse-form {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  min-height: 385px !important;
  overflow: visible !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
}

getresponse-form[data-ready] .form-loading {
  display: none;
}

.form-loading {
  padding: 40px 20px;
  color: #716760;
  text-align: center;
}

.form-loading p {
  margin-bottom: 14px;
}

.form-fallback {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--rose);
  font-weight: 700;
  text-decoration: none;
}

.form-fallback:hover,
.form-fallback:focus-visible {
  background: var(--rose-dark);
}

.privacy-note {
  margin-top: 18px;
  color: #746a64;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.privacy-note a {
  text-underline-offset: 2px;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

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

.section-heading h2 {
  margin-bottom: 28px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.problem-copy {
  font-size: 1.06rem;
}

.problem-copy p + p {
  margin-top: 24px;
}

.highlight-copy {
  padding-left: 24px;
  border-left: 4px solid var(--rose);
  color: var(--dark);
  font-weight: 700;
}

.learning {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1120px) / 2));
  padding-left: max(24px, calc((100vw - 1120px) / 2));
  background: var(--cream-soft);
}

.learning-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.learning-grid article {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(81, 69, 62, 0.07);
}

.learning-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
}

.learning-grid h3 {
  margin-bottom: 12px;
}

.learning-grid p {
  color: #665e59;
  font-size: 0.92rem;
  line-height: 1.55;
}

.centered-cta {
  margin-top: 40px;
  text-align: center;
}

.testimonial {
  width: 100%;
  max-width: none;
  padding-right: 24px;
  padding-left: 24px;
  background: var(--cream-soft);
}

.testimonial img {
  display: block;
  width: min(680px, 100%);
  height: auto !important;
  max-height: none;
  aspect-ratio: 611 / 382;
  margin: 18px auto 0;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.faq-list {
  max-width: 850px;
  margin: 32px auto 0;
}

.faq-list details {
  border-top: 1px solid var(--border);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 4px;
  color: var(--dark);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--rose);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 48px 22px 4px;
}

.final-cta {
  padding: clamp(70px, 10vw, 120px) 24px;
  color: var(--white);
  background: var(--brown);
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 32px;
  color: var(--white);
}

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--brown);
  background: var(--cream);
}

.footer {
  display: flex;
  padding: 24px max(24px, calc((100vw - 1120px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #dfd7d0;
  background: var(--dark);
  font-size: 0.78rem;
}

.footer nav {
  display: flex;
  gap: 20px;
}

.footer a {
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .hero,
  .registration,
  .problem {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-date {
    justify-content: center;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-portrait {
    width: min(390px, 84vw);
    margin: 0 auto;
  }

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

  .registration-copy {
    text-align: center;
  }

  .registration-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .registration-facts {
    justify-content: center;
  }

  .problem {
    gap: 22px;
  }

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

}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: calc(100% - 32px);
    min-height: 86px;
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .hero,
  .section {
    width: calc(100% - 36px);
  }

  .hero {
    padding: 28px 0 58px;
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .hero-date {
    margin: 24px 0 20px;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    width: min(290px, 82vw);
  }

  .truth-strip {
    padding: 24px 20px;
  }

  .registration {
    padding: 52px 18px;
    gap: 30px;
  }

  .form-card {
    padding: 24px 16px;
  }

  getresponse-form {
    min-height: 430px !important;
  }

  .section {
    padding: 70px 0;
  }

  .learning,
  .testimonial {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .learning-grid {
    margin-top: 30px;
  }

  .learning-grid article {
    padding: 24px;
  }

  .footer {
    padding: 22px 18px;
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
