:root {
  --ink: #151514;
  --muted: #67645f;
  --cream: #f6f2e9;
  --paper: #fffefb;
  --gold: #c9993c;
  --gold-dark: #a77620;
  --gold-soft: #ead9ad;
  --line: #dedbd2;
  --green: #211e19;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

.embed-mode .announcement,
.embed-mode .site-header,
.embed-mode .site-footer {
  display: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.announcement {
  display: grid;
  min-height: 30px;
  place-items: center;
  color: #f6ecd8;
  background: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 108px;
  padding: 10px clamp(24px, 5vw, 84px);
  border-bottom: 1px solid rgba(21, 21, 20, 0.1);
  background: var(--paper);
}

.brand {
  display: inline-grid;
  justify-items: center;
  width: 102px;
  grid-column: 2;
}

.brand-mark {
  width: 33px;
  height: 38px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.brand-name {
  margin-top: 3px;
  color: #3b3935;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1;
}

.brand-sub {
  margin-top: 4px;
  color: var(--gold);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.45em;
  line-height: 1;
}

.site-nav {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: 12px;
  font-weight: 500;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  color: #4e4b46;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;
  color: white;
  background: var(--ink);
  transition: background 180ms ease;
}

.nav-cta:hover {
  background: var(--gold-dark);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: center;
  overflow: hidden;
  padding: 90px clamp(24px, 8vw, 150px) 96px;
  background:
    linear-gradient(90deg, rgba(255, 254, 251, 0.96) 0%, rgba(255, 254, 251, 0.88) 48%, rgba(246, 242, 233, 0.68) 100%),
    radial-gradient(circle at 85% 50%, #f1e5c5 0, transparent 35%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  font-size: clamp(54px, 6.1vw, 98px);
}

h1 em,
h2 em {
  color: var(--gold-dark);
  font-weight: 500;
}

.hero-lede {
  max-width: 580px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-dark {
  color: white;
  background: var(--ink);
}

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

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.hero-proof strong {
  color: var(--ink);
  font-weight: 600;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-left: -7px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-family: var(--serif);
  font-size: 11px;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--gold);
}

.avatar-stack span:last-child {
  background: #8d826e;
}

.commission-card {
  position: relative;
  z-index: 3;
  width: min(100%, 350px);
  justify-self: end;
  padding: 40px;
  border: 1px solid rgba(201, 153, 60, 0.48);
  background: rgba(255, 254, 251, 0.84);
  box-shadow: 0 32px 80px rgba(38, 33, 24, 0.1);
  backdrop-filter: blur(14px);
}

.card-label {
  margin: 0;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.commission-number {
  margin: 15px 0 6px;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 78px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.commission-number span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.commission-number sup {
  color: var(--gold-dark);
  font-size: 0.45em;
}

.commission-card > p:nth-child(3) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.card-divider {
  height: 1px;
  margin: 30px 0 20px;
  background: var(--line);
}

.mini-stat {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 11px;
}

.mini-stat span {
  color: var(--muted);
}

.mini-stat strong {
  font-weight: 600;
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 52%;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border: 1px solid rgba(201, 153, 60, 0.2);
  border-radius: 50%;
}

.orb-one {
  top: 8%;
  right: -12%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 33% 35%, rgba(255, 255, 255, 0.6), rgba(220, 191, 122, 0.16) 42%, transparent 70%);
}

.orb-two {
  right: 22%;
  bottom: -20%;
  width: 360px;
  height: 360px;
  background: rgba(237, 222, 183, 0.15);
}

.molecule {
  position: absolute;
  fill: rgba(255, 254, 251, 0.9);
  stroke: rgba(167, 118, 32, 0.35);
  stroke-width: 1.2;
}

.molecule-one {
  top: 10%;
  right: 5%;
  width: 260px;
  transform: rotate(-7deg);
}

.formula {
  position: absolute;
  color: rgba(109, 87, 47, 0.32);
  font-family: var(--serif);
  letter-spacing: 0.04em;
}

.formula-one {
  right: 14%;
  bottom: 10%;
  font-size: 18px;
}

.formula-two {
  top: 12%;
  right: 7%;
  font-size: 32px;
}

.formula-two span {
  display: block;
  margin-left: 5px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px clamp(24px, 8vw, 150px);
  color: #f9f5eb;
  background: var(--green);
}

.trust-bar > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-bar > div:first-child {
  padding-left: 0;
}

.trust-bar > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.5;
}

.trust-bar strong {
  color: white;
  font-size: 11px;
  font-weight: 600;
}

.trust-icon {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.section {
  padding: 130px clamp(24px, 8vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

h2 {
  font-size: clamp(42px, 5vw, 70px);
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  position: relative;
  min-height: 330px;
  padding: 38px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition:
    background 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.benefit-card:hover {
  z-index: 1;
  background: white;
  box-shadow: 0 20px 60px rgba(36, 31, 22, 0.08);
  transform: translateY(-5px);
}

.benefit-card.featured {
  color: #f8f3e7;
  background: var(--green);
}

.benefit-card.featured:hover {
  background: #304239;
}

.benefit-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--gold-soft);
}

.benefit-icon svg {
  width: 24px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.featured .benefit-icon {
  border-color: rgba(234, 217, 173, 0.35);
}

.featured .benefit-icon svg {
  stroke: var(--gold-soft);
}

.card-number {
  position: absolute;
  top: 40px;
  right: 30px;
  color: #a8a39a;
  font-size: 9px;
  letter-spacing: 0.15em;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.45);
}

.benefit-card h3 {
  margin: 72px 0 15px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.featured p {
  color: rgba(255, 255, 255, 0.58);
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 170px);
  background: var(--cream);
}

.process-intro {
  align-self: start;
}

.process-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 30px 0;
  color: var(--muted);
}

.button-outline {
  margin-top: 8px;
  border-color: var(--ink);
}

.button-outline:hover {
  color: white;
  background: var(--ink);
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cbc6bb;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 15px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid #cbc6bb;
}

.step-number {
  padding-top: 4px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.steps h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

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

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 0.75fr);
  gap: clamp(60px, 10vw, 150px);
  padding: 140px clamp(24px, 8vw, 150px);
  color: white;
  background: var(--ink);
}

.apply-copy h2 {
  color: white;
}

.apply-copy h2 em {
  color: var(--gold-soft);
}

.apply-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.58);
}

.apply-copy blockquote {
  max-width: 560px;
  margin: 50px 0;
  padding: 8px 0 8px 28px;
  border-left: 1px solid var(--gold);
  color: #ece1c7;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
}

.fit-list {
  display: flex;
  max-width: 560px;
  flex-wrap: wrap;
  gap: 9px;
}

.fit-list p {
  width: 100%;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fit-list span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.application-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.application-form > label,
.field-row label {
  display: block;
  margin-bottom: 18px;
}

.application-form label > span:not(.checkbox span) {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d4d0c7;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 86px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 153, 60, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: #a9a49b;
}

.checkbox {
  display: grid !important;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  margin: 6px 0 22px !important;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.checkbox input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--gold-dark);
}

.button-gold {
  width: 100%;
  color: white;
  background: var(--gold-dark);
}

.button-gold:hover {
  background: var(--ink);
}

.form-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.form-success {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  background: var(--paper);
}

.form-success[hidden] {
  display: none;
}

.form-success::before {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  content: "✓";
  font-size: 24px;
}

.form-success strong {
  font-family: var(--serif);
  font-size: 30px;
}

.form-success span {
  max-width: 320px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(50px, 10vw, 160px);
}

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

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

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

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

.accordion summary span {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 620px;
  margin: -8px 40px 24px 0;
  color: var(--muted);
  font-size: 12px;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 90px clamp(24px, 8vw, 150px);
  color: white;
  background:
    linear-gradient(100deg, rgba(39, 55, 47, 0.98), rgba(39, 55, 47, 0.86)),
    radial-gradient(circle at 80% 50%, var(--gold), transparent 45%);
}

.closing-cta .eyebrow {
  color: var(--gold-soft);
}

.closing-cta h2 {
  font-size: clamp(40px, 4.5vw, 66px);
}

.closing-cta h2 em {
  color: var(--gold-soft);
}

.button-light {
  flex-shrink: 0;
  color: var(--ink);
  background: white;
}

.button-light:hover {
  background: var(--gold-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding: 80px clamp(24px, 8vw, 150px) 30px;
  background: var(--paper);
}

.footer-logo {
  grid-column: auto;
  justify-items: start;
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-size: 10px;
}

.footer-column a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8c8880;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr minmax(250px, 0.5fr);
    padding-left: 6vw;
    padding-right: 6vw;
  }

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

  h1 {
    font-size: clamp(55px, 7vw, 76px);
  }

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

  .apply-section {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 88px;
    grid-template-columns: 1fr auto 1fr;
    padding: 8px 24px;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    grid-column: 3;
    justify-self: end;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.nav-cta) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 14px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 85px 8vw 75px;
  }

  .hero-visual {
    inset: 0;
    opacity: 0.6;
  }

  .commission-card {
    width: min(100%, 420px);
    justify-self: start;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-bar > div {
    justify-content: flex-start;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-bar > div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .process,
  .apply-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 30px;
  }

  .process {
    gap: 70px;
  }

  .apply-section {
    gap: 70px;
  }

  .site-footer {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .announcement {
    font-size: 8px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand-mark {
    width: 29px;
    height: 32px;
  }

  .brand-name {
    font-size: 9px;
  }

  .hero {
    padding: 66px 22px 58px;
  }

  h1 {
    font-size: clamp(45px, 14.5vw, 62px);
  }

  .hero-lede {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .commission-card {
    padding: 30px;
  }

  .section {
    padding: 90px 22px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .benefit-card {
    min-height: 280px;
  }

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

  .apply-section {
    padding: 90px 22px;
  }

  .apply-copy blockquote {
    font-size: 19px;
  }

  .application-form {
    margin: 0 -5px;
  }

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

  .closing-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 75px 22px;
  }

  .button-light {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 65px 22px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
