:root {
  --premium-ivory: #fbf6ec;
  --premium-milk: #fffaf2;
  --premium-champagne: #eadcc3;
  --premium-champagne-strong: #d9bd86;
  --premium-sand: #c7ab81;
  --premium-brown: #7a5538;
  --premium-brown-soft: #9a7557;
  --premium-brown-deep: #34261f;
  --premium-line: rgba(122, 85, 56, .18);
  --premium-line-strong: rgba(194, 161, 95, .42);
  --premium-shadow: 0 28px 80px rgba(74, 49, 36, .14);
  --premium-shadow-soft: 0 18px 48px rgba(74, 49, 36, .10);
  --premium-ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  color-scheme: light;
}

body {
  background:
    linear-gradient(120deg, rgba(255, 250, 242, .96), rgba(251, 246, 236, .94) 42%, rgba(234, 220, 195, .62)),
    repeating-linear-gradient(90deg, rgba(122, 85, 56, .035) 0 1px, transparent 1px 96px);
}

body.premium-refresh .scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  height: 3px;
  width: calc(var(--scroll-progress, 0) * 100%);
  background: linear-gradient(90deg, #8b623d, #d7bd7b 52%, #8b623d);
  box-shadow: 0 0 18px rgba(194, 161, 95, .34);
  pointer-events: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
}

.site-nav {
  background: rgba(255, 250, 242, .72);
  border-color: rgba(122, 85, 56, .16);
  box-shadow: 0 22px 70px rgba(74, 49, 36, .12);
  transition: transform .45s var(--premium-ease), box-shadow .45s var(--premium-ease), background-color .45s var(--premium-ease);
}

.site-nav::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 250, 242, .62);
  pointer-events: none;
}

body.is-scrolled .site-nav {
  background: rgba(255, 250, 242, .86);
  box-shadow: 0 18px 54px rgba(74, 49, 36, .16);
  transform: translateY(-2px);
}

.brand__wordmark {
  background-image: linear-gradient(112deg, #4a3124 0%, #a1784b 44%, #d2b878 62%, #5e3e2c 100%);
}

.site-nav__links a,
.site-nav__cta,
.site-nav__mobile-cta {
  transition: color .25s var(--premium-ease), background-color .25s var(--premium-ease), border-color .25s var(--premium-ease), transform .25s var(--premium-ease);
}

.site-nav__links a:hover,
.site-nav__cta:hover,
.site-nav__mobile-cta:hover {
  transform: translateY(-1px);
}

.site-nav__cta,
.site-nav__mobile-cta {
  background: linear-gradient(135deg, rgba(234, 220, 195, .78), rgba(255, 250, 242, .62));
  border-color: rgba(194, 161, 95, .42);
}

.hero-section {
  background:
    linear-gradient(115deg, var(--premium-milk) 0%, var(--premium-ivory) 52%, rgba(234, 220, 195, .76) 100%);
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(251, 246, 236, .99) 0%, rgba(251, 246, 236, .96) 31%, rgba(251, 246, 236, .78) 48%, rgba(251, 246, 236, .22) 72%, rgba(251, 246, 236, 0) 100%),
    linear-gradient(180deg, rgba(255, 250, 242, .72), rgba(251, 246, 236, 0) 44%, rgba(52, 38, 31, .12) 100%);
}

.hero-layout {
  padding-top: clamp(54px, 7vw, 86px);
}

.hero-copy {
  gap: 22px;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #7b5438;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 85, 56, 0), rgba(122, 85, 56, .74));
}

.hero-copy h1 {
  letter-spacing: .01em;
  text-shadow: 0 1px 0 rgba(255, 250, 242, .72);
}

.hero-title__accent {
  background-size: 170% 100%;
  animation: premium-title-shift 14s ease-in-out infinite;
}

.hero-title__accent::after {
  height: 1px;
  opacity: .52;
}

.hero-copy__lead {
  color: rgba(74, 49, 36, .75);
}

.hero-actions {
  margin-top: 2px;
}

.button {
  min-height: 58px;
  border-color: rgba(74, 49, 36, .18);
  box-shadow: var(--premium-shadow-soft);
  transition: transform .32s var(--premium-ease), box-shadow .32s var(--premium-ease), background-color .32s var(--premium-ease);
}

.button:hover {
  box-shadow: 0 26px 66px rgba(74, 49, 36, .20);
}

.button--primary {
  background: linear-gradient(135deg, #80583a, #6f4a31 54%, #4b3023);
}

.button--secondary {
  background: linear-gradient(135deg, #f6ead2, #d9bd86);
}

.privacy-note,
.support-signals span {
  color: rgba(74, 49, 36, .68);
}

.support-signals {
  padding-top: 4px;
}

.support-signals span {
  border-color: rgba(122, 85, 56, .14);
}

.hero-photo--fullscreen {
  transform-origin: 72% 42%;
  animation: hero-photo-breathe 20s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.pause-section,
.section {
  position: relative;
}

.pause-section {
  padding-top: clamp(76px, 9vw, 122px);
}

.pause-layout {
  padding-top: 0;
}

.pause-layout h2,
.section-heading h2 {
  color: #3b2a22;
}

.pause-layout p,
.section-heading p:not(.eyebrow) {
  color: rgba(74, 49, 36, .68);
}

.section-heading {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading .eyebrow,
.testing-layout .eyebrow,
.final-cta .eyebrow {
  color: #8a5c38;
}

.situation-editorial {
  gap: clamp(14px, 2vw, 24px);
}

.card {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, .86), rgba(234, 220, 195, .42)),
    rgba(255, 250, 242, .78);
  border-color: rgba(122, 85, 56, .15);
  box-shadow: 0 18px 54px rgba(74, 49, 36, .08);
}

.situation-card,
.story-card,
.material-card,
.result-preview {
  isolation: isolate;
}

.situation-card {
  min-height: 190px;
  box-shadow: 0 18px 58px rgba(74, 49, 36, .08);
}

.situation-card::before,
.material-card::before,
.story-card::before,
.result-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 250, 242, .60), rgba(255, 250, 242, 0) 42%, rgba(194, 161, 95, .12));
  pointer-events: none;
  z-index: -1;
}

.situation-card span {
  letter-spacing: .005em;
}

.situation-card p {
  color: rgba(74, 49, 36, .66);
}

.situation-card:hover {
  box-shadow: 0 30px 90px rgba(74, 49, 36, .15);
  border-color: rgba(194, 161, 95, .48);
}

.situation-card--large {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, .90), rgba(234, 220, 195, .62)),
    var(--premium-milk);
}

.child-signals em,
.benefits-list li,
.recommendation-list span {
  background: rgba(255, 250, 242, .76);
  border-color: rgba(122, 85, 56, .15);
  box-shadow: 0 8px 24px rgba(74, 49, 36, .06);
}

.testing-section::before {
  opacity: .55;
}

.testing-layout {
  gap: clamp(42px, 7vw, 86px);
}

.testing-layout > div:first-child {
  gap: 22px;
}

.result-preview {
  background:
    linear-gradient(150deg, rgba(255, 250, 242, .96), rgba(234, 220, 195, .68)),
    var(--premium-milk);
  border-color: rgba(194, 161, 95, .36);
  box-shadow: var(--premium-shadow);
}

.result-preview__meter {
  height: 12px;
  background: rgba(122, 85, 56, .12);
}

.result-preview__meter span {
  width: 72%;
  background: linear-gradient(90deg, #8b623d, #d9bd86 56%, #8b623d);
  background-size: 180% 100%;
  animation: meter-glow 5.8s ease-in-out infinite;
}

.materials-grid {
  gap: clamp(16px, 2vw, 26px);
}

.material-card {
  position: relative;
  background: rgba(255, 250, 242, .82);
}

.material-card img {
  filter: sepia(.10) saturate(.88) contrast(1.02);
}

.material-card:hover img {
  filter: sepia(.04) saturate(1) contrast(1.04);
}

.material-card h3,
.story-card p,
.founders-copy h2 {
  letter-spacing: .002em;
}

.stories-slider {
  gap: clamp(14px, 2vw, 22px);
  padding-bottom: 28px;
}

.story-card {
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, .90), rgba(234, 220, 195, .52)),
    var(--premium-milk);
}

.story-card p {
  color: rgba(52, 38, 31, .78);
}

.founders-layout {
  gap: clamp(34px, 6vw, 92px);
}

.founders-photo {
  box-shadow: var(--premium-shadow);
  border-color: rgba(255, 250, 242, .74);
}

.founders-copy {
  gap: 20px;
}

.founders-roles div {
  border-color: rgba(194, 161, 95, .42);
}

.final-cta__panel {
  border: 1px solid rgba(234, 220, 195, .20);
  background:
    linear-gradient(135deg, rgba(194, 161, 95, .18), rgba(194, 161, 95, 0) 34%),
    linear-gradient(145deg, #3a281f, #765036 58%, #4a3124);
  box-shadow: 0 34px 98px rgba(52, 38, 31, .22);
}

.final-cta__panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 41px;
  background: linear-gradient(110deg, rgba(255, 250, 242, .12), rgba(255, 250, 242, 0) 38%, rgba(234, 220, 195, .14));
  pointer-events: none;
}

.final-cta__panel > div:first-child {
  position: relative;
  z-index: 1;
}

.final-cta__mark span {
  border-color: rgba(234, 220, 195, .44);
  box-shadow: inset 0 0 48px rgba(234, 220, 195, .10), 0 0 70px rgba(194, 161, 95, .14);
}

.reveal-ready .section-heading,
.reveal-ready .pause-layout,
.reveal-ready .situation-card,
.reveal-ready .testing-layout > div,
.reveal-ready .result-preview,
.reveal-ready .material-card,
.reveal-ready .story-card,
.reveal-ready .founders-photo,
.reveal-ready .founders-copy,
.reveal-ready .final-cta__panel {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .78s var(--premium-ease),
    transform .78s var(--premium-ease),
    box-shadow .32s var(--premium-ease),
    border-color .32s var(--premium-ease);
  transition-delay: calc(var(--reveal-index, 0) * 56ms);
}

.reveal-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes premium-title-shift {
  0%, 100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-photo-breathe {
  from {
    transform: scale(1.0001);
    filter: saturate(.94) contrast(.98);
  }
  to {
    transform: scale(1.025);
    filter: saturate(.98) contrast(1.02);
  }
}

@keyframes meter-glow {
  0%, 100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (width <= 980px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .hero-copy .eyebrow::before {
    width: 30px;
  }

  .situation-card {
    min-height: 160px;
  }
}

@media (width <= 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-nav {
    border-radius: 34px;
    padding: 10px;
  }

  .site-nav::after {
    border-radius: 33px;
  }

  .hero-layout {
    padding-top: 32px;
  }

  .hero-copy {
    gap: 17px;
  }

  .hero-copy h1 {
    font-size: clamp(2.04rem, 8.55vw, 2.72rem);
    text-shadow: 0 1px 0 rgba(255, 250, 242, .86), 0 12px 26px rgba(74, 49, 36, .10);
  }

  .hero-title__accent {
    background-image: linear-gradient(110deg, #5f3d2a 0%, #8c633d 36%, #b7894a 62%, #5b3828 100%);
    animation: none;
    text-shadow: 0 1px 0 rgba(255, 250, 242, .72), 0 10px 20px rgba(74, 49, 36, .12);
  }

  .hero-photo::after {
    background:
      linear-gradient(90deg, rgba(251, 246, 236, .98) 0%, rgba(251, 246, 236, .94) 40%, rgba(251, 246, 236, .68) 65%, rgba(251, 246, 236, .08) 100%),
      linear-gradient(180deg, rgba(251, 246, 236, 0) 0%, rgba(251, 246, 236, .02) 42%, rgba(251, 246, 236, .86) 72%, #fbf6ec 100%);
  }

  .hero-copy__lead {
    color: rgba(74, 49, 36, .82);
    text-shadow: 0 1px 0 rgba(255, 250, 242, .9);
  }

  .hero-copy .eyebrow {
    gap: 9px;
  }

  .hero-copy .eyebrow::before {
    width: 24px;
  }

  .hero-photo--fullscreen {
    animation: none;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-height: 58px;
  }

  .section-heading,
  .pause-layout {
    margin-bottom: 30px;
  }

  .situation-card,
  .story-card {
    min-height: auto;
  }

  .final-cta__panel::after {
    border-radius: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title__accent,
  .hero-photo--fullscreen,
  .result-preview__meter span {
    animation: none !important;
  }

  .reveal-ready .section-heading,
  .reveal-ready .pause-layout,
  .reveal-ready .situation-card,
  .reveal-ready .testing-layout > div,
  .reveal-ready .result-preview,
  .reveal-ready .material-card,
  .reveal-ready .story-card,
  .reveal-ready .founders-photo,
  .reveal-ready .founders-copy,
  .reveal-ready .final-cta__panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Rhythm tuning: premium, but less static and more contemporary. */
:root {
  --section-space: 94px;
}

.section {
  padding: clamp(74px, 8vw, 102px) 0;
}

.pause-section {
  padding: clamp(50px, 6vw, 78px) 0 36px;
}

.situation-section {
  padding-top: clamp(52px, 6vw, 82px);
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.testing-section,
.materials-section,
.stories-section,
.founders-section {
  scroll-margin-top: 110px;
}

@media (width <= 640px) {
  :root {
    --section-space: 68px;
  }

  .section {
    padding: 64px 0;
  }

  .pause-section {
    padding: 46px 0 24px;
  }

  .situation-section {
    padding-top: 44px;
  }
}

/* Premium redesign pass: visible content, tighter rhythm, more editorial surfaces. */
body.premium-redesign {
  background:
    linear-gradient(120deg, rgba(255, 250, 242, .98), rgba(251, 246, 236, .96) 38%, rgba(234, 220, 195, .58)),
    linear-gradient(90deg, rgba(194, 161, 95, .10) 0 1px, transparent 1px 25%),
    linear-gradient(180deg, rgba(122, 85, 56, .045) 0 1px, transparent 1px 140px);
}

.premium-redesign .section {
  padding: clamp(48px, 5vw, 70px) 0;
}

.premium-redesign .pause-section {
  padding: clamp(34px, 4.4vw, 54px) 0 14px;
}

.premium-redesign .situation-section {
  padding-top: clamp(34px, 4.4vw, 56px);
}

.premium-redesign .testing-section {
  padding: clamp(48px, 5vw, 66px) 0;
  background:
    linear-gradient(90deg, rgba(122, 85, 56, .08) 0 1px, transparent 1px calc(50% - 1px), rgba(122, 85, 56, .10) calc(50% - 1px) 50%, transparent 50%),
    linear-gradient(135deg, rgba(255, 250, 242, .76), rgba(234, 220, 195, .28));
}

.premium-redesign .testing-section::before {
  display: none;
}

.premium-redesign .testing-layout {
  grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
}

.premium-redesign .testing-layout > div:first-child {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  align-content: center;
  border: 1px solid rgba(194, 161, 95, .30);
  border-radius: 28px 6px 28px 28px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, .86), rgba(234, 220, 195, .42)),
    rgba(255, 250, 242, .78);
  box-shadow: 0 24px 72px rgba(74, 49, 36, .10);
  padding: clamp(30px, 4vw, 48px);
}

.premium-redesign .testing-layout > div:first-child h2 {
  max-width: 560px;
}

.premium-redesign .testing-layout > div:first-child p:not(.eyebrow) {
  max-width: 560px;
}

.premium-redesign .benefits-list {
  max-width: 560px;
}

.premium-redesign .result-preview {
  min-height: 100%;
  border-radius: 6px 34px 34px;
  transform: translateY(0);
  opacity: 1 !important;
  transform: none !important;
}

.premium-redesign .result-preview::before {
  width: 78px;
  height: 126px;
  right: 42px;
  border-color: rgba(194, 161, 95, .34);
}

.premium-redesign .section-heading {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(220px, .22fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: end;
  margin-bottom: clamp(20px, 2.8vw, 30px);
  padding-top: 2px;
  border-top: 1px solid rgba(194, 161, 95, .28);
}

.premium-redesign .section-heading .eyebrow {
  grid-column: 1 / -1;
  width: fit-content;
  margin: -11px 0 0;
  padding-right: 14px;
  background: #fbf6ec;
}

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

.premium-redesign .section-heading p:not(.eyebrow) {
  max-width: 430px;
  justify-self: end;
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  line-height: 1.68;
}

.premium-redesign .situation-editorial {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
}

.premium-redesign .situation-card {
  flex: 1 1 calc(33.333% - 16px);
  border-radius: 24px;
  min-height: 158px;
  padding: clamp(20px, 2.3vw, 28px);
  background:
    linear-gradient(150deg, rgba(255, 250, 242, .94), rgba(234, 220, 195, .50)),
    rgba(255, 250, 242, .78);
  border-color: rgba(194, 161, 95, .30);
  box-shadow: 0 20px 60px rgba(74, 49, 36, .10);
}

.premium-redesign .situation-card::before {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .48), transparent 42%),
    linear-gradient(90deg, rgba(194, 161, 95, .22), transparent 28%);
}

.premium-redesign .situation-card > * {
  position: relative;
  z-index: 1;
}

.premium-redesign .situation-card::after {
  width: 52px;
  right: 28px;
  bottom: 26px;
  background: linear-gradient(90deg, transparent, #b88b4f);
}

.premium-redesign .situation-card span {
  max-width: 680px;
}

.premium-redesign .situation-card--large {
  min-height: 348px;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .20), rgba(251, 246, 236, .92)),
    linear-gradient(135deg, rgba(194, 161, 95, .22), rgba(122, 85, 56, .04));
}

.premium-redesign .situation-card--wide {
  min-height: 198px;
}

.premium-redesign .situation-card--children {
  grid-template-columns: 1fr;
  align-items: start;
}

.premium-redesign .child-signals {
  max-width: 620px;
}

.premium-redesign .materials-section {
  padding-top: clamp(40px, 5vw, 62px);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0), rgba(234, 220, 195, .24) 46%, rgba(255, 250, 242, 0));
}

.premium-redesign .materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
}

.premium-redesign .material-card {
  border-radius: 28px;
  min-height: 280px;
  overflow: hidden;
  background: rgba(255, 250, 242, .88);
  border-color: rgba(194, 161, 95, .28);
  box-shadow: 0 24px 70px rgba(74, 49, 36, .11);
}

.premium-redesign .material-card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(190px, .78fr) minmax(0, 1fr);
  align-items: stretch;
}

.premium-redesign .material-card:first-child {
  border-radius: 34px 8px 34px 34px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.premium-redesign .material-card img {
  aspect-ratio: 1.42;
  object-position: 58% 42%;
  filter: sepia(.16) saturate(.82) contrast(1.02);
}

.premium-redesign .material-card:not(:first-child) img {
  height: 100%;
  min-height: 280px;
  aspect-ratio: auto;
}

.premium-redesign .material-card:nth-child(2) img {
  object-position: 45% 38%;
}

.premium-redesign .material-card:nth-child(3) img {
  object-position: 68% 40%;
}

.premium-redesign .material-card:first-child img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}

.premium-redesign .material-card div {
  gap: 12px;
  padding: clamp(20px, 2.6vw, 30px);
  align-content: end;
}

.premium-redesign .material-card p {
  width: fit-content;
  color: #7a5538;
  border: 1px solid rgba(194, 161, 95, .34);
  border-radius: 999px;
  background: rgba(255, 250, 242, .72);
  padding: 7px 11px;
  font-size: .76rem;
  line-height: 1;
}

.premium-redesign .material-card h3 {
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(1.34rem, 1.62vw, 1.78rem);
  line-height: 1.08;
  color: #34261f;
}

.premium-redesign .material-card:first-child h3 {
  font-size: clamp(2rem, 2.7vw, 3.05rem);
}

.premium-redesign .material-card__summary,
.premium-redesign .material-card__meta {
  display: block;
}

.premium-redesign .material-card__summary {
  max-width: 640px;
  color: rgba(74, 49, 36, .68);
  font-size: .96rem;
  line-height: 1.56;
}

.premium-redesign .material-card__meta {
  color: #8a5c38;
  font-size: .88rem;
  font-weight: 800;
}

.premium-redesign .stories-section {
  padding-top: clamp(38px, 4.5vw, 58px);
}

.premium-redesign .stories-slider {
  grid-auto-columns: minmax(340px, .38fr);
}

.premium-redesign .story-card {
  border-radius: 26px;
  min-height: 196px;
}

.premium-redesign.reveal-ready .section-heading,
.premium-redesign.reveal-ready .pause-layout,
.premium-redesign.reveal-ready .situation-card,
.premium-redesign.reveal-ready .testing-layout > div,
.premium-redesign.reveal-ready .result-preview,
.premium-redesign.reveal-ready .material-card,
.premium-redesign.reveal-ready .story-card,
.premium-redesign.reveal-ready .founders-photo,
.premium-redesign.reveal-ready .founders-copy,
.premium-redesign.reveal-ready .final-cta__panel {
  opacity: 1 !important;
  transform: none !important;
}

.premium-redesign .situation-card,
.premium-redesign .material-card,
.premium-redesign .story-card,
.premium-redesign .result-preview {
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

@media (width <= 980px) {
  .premium-redesign .testing-layout,
  .premium-redesign .materials-grid,
  .premium-redesign .situation-editorial {
    grid-template-columns: 1fr;
  }

  .premium-redesign .situation-editorial {
    display: grid;
  }

  .premium-redesign .situation-card {
    flex-basis: auto;
  }

  .premium-redesign .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .premium-redesign .section-heading p:not(.eyebrow) {
    max-width: 680px;
    justify-self: start;
  }

  .premium-redesign .material-card:first-child,
  .premium-redesign .situation-card--large {
    grid-row: auto;
  }

  .premium-redesign .situation-card--wide {
    grid-column: auto;
  }

  .premium-redesign .material-card:not(:first-child),
  .premium-redesign .material-card:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .premium-redesign .material-card:not(:first-child) img,
  .premium-redesign .material-card:first-child img {
    min-height: 0;
    height: clamp(190px, 56vw, 240px);
    aspect-ratio: auto;
  }

  .premium-redesign .result-preview,
  .premium-redesign .testing-layout > div:first-child {
    border-radius: 28px;
  }
}

@media (width <= 640px) {
  .premium-redesign .section {
    padding: 42px 0;
  }

  .premium-redesign .pause-section {
    padding: 34px 0 16px;
  }

  .premium-redesign .testing-layout > div:first-child,
  .premium-redesign .result-preview {
    padding: 24px;
  }

  .premium-redesign .material-card h3,
  .premium-redesign .material-card:first-child h3 {
    font-size: clamp(1.34rem, 7.2vw, 2rem);
  }

  .premium-redesign .materials-grid {
    gap: 14px;
  }

  .premium-redesign .section-heading {
    margin-bottom: 20px;
  }

  .premium-redesign .section-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
    line-height: .98;
  }

  .premium-redesign .section-heading p:not(.eyebrow) {
    font-size: .98rem;
    line-height: 1.58;
  }

  .premium-redesign .material-card {
    min-height: 0;
  }

  .premium-redesign .material-card div {
    gap: 10px;
    padding: 20px;
    align-content: start;
  }

  .premium-redesign .material-card__summary {
    font-size: .94rem;
    line-height: 1.48;
  }
}
