/* 
   MANIFESTO
 */
.manifesto {
  padding: 100px 48px;
  text-align: center;
  background: #fff;
}

.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
}

.manifesto-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a8fa8;
  font-weight: 600;
  margin-bottom: 22px;
  display: block;
}

.manifesto h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  color: #163f56;
  margin-bottom: 24px;
}

.manifesto h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 50px;
  letter-spacing: -1px;
  text-transform: none;
  color: #5a8fa8;
}

.manifesto p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  line-height: 1.8;
  color: #537384;
  max-width: 540px;
  margin: 0 auto;
}


/* 
   EDITORIAL SPLIT
 */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.editorial-photo {
  position: relative;
  overflow: hidden;
  background: #c8dde8;
  min-height: 540px;
}

.editorial-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  display: block;
}

.editorial-content {
  background: #4e8fa8;
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-kicker {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 32px;
}

.editorial-ingredient {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 42px;
  color: #fff;
  line-height: 1.05;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.editorial-ingredient:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.editorial-tagline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

.editorial-cta {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #1a4055;
  border-radius: 100px;
  padding: 13px 28px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
}


/* 
   FLAVOR CARDS
 */
.flavors-section {
  padding: 88px 48px;
  background: #fdf8f4;
}

.flavors-section-kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a8fa8;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}

.flavors-section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #163f56;
  text-align: center;
  margin-bottom: 52px;
}

.flavor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.flavor-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.flavor-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.flavor-card-link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: -6px;
}

.flavor-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.flavor-card:hover .flavor-card-bg {
  transform: scale(1.04);
}

.flavor-card-wm {
  background: radial-gradient(ellipse at 60% 25%, #f5d0c0 0%, #e8847a 40%, #c45a52 100%);
}

.flavor-card-gc {
  background: radial-gradient(ellipse at 60% 25%, #fde9a0 0%, #f5c440 40%, #d89018 100%);
}

.flavor-card-rl {
  background: radial-gradient(ellipse at 60% 25%, #f0c0d8 0%, #d870a8 40%, #a83878 100%);
}

.flavor-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, transparent 55%);
  pointer-events: none;
}

.flavor-card-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.flavor-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.flavor-card-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.1;
}

.flavor-card-mg {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-bottom: 16px;
}

.flavor-card-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
  pointer-events: auto;
  position: relative;
  z-index: 3;
}

.flavor-card:hover .flavor-card-btn,
.flavor-card:focus-within .flavor-card-btn {
  background: rgba(255,255,255,0.35);
}


/* 
   REVIEW STRIP
 */
.review-strip {
  background: #163f56;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  gap: 24px;
}

.review-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.review-stars {
  color: #f5c842;
  font-size: 15px;
  letter-spacing: 2px;
}

.review-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.review-press {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.review-press-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
  margin-right: 6px;
}

.review-press-name {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  padding: 0 10px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.review-press-name:first-of-type {
  border-left: none;
}

.review-strip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* 
   SECTIONS MOBILE
 */
@media (max-width: 768px) {
  .manifesto {
    padding: 72px 24px;
  }

  .manifesto h2 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .manifesto h2 em {
    font-size: 36px;
  }

  .manifesto p {
    font-size: 17px;
  }

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

  .editorial-photo {
    min-height: 300px;
  }

  .editorial-content {
    padding: 48px 28px;
  }

  .editorial-ingredient {
    font-size: 34px;
  }

  .flavors-section {
    padding: 60px 24px;
  }

  .flavors-section-title {
    font-size: 32px;
  }

  .flavor-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flavor-card {
    aspect-ratio: 4/3;
  }

  .review-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }

  .review-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .review-press {
    flex-wrap: wrap;
  }
}
