.hero-redesign {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  isolation: isolate;
  background: #0A1929;
}

.hero-redesign::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 32px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  filter: saturate(1.35) contrast(1.12) brightness(1.28);
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-bg-scale 9s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 15, 25, 0.84) 0%, rgba(10, 15, 25, 0.35) 50%, rgba(10, 15, 25, 0.08) 100%);
}

.hero-top-scrim {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.hero-top-scrim.is-hidden {
  opacity: 0;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 85vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px) clamp(96px, 14vh, 160px);
  align-items: flex-end;
}

.hero-content {
  max-width: 980px;
}

.hero-eyebrow {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  max-width: clamp(560px, 62vw, 980px);
  margin: 0 0 32px;
  color: #FFFFFF;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 7vw, 92px);
  font-variation-settings: "opsz" 96, "wght" 400;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-subhead {
  max-width: 760px;
  margin: 0 0 44px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-primary,
.hero-cta-secondary {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
}

.hero-primary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  background: var(--color-foret);
  box-shadow: 0 6px 24px var(--color-foret-shadow);
  color: #FFFFFF;
  font-size: 15px;
  text-decoration: none;
  transition: background 200ms ease, filter 200ms ease;
}

.hero-primary:hover {
  background: var(--color-foret-hover);
  filter: brightness(1.08);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 4px;
  color: #FFFFFF;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.65);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transition: text-decoration-color 200ms ease, text-underline-offset 200ms ease;
}

.hero-cta-secondary:hover {
  text-decoration-color: #FFFFFF;
  text-underline-offset: 10px;
}

.hero-event-card {
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(32px, 6vh, 64px);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 330px;
  padding: 16px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 40px rgba(15, 23, 42, 0.22);
  color: #0A1929;
  text-decoration: none;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.hero-event-card:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 14px 44px rgba(15, 23, 42, 0.25);
  transform: translateY(-3px);
}

.hero-event-date {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 4px;
  background: #0A1929;
  color: #FFFFFF;
}

.hero-event-day {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.hero-event-month {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-event-body {
  display: grid;
  gap: 4px;
}

.hero-event-label {
  color: #6B7280;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-event-title {
  color: #0A1929;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-event-link {
  color: var(--color-foret);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(15, 61, 36, 0.4);
  text-underline-offset: 4px;
}

.hero-event-card:hover .hero-event-link {
  text-decoration-color: var(--color-foret);
}

.hero-redesign a:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  left: 50%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 8px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  opacity: 0.8;
  transform: translateX(-50%);
  transition: opacity 300ms ease;
  animation: hero-cue-bob 2.2s ease-in-out infinite;
}

.hero-scroll-cue svg {
  width: 24px;
  height: 24px;
}

.hero-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-scroll-cue:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

html.js .hero-redesign .hero-reveal {
  opacity: 0;
  transform: translateY(12px);
}

html.js .hero-redesign.hero-loaded .hero-reveal {
  animation: hero-fade-up 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

html.js .hero-redesign.hero-loaded .hero-title {
  animation-duration: 800ms;
  animation-delay: 200ms;
  transform: translateY(20px);
}

html.js .hero-redesign.hero-loaded .hero-eyebrow {
  animation-delay: 350ms;
}

html.js .hero-redesign.hero-loaded .hero-subhead {
  animation-delay: 450ms;
}

html.js .hero-redesign.hero-loaded .hero-actions {
  animation-delay: 550ms;
}

html.js .hero-redesign.hero-loaded .hero-event-card {
  animation-delay: 700ms;
}

@keyframes hero-bg-scale {
  to {
    transform: scale(1);
  }
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-cue-bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 6px);
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-event-card {
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (max-width: 768px) {
  .hero-redesign {
    min-height: 100svh;
  }

  .hero-container {
    min-height: 100svh;
    padding-block: 112px 40px;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-subhead {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-event-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .hero-title br {
    display: none;
  }
}

@media (max-width: 480px) and (pointer: coarse) {
  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 40px;
  }
}

@media (min-width: 769px) {
  .hero-redesign {
    min-height: max(600px, 85vh);
  }

  .hero-container {
    min-height: max(600px, 85vh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transform: scale(1);
  }

  html.js .hero-redesign .hero-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-scroll-cue {
    animation: none;
    transition: none;
  }

  .hero-event-card {
    transition-duration: 0ms;
  }

  .hero-top-scrim {
    transition: none;
  }
}
