:root {
  --navy: #08245c;
  --burgundy: #88002b;
  --bright: #e00020;
  --purple: #45145c;
  --ink: #152038;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
}

::selection {
  background: rgba(136, 0, 43, 0.18);
  color: var(--navy);
}

.nav-shell {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(8, 36, 92, 0.08);
  backdrop-filter: blur(18px);
}

#site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(8, 36, 92, 0.13);
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--navy);
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--burgundy);
  background: rgba(136, 0, 43, 0.06);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.mobile-menu.is-open {
  max-height: 560px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-radius: 6px;
  padding: 0 0.85rem;
  font-weight: 800;
  color: var(--navy);
}

.mobile-link:hover,
.mobile-link:focus-visible {
  background: rgba(136, 0, 43, 0.07);
  color: var(--burgundy);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  transform: translateY(-7px);
}

.menu-icon::after {
  transform: translateY(7px);
}

#menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

#menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: rotate(45deg);
}

#menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: rotate(-45deg);
}

.hero-bg {
  background:
    radial-gradient(circle at top left, rgba(224, 0, 32, 0.08), transparent 32rem),
    radial-gradient(circle at 85% 15%, rgba(8, 36, 92, 0.1), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #eaf3ff 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(115deg, transparent 0 44%, rgba(136, 0, 43, 0.08) 44.2%, transparent 45% 100%),
    radial-gradient(circle, rgba(8, 36, 92, 0.16) 1px, transparent 1px);
  background-size: 100% 100%, 22px 22px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-visual::before,
.hero-visual::after,
.hero-orbit {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero-visual::before {
  inset: -22px -18px auto auto;
  width: 68%;
  aspect-ratio: 1;
  border: 12px solid rgba(8, 36, 92, 0.09);
}

.hero-visual::after {
  right: -24px;
  bottom: 42px;
  width: 76%;
  height: 24%;
  border-bottom: 12px solid rgba(224, 0, 32, 0.78);
  transform: rotate(-12deg);
}

.hero-orbit {
  z-index: 2;
  right: -14px;
  top: 12%;
  width: 78%;
  height: 78%;
  border-right: 5px solid rgba(136, 0, 43, 0.8);
  border-top: 2px solid rgba(8, 36, 92, 0.3);
  transform: rotate(17deg);
}

.hero-banner-image {
  object-position: 100% 50%;
}

.event-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(8, 36, 92, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
  box-shadow: 0 14px 35px rgba(8, 36, 92, 0.08);
  backdrop-filter: blur(10px);
}

.highlight-item {
  position: relative;
  padding: 1.5rem;
  min-height: 190px;
  border-right: 1px solid rgba(8, 36, 92, 0.08);
}

.highlight-item:last-child {
  border-right: 0;
}

.highlight-icon,
.feature-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  color: var(--burgundy);
  background: linear-gradient(135deg, rgba(136, 0, 43, 0.1), rgba(8, 36, 92, 0.06));
}

.highlight-icon svg,
.feature-icon svg,
.contact-icon svg,
.info-row svg {
  width: 1.45rem;
  height: 1.45rem;
}

.highlight-item h3,
.feature-card h3,
.contact-card h3,
.benefit-item h3 {
  margin-top: 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
}

.highlight-item p,
.feature-card p,
.benefit-item p,
.contact-card p {
  margin-top: 0.45rem;
  color: #64748b;
  line-height: 1.65;
}

.section-eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.section-heading {
  max-width: 48rem;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--navy);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(8, 36, 92, 0.11);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: 0 24px 70px rgba(8, 36, 92, 0.12);
}

.stats-cell {
  min-height: 150px;
  padding: 1.5rem;
  border-right: 1px solid rgba(8, 36, 92, 0.08);
  border-bottom: 1px solid rgba(8, 36, 92, 0.08);
  transition: background 220ms ease, transform 220ms ease;
}

.stats-cell:nth-child(2n) {
  border-right: 0;
}

.stats-cell:nth-child(n+3) {
  border-bottom: 0;
}

.stats-cell:hover {
  background: rgba(136, 0, 43, 0.045);
}

.stats-cell strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--burgundy);
}

.stats-cell span {
  margin-top: 0.45rem;
  display: block;
  font-weight: 800;
  color: var(--navy);
}

.theme-section::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  opacity: 0.42;
  background:
    radial-gradient(circle at 50% 50%, rgba(224, 0, 32, 0.24), transparent 18rem),
    linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.12) 42.2%, transparent 43% 100%),
    linear-gradient(123deg, transparent 51%, rgba(224, 0, 32, 0.22) 51.2%, transparent 52.2% 100%),
    linear-gradient(138deg, transparent 58%, rgba(255, 255, 255, 0.09) 58.2%, transparent 59% 100%);
}

.theme-section > * {
  position: relative;
}

.feature-card,
.contact-card,
.benefit-item {
  position: relative;
  border: 1px solid rgba(8, 36, 92, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 1.35rem;
  box-shadow: 0 16px 45px rgba(8, 36, 92, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.feature-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, var(--burgundy), var(--bright), var(--navy));
  opacity: 0.8;
}

.feature-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(136, 0, 43, 0.25);
  box-shadow: 0 24px 60px rgba(8, 36, 92, 0.12);
}

.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 36, 92, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(8, 36, 92, 0.12);
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--burgundy), var(--bright), var(--navy), var(--purple));
}

.info-row {
  display: flex;
  gap: 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(8, 36, 92, 0.09);
  padding: 1rem;
  color: var(--burgundy);
}

.info-row span {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.info-row strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--navy);
  line-height: 1.35;
}

.abstract-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(224, 0, 32, 0.3), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgba(69, 20, 92, 0.48), transparent 26rem),
    linear-gradient(135deg, #08245c 0%, #45145c 48%, #88002b 100%);
}

.abstract-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(118deg, transparent 48%, rgba(255, 255, 255, 0.22) 48.15%, transparent 49% 100%),
    linear-gradient(132deg, transparent 54%, rgba(255, 255, 255, 0.14) 54.15%, transparent 55% 100%);
}

.abstract-section > * {
  position: relative;
}

.benefit-item {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.benefit-item h3 {
  color: #ffffff;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.78);
}

.save-date-section::before,
.footer-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.save-date-section::before {
  right: -18rem;
  top: 8%;
  width: 42rem;
  height: 42rem;
  border: 26px solid rgba(8, 36, 92, 0.06);
}

.save-title {
  display: grid;
  max-width: 34rem;
  line-height: 0.9;
}

.save-title span {
  font-family: Montserrat, sans-serif;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  font-weight: 900;
  color: var(--navy);
}

.save-title em {
  margin: -0.15em 0 -0.04em 0.04em;
  font-family: Parisienne, cursive;
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--burgundy);
}

.save-art {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid rgba(8, 36, 92, 0.11);
  box-shadow: 0 26px 70px rgba(8, 36, 92, 0.16);
}

.save-art::after {
  content: "";
  position: absolute;
  inset: auto -8% -12% 18%;
  height: 28%;
  border-top: 13px solid rgba(224, 0, 32, 0.85);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.contact-card {
  display: grid;
  align-content: start;
  min-height: 220px;
}

.contact-card a {
  margin-top: 0.55rem;
  display: inline-block;
  overflow-wrap: anywhere;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}

.contact-card a:hover,
.footer-section a:hover {
  color: var(--burgundy);
}

.footer-heading {
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-section a {
  color: #cbd5e1;
  transition: color 180ms ease;
}

.footer-section::before {
  right: -20rem;
  bottom: -24rem;
  width: 42rem;
  height: 42rem;
  border: 32px solid rgba(224, 0, 32, 0.2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .highlight-item {
    border-bottom: 1px solid rgba(8, 36, 92, 0.08);
  }

  .highlight-item:nth-child(2n) {
    border-right: 0;
  }

  .highlight-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 639px) {
  html {
    scroll-padding-top: 84px;
  }

  .nav-shell {
    padding-right: 0.5rem;
  }

  .hero-banner-image {
    object-position: 82% 50%;
  }

  .highlight-item {
    min-height: auto;
    border-right: 0;
  }

  .highlight-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 36, 92, 0.08);
  }

  .highlight-item:last-child {
    border-bottom: 0;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stats-cell,
  .stats-cell:nth-child(2n),
  .stats-cell:nth-child(n+3) {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 36, 92, 0.08);
  }

  .stats-cell:last-child {
    border-bottom: 0;
  }

  .save-art {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

    .sm\:min-h-\[430px\]
 {
        min-height: 285px !important;
    }
