:root {
  --ivory: #f7f3ec;
  --paper: #fffdf9;
  --sand: #e9dfd1;
  --taupe: #a58e78;
  --gold: #b79256;
  --gold-dark: #896b3c;
  --ink: #2b251f;
  --muted: #70675e;
  --deep: #27231f;
  --serif: "Bodoni 72", "Didot", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  color: white;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 22px clamp(20px, 5vw, 76px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.brand {
  display: inline-flex;
  width: clamp(210px, 22vw, 320px);
}

.brand img {
  height: auto;
  width: 100%;
}

.brand-on-light img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(9%) saturate(1138%) hue-rotate(349deg) brightness(92%) contrast(91%);
}

.header-cta {
  border-bottom: 1px solid rgba(255,255,255,.65);
  font-size: 11px;
  letter-spacing: .18em;
  padding: 5px 0;
  text-transform: uppercase;
}

.hero {
  color: white;
  min-height: 840px;
  overflow: hidden;
  position: relative;
}

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

.hero-image {
  background-image: url("assets/images/28C3B68B-14A6-4295-868A-11C02E98D869.jpeg");
  background-position: center 39%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(27,22,17,.72) 0%, rgba(27,22,17,.48) 43%, rgba(27,22,17,.18) 66%, rgba(27,22,17,.4) 100%),
    linear-gradient(0deg, rgba(22,18,14,.45), transparent 42%);
}

.hero-content {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 96px);
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .72fr);
  margin: 0 auto;
  max-width: 1420px;
  min-height: 840px;
  padding: 112px clamp(20px, 5vw, 76px) 80px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ddc89d;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .98;
}

h1 {
  font-size: clamp(56px, 6vw, 92px);
  margin-bottom: 26px;
}

h1 em,
h2 em {
  color: #d2b377;
  font-weight: 400;
}

.hero-intro {
  color: rgba(255,255,255,.86);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  max-width: 570px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 36px;
}

.hero-proof span {
  align-items: center;
  display: flex;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-proof span::before {
  background: #d2b377;
  border-radius: 50%;
  content: "";
  height: 4px;
  margin-right: 9px;
  width: 4px;
}

.form-card {
  backdrop-filter: blur(18px);
  background: rgba(255,253,249,.94);
  box-shadow: 0 30px 80px rgba(20,15,10,.22);
  color: var(--ink);
  padding: clamp(28px, 3.5vw, 48px);
}

.form-kicker {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.form-card h2 {
  font-size: clamp(38px, 3.3vw, 52px);
  margin-bottom: 13px;
}

.form-card > p:not(.form-kicker) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 15px;
}

label span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

input,
select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d4c9bb;
  border-radius: 0;
  color: var(--ink);
  font: 14px var(--sans);
  outline: none;
  padding: 8px 0 10px;
  transition: border-color .2s ease;
  width: 100%;
}

input:focus,
select:focus {
  border-color: var(--gold);
}

input::placeholder {
  color: #a59b91;
}

.field-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1.25fr;
}

button,
.primary-link {
  align-items: center;
  background: var(--deep);
  border: 0;
  color: white;
  cursor: pointer;
  display: flex;
  font: 600 10px var(--sans);
  justify-content: space-between;
  letter-spacing: .16em;
  margin-top: 10px;
  padding: 18px 20px;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
  width: 100%;
}

button:hover,
.primary-link:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

button span,
.primary-link span {
  font-size: 18px;
  font-weight: 300;
}

form small {
  color: #93887d;
  display: block;
  font-size: 9px;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: none;
  padding: 30px 0 10px;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.success-icon {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.form-success h3 {
  font: 400 34px var(--serif);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
  font-size: 13px;
}

.scroll-cue {
  align-items: center;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  font-size: 8px;
  left: 50%;
  letter-spacing: .2em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-cue i {
  background: rgba(255,255,255,.6);
  height: 24px;
  margin-top: 8px;
  width: 1px;
}

.section-shell {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: clamp(20px, 5vw, 70px);
  padding-right: clamp(20px, 5vw, 70px);
}

.opportunity {
  padding-bottom: 130px;
  padding-top: 130px;
}

.section-heading {
  margin: 0 auto 72px;
  max-width: 790px;
  text-align: center;
}

.section-heading h2,
.benefits-intro h2,
.how-it-works h2,
.final-content h2,
.faq h2 {
  font-size: clamp(48px, 5vw, 72px);
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 15px;
  margin: 0 auto;
  max-width: 660px;
}

.profession-strip {
  border-bottom: 1px solid #d8ccbe;
  border-top: 1px solid #d8ccbe;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 80px;
  overflow-x: auto;
  padding: 18px 0;
  scrollbar-width: none;
}

.profession-strip span {
  color: var(--gold-dark);
  flex: 0 0 auto;
  font: italic 18px var(--serif);
}

.editorial-grid {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 80px);
  grid-template-columns: 1fr .72fr .58fr;
}

.editorial-image {
  overflow: hidden;
  position: relative;
}

.editorial-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.editorial-image:hover img {
  transform: scale(1.025);
}

.large-image {
  height: 650px;
}

.detail-image {
  height: 420px;
}

.image-note {
  background: rgba(255,253,249,.9);
  bottom: 0;
  color: var(--gold-dark);
  font: italic 18px var(--serif);
  left: 0;
  padding: 13px 20px;
  position: absolute;
}

.quote-mark {
  color: var(--gold);
  display: block;
  font: 70px/.8 var(--serif);
}

blockquote {
  font: 400 clamp(28px, 2.7vw, 42px)/1.15 var(--serif);
  margin: 14px 0 30px;
}

.gold-rule {
  background: var(--gold);
  height: 1px;
  margin-bottom: 26px;
  width: 52px;
}

.editorial-quote p {
  color: var(--muted);
  font-size: 13px;
}

.benefits {
  background: var(--deep);
  color: white;
  overflow: hidden;
  position: relative;
}

.benefits::before {
  background: radial-gradient(circle, rgba(184,147,86,.19), transparent 65%);
  content: "";
  height: 700px;
  left: -300px;
  position: absolute;
  top: -280px;
  width: 700px;
}

.benefits-inner {
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: .75fr 1fr;
  padding-bottom: 120px;
  padding-top: 120px;
  position: relative;
}

.benefits-intro {
  align-self: center;
}

.benefits-intro p:not(.eyebrow) {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  max-width: 390px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  gap: 28px;
  letter-spacing: .18em;
  margin-top: 25px;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.text-link-light {
  color: #d7bc86;
}

.benefit-list article {
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  gap: 26px;
  grid-template-columns: 34px 1fr;
  padding: 27px 0;
}

.benefit-list article:last-child {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.benefit-list article > span {
  color: #d7bc86;
  font: italic 16px var(--serif);
}

.benefit-list h3 {
  font: 400 25px var(--serif);
  margin-bottom: 6px;
}

.benefit-list p {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-bottom: 0;
}

.how-it-works {
  padding-bottom: 130px;
  padding-top: 130px;
}

.section-heading.compact {
  margin-bottom: 65px;
  max-width: 670px;
}

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

.steps article {
  background: var(--paper);
  min-height: 260px;
  padding: clamp(26px, 4vw, 48px);
}

.steps span {
  align-items: center;
  border: 1px solid #d8c9b7;
  border-radius: 50%;
  color: var(--gold-dark);
  display: flex;
  font: italic 18px var(--serif);
  height: 42px;
  justify-content: center;
  margin-bottom: 38px;
  width: 42px;
}

.steps h3 {
  font: 400 27px var(--serif);
  margin-bottom: 10px;
}

.steps p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.final-cta {
  align-items: center;
  color: white;
  display: flex;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.final-cta > img,
.final-overlay {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
}

.final-overlay {
  background: linear-gradient(90deg, rgba(25,21,17,.76), rgba(25,21,17,.25));
}

.final-content {
  margin-left: max(20px, calc((100vw - 1140px) / 2));
  max-width: 650px;
  padding: 90px 20px 90px 0;
  position: relative;
}

.final-content p:not(.eyebrow) {
  color: rgba(255,255,255,.75);
  max-width: 480px;
}

.primary-link {
  margin-top: 32px;
  max-width: 360px;
}

.faq {
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: .65fr 1fr;
  padding-bottom: 120px;
  padding-top: 120px;
}

.faq h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}

details {
  border-top: 1px solid #d8ccbe;
  padding: 23px 0;
}

details:last-child {
  border-bottom: 1px solid #d8ccbe;
}

summary {
  cursor: pointer;
  font: 400 22px var(--serif);
  list-style: none;
  padding-right: 35px;
  position: relative;
}

summary::after {
  color: var(--gold-dark);
  content: "+";
  font: 300 24px var(--sans);
  position: absolute;
  right: 4px;
  top: 0;
}

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

details p {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 40px 0 0;
}

footer {
  align-items: center;
  background: #1c1916;
  color: rgba(255,255,255,.62);
  display: flex;
  font-size: 10px;
  gap: 30px;
  justify-content: space-between;
  letter-spacing: .05em;
  padding: 38px clamp(20px, 5vw, 76px);
}

.footer-brand {
  flex: 0 0 auto;
  width: clamp(210px, 22vw, 300px);
}

footer p {
  margin: 0;
  text-align: center;
}

@media (max-width: 1020px) {
  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
    padding-top: 150px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .form-card {
    max-width: 620px;
  }

  .scroll-cue {
    display: none;
  }

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

  .editorial-quote {
    grid-column: 2;
    grid-row: 1;
  }

  .detail-image {
    display: none;
  }

  .benefits-inner {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 18px;
  }

  .brand {
    width: 220px;
  }

  .header-cta {
    display: none;
  }

  .hero-image {
    background-position: 53% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(23,19,15,.58), rgba(23,19,15,.58));
  }

  .hero-content {
    gap: 38px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 115px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-proof {
    gap: 8px 18px;
    margin-top: 24px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .form-card {
    margin: 0 -2px;
    padding: 26px 22px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .opportunity,
  .how-it-works {
    padding-bottom: 85px;
    padding-top: 85px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .section-heading h2,
  .benefits-intro h2,
  .how-it-works h2,
  .final-content h2 {
    font-size: 44px;
  }

  .profession-strip {
    margin-bottom: 48px;
  }

  .editorial-grid {
    display: flex;
    flex-direction: column;
  }

  .large-image {
    height: 470px;
    order: 1;
    width: 100%;
  }

  .editorial-quote {
    order: 2;
  }

  blockquote {
    font-size: 32px;
  }

  .benefits-inner,
  .faq {
    grid-template-columns: 1fr;
  }

  .benefits-inner {
    padding-bottom: 80px;
    padding-top: 80px;
  }

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

  .steps article {
    min-height: auto;
  }

  .final-cta {
    min-height: 600px;
  }

  .final-cta > img {
    object-position: 60% center;
  }

  .final-overlay {
    background: rgba(25,21,17,.58);
  }

  .final-content {
    margin-left: 0;
    padding: 80px 20px;
  }

  .faq {
    gap: 30px;
    padding-bottom: 80px;
    padding-top: 80px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}

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

  * {
    transition: none !important;
  }
}
