/* =============================================================
   SNELGROVE ICE CREAM — Home Page Styles
   ============================================================= */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - 40px);
  overflow: hidden;
  background: linear-gradient(135deg, #1A3856 0%, #264E7B 45%, #1E4068 70%, #0F2338 100%);
}

/* ---- Celebration slide ---- */
.hero-slider__slide--celebration {
  background: linear-gradient(180deg, #E8F1F8 0%, #FAEBD1 55%, #FAEBD1 100%);
}
.hero-slider__slide--celebration .hero-slider__overlay { display: none; }
.hero-celebration__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-16) var(--space-6);
  min-height: calc(100vh - var(--nav-height) - 40px);
}
.hero-celebration__text { position: relative; z-index: 2; }
.hero-celebration__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cherry);
  margin-bottom: var(--space-5);
}
.hero-celebration__rule {
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--color-cherry);
  border-radius: 2px;
}
.hero-celebration__title {
  display: flex; flex-direction: column;
  gap: 0;
  line-height: 1;
  margin-bottom: var(--space-6);
}
.hero-celebration__title-script {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-cherry);
  line-height: 0.95;
  transform: rotate(-2deg);
  margin-left: -0.05em;
}
.hero-celebration__title-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--color-blueberry);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-top: -0.15em;
}
.hero-celebration__desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-blueberry);
  line-height: 1.6;
  max-width: 38ch;
  margin-bottom: var(--space-8);
}
.hero-celebration__desc-script {
  font-family: var(--font-script);
  color: var(--color-cherry);
  font-size: 1.4em;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
}
.hero-celebration__desc-script::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--color-blueberry);
  border-radius: 3px;
  transform: scaleX(0.85) translateX(-5%);
}
.hero-celebration__actions {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
}
.btn--outline-blueberry {
  background: transparent;
  color: var(--color-blueberry);
  border: 2px solid var(--color-blueberry);
}
.btn--outline-blueberry:hover {
  background: var(--color-blueberry);
  color: var(--color-vanilla);
}

/* Right column art */
.hero-celebration__art {
  position: relative;
  width: 100%;
  height: 80%;
  display: flex; align-items: center; justify-content: center;
}
.hero-celebration__art-img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Confetti dots */
.hero-celebration__dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  z-index: 1;
}
.hero-celebration__dot--red  { background: var(--color-cherry); }
.hero-celebration__dot--navy { background: var(--color-blueberry); }
.hero-celebration__heart {
  position: absolute;
  width: 22px; height: 22px;
  color: var(--color-cherry);
  z-index: 1;
}
.hero-celebration__heart--sm { width: 14px; height: 14px; opacity: 0.7; }

/* Scalloped badge */
.hero-celebration__badge {
  position: absolute;
  top: var(--space-8);
  right: var(--space-10);
  width: 150px; height: 150px;
  z-index: 5;
  transform: rotate(8deg);
}
.hero-celebration__badge-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}
.hero-celebration__badge-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  color: var(--color-vanilla);
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero-celebration__badge-line1 {
  font-size: 11px; letter-spacing: 0.1em;
}
.hero-celebration__badge-line2 {
  font-size: 13px; letter-spacing: 0.04em;
}
.hero-celebration__badge-heart {
  width: 14px; height: 14px;
  color: var(--color-vanilla);
}

@media (max-width: 900px) {
  .hero-celebration__inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
  .hero-celebration__art {
    height: auto;
    order: -1;
  }
  .hero-celebration__art-img {
    max-height: 40vh;
  }
  .hero-celebration__badge {
    width: 110px; height: 110px;
    top: var(--space-4); right: var(--space-4);
  }
  .hero-celebration__badge-line1 { font-size: 9px; }
  .hero-celebration__badge-line2 { font-size: 11px; }
}

/* ---- Hero Slider ---- */
.hero-slider__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slider__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Subtle left-side gradient so text stays legible without washing out the image */
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 35, 56, 0.65) 0%,
    rgba(15, 35, 56, 0.35) 40%,
    rgba(15, 35, 56, 0) 70%
  );
}

/* Animate content in on active slide */
.hero-slider__slide.is-active .hero__eyebrow,
.hero-slider__slide.is-active .hero__title,
.hero-slider__slide.is-active .hero__desc,
.hero-slider__slide.is-active .hero__actions {
  animation: sliderFadeUp 0.6s ease both;
}
.hero-slider__slide.is-active .hero__title   { animation-delay: 0.15s; }
.hero-slider__slide.is-active .hero__desc    { animation-delay: 0.3s; }
.hero-slider__slide.is-active .hero__actions { animation-delay: 0.45s; }

@keyframes sliderFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Arrow buttons — positioned on left/right edges, vertically centered */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 240, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 240, 0.8);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all var(--transition-fast);
}

.hero-slider__arrow--prev { left: var(--space-4); }
.hero-slider__arrow--next { right: var(--space-4); }

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 248, 240, 0.6);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide {
    transition: opacity 0.01s ease;
  }
  .hero-slider__slide.is-active .hero__eyebrow,
  .hero-slider__slide.is-active .hero__title,
  .hero-slider__slide.is-active .hero__desc,
  .hero-slider__slide.is-active .hero__actions,
  .hero-slider__slide.is-active .hero__product-col {
    animation: none;
  }
}

/* Retro diagonal stripe pattern */
.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(247, 210, 223, 0.06) 30px,
    rgba(247, 210, 223, 0.06) 31px
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) - 40px);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.hero__content {
  flex: 0 0 auto;
  max-width: 640px;
  padding-block: var(--space-16);
}

.hero__product-col {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  overflow: hidden;
}

.hero__product-img {
  width: 100%;
  max-width: 600px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: block;
  margin-left: auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-banana-split);
  margin-bottom: var(--space-5);
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-banana-split);
  opacity: 0.7;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl),6vw,var(--text-7xl));
  font-weight: 900;
  color: var(--color-vanilla);
  line-height: 1.05;
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 20px rgba(15, 35, 56, 0.5);
}

.hero__title em {
  font-style: italic;
  color: var(--color-candy-pink);
}

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  color: var(--color-candy-pink);
  display: block;
  margin-bottom: var(--space-6);
  line-height: 1;
}

/* Promo banner — swap content for seasonal/event promotions */
.hero__promo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.hero__promo-label {
  background: var(--color-candy-pink);
  color: var(--color-blueberry);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
}

.hero__promo-text {
  font-size: var(--text-sm);
  color: rgba(255, 248, 240, 0.9);
  font-weight: 600;
}

.hero__promo-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-banana-split);
  transition: color var(--transition-fast);
}

.hero__promo-link:hover {
  color: var(--color-candy-pink);
}

.hero__desc {
  font-size: var(--text-lg);
  color: rgba(255, 248, 240, 0.95);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 10px rgba(15, 35, 56, 0.6);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__stamp {
  position: absolute;
  right: var(--space-16);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  animation: slowSpin 20s linear infinite;
}

@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 248, 240, 0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- Features Strip ---- */
.features-strip {
  background-color: var(--color-cherry);
  color: #fff;
  padding-block: var(--space-5);
}

.features-strip__inner {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.features-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.features-strip__icon {
  font-size: var(--text-xl);
}

/* ---- Occasion Tiles ---- */
.occasions-section {
  background: var(--color-melted);
}
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.occasion-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border-top: 4px solid var(--color-cherry);
  min-height: 240px;
}
.occasion-tile:nth-child(2) { border-top-color: var(--color-banana-split); }
.occasion-tile:nth-child(3) { border-top-color: var(--color-pistachio); }
.occasion-tile:nth-child(4) { border-top-color: var(--color-blueberry); }
.occasion-tile:nth-child(5) { border-top-color: var(--color-cherry); }
.occasion-tile:nth-child(6) { border-top-color: var(--color-candy-pink); }
.occasion-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.occasion-tile__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-cherry-light, #FCE9E5);
  color: var(--color-cherry);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}
.occasion-tile__icon svg { width: 28px; height: 28px; }
.occasion-tile__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-blueberry);
  margin: 0;
}
.occasion-tile__desc {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.6;
  margin: 0;
  max-width: 28ch;
}
@media (max-width: 900px) {
  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
@media (max-width: 540px) {
  .occasions-grid { grid-template-columns: 1fr; }
  .occasion-tile { min-height: auto; padding: var(--space-6); }
}

/* ---- Featured Flavors ---- */
.featured-flavors {
  background-color: var(--color-vanilla);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}

.flavor-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.flavor-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.flavor-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-melted), var(--color-vanilla));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.flavor-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.flavor-card:hover .flavor-card__img {
  transform: scale(1.06);
}

.flavor-card__emoji {
  font-size: 72px;
  line-height: 1;
}

.flavor-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  gap: var(--space-1);
}

.flavor-card__badge .tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.flavor-card__body {
  padding: var(--space-5);
}

.flavor-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-blueberry);
  margin-bottom: var(--space-2);
}

.flavor-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ---- Heritage / Story Banner ---- */
.heritage-banner {
  background-color: var(--color-blueberry);
  color: var(--color-vanilla);
  position: relative;
  overflow: hidden;
}

.heritage-banner__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(247, 210, 223, 0.03) 20px,
    rgba(247, 210, 223, 0.03) 21px
  );
}

.heritage-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.heritage-banner__year {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  line-height: 1;
  color: rgba(247, 210, 223, 0.08);
  position: absolute;
  right: -20px;
  top: -20px;
  user-select: none;
}

.heritage-banner__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-banana-split);
  display: block;
  margin-bottom: var(--space-4);
}

.heritage-banner__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 900;
  color: var(--color-vanilla);
  margin-bottom: var(--space-5);
  line-height: 1.15;
}

.heritage-banner__body {
  font-size: var(--text-base);
  color: rgba(252, 240, 228, 0.8);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: var(--space-8);
}

.heritage-banner__stats {
  display: flex;
  gap: var(--space-8);
}

.stat {
  text-align: left;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--color-candy-pink);
  line-height: 1;
}

.stat__label {
  font-size: var(--text-sm);
  color: rgba(252, 240, 228, 0.6);
  margin-top: var(--space-1);
  letter-spacing: 0.05em;
}

.heritage-banner__image-col {
  position: relative;
}

.heritage-banner__img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  opacity: 0.85;
}

.heritage-banner__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(247,210,223,0.12), rgba(244,230,172,0.06));
  border: 2px solid rgba(244, 230, 172, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: rgba(244, 230, 172, 0.5);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Cone Icon (SVG placeholder) ---- */
.cone-icon {
  font-size: 80px;
  line-height: 1;
}

/* ---- Locations teaser ---- */
.locations-teaser {
  background-color: var(--color-melted);
}

.locations-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

.location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-left: 4px solid var(--color-cherry);
  transition: all var(--transition-base);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.location-card--coming-soon {
  border-left-color: var(--color-banana-split);
  opacity: 0.85;
}

.location-card__status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22C55E;
  animation: pulse 2s ease-in-out infinite;
}

.status-dot--pending {
  background-color: var(--color-gold);
  animation: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.location-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-blueberry);
}

.location-card__address {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
  line-height: 1.6;
}

.location-card__hours {
  font-size: var(--text-sm);
  color: var(--color-text-mid);
}

.location-card__link {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-cherry);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-fast);
}

.location-card__link:hover {
  gap: var(--space-2);
}

/* ---- Grocery CTA band ---- */
.grocery-band {
  background-color: var(--color-mint-chip);
  color: var(--color-blueberry);
  text-align: center;
  padding-block: var(--space-12);
}

.grocery-band__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 900;
  color: var(--color-blueberry);
  margin-bottom: var(--space-3);
}

.grocery-band__sub {
  font-size: var(--text-lg);
  color: var(--color-text-mid);
  margin-bottom: var(--space-8);
}

/* ---- Press / Testimonials ---- */
.press-section {
  background-color: var(--color-vanilla);
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  opacity: 0.55;
}

.press-logo {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-blueberry);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.quote-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote-card__mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--color-candy-pink);
  opacity: 0.7;
  margin-bottom: var(--space-1);
  display: block;
}

.quote-card__text {
  font-size: var(--text-base);
  color: var(--color-blueberry);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-5);
  flex: 1;
}

.quote-card__author {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-mid);
}

.quote-card__source {
  font-size: var(--text-xs);
  color: var(--color-cherry);
}

@media (max-width: 900px) {
  .quote-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ---- Email / Newsletter CTA ---- */
.newsletter {
  background: linear-gradient(135deg, var(--color-blueberry) 0%, #1A3856 100%);
  color: var(--color-cream);
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--color-vanilla);
  margin-bottom: var(--space-3);
}

.newsletter__sub {
  font-size: var(--text-lg);
  color: rgba(252, 240, 228, 0.75);
  margin-bottom: var(--space-8);
}

.newsletter__form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__input {
  flex: 1;
  min-width: 240px;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 248, 240, 0.2);
  background: rgba(255, 248, 240, 0.08);
  color: var(--color-cream);
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter__input::placeholder {
  color: rgba(255, 248, 240, 0.45);
}

.newsletter__input:focus {
  border-color: var(--color-gold);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .heritage-banner__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .heritage-banner__image-col {
    display: none;
  }

  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
    padding-bottom: var(--space-8);
  }

  /* Stronger overlay on mobile so text stays legible */
  .hero-slider__overlay {
    background: linear-gradient(180deg, rgba(15, 35, 56, 0.55) 0%, rgba(15, 35, 56, 0.75) 100%);
  }

  .hero-slider__arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 600px) {
  .features-strip__inner {
    gap: var(--space-6);
  }

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

/* Portrait product hero photos: show the whole product on the right
   instead of zooming/cropping under background-size:cover */
.hero-slider__slide--product {
  background-size: contain;
  background-position: right center;
}
@media (max-width: 900px) {
  .hero-slider__slide--product {
    background-size: auto 62%;
    background-position: center bottom;
  }
}

/* Designed banner slide: artwork already contains its own typography & CTA,
   so suppress the overlay/pattern and make the whole slide a link. */
/* Hero CTA strip — Find a Shop / Plan a Celebration, sits between banner and features strip */
.hero-cta-strip {
  background: var(--color-vanilla);
  padding-block: var(--space-6);
}
.hero-cta-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-cta-strip__btn {
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-8);
}

/* Image-banner slider hero — height comes from the active slide's image */
.hero-banner-slider {
  position: relative;
  background: #F8C9CE;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}
.hero-banner-slider .hero-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-slider .hero-slider__slide.is-active img {
  height: auto;
}
.hero-banner-slider .hero-slider__slide a {
  display: block;
  width: 100%;
  height: 100%;
}

/* legacy single-banner class kept for reference */
.hero-celebration-banner {
  position: relative;
  background: #F8C9CE;
  display: block;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}
.hero-celebration-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slider__slide--banner {
  background-color: #F8C9CE;
  min-height: calc(100vh - var(--nav-height) - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* CTA buttons overlaid on the banner image — positioned over the
   left text column of the new celebration artwork */
.hero-banner__cta {
  position: absolute;
  z-index: 3;
  left: 6%;
  bottom: 10%;
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero-banner__btn {
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-6);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
  .hero-banner__cta {
    position: static;
    transform: none;
    margin: var(--space-4) auto var(--space-6);
    justify-content: center;
  }
}
.hero-slider__slide--banner-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}
.hero-slider__slide--banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 900px) {
  .hero-slider__slide--banner-img {
    object-fit: contain;
  }
}
