:root {
  --ink: #25130f;
  --muted: #755f58;
  --cream: #fffaf0;
  --paper: #f5ead7;
  --paper-deep: #ead8bb;
  --wine: #48160d;
  --wine-dark: #210906;
  --wine-soft: #6b2515;
  --gold: #d9b76f;
  --gold-light: #f3dda2;
  --gold-pale: #fff2c7;
  --white: #ffffff;
  --success: #24613c;
  --danger: #a43124;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 22px 70px rgba(31, 9, 6, 0.16);
  --shadow-deep: 0 30px 90px rgba(22, 5, 3, 0.36);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.gtm-noscript {
  position: absolute;
  visibility: hidden;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--wine-dark);
  background: var(--gold-light);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 10;
  color: #4b220f;
  background: linear-gradient(90deg, #cba45c, #f4daa0 48%, #cba45c);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.topbar__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 64px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.topbar__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__inner > span > span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--gold-pale);
  background: var(--wine);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 42px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(218, 174, 91, 0.14), transparent 28%),
    radial-gradient(circle at 88% 66%, rgba(142, 54, 25, 0.26), transparent 35%),
    linear-gradient(125deg, #170503 0%, #341008 47%, #210805 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: 18%;
  left: 46%;
  border: 1px solid rgba(232, 199, 126, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(232, 199, 126, 0.028),
    0 0 0 155px rgba(232, 199, 126, 0.018);
}

.hero__grid {
  display: grid;
  min-height: calc(100svh - 42px);
  padding-block: clamp(42px, 6vw, 84px);
  align-items: center;
  grid-template-columns: minmax(340px, 0.87fr) minmax(440px, 1.13fr);
  gap: clamp(42px, 6vw, 92px);
}

.hero__art {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
  border-radius: 3px 58px 3px 58px;
  box-shadow: 0 34px 58px rgba(0, 0, 0, 0.37);
}

.hero__art::before,
.hero__art::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero__art::before {
  width: 90px;
  height: 90px;
  top: -16px;
  left: -16px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.hero__art::after {
  width: 90px;
  height: 90px;
  right: -16px;
  bottom: -16px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.hero__art img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.hero__art-border {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(243, 221, 162, 0.33);
  border-radius: 1px 48px 1px 48px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.eyebrow {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--dark {
  color: var(--wine-soft);
}

.hero h1,
.section-heading h2,
.closing h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: inherit;
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 24px;
  color: rgba(255, 248, 236, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.hero__proofs {
  display: flex;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-block: 1px solid rgba(236, 205, 137, 0.23);
}

.hero__proofs li {
  display: grid;
  min-width: 0;
  padding: 13px 20px 13px 0;
  flex: 1;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 8px;
}

.hero__proofs li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(236, 205, 137, 0.23);
}

.hero__proofs strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.hero__proofs span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-card {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 246, 0.98), rgba(245, 234, 215, 0.98)),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-lg) 5px var(--radius-lg) 5px;
  box-shadow: var(--shadow-deep);
}

.form-card::after {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -88px;
  right: -78px;
  content: "";
  border: 1px solid rgba(107, 37, 21, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(107, 37, 21, 0.035);
}

.form-card__heading {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 14px;
}

.form-card__ornament {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-light);
  background: var(--wine);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(72, 22, 13, 0.08);
}

.form-card h2 {
  margin-bottom: 3px;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.form-card__heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  min-width: 0;
}

.field--phone,
.submit-button,
.form-status,
.form-privacy {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin: 0 0 6px 3px;
  color: #4d3831;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.field label span {
  color: var(--wine-soft);
}

.field input {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d8c8af;
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field input::placeholder {
  color: #9a8981;
}

.field input:hover {
  border-color: #b9a17d;
}

.field input:focus {
  background: var(--white);
  border-color: var(--wine-soft);
  box-shadow: 0 0 0 4px rgba(107, 37, 21, 0.1);
}

.field input:invalid:not(:placeholder-shown) {
  border-color: rgba(164, 49, 36, 0.65);
}

.field--phone .iti {
  display: block;
  width: 100%;
}

.field--phone .iti__selected-flag {
  padding-left: 14px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.field--phone .iti--separate-dial-code .iti__selected-flag {
  background: rgba(72, 22, 13, 0.055);
}

.field--phone .iti--separate-dial-code.iti--show-flags input {
  padding-left: 100px !important;
}

.field--phone .iti__country-list {
  z-index: 30;
  max-width: min(430px, calc(100vw - 48px));
  color: var(--ink);
  white-space: normal;
  border: 1px solid #d8c8af;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.submit-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 58px;
  margin-top: 2px;
  padding: 13px 20px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-pale);
  background: linear-gradient(135deg, #3c100a, #6a2414 70%, #421109);
  border: 1px solid #8b4d2d;
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(72, 22, 13, 0.25),
    0 0 0 3px var(--gold-light) inset,
    0 0 0 4px rgba(72, 22, 13, 0.25);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.submit-button::before {
  position: absolute;
  width: 110px;
  height: 200%;
  left: -150px;
  content: "";
  opacity: 0.3;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: rotate(20deg);
  transition: left 600ms ease;
}

.submit-button:hover {
  box-shadow:
    0 16px 34px rgba(72, 22, 13, 0.31),
    0 0 0 3px var(--gold-light) inset,
    0 0 0 4px rgba(72, 22, 13, 0.25);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.submit-button:hover::before {
  left: calc(100% + 50px);
}

.submit-button:focus-visible,
.secondary-cta:focus-visible,
.mobile-cta:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.submit-button:disabled {
  cursor: wait;
  filter: grayscale(0.25);
  transform: none;
}

.submit-button__arrow {
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.submit-button:hover .submit-button__arrow {
  transform: translateX(4px);
}

.submit-button__loading {
  display: none;
}

.lead-form.is-loading .submit-button__label,
.lead-form.is-loading .submit-button__arrow {
  display: none;
}

.lead-form.is-loading .submit-button__loading {
  display: inline;
}

.form-status {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--danger);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: var(--success);
}

.form-privacy {
  display: flex;
  margin: 0;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  color: #806f68;
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.form-privacy span {
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.55rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.quote-band {
  position: relative;
  color: var(--wine-dark);
  background: var(--paper);
  border-block: 1px solid #e3d3b9;
}

.quote-band__inner {
  display: grid;
  min-height: 330px;
  padding-block: 58px;
  place-items: center;
  grid-template-columns: 120px minmax(0, 820px);
  justify-content: center;
  gap: 26px;
}

.quote-mark {
  height: 105px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 10rem;
  line-height: 1;
}

.quote-band blockquote {
  margin-bottom: 0;
}

.quote-band blockquote > p {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.quote-band blockquote footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine-soft);
}

.quote-band blockquote footer::before {
  width: 36px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.quote-band blockquote footer span {
  font-weight: 800;
}

.quote-band blockquote footer small {
  color: var(--muted);
}

.reasons {
  position: relative;
  padding-block: clamp(78px, 9vw, 128px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 183, 111, 0.17), transparent 28%),
    linear-gradient(180deg, #fffdf8, #f8f0e3);
}

.reasons::before {
  position: absolute;
  width: 540px;
  height: 540px;
  left: -310px;
  bottom: -340px;
  content: "";
  border: 1px solid rgba(107, 37, 21, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(107, 37, 21, 0.025);
}

.section-heading {
  display: grid;
  max-width: 970px;
  margin: 0 auto 36px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 26px 54px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--wine-dark);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.section-heading > p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.course-note {
  display: flex;
  max-width: 970px;
  margin: 0 auto 44px;
  padding: 20px 24px;
  align-items: center;
  gap: 22px;
  color: #5a3528;
  background: rgba(231, 207, 160, 0.27);
  border: 1px solid rgba(176, 133, 70, 0.38);
  border-radius: 16px;
}

.course-note__date {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-content: center;
  color: var(--gold-pale);
  background: var(--wine);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.course-note__date strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.course-note p {
  margin-bottom: 0;
}

.benefit-grid {
  display: grid;
  max-width: 970px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.benefit-card {
  position: relative;
  min-height: 235px;
  padding: 27px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.77);
  border: 1px solid rgba(114, 70, 45, 0.14);
  border-radius: 4px 24px 4px 24px;
  box-shadow: 0 12px 34px rgba(64, 30, 17, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.benefit-card::after {
  position: absolute;
  width: 75px;
  height: 75px;
  right: -34px;
  bottom: -36px;
  content: "";
  border: 1px solid rgba(107, 37, 21, 0.12);
  border-radius: 50%;
}

.benefit-card:hover {
  border-color: rgba(114, 70, 45, 0.3);
  box-shadow: 0 20px 42px rgba(64, 30, 17, 0.1);
  transform: translateY(-4px);
}

.benefit-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--gold-light);
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.closing {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 48%, rgba(222, 181, 95, 0.2), transparent 25%),
    linear-gradient(120deg, #1b0705, #4a160c 55%, #260906);
}

.closing::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.28;
  background: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 16px,
    rgba(255, 255, 255, 0.018) 16px,
    rgba(255, 255, 255, 0.018) 17px
  );
}

.closing__halo {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: 50%;
  right: 7%;
  border: 1px solid rgba(234, 200, 129, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(234, 200, 129, 0.034),
    0 0 0 105px rgba(234, 200, 129, 0.02);
  transform: translateY(-50%);
}

.closing__grid {
  display: grid;
  min-height: 720px;
  padding-block: 82px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(50px, 8vw, 110px);
}

.closing__copy {
  max-width: 680px;
}

.closing h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.closing blockquote {
  margin: 0 0 24px;
  padding-left: 22px;
  color: rgba(255, 248, 236, 0.82);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
}

.closing blockquote cite {
  display: block;
  margin-top: 10px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing__copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 248, 236, 0.78);
}

.secondary-cta {
  display: inline-flex;
  min-height: 56px;
  padding: 14px 24px;
  align-items: center;
  gap: 14px;
  color: var(--wine-dark);
  background: var(--gold-light);
  border: 1px solid #fff0bd;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.secondary-cta:hover {
  background: #ffe7a8;
  transform: translateY(-2px);
}

.closing__art {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
}

.closing__art img {
  width: 100%;
  height: auto;
  border-radius: 50% 50% 20px 20px;
  box-shadow: var(--shadow-deep);
  clip-path: inset(0 0 0 0 round 50% 50% 20px 20px);
}

.closing__art::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(245, 217, 155, 0.4);
  border-radius: 50% 50% 14px 14px;
}

.site-footer {
  color: #d8c2b2;
  background: #140503;
  border-top: 1px solid rgba(234, 200, 129, 0.16);
}

.site-footer__inner {
  display: flex;
  min-height: 115px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer p {
  display: grid;
  margin-bottom: 0;
  gap: 3px;
}

.site-footer strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.site-footer span {
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.site-footer a {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.js [data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal].is-visible {
  animation: reveal-in 560ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes reveal-in {
  from {
    opacity: 0.65;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.4vw, 4.6rem);
  }

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

  .closing__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 34px, 680px);
  }

  .topbar__optional {
    display: none !important;
  }

  .hero__grid {
    display: block;
    padding-block: 34px 70px;
  }

  .hero__art {
    width: min(100%, 480px);
    margin-bottom: 58px;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 11vw, 5rem);
  }

  .quote-band__inner {
    min-height: 0;
    padding-block: 68px;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .quote-mark {
    height: 70px;
    font-size: 7rem;
  }

  .quote-band blockquote footer {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 16px;
  }

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

  .closing__grid {
    display: flex;
    padding-block: 78px 0;
    flex-direction: column;
  }

  .closing__copy {
    max-width: 680px;
  }

  .closing__art {
    width: min(78vw, 420px);
    margin-bottom: -1px;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 72px;
  }

  .shell {
    width: min(100% - 28px, 520px);
  }

  .topbar__inner {
    min-height: 38px;
    gap: 18px;
    font-size: 0.66rem;
    letter-spacing: 0.02em;
  }

  .topbar__inner > span {
    gap: 6px;
  }

  .topbar__inner > span > span {
    width: 15px;
    height: 15px;
    font-size: 0.58rem;
  }

  .hero__grid {
    width: 100%;
    padding: 0 0 56px;
  }

  .hero__art {
    width: 100%;
    margin-bottom: 42px;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
  }

  .hero__art img {
    width: 100%;
    border-radius: inherit;
  }

  .hero__art::before,
  .hero__art::after,
  .hero__art-border {
    display: none;
  }

  .hero__content {
    padding-inline: 18px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.9rem, 14.5vw, 4.25rem);
    line-height: 0.95;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 0.98rem;
  }

  .hero__proofs {
    margin-bottom: 24px;
  }

  .hero__proofs li {
    display: block;
    padding: 11px 8px 11px 0;
  }

  .hero__proofs li + li {
    padding-left: 10px;
  }

  .hero__proofs strong,
  .hero__proofs span {
    display: block;
  }

  .hero__proofs strong {
    margin-bottom: 1px;
    font-size: 1.25rem;
  }

  .hero__proofs span {
    font-size: 0.62rem;
  }

  .form-card {
    padding: 21px 17px 22px;
    border-radius: 24px 4px 24px 4px;
  }

  .form-card__heading {
    align-items: flex-start;
  }

  .form-card__ornament {
    width: 36px;
    height: 36px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .field,
  .field--phone,
  .submit-button,
  .form-status,
  .form-privacy {
    grid-column: 1;
  }

  .field input {
    height: 53px;
    font-size: 16px;
  }

  .submit-button {
    min-height: 58px;
    padding-inline: 13px;
    font-size: 0.92rem;
    letter-spacing: 0.035em;
  }

  .quote-band blockquote > p {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
  }

  .quote-band blockquote footer {
    display: grid;
    gap: 4px;
  }

  .quote-band blockquote footer::before {
    display: none;
  }

  .reasons {
    padding-block: 72px;
  }

  .section-heading h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .course-note {
    padding: 17px;
    align-items: flex-start;
    gap: 14px;
  }

  .course-note__date {
    width: 58px;
    height: 58px;
  }

  .course-note__date strong {
    font-size: 1.5rem;
  }

  .course-note p {
    font-size: 0.9rem;
  }

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

  .benefit-card {
    min-height: 0;
    padding: 23px;
  }

  .benefit-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .closing__grid {
    width: 100%;
    padding-top: 70px;
  }

  .closing__copy {
    padding-inline: 18px;
  }

  .closing h2 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .closing blockquote {
    font-size: 1.08rem;
  }

  .closing__art {
    width: min(100%, 430px);
  }

  .site-footer__inner {
    padding-block: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    display: flex;
    height: 55px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gold-pale);
    background: linear-gradient(135deg, #3c100a, #6a2414);
    border: 2px solid var(--gold-light);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(20, 5, 3, 0.42);
    font-weight: 900;
    text-decoration: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .form-in-view .mobile-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(90px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
