/* ═══════════════════════════════════════════════════════════════
   OAKFIELD LIQUOR — INDEX PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── AGE GATE ───────────────────────────────────────────────────── */
#age-gate {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  transition: opacity 0.6s ease;
}
#age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate-logo { width: 140px; margin-bottom: 32px; }
.age-gate-divider {
  width: 1px; height: 40px;
  background: var(--gold); opacity: 0.4;
  margin: 0 auto 32px;
}
.age-gate h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  text-align: center; margin-bottom: 10px;
}
.age-gate p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px; text-align: center;
  margin-bottom: 40px; max-width: 360px;
}
.age-gate-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-yes, .btn-no {
  font-family: 'Lato', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 40px; border: none; cursor: pointer;
  transition: all 0.25s;
}
.btn-yes { background: var(--red); color: var(--white); }
.btn-yes:hover { background: var(--red-light); }
.btn-no {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-no:hover { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.age-disclaimer {
  margin-top: 32px; font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center; max-width: 400px;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative; display: flex;
  align-items: center; overflow: hidden;
  background: var(--black);
}
.hero-slash {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: var(--red);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.92;
}
.hero-slash-overlay {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: url('https://images.unsplash.com/photo-1569529465841-dfecdab7503b?w=1200&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-gold-bar {
  position: absolute; top: 0; right: calc(45% - 2px);
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px 80px; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::after {
  content: '';
  width: 48px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); max-width: 600px;
  margin-bottom: 28px;
}
.hero-title em {
  display: block; color: var(--gold);
  font-style: italic; font-weight: 400;
}
.hero-sub {
  font-size: 16px; font-weight: 300;
  line-height: 1.7; color: rgba(255, 255, 255, 0.65);
  max-width: 420px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: stretch;
}
.stat-item {
  flex: 1; padding: 32px 24px;
  text-align: center; position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--red); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-accent {
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold); opacity: 0.4; pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  background: var(--red);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 12px;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1;
}
.about-badge-text {
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.75);
  text-align: center; margin-top: 4px;
}
.about-text { padding: 20px 0; }
.about-text .eyebrow { margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 24px; }
.about-text p {
  font-size: 16px; font-weight: 300;
  line-height: 1.85; color: var(--text-muted); margin-bottom: 20px;
}
.about-text p strong { color: var(--black); font-weight: 700; }
.about-divider { width: 48px; height: 2px; background: var(--red); margin: 32px 0; }
.about-promise { display: flex; gap: 32px; margin-top: 40px; }
.promise-item { display: flex; flex-direction: column; gap: 6px; }
.promise-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--red);
}
.promise-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--black);
}

/* ── PRODUCT CATEGORIES ─────────────────────────────────────────── */
.categories-section { background: var(--off-white); padding: 100px 0; }
.section-header {
  text-align: center; max-width: 560px;
  margin: 0 auto 64px; padding: 0 40px;
}
.section-header .eyebrow { margin-bottom: 16px; }
.section-header .section-title { margin-bottom: 20px; }
.section-header p {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}
.categories-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.cat-card {
  position: relative; overflow: hidden;
  cursor: pointer; aspect-ratio: 3/4; background: var(--black);
}
.cat-card:first-child  { grid-column: 1 / 2; grid-row: 1 / 3; aspect-ratio: auto; }
.cat-card:nth-child(2) { grid-column: 2 / 3; aspect-ratio: 3/2; }
.cat-card:nth-child(3) { grid-column: 3 / 4; aspect-ratio: 3/2; }
.cat-card:nth-child(4) { grid-column: 2 / 3; aspect-ratio: 3/2; }
.cat-card:nth-child(5) { grid-column: 3 / 4; aspect-ratio: 3/2; }
.cat-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease; filter: brightness(0.45);
}
.cat-card:hover .cat-bg { transform: scale(1.06); filter: brightness(0.35); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139, 26, 26, 0.7) 0%, transparent 50%);
}
.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.cat-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 12px;
}
.cat-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, gap 0.2s;
}
.cat-card:hover .cat-arrow { color: var(--gold); gap: 14px; }
.cat-arrow svg { width: 16px; height: 16px; }

/* ── BANNER CTA ─────────────────────────────────────────────────── */
.banner-cta {
  background: var(--red); padding: 80px 40px;
  position: relative; overflow: hidden;
}
.banner-cta::before {
  content: 'OAKFIELD';
  position: absolute; font-family: 'Playfair Display', serif;
  font-size: 18vw; font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.05em;
}
.banner-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}
.banner-cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.banner-cta-text p {
  font-size: 15px; font-weight: 300;
  color: rgba(255, 255, 255, 0.7); max-width: 460px; line-height: 1.7;
}

/* ── BRANDS ─────────────────────────────────────────────────────── */
.brands-section { padding: 100px 0; background: var(--white); }
.brands-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.brands-header {
  max-width: 100%; text-align: left; margin-bottom: 0; padding: 0;
}
.brands-header .eyebrow { margin-bottom: 12px; }
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-top: 48px;
}
.brand-cell {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px; text-align: center;
  transition: background 0.2s;
}
.brand-cell:hover { background: var(--off-white); }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--black); line-height: 1.2;
}
.brand-type {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 4px;
}

/* ── INFO / HOURS ───────────────────────────────────────────────── */
.info-section {
  background: var(--black); padding: 100px 40px;
  position: relative; overflow: hidden;
}
.info-section::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--red);
}
.info-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 64px;
}
.info-block .eyebrow { margin-bottom: 20px; color: var(--gold); }
.info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 24px;
}
.info-block p {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: rgba(255, 255, 255, 0.6);
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px; font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}
.hours-list .day {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.hours-list .time { color: rgba(255, 255, 255, 0.7); }
.hours-list li.today .day,
.hours-list li.today .time { color: var(--gold); font-weight: 700; }

/* ── CONTACT (on homepage) ──────────────────────────────────────── */
.contact-section { padding: 100px 40px; background: var(--off-white); }
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-left .eyebrow { margin-bottom: 16px; }
.contact-left .section-title { margin-bottom: 24px; }
.contact-left p {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-muted); margin-bottom: 40px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-icon {
  width: 36px; height: 36px; background: var(--red);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 16px; height: 16px; fill: var(--white); }
.contact-detail-text .label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2px;
}
.contact-detail-text .value { font-size: 15px; color: var(--black); }
.contact-form {
  background: var(--white); padding: 48px;
  border: 1px solid var(--border);
}
.contact-form-header { margin-bottom: 32px; }
.contact-form-header .eyebrow { margin-bottom: 8px; }
.contact-form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
}

/* ── INDEX RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 500px; }
  .about-badge { bottom: -16px; right: -16px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-card:first-child { grid-column: 1 / 3; grid-row: auto; }
  .cat-card:nth-child(n) { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .info-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .info-inner .info-block:last-child { grid-column: 1 / 3; }
  .contact-inner { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .hero-slash, .hero-slash-overlay { width: 0; }
  .hero-gold-bar { display: none; }
  .hero-content { padding: 100px 20px 80px; }
  .hero-title { font-size: 2.8rem; }
  .stats-inner { flex-direction: column; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .about { padding: 60px 20px; }
  .about-promise { flex-wrap: wrap; }
  .categories-section { padding: 60px 0; }
  .categories-grid { padding: 0 20px; grid-template-columns: 1fr; }
  .cat-card:nth-child(n) { aspect-ratio: 4/3; grid-column: auto; }
  .banner-cta { padding: 60px 20px; }
  .banner-cta-inner { flex-direction: column; }
  .info-section { padding: 60px 20px; }
  .info-inner { grid-template-columns: 1fr; }
  .info-inner .info-block:last-child { grid-column: auto; }
  .contact-section { padding: 60px 20px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 20px; }
  .brands-section { padding: 60px 0; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   CANADA DAY PROMO SECTION
   ═══════════════════════════════════════════════════════════════ */

/* ── PROMO WRAPPER ──────────────────────────────────────────────── */
.promo-section {
  background: var(--black);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

/* Subtle red-to-black gradient sweep behind everything */
.promo-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%,
      rgba(139, 26, 26, 0.18) 0%,
      transparent 70%);
  pointer-events: none;
  animation: promoAmbient 6s ease-in-out infinite alternate;
}
@keyframes promoAmbient {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

.promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}

/* ── LEFT: TEXT BLOCK ───────────────────────────────────────────── */
.promo-text {
  flex: 1;
  min-width: 0;
}
.promo-text .eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
}
.promo-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.promo-headline em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.promo-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  padding: 10px 20px;
  margin-bottom: 24px;
}
.promo-date-badge span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.promo-date-badge .maple {
  font-size: 16px;
}
.promo-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  max-width: 400px;
}

/* ── COUNTDOWN ──────────────────────────────────────────────────── */
.promo-countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.countdown-unit {
  text-align: center;
  min-width: 64px;
}
.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  border-bottom: 1px solid rgba(196, 164, 74, 0.3);
  padding-bottom: 6px;
  margin-bottom: 6px;
  min-width: 64px;
}
.countdown-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Countdown separator dot */
.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(196, 164, 74, 0.4);
  line-height: 1;
  align-self: flex-start;
  padding-top: 4px;
  animation: sepBlink 1s ease-in-out infinite;
}
@keyframes sepBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.promo-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.promo-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ── RIGHT: POSTER ──────────────────────────────────────────────── */
.promo-poster-wrap {
  flex-shrink: 0;
  width: 360px;
  position: relative;
}

/* Outer glow ring — the main attention effect */
.promo-poster-glow {
  position: absolute;
  inset: -12px;
  border-radius: 4px;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(196, 164, 74, 0.25),
    0 0 30px 4px rgba(196, 164, 74, 0.12),
    0 0 60px 12px rgba(139, 26, 26, 0.2);
  animation: posterGlow 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes posterGlow {
  from {
    box-shadow:
      0 0 0 1px rgba(196, 164, 74, 0.2),
      0 0 20px 4px  rgba(196, 164, 74, 0.08),
      0 0 50px 8px  rgba(139, 26, 26, 0.15);
    transform: scale(0.998);
  }
  to {
    box-shadow:
      0 0 0 1px rgba(196, 164, 74, 0.5),
      0 0 40px 10px rgba(196, 164, 74, 0.22),
      0 0 80px 20px rgba(139, 26, 26, 0.32);
    transform: scale(1.002);
  }
}

/* Gold corner accents */
.promo-poster-frame {
  position: absolute; inset: -6px;
  pointer-events: none; z-index: 3;
}
.promo-poster-frame::before,
.promo-poster-frame::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}
.promo-poster-frame::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}
.promo-poster-frame::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}
/* Two more corners via a child */
.promo-poster-frame-inner {
  position: absolute; inset: -6px;
  pointer-events: none; z-index: 3;
}
.promo-poster-frame-inner::before,
.promo-poster-frame-inner::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}
.promo-poster-frame-inner::before {
  top: 0; right: 0;
  border-width: 2px 2px 0 0;
}
.promo-poster-frame-inner::after {
  bottom: 0; left: 0;
  border-width: 0 0 2px 2px;
}

/* The actual poster image */
.promo-poster {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(196, 164, 74, 0.15);

  /* Entrance animation — floats up on page load */
  animation: posterEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) both,
             posterFloat 5s ease-in-out 1.2s infinite;
}
@keyframes posterEntrance {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
/* Very subtle float — alive without being distracting */
@keyframes posterFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* "NEW OPENING" ribbon */
.promo-ribbon {
  position: absolute;
  top: 20px; left: -8px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px 6px 20px;
  z-index: 4;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
  animation: ribbonPulse 2.5s ease-in-out infinite;
}
@keyframes ribbonPulse {
  0%, 100% { background: var(--red); }
  50%       { background: var(--red-light); }
}

/* ── PROMO RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .promo-inner { gap: 40px; }
  .promo-poster-wrap { width: 300px; }
}
@media (max-width: 768px) {
  .promo-section { padding: 60px 20px; }
  .promo-inner {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }
  .promo-poster-wrap { width: 100%; max-width: 340px; margin: 0 auto; }
  .promo-text .eyebrow { display: block; }
  .promo-desc { max-width: 100%; margin: 0 auto 32px; }
  .promo-countdown { justify-content: center; }
  .promo-cta-row { justify-content: center; }
}
