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

:root {
  --bg: #f5f3ef;
  --surface: #ffffff;
  --surface-soft: #fbfaf8;
  --text: #111111;
  --muted: #575757;
  --line: #d9d3cb;
  --line-strong: #1a1a1a;
  --shadow-soft: 0 14px 34px rgba(17, 17, 17, 0.06);
  --shadow-card: 0 10px 24px rgba(17, 17, 17, 0.05);
  --radius: 20px;
  --radius-sm: 14px;
  --max-width: 1120px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.035), transparent 26%),
    linear-gradient(to bottom, #faf9f7 0%, #f4f1ec 100%);
  line-height: 1.65;
}

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

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

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f0f0f;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f2f2f;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.header-contact-link:hover {
  color: #111111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-nav a,
.site-nav button {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.55rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav button {
  font-family: inherit;
  line-height: inherit;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav button:hover {
  color: var(--text);
  border-color: rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

/* Sections */
.section {
  padding: 3.75rem 0;
}

.section-divider {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.page-intro {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #5d5d5d;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #8a8a8a;
}

.tagline,
.lead,
.intro {
  color: #3d3d3d;
  max-width: 40rem;
}

h1 {
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Hero */
.hero {
  padding-top: 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy h1 {
  max-width: 10ch;
}

.tagline {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.intro {
  font-size: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(17, 17, 17, 0.15);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-button-row {
  margin-top: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(17, 17, 17, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: #111111;
}

.button-secondary:hover {
  background: #111111;
  color: #ffffff;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid #111111;
}

/* Media Boxes */
.media-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(120, 93, 48, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 231, 219, 0.95));
  color: #5f5f5f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow:
    0 24px 48px rgba(17, 17, 17, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.75) inset;
}

.media-box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius) - 8px);
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(120, 93, 48, 0.16),
    0 18px 32px rgba(17, 17, 17, 0.08) inset;
  pointer-events: none;
}

.media-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 50% 42%, transparent 42%, rgba(17, 17, 17, 0.18) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.media-box span {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-media {
  min-height: 330px;
}

.portrait-media {
  min-height: 400px;
  padding: 18px;
  border-radius: 0;
  border: 1px solid rgba(37, 31, 24, 0.18);
  background:
    linear-gradient(145deg, #ffffff 0%, #f5f0e7 100%);
  box-shadow:
    0 26px 44px rgba(17, 17, 17, 0.16),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
  transform: rotate(-0.6deg);
}

.portrait-media::before {
  inset: 18px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 16px 24px rgba(17, 17, 17, 0.12) inset;
}

.portrait-media::after {
  inset: 22px;
  border-radius: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 17, 17, 0.1));
  mix-blend-mode: soft-light;
}

.portrait-media .media-image {
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  border-radius: 0;
  filter: sepia(0.06) saturate(1.04) contrast(1.04);
  object-position: center;
}

.product-media {
  min-height: 320px;
  height: clamp(320px, 38vw, 430px);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(160deg, #efe6d4 0%, #fbfaf7 48%, #d9c7a3 100%);
}

.product-media .media-image {
  object-position: center 49%;
}

.product-media-pomodoro .media-image {
  object-position: center 48%;
}

.product-media-arrabbiata .media-image {
  object-position: center 48%;
}

.product-media-rustica .media-image {
  object-position: center 49%;
}

/* About */
.two-column {
  display: grid;
  gap: 1.5rem;
}

.content-block {
  padding: 1.4rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.content-block p {
  color: #2f2f2f;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* Products */
.product-grid {
  display: grid;
  gap: 1.1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(120, 93, 48, 0.18);
  border-radius: var(--radius);
  padding: 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 235, 0.98) 100%);
  box-shadow:
    0 18px 40px rgba(17, 17, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover,
.schedule-item:hover,
.post:hover,
.update-preview:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px rgba(17, 17, 17, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  border-color: rgba(120, 93, 48, 0.34);
}

.product-card:hover .media-image {
  filter: saturate(1.14) contrast(1.07);
  transform: scale(1.025);
}

.product-card h2 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #14120f;
}

.product-card p {
  color: #444444;
  margin-bottom: 0;
}

.product-price,
.pesto-price-heading {
  margin-bottom: 0.75rem;
}

/* Schedule */
.schedule-list {
  display: grid;
  gap: 1rem;
}

.schedule-item {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5f0 100%);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.schedule-item h2 {
  margin-bottom: 0.65rem;
}

.schedule-item p {
  margin-bottom: 0.28rem;
  color: #444444;
}

.schedule-item p:last-child {
  font-weight: 700;
  color: #111111;
}

/* Updates */
.updates-list,
.updates-scroll {
  display: grid;
  gap: 1rem;
}

.updates-scroll {
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.updates-scroll .post {
  min-width: 280px;
  scroll-snap-align: start;
}

.post,
.update-preview {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 3px solid #111111;
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #666666;
  margin-bottom: 0.8rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #111111;
  color: #f4f4f4;
  padding: 2.3rem 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #ffffff;
}

/* Responsive */
@media (min-width: 700px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.1rem 0;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.7rem;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .schedule-list,
  .updates-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .updates-scroll {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .section {
    padding: 5.25rem 0;
  }

  .hero {
    padding-top: 3.2rem;
  }
}

@media (min-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .hero-media {
    min-height: 410px;
  }
}

/* Pesto Launch */
.pesto-drop-section .lead {
  margin-bottom: 1.5rem;
}

.pesto-slice-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #151a12;
  isolation: isolate;
}

.pesto-slice-section::before {
  content: "";
  position: absolute;
  inset: 12% -10%;
  background: linear-gradient(120deg, #eef1e7 0%, #d9e3cd 100%);
  transform: skewY(-8deg);
  transform-origin: center;
  z-index: -2;
}

.pesto-slice-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.16), transparent 22%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.1), transparent 24%);
  z-index: -1;
}

.pesto-slice-grid {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.pesto-slice-copy {
  padding: 1.45rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.pesto-slice-copy h2 {
  font-size: clamp(2.35rem, 9vw, 5.2rem);
  max-width: 10ch;
  margin-bottom: 1rem;
  color: #111111;
}

.pesto-slice-copy p {
  color: #2f2f2f;
}

.pesto-slice-copy p:last-child {
  margin-bottom: 0;
}

.pesto-statement {
  max-width: 42rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4.5vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111111 !important;
}

.pesto-graphic-media {
  width: min(100%, 430px);
  min-height: 0;
  aspect-ratio: 0.92;
  justify-self: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.28), transparent 30%),
    radial-gradient(circle at 20% 18%, rgba(217, 227, 205, 0.22), transparent 24%),
    linear-gradient(145deg, #10160d 0%, #28331f 52%, #111111 100%);
  border-color: rgba(218, 188, 118, 0.34);
  color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.pesto-graphic-media::before {
  border-color: rgba(255, 255, 255, 0.2);
}

.pesto-graphic-media .media-image,
.pesto-media .media-image {
  object-position: center 48%;
}

.pesto-graphic-media span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.pesto-detail-section {
  background: linear-gradient(180deg, #fbfaf8 0%, #f1eee8 100%);
}

.pesto-detail-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.pesto-detail-intro h2 {
  max-width: 12ch;
}

.pesto-detail-copy {
  background: rgba(255, 255, 255, 0.9);
}

.market-highlight-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.market-highlight-card {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-left: 3px solid #111111;
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.market-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.18);
}

.market-highlight-card p {
  color: #444444;
  margin-bottom: 0.28rem;
}

.market-highlight-card p:last-child {
  margin-bottom: 0;
}

.product-grid-featured {
  align-items: stretch;
}

.pesto-feature-card {
  display: grid;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 940px;
  margin: 0 auto 0.4rem;
  padding: 1rem;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(218, 188, 118, 0.16), transparent 32%),
    linear-gradient(180deg, #111111 0%, #1b1b18 100%);
  color: #ffffff;
  border-color: rgba(218, 188, 118, 0.26);
}

.pesto-feature-card h2,
.pesto-feature-card h3,
.pesto-feature-card p {
  color: #ffffff;
}

.pesto-feature-card h2 {
  font-size: clamp(3rem, 12vw, 6.4rem);
  margin-bottom: 0.7rem;
}

.pesto-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-kicker {
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72) !important;
}

.pesto-lead {
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88) !important;
}

.availability-note {
  max-width: 34rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9) !important;
}

.pesto-feature-card .text-link {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.pesto-media {
  min-height: 300px;
  height: clamp(300px, 34vw, 380px);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(145deg, rgba(218, 188, 118, 0.16), rgba(255, 255, 255, 0.06));
  border-color: rgba(218, 188, 118, 0.3);
  color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.pesto-media::before {
  border-color: rgba(255, 255, 255, 0.18);
}

/* Contact Popup */
.contact-modal-card {
  text-align: left;
}

.contact-modal-card h2 {
  margin-bottom: 1.2rem;
}

.contact-modal-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.contact-modal-list p {
  margin: 0;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  color: #333333;
}

.contact-modal-list p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-modal-list a {
  font-weight: 700;
  border-bottom: 1px solid rgba(17, 17, 17, 0.35);
}

.contact-wholesale-button {
  width: 100%;
}

/* Pesto Popup */
.modal-open {
  overflow: hidden;
}

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

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.54);
  backdrop-filter: blur(8px);
}

.promo-modal-card {
  position: relative;
  width: min(100%, 560px);
  padding: 2rem 1.25rem 1.35rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f5f1ea 100%);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.28);
  text-align: left;
}

.promo-modal-card h2 {
  font-size: clamp(2.4rem, 9vw, 4.4rem);
  margin-bottom: 0.9rem;
}

.promo-modal-card p:not(.eyebrow) {
  color: #333333;
}

.promo-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.promo-modal-close:hover {
  background: #111111;
  color: #ffffff;
}

.promo-button-row {
  justify-content: center;
  margin-top: 1.35rem;
}

/* Pesto Popup Basil Background */
.promo-sale-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.promo-sale-card > *:not(.promo-modal-close) {
  position: relative;
  z-index: 2;
}

.promo-sale-card .promo-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
}

.promo-sale-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;

  background-image: url("images/fallingbasil.png");
  background-repeat: repeat;
  background-size: 400px auto;
  background-position: 0 0;

  opacity: 0.42;
  animation: basilDrift 24s linear infinite;
}

.promo-sale-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 58%),
    rgba(255, 255, 255, 0.62);
}

@keyframes basilDrift {
  from {
    background-position: 0 -180px;
  }

  to {
    background-position: 0 180px;
  }
}
.promo-sale-card {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(217, 227, 205, 0.92), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f5f1ea 100%);
}

.promo-sale-card .eyebrow {
  display: block;
  margin: 0 auto 1rem;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-sale-card .eyebrow::before {
  display: none;
}

.promo-sale-title {
  font-size: clamp(4.2rem, 18vw, 7.8rem) !important;
  line-height: 0.88;
  margin: 0.2rem 0 0.55rem;
  letter-spacing: -0.07em;
  color: #111111;
}

.promo-sale-subtitle {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111 !important;
}

.promo-sale-note {
  max-width: 29rem;
  margin: 0 auto;
  color: #333333 !important;
}

@media (min-width: 700px) {
  .market-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pesto-slice-grid,
  .pesto-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pesto-slice-copy {
    padding: 2rem;
  }

  .pesto-feature-card {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 1.4rem;
    padding: 1.25rem;
    text-align: left;
  }

  .pesto-feature-copy {
    align-items: flex-start;
  }

  .promo-modal-card {
    padding: 2.4rem 2rem 1.8rem;
  }
}

@media (min-width: 980px) {
  .product-grid.product-grid-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pesto-media {
    min-height: 380px;
  }
}
