:root {
  --ink: #19312d;
  --ink-deep: #0d332f;
  --blue: #e94d73;
  --blue-light: #ffe7ed;
  --orange: #0d3b35;
  --yellow: #ffd455;
  --cream: #fff7f4;
  --paper: #ffffff;
  --muted: #626c68;
  --line: rgba(25, 49, 45, 0.15);
  --shadow: 0 24px 70px rgba(91, 29, 49, 0.18);
  --radius: 28px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink-deep);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: linear-gradient(110deg, rgba(253, 226, 232, 0.94), rgba(247, 188, 201, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-deep);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(23, 52, 94, 0.15);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 17px;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a,
.footer-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  color: var(--paper);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(13, 59, 53, 0.2);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: #165149;
  border-color: #165149;
  box-shadow: 0 14px 30px rgba(13, 59, 53, 0.28);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 82px;
  background: linear-gradient(132deg, #f9dce3 0%, #f3a8b8 62%, #d76f89 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding: clamp(34px, 5vw, 62px);
  background: rgba(250, 181, 196, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  box-shadow: 0 28px 70px rgba(104, 32, 53, 0.16);
  transform: rotate(-0.65deg);
}

.hero-copy {
  max-width: 690px;
  transform: rotate(0.65deg);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--ink-deep);
}

.eyebrow span {
  margin-right: 7px;
  color: var(--orange);
}

.eyebrow-dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink-deep);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 700px;
  margin-bottom: 25px;
  font-family: "Arial Black", Impact, var(--font);
  font-size: clamp(54px, 6.4vw, 86px);
  word-break: normal;
  hyphens: none;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--ink-deep);
}

h1 span::after {
  display: none;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 64px);
}

h3 {
  font-size: 28px;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: #594f51;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--blue);
}

.text-link-dark {
  margin-top: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.trust-list span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 5px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  transform: rotate(0.65deg);
}

.hero-social {
  position: absolute;
  z-index: 5;
  top: 0;
  right: -10px;
  display: flex;
  gap: 24px;
}

.hero-social a {
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.hero-social a:hover {
  color: #9d2d4d;
}

.hero-main-image {
  position: absolute;
  top: 75px;
  right: 25px;
  width: min(430px, 84%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 9px solid var(--paper);
  border-radius: 50%;
  outline: 1px solid rgba(255, 255, 255, 0.58);
  outline-offset: 14px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-mini {
  position: absolute;
  z-index: 2;
  width: 135px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(15, 39, 73, 0.2);
}

.hero-mini img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center bottom;
}

.hero-mini-top {
  top: 38px;
  right: -5px;
  left: auto;
  transform: rotate(-8deg);
}

.hero-mini-bottom {
  right: 2px;
  bottom: 6px;
  transform: rotate(7deg);
}

.hero-note {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 4px;
  width: 215px;
  display: grid;
  gap: 3px;
  padding: 17px 20px;
  color: var(--ink-deep);
  background: #fff2f5;
  border: 4px solid var(--paper);
  border-radius: 17px;
  box-shadow: 0 14px 30px rgba(23, 52, 94, 0.16);
  transform: rotate(-3deg);
}

.hero-note strong {
  font-size: 16px;
}

.hero-note span {
  font-size: 11px;
  line-height: 1.4;
}

.hero-orb,
.newsletter-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 30px;
  right: -110px;
  width: 390px;
  height: 390px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-orb-two {
  bottom: -130px;
  left: -80px;
  width: 260px;
  height: 260px;
  border: 55px solid rgba(139, 35, 65, 0.08);
}

.benefit-bar {
  color: var(--ink-deep);
  background: var(--paper);
}

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

.benefit-grid > div {
  min-height: 136px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-left: 1px solid var(--line);
}

.benefit-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.benefit-number {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.benefit-grid strong {
  color: var(--ink-deep);
  font-size: 15px;
}

.section {
  padding: 110px 0;
}

.recipe-section {
  background: #f1faf6;
}

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

.section-heading-narrow {
  max-width: 680px;
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.recipe-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(23, 52, 94, 0.1);
}

.recipe-image {
  position: relative;
  align-self: center;
  aspect-ratio: 1;
  margin: 26px 0 26px 26px;
  overflow: hidden;
  border-radius: 24px;
}

.recipe-image::after,
.social-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 39, 73, 0.28), transparent 45%);
  pointer-events: none;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.recipe-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  color: var(--ink-deep);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.recipe-content {
  padding: clamp(42px, 6vw, 78px);
}

.recipe-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.recipe-content h3 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4.7vw, 58px);
}

.recipe-intro {
  max-width: 580px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
}

.recipe-details {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.recipe-details h4 {
  margin-bottom: 19px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.ingredient-list,
.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: #52647d;
  font-size: 14px;
  list-style: none;
}

.ingredient-list li {
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.ingredient-list span {
  display: inline-block;
  min-width: 58px;
  color: var(--ink-deep);
  font-weight: 850;
}

.steps-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  line-height: 1.55;
}

.steps-list span {
  width: 24px;
  height: 24px;
  display: grid;
  color: var(--paper);
  background: var(--blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
  place-items: center;
}

.social-section {
  background: #fff5f2;
}

.social-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 60px;
}

.social-heading h2 {
  margin-bottom: 0;
}

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

.social-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 18px 44px rgba(23, 52, 94, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.social-card:hover {
  box-shadow: 0 26px 56px rgba(23, 52, 94, 0.14);
  transform: translateY(-5px);
}

.social-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.social-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 350ms ease;
}

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

.social-image span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: 39px;
  height: 39px;
  display: grid;
  color: var(--ink-deep);
  background: var(--yellow);
  border: 3px solid var(--paper);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.social-copy {
  min-height: 125px;
  padding: 23px 23px 25px;
}

.social-copy h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

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

.social-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
}

.social-follow a {
  color: var(--ink-deep);
  font-weight: 850;
  text-underline-offset: 4px;
}

.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--paper);
  background: linear-gradient(110deg, #0b3631 0%, #142f35 56%, #273047 100%);
}

.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, black, transparent 64%);
}

.newsletter-orb {
  right: -130px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  background: #d75f7d;
  opacity: 0.22;
}

.newsletter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
}

.newsletter-copy h2 {
  color: var(--paper);
}

.newsletter-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #c6d2e3;
  font-size: 18px;
}

.newsletter-benefits {
  display: grid;
  gap: 22px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-benefits li {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: start;
  gap: 15px;
}

.newsletter-benefits > li > span {
  width: 43px;
  height: 43px;
  display: grid;
  color: var(--ink-deep);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.newsletter-benefits div {
  display: grid;
  gap: 2px;
}

.newsletter-benefits strong {
  color: var(--paper);
  font-size: 15px;
}

.newsletter-benefits small {
  color: #adbed3;
  font-size: 13px;
}

.signup-shell {
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 7px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.signup-topline {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 21px;
  color: var(--ink-deep);
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-topline span:last-child {
  padding: 5px 9px;
  color: #177052;
  background: #e3f7ef;
  border-radius: 999px;
  font-size: 10px;
}

.form-frame-wrap {
  position: relative;
  min-height: 350px;
  height: 350px;
  background: var(--paper);
}

.signup-frame {
  position: relative;
  width: 100%;
  min-height: 350px;
  height: 350px;
  display: block;
  background: transparent;
  border: 0;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 100px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading p:last-child,
.faq-heading a {
  font-size: 14px;
}

.faq-heading a {
  color: var(--blue);
  font-weight: 800;
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 55px 27px 0;
  color: var(--ink-deep);
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 2px;
  width: 38px;
  height: 38px;
  display: grid;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 500;
  place-items: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 55px 25px 0;
  color: var(--muted);
  font-size: 15px;
}

.final-cta {
  padding: 55px 0;
  color: var(--paper);
  background: linear-gradient(110deg, #e77490, #c94f70);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.final-cta .eyebrow {
  margin-bottom: 9px;
  color: #c9d9ff;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(30px, 4vw, 46px);
}

.button-light {
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--ink-deep);
  border-color: var(--ink-deep);
  box-shadow: 0 12px 30px rgba(15, 39, 73, 0.2);
}

.button-light:hover {
  color: var(--paper);
  background: #174b44;
  border-color: #174b44;
}

.site-footer {
  padding: 52px 0 28px;
  color: #9fb0c7;
  background: #092b28;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer,
.brand-footer strong {
  color: var(--paper);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 29px;
}

.footer-links a {
  color: #c2cde0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
}

a:focus-visible,
summary:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 36px;
  }

  h1 {
    font-size: clamp(48px, 7vw, 66px);
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-mini {
    width: 112px;
  }

  .hero-note {
    width: 190px;
  }

  .recipe-content {
    padding: 48px;
  }

  .recipe-details {
    grid-template-columns: 1fr;
  }

  .newsletter-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .newsletter-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(610px, 100%);
    min-height: 590px;
    margin-inline: auto;
  }

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

  .benefit-grid > div {
    min-height: auto;
    padding: 23px 10px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit-grid > div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .recipe-card {
    grid-template-columns: 1fr;
  }

  .recipe-details {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .social-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .social-grid {
    gap: 14px;
  }

  .newsletter-copy {
    max-width: 650px;
  }

  .signup-shell {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .faq-heading {
    position: static;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

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

  .button-small {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    padding: 46px 0 56px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(43px, 13vw, 59px);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

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

  .trust-list {
    gap: 11px 14px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-main-image {
    top: 38px;
    right: 3%;
    width: 84%;
    border-width: 6px;
  }

  .hero-mini {
    width: 88px;
    border-width: 5px;
    border-radius: 17px;
  }

  .hero-mini-top {
    top: 14px;
    left: 0;
  }

  .hero-mini-bottom {
    right: 0;
    bottom: 12px;
  }

  .hero-note {
    bottom: 4px;
    left: 2px;
    width: 168px;
    padding: 13px 15px;
  }

  .hero-note strong {
    font-size: 14px;
  }

  .section,
  .newsletter-section {
    padding: 76px 0;
  }

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

  .section-heading p:last-child,
  .newsletter-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .recipe-card {
    border-radius: 24px;
  }

  .recipe-image {
    margin: 14px 14px 0;
  }

  .recipe-content {
    padding: 33px 24px 38px;
  }

  .recipe-content h3 {
    font-size: 39px;
  }

  .recipe-details {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-image img {
    aspect-ratio: 1 / 1;
  }

  .social-follow {
    justify-content: flex-start;
  }

  .newsletter-grid {
    gap: 42px;
  }

  .signup-shell {
    border-width: 4px;
    border-radius: 21px;
  }

  .signup-topline {
    padding-inline: 15px;
  }

  .form-frame-wrap,
  .signup-frame {
    min-height: 440px;
    height: 440px;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

/* BlueCherry acquisition page */
