.site-discount-banner {
  position: relative;
  overflow: hidden;
  margin: clamp(1.4rem, 3vw, 2.4rem) auto;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(8, 24, 44, .92), rgba(17, 51, 74, .88)),
    url("/about/counter-tuna-salmon.jpg") center / cover;
  color: #fff;
  box-shadow: 0 22px 52px rgba(8, 17, 28, .18);
}

.site-discount-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 24, 44, .94) 0%, rgba(8, 24, 44, .82) 48%, rgba(8, 24, 44, .36) 100%);
  pointer-events: none;
}

.site-discount-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.15rem, 3vw, 2.2rem);
}

.site-discount-banner__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: .45rem;
  color: #d2ab6f;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-discount-banner h2,
.site-discount-banner h3 {
  margin: 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: .95;
  letter-spacing: 0;
}

.site-discount-banner p {
  margin: .7rem 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
}

.site-discount-banner__badge {
  display: grid;
  place-items: center;
  width: clamp(108px, 14vw, 158px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(210, 171, 111, .52);
  background: radial-gradient(circle at 32% 22%, rgba(255,255,255,.26), rgba(210,171,111,.96) 58%, rgba(155,113,54,.92));
  color: #101b27;
  box-shadow: inset 0 1px rgba(255,255,255,.42), 0 18px 44px rgba(0,0,0,.25);
}

.site-discount-banner__badge strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: .86;
}

.site-discount-banner__badge span {
  max-width: 9ch;
  text-align: center;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-discount-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.2rem;
}

.site-discount-banner .button--light {
  background: #fff;
  color: #0b1b29;
  border-color: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.cart-delivery-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: flex-start;
  margin: .85rem 0;
  padding: .9rem;
  border-radius: 12px;
  border: 1px solid rgba(19, 38, 58, .1);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(246,240,231,.72));
}

.cart-delivery-option input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .2rem;
  accent-color: #133149;
}

.cart-delivery-option strong {
  display: block;
  color: var(--ink, #13263a);
  font-size: .92rem;
  line-height: 1.25;
}

.cart-delivery-option span {
  display: block;
  margin-top: .18rem;
  color: var(--ink-soft, #5c6774);
  font-size: .78rem;
  line-height: 1.45;
}

.recipes-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 1rem;
}

.recipes-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.recipes-hero h1 {
  margin: .35rem 0 .8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: 0;
}

.recipes-hero p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-soft, #5c6774);
  font-size: 1.05rem;
}

.recipes-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 20px;
  box-shadow: 0 22px 52px rgba(8, 17, 28, .16);
}

.recipes-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

.recipe-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(19, 38, 58, .08);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(248,243,236,.82));
  box-shadow: 0 12px 28px rgba(8, 17, 28, .08);
}

.recipe-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.recipe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.recipe-card:hover .recipe-card__media img {
  transform: scale(1.035);
}

.recipe-card__body {
  display: grid;
  gap: .65rem;
  padding: 1rem;
}

.recipe-card__meta {
  color: var(--gold, #d2ab6f);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.recipe-card h2,
.recipe-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.recipe-card p {
  margin: 0;
  color: var(--ink-soft, #5c6774);
  font-size: .9rem;
}

.recipe-page {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.recipe-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.recipe-page__hero h1 {
  margin: .35rem 0 .8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 600;
  line-height: .92;
  letter-spacing: 0;
}

.recipe-page__lead {
  margin: 0;
  max-width: 64ch;
  color: var(--ink-soft, #5c6774);
  font-size: 1.05rem;
}

.recipe-page__image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 22px 52px rgba(8, 17, 28, .16);
}

.recipe-page__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.recipe-meta span,
.recipe-product-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(19, 38, 58, .08);
  color: var(--ink, #13263a);
  font-size: .82rem;
  font-weight: 700;
}

.recipe-layout {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: start;
}

.recipe-panel,
.recipe-steps,
.recipe-faq {
  padding: clamp(1rem, 2.4vw, 1.4rem);
  border-radius: 16px;
  border: 1px solid rgba(19, 38, 58, .08);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,243,236,.78));
  box-shadow: 0 12px 28px rgba(8, 17, 28, .06);
}

.recipe-panel h2,
.recipe-steps h2,
.recipe-faq h2 {
  margin: 0 0 .8rem;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.recipe-panel ul,
.recipe-steps ol {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.2rem;
}

.recipe-panel li,
.recipe-steps li,
.recipe-faq p {
  color: var(--ink, #13263a);
  line-height: 1.65;
}

.recipe-steps {
  display: grid;
  gap: 1.2rem;
}

.recipe-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.recipe-faq {
  display: grid;
  gap: .8rem;
}

.recipe-faq details {
  padding-top: .8rem;
  border-top: 1px solid rgba(19, 38, 58, .08);
}

.recipe-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.recipe-faq p {
  margin: .45rem 0 0;
  color: var(--ink-soft, #5c6774);
}

@media (max-width: 960px) {
  .site-discount-banner__inner,
  .recipes-hero__grid,
  .recipe-page__hero,
  .recipe-layout {
    grid-template-columns: 1fr;
  }

  .site-discount-banner__badge {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .site-discount-banner {
    border-radius: 14px;
  }

  .site-discount-banner__actions,
  .site-discount-banner__actions .button {
    width: 100%;
  }

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

  .recipes-hero__media,
  .recipes-hero__media img {
    min-height: 240px;
  }
}
