:root {
  --next-ivory: #f6f2ea;
  --next-cream: #fcfaf6;
  --next-sand: #e9dfd1;
  --next-greige: #d7cec2;
  --next-mushroom: #b9ab9c;
  --next-taupe: #8e7b6b;
  --next-stone: #cbbfb0;
  --next-walnut: #564034;
  --next-walnut-deep: #3f3028;
  --next-charcoal: #1f1d1a;
  --next-gold: #aa8d5e;
  --next-ink: #27231f;
  --next-muted: #6d645c;
  --next-rule: rgba(39, 35, 31, 0.18);
  --next-rule-light: rgba(246, 242, 234, 0.22);
  --next-display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --next-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --next-container: 96rem;
  --next-reading: 44rem;
  --next-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --next-section: clamp(5.25rem, 9vw, 9.5rem);
  --next-radius: 0;
  --next-focus: 0 0 0 2px var(--next-cream), 0 0 0 5px var(--next-walnut);
}

.home-redesign {
  background: var(--next-cream);
  color: var(--next-ink);
  font-family: var(--next-sans);
}

.home-redesign h1,
.home-redesign h2,
.home-redesign h3 {
  font-family: var(--next-display);
  font-weight: 400;
  text-wrap: balance;
}

.home-redesign :focus-visible {
  box-shadow: var(--next-focus);
}

.home-redesign .next-trade :focus-visible,
.home-redesign .next-final-cta :focus-visible,
.home-redesign .site-footer :focus-visible {
  box-shadow: 0 0 0 2px var(--next-charcoal), 0 0 0 5px var(--next-ivory);
}

.next-container {
  width: min(100%, var(--next-container));
  margin-inline: auto;
  padding-inline: var(--next-gutter);
}

.next-section {
  padding-block: var(--next-section);
}

.next-eyebrow {
  margin: 0;
  color: var(--next-walnut);
  font-size: clamp(0.68rem, 0.64rem + 0.15vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.next-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(2.75rem, 5vw, 5rem);
}

.next-section-heading .next-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: calc(clamp(2rem, 6vw, 7rem) * -0.75);
}

.next-section-heading h2,
.next-editorial-intro h2 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 5.3vw, 5.65rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.next-section-intro,
.next-editorial-intro > p {
  max-width: var(--next-reading);
  margin: 0;
  color: var(--next-muted);
  font-size: clamp(1rem, 0.94rem + 0.24vw, 1.18rem);
  line-height: 1.7;
}

.next-section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.home-redesign .button {
  min-height: 3.2rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-redesign .button-primary {
  background: var(--next-charcoal);
  color: var(--next-ivory);
}

.home-redesign .button-primary:hover {
  background: var(--next-walnut);
}

.home-redesign .button-secondary {
  border-color: var(--next-rule);
  background: rgba(255, 255, 255, 0.15);
}

.next-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.next-text-link span {
  transition: transform var(--duration-medium) var(--ease-standard);
}

.next-text-link:hover span {
  transform: translateX(0.35rem);
}

.next-editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.next-editorial-intro .next-eyebrow {
  margin-bottom: 1.25rem;
}

@media (max-width: 52rem) {
  .next-section-heading,
  .next-editorial-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .next-section-heading .next-eyebrow {
    margin-bottom: 0;
  }

  .next-section-heading h2,
  .next-editorial-intro h2 {
    max-width: 18ch;
  }

  .next-section-action {
    justify-content: stretch;
  }

  .next-section-action .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .next-text-link span {
    transition: none;
  }
}
