:root {
  --ink: #302930;
  --muted: #746b70;
  --berry: #b92f72;
  --berry-dark: #8f255d;
  --mauve: #9c6c91;
  --blush: #ffe4ef;
  --blush-strong: #f2bfd6;
  --blush-soft: #fff0f6;
  --mist: #efedf0;
  --stone: #7b706a;
  --taupe: #c6bcb6;
  --teal: #20565e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(48, 41, 48, 0.15);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 249, 0.88);
  border-bottom: 1px solid rgba(48, 41, 48, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(48, 41, 48, 0.1);
  border-radius: 50%;
  font-size: 0.95rem;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--berry);
  transform: translateY(-2px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  outline-offset: 6px;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--berry);
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.section-pad {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 64px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  max-width: 1280px;
  min-height: min(760px, calc(100vh - 132px));
  margin: 0 auto;
  background:
    radial-gradient(circle at 80% 18%, rgba(185, 47, 114, 0.18), transparent 28%),
    radial-gradient(circle at 18% 16%, rgba(255, 228, 239, 0.96), transparent 30%),
    linear-gradient(135deg, rgba(255, 240, 246, 0.94), rgba(239, 237, 240, 0.42));
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -14%;
  top: 5%;
  width: min(620px, 50vw);
  height: min(620px, 50vw);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--berry-dark);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 7vw, 6.75rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(185, 47, 114, 0.32);
  outline-offset: 3px;
}

.primary {
  color: var(--white);
  background: var(--berry);
  box-shadow: 0 14px 34px rgba(185, 47, 114, 0.24);
}

.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(48, 41, 48, 0.13);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(48, 41, 48, 0.08);
  border-radius: var(--radius);
}

.hero-stats dt {
  font-weight: 900;
  font-size: 1.18rem;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 620px;
  padding: 0;
  overflow: visible;
}

.hero-media::before {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius);
}

.floating-note {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 28px;
  width: min(280px, 72%);
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}

.rich-copy {
  color: var(--muted);
  font-size: 1.3rem;
}

.soft-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.soft-list li {
  padding: 16px 18px;
  color: var(--ink);
  background: var(--blush);
  border-radius: var(--radius);
  font-weight: 800;
}

.quote-band {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 18% 50%, rgba(185, 47, 114, 0.28), transparent 32%),
    linear-gradient(135deg, var(--ink), #3d2938 58%, #243f45);
  color: var(--white);
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.quote-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(72px, 1fr));
  gap: 14px;
}

.quote-icons i {
  display: grid;
  min-height: clamp(74px, 8vw, 112px);
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: clamp(2rem, 4vw, 3.45rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.quote-icons i:first-child {
  grid-column: span 2;
  min-height: clamp(88px, 10vw, 132px);
  color: var(--blush);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.quote-inner p {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: clamp(2.15rem, 5.3vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.quote-inner span {
  display: block;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
}

.section-heading h2 {
  max-width: 960px;
}

.section-heading.compact {
  max-width: 760px;
  text-align: center;
}

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

.benefit-card,
.result-card,
.fit-panel,
.apply-form {
  border: 1px solid rgba(48, 41, 48, 0.09);
  border-radius: var(--radius);
}

.benefit-card {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
}

.benefit-card p,
.result-card p,
.fit-panel li,
.timeline p,
.app-copy p,
.apply-copy p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.benefit-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--berry-dark);
  background: linear-gradient(135deg, rgba(255, 228, 239, 0.95), rgba(242, 191, 214, 0.34));
  border: 1px solid rgba(185, 47, 114, 0.16);
  border-radius: 50%;
  font-size: 1.35rem;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 12%;
}

.fit-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  max-width: calc(var(--max) + 128px);
  margin: 0 auto;
}

.fit-panel {
  padding: clamp(26px, 4vw, 44px);
  background: var(--blush);
}

.fit-panel.neutral {
  background: var(--mist);
}

.fit-panel h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  content: "✓";
  color: var(--berry);
  font-weight: 900;
}

.check-list.muted li::before {
  content: "–";
  color: var(--stone);
}

.results {
  background: #f6f3f2;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.result-card {
  overflow: hidden;
  background: var(--white);
}

.result-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.result-card div {
  padding: 22px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.timeline li {
  padding: 24px;
  background: var(--white);
  border-top: 4px solid var(--berry);
  border-radius: var(--radius);
}

.timeline span {
  display: block;
  margin-bottom: 34px;
  color: var(--mauve);
  font-weight: 900;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 4vw, 42px);
}

.process-cta .button {
  min-width: 180px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(135deg, var(--berry-dark), var(--teal));
}

.cta-band > div,
.cta-band h2 {
  max-width: 780px;
}

.cta-band .eyebrow {
  color: var(--blush-strong);
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.app-option {
  display: grid;
  grid-template-columns: 0.92fr minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.empathy-app {
  margin-top: clamp(42px, 7vw, 78px);
  padding: clamp(22px, 4vw, 36px);
  background:
    radial-gradient(circle at 82% 10%, rgba(185, 47, 114, 0.14), transparent 32%),
    linear-gradient(135deg, var(--blush-soft), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(185, 47, 114, 0.1);
  border-radius: var(--radius);
}

.app-copy {
  max-width: 620px;
}

.empathy-app .app-copy h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.nutrition-callout {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: stretch;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 47, 114, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 228, 239, 0.72));
  border: 1px solid rgba(185, 47, 114, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(48, 41, 48, 0.12);
}

.nutrition-callout::before {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  content: "\f2e7";
  color: var(--white);
  background: var(--berry);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.35rem;
}

.nutrition-callout h3 {
  max-width: 420px;
  margin-bottom: 2px;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 0.98;
}

.nutrition-callout ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nutrition-callout li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
}

.nutrition-callout li i {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--berry-dark);
  background: var(--blush);
  border-radius: 50%;
  font-size: 0.9rem;
}

.nutrition-callout p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.nutrition-price {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  padding: 18px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--berry-dark), var(--berry));
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(185, 47, 114, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nutrition-price:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(185, 47, 114, 0.28);
}

.nutrition-price span {
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
}

.nutrition-price strong {
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  line-height: 0.92;
}


.faq {
  background: var(--blush-soft);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

details {
  background: var(--white);
  border-bottom: 1px solid rgba(48, 41, 48, 0.1);
}

details:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

details:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 850;
  list-style: none;
}

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

summary::after {
  float: right;
  content: "+";
  color: var(--berry);
  font-size: 1.2rem;
}

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

details p {
  padding: 0 24px 22px;
  margin: 0;
}

.apply-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 82px);
  max-width: var(--max);
  margin: 0 auto;
}

.apply-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.apply-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.apply-cta-card {
  align-self: center;
  justify-self: start;
  width: fit-content;
  min-width: min(100%, 300px);
  padding: 18px;
}

.apply-cta-card .button {
  width: auto;
  min-width: 220px;
  min-height: 46px;
  padding: 13px 24px;
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf9;
  border: 1px solid rgba(48, 41, 48, 0.16);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--berry-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--ink);
}

.site-footer .social-links {
  margin-left: auto;
}

.site-footer .social-links a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-footer div {
  max-width: 520px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .quote-inner,
  .fit-section,
  .app-option,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }

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

  .apply-copy {
    position: static;
  }
}

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

  .header-social {
    gap: 6px;
  }

  .header-social a {
    width: 32px;
    height: 32px;
    font-size: 0.86rem;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    background: var(--white);
    border: 1px solid rgba(48, 41, 48, 0.12);
    border-radius: 50%;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid rgba(48, 41, 48, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .hero-stats,
  .benefit-grid,
  .results-grid,
  .timeline,
  .soft-list {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 0.72fr);
    grid-template-rows: auto auto auto auto;
    gap: 14px;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-content {
    display: contents;
  }

  .hero .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 7px;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: 11ch;
    margin-bottom: 10px;
    font-size: clamp(1.85rem, 8.8vw, 2.48rem);
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: none;
    margin: 8px 0 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(185, 47, 114, 0.12);
    border-radius: var(--radius);
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero .button-row {
    grid-column: 1 / -1;
    grid-row: 4;
    gap: 10px;
    margin: 0;
  }

  .hero .button {
    width: auto;
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.76rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    max-width: none;
  }

  .hero-media img {
    object-position: 50% 18%;
    border-radius: var(--radius);
  }

  .floating-note {
    right: -6px;
    bottom: 10px;
    width: min(148px, 92%);
    padding: 10px;
    font-size: 0.7rem;
  }

  .floating-note span {
    display: none;
  }

  .quote-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-icons i:first-child {
    grid-column: auto;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer .social-links {
    margin-left: 0;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .section-pad {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button {
    width: 100%;
  }

  .apply-cta-card {
    width: 100%;
    min-width: 0;
  }

  .apply-cta-card .button {
    width: 100%;
    min-width: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 0.66fr);
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.4vw, 2.1rem);
  }

  .hero-copy {
    padding: 12px 13px;
    font-size: 0.78rem;
  }

  .hero .button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .hero .button.secondary {
    display: none;
  }

  .header-social a {
    width: 30px;
    height: 30px;
  }

  .nutrition-callout {
    padding: 22px;
  }

  .nutrition-price {
    padding: 16px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
