/* ──────────────────────────────────────────
   AWARDS PAGE
   Editorial layout — intro band, then full-width award showcases that
   alternate left/right. No card chrome, no pills — just typography,
   a medal, and a hairline divider between each award.

   `--card-color` (set on .awards) tints the medal halo + accent text.
   A warm bronze fits the Decanter medal artwork.
─────────────────────────────────────────── */
.awards {
  --card-color: #c8a37a;
  max-width: 1400px;
  margin: 0 auto;
  padding: 150px 48px 120px;
}

/* ──────────────────────────────────────────
   INTRO BAND
─────────────────────────────────────────── */
.awards-intro {
  text-align: center;
  margin-bottom: 80px;
}
.awards-eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin-bottom: 24px;
}
.awards-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--light);
  margin: 0 0 28px;
}
.awards-lead {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--light-dim);
  max-width: 620px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────
   AWARD SHOWCASE
   Two-column: medal (left) + meta (right). Stack with hairline divider
   between consecutive showcases. The `.reverse` modifier flips column
   placement for the alternating rhythm.
─────────────────────────────────────────── */
.award-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.award-showcase + .award-showcase {
  border-top: 1px solid var(--light-faint);
}

/* Reverse: medal jumps to right column, meta to left */
.award-showcase.reverse .award-medal { grid-column: 2; grid-row: 1; }
.award-showcase.reverse .award-meta  { grid-column: 1; grid-row: 1; }

/* ── Medal ──────────────────────────────── */
.award-medal {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centered on its column */
  justify-self: center;
}
/* Soft radial glow behind the medal — tinted with --card-color */
.award-medal::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle,
    var(--card-color) 0%,
    transparent 60%);
  opacity: 0.18;
  filter: blur(20px);
  z-index: 0;
}
.award-medal img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: auto;
  filter:
    drop-shadow(0 0 40px color-mix(in srgb, var(--card-color) 30%, transparent))
    drop-shadow(0 24px 36px rgba(0, 0, 0, 0.55));
  /* Idle sway — keeps the medal feeling alive without spinning */
  animation: medal-sway 7s ease-in-out infinite;
}
@keyframes medal-sway {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50%      { transform: rotate(1.5deg)  translateY(-6px); }
}

/* ── Meta block ─────────────────────────── */
.award-year {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  color: var(--light);
  margin: 0 0 28px;
}
.award-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--light);
  margin: 0 0 10px;
}
.award-rank {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--card-color);
  margin-bottom: 36px;
}
.award-wine {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-dim);
  padding-top: 24px;
  border-top: 1px solid var(--light-faint);
  margin-bottom: 24px;
}
.award-wine a {
  color: var(--light);
  text-decoration: none;
  border-bottom: 1px solid var(--light-faint);
  padding-bottom: 1px;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.award-wine a:hover {
  color: var(--card-color);
  border-color: var(--card-color);
}
.award-desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--light-dim);
  margin: 0;
  max-width: 560px;
}

/* ──────────────────────────────────────────
   BOTTOM CTA — gentle invitation to explore the wines
─────────────────────────────────────────── */
.awards-cta {
  text-align: center;
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid var(--light-faint);
}
.cta-eyebrow {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--light-dim);
  margin-bottom: 22px;
}
.cta-link {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--light);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  transition: color 0.4s ease;
}
.cta-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--light-faint);
  transition: background 0.4s ease;
}
.cta-link:hover { color: var(--card-color); }
.cta-link:hover::after { background: var(--card-color); }

/* ──────────────────────────────────────────
   MOTION FALLBACK
─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .award-medal img { animation: none; }
}

/* ──────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .awards { padding: 130px 28px 80px; }
  .awards-intro { margin-bottom: 56px; }
  .award-showcase,
  .award-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
    text-align: center;
  }
  .award-showcase.reverse .award-medal,
  .award-showcase.reverse .award-meta { grid-column: 1; grid-row: auto; }
  .award-medal { max-width: 320px; }
  .award-year { font-size: 64px; }
  .award-desc { margin: 0 auto; }
  .award-wine { display: inline-block; }
}
@media (max-width: 700px) {
  .awards { padding: 110px 16px 60px; }
  .awards-title { font-size: clamp(40px, 12vw, 56px); }
  .awards-lead { font-size: 16px; }
  .award-medal { max-width: 240px; }
  .award-year { font-size: 56px; margin-bottom: 20px; }
  .award-rank { margin-bottom: 28px; }
  .awards-cta { margin-top: 64px; padding-top: 48px; }
}
