:root {
  --turquoise: #47b7c7;
  --turquoise-alt: #4ec1ca;
  --turquoise-dark: #2f9eaa;
  --turquoise-soft: #bfe9ed;
  --cyan: #00cddd;
  --navy: #001f58;
  --cream: #faf5c3;
  --cream-muted: #eee8bc;
  --orange: #e95c2f;
  --orange-dark: #cb4523;
  --lime: #bccb00;
  --white: #ffffff;
  --ink: #001f58;
  --shadow: 0 24px 50px rgba(0, 29, 73, 0.22);
  --radius-pill: 999px;
  --font-display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body: "Nunito Sans", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.2, 1.15, 0.22, 1);
  --motion-fast: 180ms;
  --motion-medium: 520ms;
  --motion-slow: 900ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -78px) scale(0.96);
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.7deg);
  }

  50% {
    transform: translate3d(0, -18px, 0) rotate(1.1deg);
  }
}

@keyframes patternDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }

  50% {
    transform: translate3d(-18px, 22px, 0) rotate(-4deg);
  }
}

@keyframes dotDrift {
  from {
    background-position: 0 0, 190px 150px;
  }

  to {
    background-position: 370px 300px, 560px 450px;
  }
}

@keyframes seedFloat {
  0%,
  100% {
    opacity: 0.18;
    transform: translate3d(0, 0, 0) rotate(var(--seed-rotate, 0deg)) scale(0.86);
  }

  38% {
    opacity: 0.9;
  }

  50% {
    transform: translate3d(var(--seed-drift-x, 18px), var(--seed-drift-y, -34px), 0) rotate(calc(var(--seed-rotate, 0deg) + 120deg)) scale(1.08);
  }
}

@keyframes markerGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes pulseBackTop {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(25, 215, 223, 0.28);
  }

  55% {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26), 0 0 0 14px rgba(25, 215, 223, 0);
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 1rem;
}

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

.container {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1640px);
  margin-inline: auto;
}

.section-turquoise {
  position: relative;
  isolation: isolate;
  background-color: var(--turquoise);
  color: var(--white);
}

.section-cream {
  position: relative;
  isolation: isolate;
  background-color: var(--cream);
  color: var(--navy);
}

.language-gate-page {
  min-height: 100svh;
  background: var(--turquoise);
  color: var(--navy);
}

.language-gate {
  min-height: 100svh;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 42px, transparent 43px),
    radial-gradient(circle, rgba(0, 31, 88, 0.08) 0 42px, transparent 43px);
  background-position: 0 0, 190px 150px;
  background-size: 370px 300px;
}

.language-gate-shell {
  display: grid;
  justify-items: center;
  width: min(100% - 32px, 650px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(2rem, 7vw, 5rem) 0;
  text-align: center;
}

.language-gate-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.language-gate-brand img {
  width: 82px;
  height: 70px;
  object-fit: contain;
}

.language-gate-shell > .eyebrow {
  margin-top: clamp(2.3rem, 6vw, 4.2rem);
  font-size: 1.25rem;
}

.language-gate h1 {
  margin: 0.35rem 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.language-gate-subtitle {
  margin: 0.65rem 0 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.language-gate-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  width: min(100%, 560px);
  margin-top: clamp(2rem, 5vw, 3.2rem);
}

.language-gate-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.15rem 0.65rem;
  min-height: 94px;
  border: 2px solid rgba(0, 31, 88, 0.12);
  border-radius: 22px;
  background: var(--cream);
  color: var(--navy);
  padding: 1rem 1.15rem;
  text-align: left;
  box-shadow: 0 16px 30px rgba(0, 31, 88, 0.16);
  transition: transform var(--motion-fast) var(--ease-spring), background var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.language-gate-option:hover,
.language-gate-option:focus-visible {
  background: var(--lime);
  box-shadow: 0 22px 36px rgba(0, 31, 88, 0.22);
  transform: translateY(-4px);
}

.language-gate-option span {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.95;
}

.language-gate-option small {
  grid-column: 1;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.72;
}

.language-gate-option > .fa-arrow-right {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--orange);
  font-size: 1.25rem;
}

.dot-field {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.11) 0 42px, transparent 43px),
    radial-gradient(circle, rgba(0, 41, 99, 0.08) 0 42px, transparent 43px);
  background-position: 0 0, 190px 150px;
  background-size: 370px 300px;
  animation: dotDrift 34s linear infinite;
}

.section-cream.dot-field {
  background-image:
    radial-gradient(circle, rgba(0, 41, 99, 0.08) 0 42px, transparent 43px),
    radial-gradient(circle, rgba(0, 41, 99, 0.05) 0 42px, transparent 43px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 15;
  width: min(100% - 64px, 1530px);
  margin: 0 auto;
  transform: translate(-50%, 62px);
  transition: transform 220ms ease;
  animation: navDrop 780ms var(--ease-out) 80ms both;
}

.site-header.is-scrolled {
  transform: translate(-50%, 12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  min-height: 88px;
  border-radius: var(--radius-pill);
  background: rgba(207, 246, 248, 0.92);
  padding: 0.7rem 2.4rem 0.7rem 1.6rem;
  box-shadow: 0 12px 34px rgba(0, 41, 99, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 360px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.brand img {
  width: 82px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}

.brand span {
  display: block;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 1.45rem;
  border-left: 2px solid rgba(0, 41, 99, 0.35);
}

.main-nav a:first-child {
  border-left: 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.75rem;
}

.language-switcher {
  --switch-padding: 0.2rem;
  --switch-option-width: 36px;
  --switch-option-height: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 2px solid rgba(0, 41, 99, 0.24);
  border-radius: var(--radius-pill);
  padding: var(--switch-padding);
  background: rgba(255, 255, 255, 0.18);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  isolation: isolate;
  line-height: 1;
  overflow: hidden;
}

.language-switcher::before {
  content: "";
  position: absolute;
  top: var(--switch-padding);
  left: var(--switch-padding);
  z-index: 0;
  width: var(--switch-option-width);
  height: var(--switch-option-height);
  border-radius: var(--radius-pill);
  background: var(--navy);
  box-shadow: 0 8px 16px rgba(0, 41, 99, 0.22);
  transform: translateX(0);
  transition: transform 310ms var(--ease-spring), box-shadow 240ms ease;
}

.language-switcher[data-current-lang="en"]::before {
  transform: translateX(var(--switch-option-width));
}

.language-switcher.is-switching::before {
  box-shadow: 0 10px 18px rgba(0, 41, 99, 0.3);
}

.language-switcher a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--switch-option-width);
  height: var(--switch-option-height);
  border-radius: var(--radius-pill);
  color: var(--navy);
  transition: color 180ms ease, transform 220ms var(--ease-spring);
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--orange);
}

.language-switcher a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.language-switcher[data-current-lang="es"] a[data-lang="es"],
.language-switcher[data-current-lang="en"] a[data-lang="en"] {
  color: var(--white);
}

.language-switcher a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 1110px;
  padding: 210px 0 155px;
  overflow: hidden;
  border-bottom-left-radius: 17vw;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -118px;
  z-index: -1;
  width: 118vw;
  height: 255px;
  border-radius: 50% 0 0 0;
  background: var(--cream);
}

.side-pattern {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 260px;
  height: 760px;
  z-index: -1;
  border-radius: 45%;
  background:
    radial-gradient(circle, var(--orange) 0 12px, transparent 13px) 0 0 / 58px 58px,
    linear-gradient(135deg, #faf5c3 0 49%, transparent 50%),
    repeating-linear-gradient(110deg, rgba(0, 41, 99, 0.18) 0 3px, transparent 4px 17px);
  transform: rotate(-7deg);
  animation: patternDrift 8s ease-in-out infinite;
}

.seed-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.seed-particle {
  position: absolute;
  left: var(--seed-left);
  top: var(--seed-top);
  width: var(--seed-size, 10px);
  height: calc(var(--seed-size, 10px) * 0.58);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.65), transparent 30%),
    var(--seed-color, var(--orange));
  box-shadow: 0 3px 8px rgba(0, 41, 99, 0.16);
  transform: rotate(var(--seed-rotate, 0deg));
  animation: seedFloat var(--seed-duration, 7s) ease-in-out var(--seed-delay, 0s) infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 5rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 1.08;
}

.eyebrow.navy {
  color: var(--navy);
}

.hero h1,
.feature h2,
.section-heading h2,
.community h2,
.faq h2,
.footer-claim h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.91;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: 5.9rem;
}

.hero h1 span {
  display: block;
  opacity: 0;
  transform: translate3d(-46px, 0, 0) skewX(-3deg);
  transition: opacity 620ms var(--ease-out), transform 720ms var(--ease-spring);
}

.hero h1 span:last-child {
  color: var(--white);
  font-size: 6.9rem;
}

.hero-copy.is-visible h1 span {
  opacity: 1;
  transform: translate3d(0, 0, 0) skewX(0);
}

.hero-copy.is-visible h1 span:nth-child(1) {
  transition-delay: 120ms;
}

.hero-copy.is-visible h1 span:nth-child(2) {
  transition-delay: 220ms;
}

.hero-copy.is-visible h1 span:nth-child(3) {
  transition-delay: 320ms;
}

.hero-description {
  position: relative;
  max-width: 760px;
  margin: 2.5rem 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.58);
  padding: 2.2rem 0 0 2.1rem;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.32;
}

.hero-description::before {
  content: "";
  position: absolute;
  top: 2.45rem;
  left: 0;
  width: 14px;
  height: 98px;
  border-radius: 2px;
  background: var(--orange);
  transform-origin: top;
}

.hero-copy.is-visible .hero-description::before {
  animation: markerGrow 620ms var(--ease-out) 520ms both;
}

.seal-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 760px;
  margin: 4.7rem 0 0;
  padding: 0 38px 24px;
  list-style: none;
}

.seal-strip::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 76px;
  border-radius: var(--radius-pill);
  background: var(--lime);
}

.seal {
  --seal-rotate: 0deg;
  display: grid;
  place-items: center;
  width: 124px;
  aspect-ratio: 1;
  margin-inline: auto;
  border: 6px solid #d9d6c4;
  border-radius: 50%;
  background: #f4eee3;
  box-shadow: 0 11px 18px rgba(0, 41, 99, 0.24);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 0.98;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(0, 22px, 0) scale(0.72) rotate(var(--seal-rotate));
  transition: opacity 420ms ease, transform 620ms var(--ease-spring), filter 220ms ease;
}

.seal::before {
  content: "";
  position: absolute;
}

.seal span {
  max-width: 86px;
}

.seal-clock {
  --seal-rotate: -8deg;
  border-color: #f88e2e;
  background: #fff5df;
}

.seal-fiber {
  --seal-rotate: -7deg;
  background: #ece7da;
}

.seal-fiber span {
  color: var(--orange);
}

.seal-dark {
  --seal-rotate: -12deg;
  border-color: #dad8cd;
  background: var(--navy);
  color: var(--white);
}

.hero-copy.is-visible .seal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(var(--seal-rotate));
}

.hero-copy.is-visible .seal:nth-child(1) {
  transition-delay: 560ms;
}

.hero-copy.is-visible .seal:nth-child(2) {
  transition-delay: 650ms;
}

.hero-copy.is-visible .seal:nth-child(3) {
  transition-delay: 740ms;
}

.hero-copy.is-visible .seal:nth-child(4) {
  transition-delay: 830ms;
}

.seal:hover {
  filter: saturate(1.12) brightness(1.03);
  transform: translate3d(0, -8px, 0) scale(1.04) rotate(var(--seal-rotate));
}

.hero-media {
  position: relative;
}

.hero-media.reveal {
  transform: translate3d(46px, 52px, 0) rotate(-5deg) scale(0.92);
  transition: opacity 760ms var(--ease-out) var(--delay, 0ms), transform 920ms var(--ease-spring) var(--delay, 0ms);
}

.hero-media.reveal.is-visible {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.hero-media img {
  display: block;
  width: min(100%, 680px);
  margin-inline: auto;
  border-radius: 0;
  mix-blend-mode: normal;
  filter: drop-shadow(0 32px 22px rgba(0, 52, 74, 0.28));
  transform-origin: center;
  will-change: transform;
}

.hero-media.is-visible img {
  animation: productFloat 5.8s ease-in-out 1.05s infinite;
}

.feature {
  margin-top: -2px;
  padding: 120px 0 145px;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 4rem;
}

.feature-media {
  position: relative;
}

.feature-media::after {
  content: "";
  position: absolute;
  top: -78px;
  right: -15px;
  width: 220px;
  height: 220px;
  border: 9px solid var(--orange);
  border-bottom: 0;
  border-left: 0;
  border-radius: 50%;
  transform: rotate(-30deg);
}

.feature-media img {
  display: block;
  width: min(100%, 1040px);
  border-radius: 0;
  filter: drop-shadow(0 26px 22px rgba(0, 41, 99, 0.12));
}

.feature-copy {
  padding-top: 3rem;
}

.feature h2,
.section-heading h2,
.community h2,
.faq h2 {
  color: var(--navy);
  font-size: 5.35rem;
}

.feature h2 {
  font-size: clamp(5.9rem, 5.8vw, 7.25rem);
  line-height: 0.86;
}

.feature h2 span {
  display: block;
}

.feature p:not(.eyebrow):not(.feature-pill) {
  max-width: 690px;
  margin: 1.7rem 0 0;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.28;
}

.feature-pill {
  max-width: 610px;
  margin: 5.3rem 0 0 auto;
  border-radius: var(--radius-pill);
  background: var(--turquoise);
  color: var(--navy);
  padding: 0.95rem 2rem;
  font-size: 1.45rem;
  line-height: 1.15;
  text-align: center;
}

.recipes {
  padding: 145px 0 150px;
  overflow: hidden;
  border-top-left-radius: 17vw;
  border-bottom-right-radius: 13vw;
}

.lime-corner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 290px;
  height: 320px;
  border-bottom-right-radius: 100%;
  background: var(--lime);
}

.section-heading {
  max-width: 1330px;
  margin-bottom: 4.6rem;
}

.section-heading p:last-child,
.community-head p {
  margin: 1.35rem 0 0;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.35;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.7rem;
}

.recipe-card {
  --recipe-card-radius: 34px;
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--recipe-card-radius);
  padding: 0;
  background: transparent;
  box-shadow: 0 16px 22px rgba(0, 41, 99, 0.12);
  transform-origin: center bottom;
  transition: transform 300ms var(--ease-spring), filter 260ms ease, box-shadow 260ms ease;
}

.recipe-card::before {
  content: none;
}

.recipe-card:hover {
  box-shadow: 0 22px 30px rgba(0, 41, 99, 0.18);
  transform: translateY(-14px) rotate(-1deg) scale(1.025);
  filter: saturate(1.08);
}

.recipe-card img {
  display: block;
  width: 100%;
  border-radius: calc(var(--recipe-card-radius) - 3px);
  aspect-ratio: 470 / 313;
  height: auto;
  object-fit: cover;
  transform-origin: center;
  transition: transform 420ms var(--ease-out), filter 260ms ease;
}

.recipe-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.center {
  display: flex;
  justify-content: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 58px;
  border-radius: var(--radius-pill);
  padding: 0.82rem 2.2rem;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 41, 99, 0.13);
  transition: transform var(--motion-fast) var(--ease-spring), background var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -52%;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 560ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 30px rgba(0, 41, 99, 0.18);
  transform: translateY(-4px) scale(1.018);
}

.button:hover::after,
.button:focus-visible::after {
  left: 118%;
}

.button:active {
  transform: translateY(-1px) scale(0.985);
}

.button-orange {
  margin-top: 5.2rem;
  background: var(--orange);
  color: var(--white);
}

.button-orange:hover,
.button-orange:focus-visible {
  background: var(--orange-dark);
}

.button-lime {
  min-width: 430px;
  background: var(--lime);
  color: var(--navy);
}

.button-lime .fa-instagram {
  margin-right: 0.7rem;
  font-size: 1.18em;
  line-height: 1;
}

.community {
  padding: 130px 0 125px;
  overflow: hidden;
}

.community-shape {
  position: absolute;
  right: -95px;
  bottom: -120px;
  z-index: -1;
  width: 360px;
  height: 840px;
  border-radius: 50% 0 0 50%;
  background: var(--orange);
}

.community-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 3rem;
  margin-bottom: 4rem;
}

.community-head p {
  color: var(--ink);
}

.community h2 {
  max-width: 840px;
}

.community-head .button {
  margin-top: 1.5rem;
}

.community-social-links {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  width: min(100%, 390px);
  margin-top: 1.5rem;
}

.community-social-label {
  margin: 0 0 0.2rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.community-social-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 58px;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: var(--navy);
  padding: 0.65rem 1rem;
  box-shadow: 0 12px 24px rgba(0, 41, 99, 0.13);
  transition: transform var(--motion-fast) var(--ease-spring), box-shadow var(--motion-fast) ease;
}

.community-social-link:hover,
.community-social-link:focus-visible {
  box-shadow: 0 18px 30px rgba(0, 41, 99, 0.18);
  transform: translateY(-4px);
}

.community-social-link > .fa-instagram {
  color: var(--orange);
  font-size: 1.35rem;
}

.community-social-link span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.community-social-link strong,
.community-social-link small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.community-social-link strong {
  font-size: 1rem;
  line-height: 1;
}

.community-social-link small {
  font-size: 0.86rem;
  line-height: 1;
}

.community-social-link > .fa-arrow-up-right-from-square {
  font-size: 0.9rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 1.7rem;
}

.social-embed-grid {
  align-items: start;
}

.social-card {
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 16px 16px rgba(0, 41, 99, 0.18));
  transform-origin: center bottom;
  transition: transform 320ms var(--ease-spring), filter 260ms ease;
}

.social-card.lifted {
  transform: translateY(42px);
}

.social-card:hover {
  filter: drop-shadow(0 24px 20px rgba(0, 41, 99, 0.22));
  transform: translateY(-12px) rotate(-1deg) scale(1.018);
}

.social-card.lifted:hover {
  transform: translateY(26px) rotate(1deg) scale(1.018);
}

.social-card img {
  width: 100%;
  border-radius: 18px;
}

.social-embed-card {
  min-height: 540px;
  overflow: visible;
  background: var(--white);
  box-shadow: 0 18px 28px rgba(0, 41, 99, 0.13);
}

.social-embed-card .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

.social-embed-card iframe {
  width: 100% !important;
  min-width: 0 !important;
}

.faq {
  padding: 150px 0 150px;
  overflow: hidden;
}

.faq-shape {
  position: absolute;
  right: -245px;
  bottom: 0;
  z-index: -1;
  width: 630px;
  height: 900px;
  border-top-left-radius: 100%;
  background: var(--lime);
}

.faq-shape::before {
  content: "";
  position: absolute;
  top: -130px;
  right: 160px;
  width: 270px;
  height: 520px;
  border-radius: 50%;
  background: var(--orange);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 5rem;
}

.faq-media img {
  display: block;
  width: min(100%, 670px);
  border-radius: 0;
  filter: drop-shadow(0 30px 30px rgba(0, 41, 99, 0.2));
}

.faq h2 {
  margin-bottom: 2.4rem;
}

.faq h2 span {
  display: block;
}

.faq h2 span:last-child {
  color: var(--white);
}

.accordion {
  display: grid;
  gap: 0.95rem;
  max-width: 910px;
}

.accordion-item {
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.accordion-item.is-open {
  background: var(--turquoise-soft);
  box-shadow: 0 18px 30px rgba(0, 41, 99, 0.16);
}

.accordion-trigger {
  position: relative;
  width: 100%;
  min-height: 58px;
  border-radius: var(--radius-pill);
  background: var(--turquoise-dark);
  color: var(--white);
  padding: 0.8rem 4.8rem 0.8rem 2.3rem;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  transition: background 220ms ease, transform 220ms var(--ease-spring), box-shadow 220ms ease;
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  box-shadow: 0 10px 18px rgba(0, 41, 99, 0.14);
  transform: translateX(6px);
}

.accordion-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0;
  height: 0;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 18px solid var(--white);
  transform: translateY(-42%);
  transition: transform 180ms ease;
}

.accordion-item.is-open .accordion-trigger {
  background: var(--navy);
  border-radius: 28px 28px 0 0;
  box-shadow: none;
  transform: none;
}

.accordion-item.is-open .accordion-trigger::after {
  transform: translateY(-58%) rotate(180deg);
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  border-radius: 0 0 28px 28px;
  background: var(--turquoise-soft);
  color: var(--navy);
  padding: 0 2.25rem;
  font-size: 1.4rem;
  line-height: 1.35;
  transform: translateY(-8px);
  transition: max-height 380ms var(--ease-out), opacity 260ms ease, transform 380ms var(--ease-out), padding 260ms ease;
}

.accordion-item.is-open .accordion-panel {
  opacity: 1;
  padding: 1.25rem 2.25rem 2rem;
  transform: translateY(0);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  min-height: 720px;
  padding: 150px 0 260px;
}

.footer-wave {
  position: absolute;
  right: -140px;
  bottom: -95px;
  width: 980px;
  height: 260px;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(circle, var(--orange) 0 15px, transparent 16px) 0 0 / 70px 70px,
    var(--lime);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
}

.footer-claim h2 {
  color: var(--cyan);
  font-size: 3.5rem;
}

.footer-claim p {
  margin: 0.35rem 0 0;
  font-size: 2rem;
}

.footer-claim .button-orange {
  margin-top: 4.2rem;
}

.instagram-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  margin-top: 1.35rem !important;
  font-size: 1.55rem !important;
}

.instagram-line .fa-instagram {
  color: var(--orange);
  font-size: 1.25em;
  line-height: 1;
}

.instagram-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.instagram-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.instagram-links a:hover,
.instagram-links a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.instagram-links strong {
  color: var(--cyan);
}

.social-account-dialog[hidden] {
  display: none;
}

.social-dialog-open {
  overflow: hidden;
}

.social-account-dialog {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.social-account-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 88, 0.66);
  backdrop-filter: blur(5px);
}

.social-account-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  border-radius: 28px;
  background: var(--cream);
  color: var(--navy);
  padding: 2rem;
  box-shadow: 0 28px 70px rgba(0, 31, 88, 0.32);
}

.social-account-dialog-panel h2 {
  margin: 0.3rem 0 1.2rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.social-account-dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}

.social-account-dialog-close:hover,
.social-account-dialog-close:focus-visible {
  background: var(--orange);
}

.social-account-options {
  display: grid;
  gap: 0.7rem;
}

.social-account-options a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-height: 68px;
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 18px rgba(0, 31, 88, 0.1);
  transition: transform var(--motion-fast) var(--ease-spring), background var(--motion-fast) ease;
}

.social-account-options a:hover,
.social-account-options a:focus-visible {
  background: var(--lime);
  transform: translateY(-2px);
}

.social-account-options a > .fa-instagram {
  color: var(--orange);
  font-size: 1.45rem;
}

.social-account-options a span {
  display: grid;
  gap: 0.15rem;
}

.social-account-options a small {
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(155px, 1fr));
  align-items: start;
  margin-top: 0.45rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
}

.footer-nav a {
  display: flex;
  align-items: center;
  min-height: 82px;
  max-width: 184px;
  border-left: 2px solid rgba(255, 255, 255, 0.55);
  padding: 0 1.55rem;
}

.footer-nav a:first-child {
  border-left: 0;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cyan);
}

.back-top {
  position: absolute;
  right: 10px;
  bottom: -68px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--cyan);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  animation: pulseBackTop 2.8s ease-in-out infinite;
}

.back-top span {
  display: block;
  width: 31px;
  height: 31px;
  border-top: 8px solid var(--navy);
  border-left: 8px solid var(--navy);
  transform: translateY(7px) rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 600ms ease var(--delay, 0ms), transform 600ms ease var(--delay, 0ms);
}

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

.recipe-card.reveal {
  transform: translate3d(0, 62px, 0) rotate(-3deg) scale(0.92);
}

.recipe-card.reveal.is-visible {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.recipe-card.reveal.is-visible:hover {
  transform: translateY(-14px) rotate(-1deg) scale(1.025);
}

.social-card.reveal {
  transform: translate3d(0, 52px, 0) rotate(2deg) scale(0.94);
}

.social-card.lifted.reveal {
  transform: translate3d(0, 90px, 0) rotate(-2deg) scale(0.94);
}

.social-card.reveal.is-visible {
  transform: translateY(0) rotate(0) scale(1);
}

.social-card.lifted.reveal.is-visible {
  transform: translateY(42px) rotate(0) scale(1);
}

.social-card.reveal.is-visible:hover {
  transform: translateY(-12px) rotate(-1deg) scale(1.018);
}

.social-card.lifted.reveal.is-visible:hover {
  transform: translateY(26px) rotate(1deg) scale(1.018);
}

@media (max-width: 1320px) {
  .hero {
    min-height: 980px;
  }

  .hero-grid,
  .feature-grid,
  .faq-grid {
    gap: 3.2rem;
  }

  .hero h1 {
    font-size: 4.9rem;
  }

  .hero h1 span:last-child {
    font-size: 5.7rem;
  }

  .feature h2,
  .section-heading h2,
  .community h2,
  .faq h2 {
    font-size: 4.45rem;
  }

  .recipe-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 1080px) {
  .container,
  .site-header {
    width: min(100% - 36px, 1640px);
  }

  .site-header {
    transform: translate(-50%, 20px);
  }

  .site-header.is-scrolled {
    transform: translate(-50%, 10px);
  }

  .nav-shell {
    min-height: 74px;
    padding: 0.6rem 1rem 0.6rem 1.15rem;
  }

  .brand img {
    width: 72px;
    height: 60px;
  }

  .brand span {
    font-size: 1.48rem;
  }

  .main-nav {
    font-size: 1.25rem;
  }

  .main-nav a {
    padding: 0 0.85rem;
  }

  .language-switcher {
    --switch-option-width: 32px;
    --switch-option-height: 30px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 145px 0 120px;
  }

  .hero-grid,
  .feature-grid,
  .faq-grid,
  .community-head {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    width: min(100%, 560px);
  }

  .hero h1 {
    font-size: 4.65rem;
  }

  .hero h1 span:last-child {
    font-size: 5.25rem;
  }

  .seal-strip {
    max-width: 690px;
  }

  .feature-copy {
    padding-top: 0;
  }

  .feature-pill {
    margin-left: 0;
  }

  .recipes {
    padding-top: 120px;
  }

  .recipe-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-card.lifted {
    transform: translateY(0);
  }

  .social-card.lifted:hover {
    transform: translateY(-9px);
  }

  .button-lime {
    min-width: 320px;
  }

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

  .footer-nav {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .language-gate-shell {
    width: min(100% - 28px, 480px);
    padding-block: 1.5rem 2rem;
  }

  .language-gate-brand {
    font-size: 1.4rem;
  }

  .language-gate-brand img {
    width: 62px;
    height: 52px;
  }

  .language-gate-shell > .eyebrow {
    margin-top: 2rem;
    font-size: 1rem;
  }

  .language-gate h1 {
    font-size: clamp(3.5rem, 15vw, 5.3rem);
  }

  .language-gate-subtitle {
    font-size: 1.05rem;
  }

  .language-gate-options {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 2rem;
  }

  .language-gate-option {
    min-height: 78px;
    border-radius: 18px;
    padding: 0.8rem 1rem;
  }

  .language-gate-option span {
    font-size: 1.7rem;
  }

  .container,
  .site-header {
    width: min(100% - 28px, 1640px);
  }

  .site-header {
    top: 10px;
    transform: translate(-50%, 8px);
  }

  .site-header.is-scrolled {
    transform: translate(-50%, 0);
  }

  .nav-shell {
    position: relative;
    border-radius: 32px;
    gap: 0.7rem;
  }

  .brand img {
    width: 62px;
    height: 52px;
  }

  .brand span {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions {
    margin-left: auto;
    gap: 0.55rem;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(207, 246, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    animation: menuDrop 260ms var(--ease-out) both;
  }

  .main-nav a {
    min-height: 56px;
    border-top: 1px solid rgba(0, 41, 99, 0.16);
    border-left: 0;
    padding: 0 1.4rem;
  }

  .main-nav a:first-child {
    border-top: 0;
  }

  .hero {
    padding: 98px 0 76px;
    border-bottom-left-radius: 82px;
  }

  .hero-grid {
    gap: 1.65rem;
  }

  .side-pattern {
    right: -170px;
    height: 540px;
  }

  .hero-media img {
    width: min(82vw, 310px);
  }

  .eyebrow {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero h1 span:last-child {
    font-size: 3.95rem;
  }

  .hero-description {
    margin-top: 1.35rem;
    padding-top: 1.6rem;
    padding-left: 1.35rem;
    font-size: 1.18rem;
  }

  .hero-description::before {
    top: 1.78rem;
    width: 9px;
    height: 92px;
  }

  .seal-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 326px;
    margin-top: 1.8rem;
    padding: 0;
  }

  .seal-strip::before {
    display: none;
  }

  .seal {
    width: 106px;
    border-width: 5px;
    font-size: 1rem;
  }

  .seal span {
    max-width: 76px;
  }

  .feature,
  .community,
  .faq {
    padding: 82px 0;
  }

  .feature h2,
  .section-heading h2,
  .community h2,
  .faq h2 {
    font-size: 3.5rem;
  }

  .feature p:not(.eyebrow):not(.feature-pill),
  .section-heading p:last-child,
  .community-head p,
  .accordion-panel {
    font-size: 1.12rem;
  }

  .feature-pill {
    margin-top: 2.3rem;
    font-size: 1.08rem;
  }

  .recipes {
    padding: 90px 0;
    border-top-left-radius: 82px;
    border-bottom-right-radius: 82px;
  }

  .recipe-grid,
  .social-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin-inline: -14px;
    padding: 0 14px 1.2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .recipe-grid::-webkit-scrollbar,
  .social-grid::-webkit-scrollbar {
    display: none;
  }

  .recipe-card,
  .social-card {
    flex: 0 0 min(78vw, 318px);
    scroll-snap-align: start;
  }

  .recipe-card.is-snap-active,
  .social-card.is-snap-active {
    filter: saturate(1.08) contrast(1.02);
    transform: translateY(-6px) scale(1.015);
  }

  .recipe-card.reveal.is-visible:hover,
  .recipe-card.is-snap-active:hover {
    transform: translateY(-10px) rotate(-1deg) scale(1.018);
  }

  .social-card.reveal.is-visible,
  .social-card.lifted.reveal.is-visible {
    transform: translateY(0) rotate(0) scale(1);
  }

  .recipe-card {
    --recipe-card-radius: 28px;
    padding: 0;
    border-radius: var(--recipe-card-radius);
  }

  .recipe-card::before {
    content: none;
  }

  .recipe-card img {
    border-radius: calc(var(--recipe-card-radius) - 3px);
  }

  .button {
    min-width: min(100%, 280px);
    min-height: 52px;
    padding-inline: 1.5rem;
    font-size: 1.05rem;
  }

  .button-orange {
    margin-top: 2.6rem;
  }

  .button-lime {
    min-width: min(100%, 300px);
  }

  .community-head {
    gap: 1.2rem;
    margin-bottom: 2.3rem;
  }

  .faq-grid {
    gap: 2.3rem;
  }

  .faq-content {
    order: -1;
  }

  .faq-media img {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .accordion-trigger {
    min-height: 56px;
    padding: 0.8rem 3.6rem 0.8rem 1.2rem;
    font-size: 1.08rem;
  }

  .accordion-trigger::after {
    right: 1.25rem;
    border-right-width: 11px;
    border-left-width: 11px;
    border-top-width: 13px;
  }

  .accordion-panel {
    padding: 0 1.2rem;
  }

  .accordion-item.is-open .accordion-panel {
    padding: 1rem 1.2rem 1.35rem;
  }

  .site-footer {
    min-height: 690px;
    padding: 120px 0 230px;
  }

  .footer-claim h2 {
    font-size: 2.85rem;
  }

  .footer-claim p {
    font-size: 1.4rem;
  }

  .instagram-line {
    font-size: 1.15rem !important;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    font-size: 1.32rem;
  }

  .footer-nav a {
    min-height: 52px;
    max-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
    padding: 0;
  }

  .back-top {
    right: 0;
    bottom: -86px;
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    padding: 0.55rem 0.75rem 0.55rem 0.85rem;
  }

  .brand img {
    width: 52px;
    height: 44px;
  }

  .brand span {
    font-size: 1.03rem;
  }

  .language-switcher {
    --switch-option-width: 28px;
    --switch-option-height: 26px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-media img {
    width: min(78vw, 278px);
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero h1 span:last-child {
    font-size: 3.25rem;
  }

  .feature h2,
  .section-heading h2,
  .community h2,
  .faq h2 {
    font-size: 2.85rem;
  }
}

.recipes-archive-page {
  background: var(--cream);
}

.recipe-archive-hero {
  min-height: 620px;
  padding: clamp(130px, 11vw, 190px) 0 92px;
  overflow: hidden;
}

.recipe-archive-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -30vw;
  z-index: 0;
  width: min(56vw, 880px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.archive-hero-dots {
  opacity: 0.52;
}

.archive-corner {
  right: -40px;
  bottom: 0;
  z-index: 1;
  width: min(28vw, 470px);
}

.archive-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.43fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.archive-hero-copy {
  max-width: 920px;
}

.archive-hero-copy h1 {
  margin: 0.45rem 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(5.1rem, 8.2vw, 9.8rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.archive-hero-copy h1 span {
  display: block;
}

.archive-hero-copy h1 span:last-child {
  color: var(--white);
}

.archive-hero-body {
  max-width: 760px;
  margin: 2rem 0 0;
  color: var(--white);
  font-size: clamp(1.25rem, 1.45vw, 1.7rem);
  line-height: 1.28;
}

.archive-mobile-helper {
  display: none;
}

.archive-product-note {
  position: relative;
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 1rem;
  align-items: center;
  border-radius: 28px;
  background: rgba(250, 245, 195, 0.94);
  padding: 1.15rem 1.3rem;
  box-shadow: 0 24px 36px rgba(0, 31, 88, 0.18);
}

.archive-product-note img {
  width: min(100%, 190px);
  filter: drop-shadow(0 18px 16px rgba(0, 31, 88, 0.22));
}

.archive-product-note p {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.22;
}

.recipe-archive-body {
  padding: clamp(72px, 8vw, 124px) 0 clamp(96px, 10vw, 150px);
  overflow: hidden;
}

.archive-body-dots {
  opacity: 0.46;
}

.archive-filter-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) 1fr;
  gap: 1.3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.archive-search-group label {
  display: block;
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.archive-search {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 58px;
  border: 2px solid rgba(0, 31, 88, 0.12);
  border-radius: var(--radius-pill);
  background: var(--white);
  padding: 0 1.2rem;
  box-shadow: 0 12px 22px rgba(0, 31, 88, 0.08);
}

.archive-search i {
  color: var(--orange);
}

.archive-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
}

.archive-search input::placeholder {
  color: rgba(0, 31, 88, 0.58);
}

.archive-filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.archive-filter-group button {
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--turquoise);
  color: var(--white);
  cursor: pointer;
  padding: 0.65rem 1.25rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(0, 31, 88, 0.1);
  transition: transform 180ms var(--ease-spring), background 180ms ease, color 180ms ease;
}

.archive-filter-group button:hover,
.archive-filter-group button:focus-visible {
  transform: translateY(-3px);
}

.archive-filter-group button.is-active {
  border-color: rgba(0, 31, 88, 0.18);
  background: var(--lime);
  color: var(--navy);
}

.archive-results-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.archive-results-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.8vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.archive-results-head p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.archive-results-head span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
}

.archive-recipe-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 2.4rem);
}

.archive-recipe-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 28px rgba(0, 31, 88, 0.12);
  transition: opacity 220ms ease, transform 300ms var(--ease-spring), box-shadow 260ms ease, filter 260ms ease;
}

.archive-recipe-card:hover,
.archive-recipe-card:focus-visible {
  box-shadow: 0 24px 38px rgba(0, 31, 88, 0.18);
  transform: translateY(-10px);
  filter: saturate(1.04);
}

.archive-recipe-card[hidden] {
  display: none;
}

.archive-recipe-card figure {
  margin: 0;
  background: var(--turquoise);
}

.archive-recipe-card img {
  width: 100%;
  aspect-ratio: 470 / 313;
  object-fit: cover;
}

.archive-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.3rem 1.45rem;
}

.archive-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.archive-card-meta span {
  border-radius: var(--radius-pill);
  background: rgba(71, 183, 199, 0.18);
  color: var(--navy);
  padding: 0.32rem 0.68rem;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
}

.archive-card-body h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.archive-card-body p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.archive-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--orange);
  font-weight: 900;
}

.archive-empty {
  position: relative;
  z-index: 2;
  margin: 2.5rem 0 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  padding: 1.2rem 1.4rem;
  font-weight: 800;
  text-align: center;
}

.mobile-quick-deck {
  display: none;
}

@media (max-width: 1080px) {
  .recipe-archive-hero {
    min-height: auto;
  }

  .archive-hero-grid,
  .archive-filter-bar {
    grid-template-columns: 1fr;
  }

  .archive-product-note {
    max-width: 680px;
  }

  .archive-filter-group {
    justify-content: flex-start;
  }

  .archive-recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 96px;
    scroll-padding-bottom: 92px;
  }

  body:has(.mobile-quick-deck) {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .recipe-archive-hero {
    padding: 126px 0 26px;
  }

  .recipe-archive-hero::after {
    right: -60vw;
    bottom: -64vw;
    width: 108vw;
  }

  .archive-corner {
    display: none;
  }

  .archive-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 13vw, 4.7rem);
    line-height: 0.88;
    overflow-wrap: normal;
  }

  .archive-hero-body {
    display: none;
  }

  .archive-mobile-helper {
    display: block;
    max-width: 300px;
    margin: 0.8rem 0 0;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.2;
  }

  .archive-product-note {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.7rem;
    max-width: none;
    margin-top: 1rem;
    border-radius: 18px;
    padding: 0.55rem 0.75rem;
    box-shadow: 0 12px 22px rgba(0, 31, 88, 0.14);
  }

  .archive-product-note img {
    width: 68px;
  }

  .archive-product-note p {
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .recipe-archive-body {
    padding: 28px 0 92px;
  }

  .archive-filter-bar {
    gap: 1rem;
    margin-bottom: 1.35rem;
  }

  .archive-search-group label {
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
  }

  .archive-search {
    min-height: 50px;
    gap: 0.6rem;
    padding-inline: 0.9rem;
  }

  .archive-search input {
    font-size: 0.95rem;
  }

  .archive-filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .archive-filter-group button {
    min-width: 0;
    min-height: 42px;
    padding: 0.55rem 0.6rem;
    font-size: 0.95rem;
  }

  .archive-results-head {
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .archive-results-head h2 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: 0.88;
  }

  .archive-results-head p {
    white-space: nowrap;
    font-size: 0.85rem;
  }

  .archive-results-head span {
    font-size: 1.7rem;
  }

  .archive-recipe-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .archive-recipe-card {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 150px;
    border-width: 2px;
    border-radius: 20px;
  }

  .archive-recipe-card figure {
    display: grid;
    min-height: 148px;
    place-items: center;
  }

  .archive-recipe-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
  }

  .archive-card-body {
    min-width: 0;
    gap: 0.45rem;
    padding: 0.8rem 0.75rem 0.8rem 0.65rem;
  }

  .archive-card-meta {
    flex-wrap: nowrap;
    gap: 0.25rem;
    overflow: hidden;
  }

  .archive-card-meta span {
    flex: 0 0 auto;
    padding: 0.24rem 0.4rem;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .archive-card-body h3 {
    font-size: 1.4rem;
    line-height: 0.92;
  }

  .archive-card-body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .archive-card-link {
    gap: 0.3rem;
    font-size: 0.84rem;
  }

  .mobile-quick-deck {
    position: fixed;
    right: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 50%;
    z-index: 18;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(calc(100% - 24px), 440px);
    transform: translateX(-50%);
    border: 1px solid rgba(191, 233, 237, 0.72);
    border-radius: 22px;
    background: rgba(207, 246, 248, 0.96);
    padding: 0.35rem;
    box-shadow: 0 16px 36px rgba(0, 31, 88, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-quick-deck a,
  .mobile-quick-deck button {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.2rem;
    min-height: 56px;
    border-radius: 16px;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease-spring);
  }

  .mobile-quick-deck a:hover,
  .mobile-quick-deck a:focus-visible,
  .mobile-quick-deck a.is-current,
  .mobile-quick-deck button:hover,
  .mobile-quick-deck button:focus-visible,
  .mobile-quick-deck button.is-current {
    background: var(--lime);
    color: var(--navy);
    transform: translateY(-2px);
  }

  .mobile-quick-deck i {
    color: var(--orange);
    font-size: 1rem;
  }

  .mobile-quick-deck a.is-current i,
  .mobile-quick-deck a:hover i,
  .mobile-quick-deck a:focus-visible i,
  .mobile-quick-deck button.is-current i,
  .mobile-quick-deck button:hover i,
  .mobile-quick-deck button:focus-visible i {
    color: var(--navy);
  }

  .community-social-links {
    width: 100%;
    margin-top: 0.75rem;
  }

  .community-social-label {
    font-size: 1.15rem;
  }

  .instagram-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-account-dialog {
    align-items: end;
    padding: 0.75rem;
  }

  .social-account-dialog-panel {
    border-radius: 24px;
    padding: 1.5rem;
  }
}

.recipe-detail-page {
  background: var(--cream);
}

.recipe-detail-hero {
  min-height: auto;
  padding: 210px 0 110px;
  overflow: hidden;
}

.recipe-side-art {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: min(13vw, 190px);
  height: 100%;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
  user-select: none;
}

.recipe-detail-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -95px;
  z-index: -1;
  width: 115vw;
  height: 210px;
  border-radius: 50% 0 0 0;
  background: var(--cream);
}

.recipe-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.68fr);
  align-items: center;
  gap: clamp(3.25rem, 5.5vw, 6.25rem);
}

.recipe-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
}

.recipe-breadcrumbs a {
  color: var(--white);
}

.recipe-breadcrumbs a:hover,
.recipe-breadcrumbs a:focus-visible {
  color: var(--cream);
  text-decoration: underline;
}

.recipe-detail-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 7.3vw, 7.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.recipe-detail-lead {
  max-width: 740px;
  margin: 2rem 0 0;
  border-left: 14px solid var(--orange);
  padding-left: 1.5rem;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.35;
}

.recipe-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.recipe-meta-bar span {
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 0.55rem 1rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.recipe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.recipe-hero-actions .button,
.recipe-side-panel .button,
.recipe-detail-page .footer-claim .button-orange {
  margin-top: 0;
}

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

.button-light:hover,
.button-light:focus-visible {
  background: var(--cream);
}

.recipe-detail-media {
  position: relative;
  justify-self: end;
  margin-block: 0;
  margin-right: clamp(0.5rem, 2vw, 2rem);
}

.recipe-detail-media img {
  display: block;
  width: min(100%, 580px);
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 28px 34px rgba(0, 41, 99, 0.22));
}

.recipe-rating-chip {
  position: absolute;
  right: clamp(0.6rem, 2vw, 1.8rem);
  bottom: clamp(0.8rem, 2.5vw, 2rem);
  display: grid;
  min-width: 112px;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: 0 16px 26px rgba(0, 41, 99, 0.24);
}

.recipe-rating-chip span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.95;
}

.recipe-rating-chip small {
  color: var(--turquoise-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.recipe-detail-body {
  padding: 115px 0 130px;
  color: var(--ink);
}

.recipe-detail-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.42fr) minmax(0, 0.82fr);
  align-items: start;
  gap: 4rem;
}

.recipe-side-panel {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 1.2rem;
}

.product-callout,
.portion-card,
.handsfree-card,
.recipe-intro-block,
.ingredients-list,
.equipment-list,
.recipe-step,
.chef-tip-box,
.nutrition-strip,
.recipe-faq,
.related-recipes {
  border-radius: 24px;
}

.product-callout,
.portion-card {
  background: var(--white);
  padding: 1.2rem;
  box-shadow: 0 18px 38px rgba(0, 41, 99, 0.09);
}

.product-callout {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  gap: 1.1rem;
  overflow: hidden;
}

.product-callout img {
  width: 128px;
  max-width: none;
  transform: translateX(-7px) scale(1.08);
  transform-origin: center;
  filter: drop-shadow(0 14px 16px rgba(0, 41, 99, 0.22));
}

.product-callout strong,
.product-callout span,
.portion-card h2,
.portion-card p {
  display: block;
}

.product-callout strong,
.portion-card h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.product-callout span,
.portion-card p {
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 0.96rem;
}

.portion-card {
  display: grid;
  gap: 1.25rem;
}

.portion-control {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 0.8rem;
  border-radius: var(--radius-pill);
  background: #eef8f9;
  padding: 0.5rem;
}

.portion-control button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  cursor: pointer;
}

.portion-control span {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.handsfree-card {
  min-height: 86px;
  background: var(--lime);
  color: var(--navy);
  padding: 1.2rem 1.3rem;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 28px rgba(0, 41, 99, 0.12);
  transition: transform var(--motion-fast) var(--ease-spring), box-shadow var(--motion-fast) ease;
}

.handsfree-card:hover,
.handsfree-card:focus-visible {
  box-shadow: 0 24px 34px rgba(0, 41, 99, 0.16);
  transform: translateY(-5px);
}

.recipe-main-flow {
  display: grid;
  gap: 2rem;
}

.ingredients-list,
.instructions-list,
.equipment-list,
.recipe-faq,
.related-recipes {
  scroll-margin-top: 132px;
}

.recipe-intro-block,
.ingredients-list,
.equipment-list,
.recipe-faq,
.related-recipes {
  background: var(--white);
  padding: clamp(1.35rem, 3vw, 2.25rem);
  box-shadow: 0 18px 38px rgba(0, 41, 99, 0.08);
}

.recipe-kicker {
  margin: 0 0 0.8rem;
  color: var(--turquoise-dark);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-intro-block p:last-child {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.62;
}

.ingredients-list h2,
.equipment-list h2,
.instructions-list h2,
.chef-tip-box h2,
.recipe-faq h2,
.related-recipes h2 {
  margin: 0 0 1.35rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.ingredients-list ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredient-group + .ingredient-group {
  margin-top: 1.25rem;
}

.ingredient-group h3 {
  margin: 0.2rem 0 0.35rem;
  color: var(--turquoise-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.ingredient-check {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 41, 99, 0.12);
  cursor: pointer;
}

.ingredients-list li:first-child .ingredient-check {
  border-top: 0;
}

.ingredient-check input {
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
  accent-color: var(--orange);
  cursor: pointer;
}

.ingredient-text {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.36;
}

.ingredient-amount {
  color: var(--orange);
  font-weight: 900;
}

.ingredient-check input:checked + .ingredient-text {
  color: rgba(9, 40, 92, 0.52);
  text-decoration: line-through;
}

.equipment-row,
.nutrition-strip,
.related-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.equipment-row article,
.nutrition-strip article,
.related-row a {
  background: #fff9d7;
  border: 1px solid rgba(0, 41, 99, 0.08);
  border-radius: 18px;
  padding: 1.1rem;
}

.equipment-row strong,
.equipment-row span,
.nutrition-strip strong,
.nutrition-strip span {
  display: block;
}

.equipment-row strong,
.nutrition-strip strong {
  color: var(--navy);
  font-weight: 900;
}

.equipment-row span,
.nutrition-strip span {
  margin-top: 0.25rem;
  color: rgba(9, 40, 92, 0.72);
  font-size: 0.92rem;
}

.instructions-list {
  display: grid;
  gap: 1.1rem;
}

.recipe-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 1.2rem;
  background: var(--white);
  padding: clamp(1.2rem, 3vw, 1.65rem);
  box-shadow: 0 12px 28px rgba(0, 41, 99, 0.07);
}

.recipe-step > span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.9;
}

.recipe-step h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.recipe-step p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.58;
}

.chef-tip-box {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.chef-tip-box::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.22;
}

.chef-tip-box h2 {
  color: var(--white);
}

.chef-tip-box p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.55;
}

.nutrition-strip {
  background: transparent;
}

.nutrition-strip article {
  background: var(--turquoise-soft);
  text-align: center;
}

.recipe-accordion {
  max-width: none;
}

.related-row a {
  display: grid;
  gap: 0.75rem;
  background: transparent;
  border: 0;
  color: var(--navy);
  font-weight: 900;
  padding: 0;
  transition: transform var(--motion-fast) var(--ease-spring), box-shadow var(--motion-fast) ease;
}

.related-row a:hover,
.related-row a:focus-visible {
  box-shadow: none;
  transform: translateY(-5px);
}

.related-row img {
  width: 100%;
  aspect-ratio: 470 / 313;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 14px 18px rgba(0, 41, 99, 0.12));
}

.related-row span {
  display: block;
  padding-inline: 0.15rem;
}

.handsfree-modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #06153a;
  color: var(--white);
}

.handsfree-modal[hidden] {
  display: none;
}

.handsfree-topbar,
.handsfree-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.handsfree-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.handsfree-topbar strong {
  color: var(--turquoise-soft);
  font-weight: 900;
}

.handsfree-topbar button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.handsfree-stage {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 2rem min(8vw, 110px);
  text-align: center;
}

.handsfree-stage h2 {
  margin: 0 0 1.2rem;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.handsfree-stage p {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.18;
}

.handsfree-actions button {
  flex: 1;
  min-height: 72px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.handsfree-actions button:last-child {
  background: var(--lime);
  color: var(--navy);
}

body.handsfree-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .recipe-detail-hero {
    padding: 145px 0 85px;
  }

  .recipe-detail-hero-grid,
  .recipe-detail-layout {
    grid-template-columns: 1fr;
  }

  .recipe-detail-media {
    order: -1;
    justify-self: center;
    margin-right: 0;
  }

  .recipe-detail-media img {
    width: min(100%, 440px);
  }

  .recipe-side-panel {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .product-callout {
    grid-template-columns: 110px 1fr;
  }

  .product-callout img {
    width: 110px;
    transform: translateX(-5px) scale(1.05);
  }
}

@media (max-width: 760px) {
  .recipe-detail-hero {
    padding: 108px 0 70px;
  }

  .recipe-breadcrumbs {
    margin-bottom: 1.2rem;
    font-size: 0.82rem;
  }

  .recipe-detail-copy h1 {
    font-size: clamp(3.45rem, 16vw, 4.65rem);
  }

  .recipe-detail-lead {
    border-left-width: 9px;
    padding-left: 1rem;
    font-size: 1.08rem;
  }

  .recipe-meta-bar {
    gap: 0.55rem;
  }

  .recipe-meta-bar span {
    padding: 0.48rem 0.82rem;
    font-size: 0.92rem;
  }

  .recipe-hero-actions {
    display: grid;
  }

  .recipe-detail-media img {
    width: min(92vw, 420px);
    border-radius: 28px;
  }

  .recipe-side-art {
    display: none;
  }

  .product-callout {
    grid-template-columns: 92px 1fr;
  }

  .product-callout img {
    width: 92px;
    transform: none;
  }

  .recipe-detail-body {
    padding: 75px 0 88px;
  }

  .recipe-detail-layout {
    gap: 2rem;
  }

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

  .recipe-intro-block,
  .ingredients-list,
  .equipment-list,
  .recipe-faq,
  .related-recipes {
    padding: 1.25rem;
    scroll-margin-top: 112px;
  }

  .equipment-row,
  .nutrition-strip,
  .related-row {
    grid-template-columns: 1fr;
  }

  .recipe-step {
    grid-template-columns: 46px 1fr;
    gap: 0.85rem;
  }

  .recipe-step > span {
    font-size: 2.65rem;
  }

  .recipe-step h3 {
    font-size: 1.15rem;
  }

  .recipe-step p,
  .recipe-intro-block p:last-child,
  .ingredient-text {
    font-size: 1rem;
  }

  .handsfree-actions {
    flex-direction: column;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .seed-field {
    display: none;
  }

  .hero h1 span,
  .seal,
  .recipe-card.reveal,
  .social-card.reveal,
  .social-card.lifted.reveal {
    opacity: 1;
    transform: none;
  }
}

/* Official design handoff: 2026-07-09 */
@keyframes handoffLayerDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.01);
  }

  50% {
    transform: translate3d(-12px, 10px, 0) scale(1.025);
  }
}

.home-page .dot-field {
  background-image: none;
  animation: none;
}

.design-layer {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.design-layer > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-page main > section > .container {
  z-index: 2;
}

.section-background,
.section-dots {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-background {
  z-index: 0;
}

.section-dots {
  z-index: 1;
  opacity: 0.62;
  animation: handoffLayerDrift 22s ease-in-out infinite;
}

.home-page .hero {
  border-bottom-left-radius: 0;
  background: var(--cream);
}

.home-page .hero::after,
.home-page .side-pattern,
.home-page .lime-corner,
.home-page .community-shape,
.home-page .faq-shape {
  display: none;
}

.hero-background {
  object-position: center bottom;
}

.hero-side-art {
  top: 0;
  right: 0;
  z-index: 1;
  width: clamp(150px, 12vw, 217px);
  height: min(100%, 1080px);
  object-fit: cover;
  object-position: left top;
  animation: patternDrift 8s ease-in-out infinite;
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.86fr);
}

.home-page .hero-media img {
  width: min(100%, 660px);
  filter: drop-shadow(0 30px 24px rgba(0, 31, 88, 0.24));
}

.benefit-strip {
  width: min(100%, 760px);
  margin-top: 3.4rem;
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.96);
  transition: opacity 520ms ease 520ms, transform 720ms var(--ease-spring) 520ms;
}

.benefit-strip-mobile {
  display: none;
}

.benefit-strip img {
  width: 100%;
  height: auto;
}

.hero-copy.is-visible .benefit-strip {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.home-page .feature {
  background: var(--cream);
}

.feature-dots,
.community-dots {
  object-position: center;
}

.home-page .feature-media::after {
  display: none;
}

.home-page .feature-media > img:not(.feature-arrow) {
  width: min(100%, 1041px);
  filter: drop-shadow(0 26px 22px rgba(0, 31, 88, 0.14));
}

.feature-arrow {
  position: absolute;
  top: -92px;
  right: 2%;
  z-index: 3;
  width: clamp(130px, 16vw, 230px) !important;
  height: auto;
  filter: none !important;
  transform: rotate(-5deg);
  animation: productFloat 6.2s ease-in-out infinite;
}

.home-page .recipes {
  border-radius: 0;
  background: var(--turquoise);
}

.recipes-background {
  object-position: center bottom;
}

.recipes-corner {
  top: 0;
  left: 0;
  z-index: 1;
  width: clamp(170px, 25vw, 470px);
  height: auto;
}

.home-page .recipe-card {
  --recipe-card-radius: 28px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: visible;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: var(--recipe-card-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 26px rgba(0, 31, 88, 0.16);
  isolation: isolate;
  z-index: 0;
}

.home-page .recipe-card::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  z-index: -1;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: var(--recipe-card-radius);
  pointer-events: none;
  transition: transform 300ms var(--ease-spring), opacity 260ms ease;
}

.home-page .recipe-card:hover {
  box-shadow: 0 24px 34px rgba(0, 31, 88, 0.2);
  filter: drop-shadow(0 22px 22px rgba(0, 31, 88, 0.2)) saturate(1.06);
  transform: translateY(-10px);
}

.home-page .recipe-card:hover::before {
  transform: translate(-3px, 3px);
  opacity: 0.9;
}

.home-page .recipe-card:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 5px;
}

.home-page .recipe-card figure {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: calc(var(--recipe-card-radius) - 4px) calc(var(--recipe-card-radius) - 4px) 0 0;
  background: var(--turquoise);
  overflow: hidden;
}

.home-page .recipe-card img,
.home-page .recipe-card:hover img {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--recipe-card-radius) - 4px) calc(var(--recipe-card-radius) - 4px) 0 0;
  transform: none;
}

.home-recipe-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 250px;
  border-radius: 0 0 calc(var(--recipe-card-radius) - 4px) calc(var(--recipe-card-radius) - 4px);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.15rem 1.15rem 1.2rem;
}

.home-recipe-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.home-recipe-card-meta span {
  border-radius: var(--radius-pill);
  background: rgba(71, 183, 199, 0.18);
  color: var(--navy);
  padding: 0.3rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.home-recipe-card-body h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.72vw, 2.05rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.home-recipe-card-body p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.34;
}

.home-recipe-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--orange);
  font-weight: 900;
}

.home-page .community {
  background: var(--cream);
}

.community-side-art {
  top: 50%;
  right: 0;
  z-index: 1;
  width: auto;
  height: 100%;
  max-height: 1266px;
  aspect-ratio: 267 / 1266;
  transform: translateY(-50%);
}

.community-side-art img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
}

.social-embed-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  isolation: isolate;
}

.social-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.social-embed-card .instagram-media {
  position: relative;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease 100ms;
}

.social-embed-card.is-embed-ready .instagram-media {
  opacity: 1;
  visibility: visible;
}

.social-embed-card.is-embed-ready .social-fallback {
  opacity: 0;
  visibility: hidden;
}

.home-page .faq {
  background: var(--turquoise);
}

.faq-side-art {
  top: 50%;
  right: 0;
  z-index: 1;
  width: auto;
  height: 100%;
  max-height: 1040px;
  aspect-ratio: 344 / 1799;
  transform: translateY(-50%);
}

.faq-side-art img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
}

.home-page .faq-grid {
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  min-height: clamp(760px, 47vw, 900px);
}

.home-page .faq-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}

.home-page .faq-media img {
  width: min(100%, 760px);
  filter: drop-shadow(0 28px 28px rgba(0, 31, 88, 0.18));
}

.accordion-item.is-open,
.accordion-panel {
  background: var(--turquoise-soft);
}

.site-footer {
  min-height: 720px;
  padding: 150px 0 260px;
}

.footer-wave {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 0;
  width: min(68vw, 1255px);
  height: auto;
  border-radius: 0;
  background: none;
  pointer-events: none;
}

.footer-grid {
  z-index: 1;
}

.footer-claim h2,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cyan);
}

.back-top {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.back-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .home-page .hero-grid,
  .home-page .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-side-art {
    width: 150px;
    opacity: 0.9;
  }

  .benefit-strip {
    max-width: 620px;
  }

  .feature-arrow {
    top: -42px;
    right: 4%;
  }

  .community-side-art {
    width: auto;
    height: 100%;
    max-height: 744px;
    aspect-ratio: 267 / 744;
    opacity: 0.88;
  }

  .faq-side-art {
    width: auto;
    height: 100%;
    max-height: 820px;
    opacity: 0.88;
  }

  .home-page .faq-media img {
    width: min(100%, 700px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .home-page .hero {
    padding-top: 104px;
    padding-bottom: 134px;
  }

  .hero-background,
  .recipes-background {
    object-position: 56% bottom;
  }

  .hero-side-art {
    display: none;
  }

  .home-page .hero-media {
    order: 1;
  }

  .home-page .hero-media img {
    width: min(86vw, 340px);
  }

  .home-page .benefit-strip-desktop {
    display: none;
  }

  .home-page .benefit-strip-mobile {
    order: 2;
    display: block;
    width: min(100%, 420px);
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }

  .home-page .hero-copy {
    order: 3;
  }

  .home-page .feature,
  .home-page .community,
  .home-page .faq {
    padding-block: 88px;
  }

  .feature-arrow {
    top: -24px;
    right: -2%;
    width: 118px !important;
  }

  .recipes-corner {
    width: 150px;
  }

  .home-page .recipe-card {
    --recipe-card-radius: 24px;
    flex-basis: min(86vw, 360px);
  }

  .home-page .recipe-card img {
    border-radius: calc(var(--recipe-card-radius) - 4px) calc(var(--recipe-card-radius) - 4px) 0 0;
  }

  .home-recipe-card-body {
    min-height: 232px;
    padding: 1rem 1rem 1.1rem;
  }

  .home-recipe-card-body h3 {
    font-size: 1.72rem;
  }

  .home-recipe-card-body p {
    font-size: 0.95rem;
  }

  .community-side-art {
    right: -28px;
    width: auto;
    height: 100%;
    max-height: 560px;
    aspect-ratio: 267 / 744;
    opacity: 0.78;
  }

  .social-embed-card {
    min-height: 560px;
  }

  .faq-side-art {
    right: -34px;
    width: auto;
    height: 100%;
    max-height: 620px;
    opacity: 0.76;
  }

  .home-page .faq-media {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .home-page .faq-media img {
    position: relative;
    left: 50%;
    width: min(132vw, 560px);
    max-width: none;
    margin: 0;
    transform: translateX(-50%);
  }

  .site-footer {
    min-height: 700px;
    padding: 120px 0 245px;
  }

  .footer-wave {
    right: -120px;
    bottom: 0;
    width: min(180vw, 720px);
    max-width: none;
  }

  .back-top {
    width: 82px;
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-dots,
  .hero-side-art,
  .feature-arrow,
  .benefit-strip {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .home-page .hero {
    padding-block: 150px 105px;
  }

  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 2rem;
  }

  .home-page .hero-media {
    order: 0;
  }

  .home-page .hero-media img {
    width: min(100%, 430px);
  }

  .home-page .hero h1 {
    font-size: 4rem;
  }

  .home-page .hero h1 span:last-child {
    font-size: 4.55rem;
  }

  .home-page .hero-description {
    margin-top: 1.6rem;
    padding-top: 1.5rem;
    font-size: 1.25rem;
  }

  .benefit-strip {
    margin-top: 2rem;
  }
}

@media (min-width: 761px) and (max-width: 899px) {
  .home-page .hero {
    padding-block: 135px 95px;
  }

  .home-page .hero-media img {
    width: min(100%, 410px);
  }

  .home-page .hero h1 {
    font-size: 4.1rem;
  }

  .home-page .hero h1 span:last-child {
    font-size: 4.65rem;
  }

  .home-page .hero-description {
    margin-top: 1.8rem;
    font-size: 1.35rem;
  }

  .benefit-strip {
    max-width: 560px;
    margin-top: 2.2rem;
  }
}

/* Desktop viewport polish: keep each primary composition readable without clipping. */
@media (min-width: 1081px) {
  html {
    scroll-padding-top: 112px;
  }

  .home-page main > section[id] {
    scroll-margin-top: 112px;
  }

  .home-page .hero {
    min-height: 900px;
    padding: 190px 0 36px;
  }

  .home-page .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.74fr);
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .home-page .hero .eyebrow {
    font-size: 2rem;
  }

  .home-page .hero h1 {
    max-width: 690px;
    font-size: clamp(4.35rem, 5.2vw, 5.25rem);
  }

  .home-page .hero h1 span:last-child {
    font-size: clamp(4.95rem, 5.9vw, 5.95rem);
  }

  .home-page .hero-description {
    max-width: 690px;
    margin-top: 1.75rem;
    padding: 1.5rem 0 0 1.7rem;
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .home-page .hero-description::before {
    top: 1.8rem;
    width: 11px;
    height: 76px;
  }

  .home-page .hero-media img {
    width: min(120%, 650px);
    max-width: none;
    margin-right: clamp(24px, 3vw, 56px);
    margin-left: auto;
  }

  .home-page .hero-media.is-visible img {
    animation: none;
    transform: scale(1.18);
    transform-origin: center bottom;
  }

  .home-page .hero-side-art {
    animation: none;
    transform: none;
  }

  .home-page .benefit-strip {
    width: min(100%, 650px);
    margin-top: 2rem;
  }

  .home-page .feature {
    padding: 118px 0 132px;
  }

  .home-page .feature-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.83fr);
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .home-page .feature-media > img:not(.feature-arrow) {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .home-page .feature-copy {
    padding-top: 0;
  }

  .home-page .feature h2 {
    font-size: clamp(5.35rem, 5.55vw, 6.85rem);
  }

  .home-page .feature p:not(.eyebrow):not(.feature-pill) {
    margin-top: 1.35rem;
    font-size: 1.35rem;
  }

  .home-page .feature-pill {
    margin-top: 2.5rem;
    font-size: 1.25rem;
  }

  .home-page .feature-arrow {
    top: -56px;
    width: clamp(130px, 12vw, 180px) !important;
  }

  .home-page .recipes {
    padding: 90px 0 94px;
  }

  .home-page .recipes .section-heading {
    margin-bottom: 3rem;
  }

  .home-page .recipes .section-heading h2 {
    font-size: clamp(4.15rem, 5vw, 5rem);
  }

  .home-page .recipes .section-heading p:last-child {
    font-size: 1.3rem;
  }

  .home-page .recipe-grid {
    gap: clamp(1.7rem, 2.4vw, 2.4rem);
  }

  .home-page .recipes .button-orange {
    margin-top: 3.4rem;
  }

  .home-page .community {
    padding: 88px 0 96px;
  }

  .home-page .community-head {
    gap: 2.4rem;
    margin-bottom: 3rem;
  }

  .home-page .community h2 {
    max-width: 760px;
    font-size: clamp(4rem, 4.7vw, 4.7rem);
  }

  .home-page .community-head p {
    font-size: 1.3rem;
  }

  .home-page .social-grid {
    gap: clamp(1rem, 1.8vw, 1.7rem);
  }

  .home-page .social-card.lifted {
    transform: translateY(24px);
  }

  .home-page .social-card.lifted:hover {
    transform: translateY(10px) rotate(1deg) scale(1.018);
  }

  .home-page .faq {
    padding: 78px 0 82px;
  }

  .home-page .faq-grid {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 4vw, 4rem);
    min-height: clamp(720px, 52vw, 860px);
  }

  .home-page .faq-media img {
    width: min(100%, 610px);
    margin-inline: auto;
    transform: scale(1.55);
    transform-origin: center;
  }

  .home-page .faq .eyebrow {
    font-size: 2rem;
  }

  .home-page .faq h2 {
    margin-bottom: 1.8rem;
    font-size: clamp(3.85rem, 4.45vw, 4.45rem);
  }

  .home-page .accordion {
    gap: 0.6rem;
  }

  .home-page .accordion-trigger {
    min-height: 50px;
    padding: 0.7rem 4.2rem 0.7rem 2rem;
    font-size: 1.2rem;
  }

  .home-page .accordion-panel {
    padding-inline: 2rem;
    font-size: 1.15rem;
  }

  .home-page .accordion-item.is-open .accordion-panel {
    padding: 0.8rem 2rem 1.1rem;
  }
}

@media (min-width: 1081px) and (max-width: 1320px) {
  .home-page .hero {
    padding: 176px 0 44px;
  }

  .home-page .hero-media img {
    width: min(112%, 570px);
    margin-right: 24px;
  }

  .home-page .hero-media.is-visible img {
    transform: scale(1.12);
  }

  .home-page .faq {
    padding: 66px 0 70px;
  }

  .home-page .faq-media img {
    transform: scale(1.2);
    transform-origin: center;
  }

  .home-page .faq .eyebrow {
    font-size: 1.65rem;
  }

  .home-page .faq h2 {
    margin-bottom: 1.2rem;
    font-size: 3.45rem;
  }

  .home-page .accordion {
    gap: 0.48rem;
  }

  .home-page .accordion-trigger {
    min-height: 46px;
    padding-block: 0.55rem;
    font-size: 1.05rem;
  }

  .home-page .accordion-panel {
    font-size: 1.02rem;
  }

  .home-page .accordion-item.is-open .accordion-panel {
    padding: 0.65rem 1.7rem 0.85rem;
  }
}

@media (min-width: 1321px) and (max-width: 1500px) {
  .home-page .faq-media img {
    transform: scale(1.35);
    transform-origin: center;
  }
}
