/* =========================================
   1. ROOT VARIABLES & LUXURY BRANDING
   ========================================= */

:root {
  --bg-burgundy: #2a0710;
  --gold-text: #d4a373;
  --text-light: #e8e8e8;

  --font-heading: "Bodoni Moda", serif;
  --font-body: "Cormorant Garamond", serif;
  --font-ui: "Jost", sans-serif;

  --transition-curtain: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  --transition-smooth: 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   2. GLOBAL
   ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 19.5px;
  margin: 0;
  padding: 0;
  color: var(--text-light);
  line-height: 1.8;
  background-color: var(--bg-burgundy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 4rem;
  margin: 20px 0;
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  color: #d1d1d1;
  font-weight: 400;
  margin-bottom: 15px;
}

a {
  color: var(--gold-text);
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0;
}

.gold-subtitle {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-text);
  text-transform: uppercase;
  letter-spacing: 5px;
}

.gold-divider {
  width: 80px;
  height: 1px;
  margin: 55px auto;
  border: none;
  background-color: var(--gold-text);
  opacity: 0.4;
}

/* =========================================
   3. PREMIUM BACKGROUND
   ========================================= */

.premium-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(42, 7, 16, 0.4) 0%,
    rgba(42, 7, 16, 1) 100%
  );
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

.glow-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

.orb-1 {
  top: 10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: #d4a373;
}

.orb-2 {
  right: 5%;
  bottom: 10%;
  width: 600px;
  height: 600px;
  background: #9c1532;
  animation-delay: -7s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 60px) scale(0.9);
  }
}

/* =========================================
   4. PRELOADER
   ========================================= */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-burgundy);
}

.curtain {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 50%;
  height: 100%;
  background-color: var(--bg-burgundy);
  transition: transform var(--transition-curtain);
}

.curtain-left {
  left: 0;
}

.curtain-right {
  right: 0;
}

#preloader.loaded .curtain-left {
  transform: translateX(-100%);
}

#preloader.loaded .curtain-right {
  transform: translateX(100%);
}

.preloader-logo-img {
  z-index: 2;
  width: 450px;
  max-width: 80vw;
  opacity: 0;
  animation: cinematicImage 0.6s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards 0.1s;
  transition:
    opacity 0.5s ease-in-out,
    transform 0.5s ease-in-out;
}

@keyframes cinematicImage {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#preloader.loaded .preloader-logo-img {
  opacity: 0 !important;
  transform: scale(1.05);
}

/* =========================================
   5. ORIGINAL HEADER
   ========================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  width: 100%;
  padding: 10px 20px;
  align-items: center;
  background: rgba(42, 7, 16, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-link {
  display: flex;
  margin-right: auto;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 80px;
  max-width: 250px;
  margin-right: auto;
  object-fit: contain;
}

.logo-link .logo {
  margin-right: 0;
}

.section-nav {
  position: relative;
  display: flex;
  margin-left: 0;
}

.section-nav ul.nav-links {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50px);
}

.section-nav ul.nav-links li a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.section-nav ul.nav-links li a:hover {
  color: var(--gold-text);
}

.mobile-menu-toggle {
  display: none;
}

/* =========================================
   6. HERO
   ========================================= */

.events-hero {
  display: flex;
  min-height: 78vh;
  padding: 175px 20px 85px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 980px;
}

.events-hero p {
  max-width: 830px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #d1d1d1;
}

/* =========================================
   7. CURRENT MILAN EVENT
   ========================================= */

.current-event-section {
  padding: 20px 20px 35px;
  background: transparent !important;
}

.current-event-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 48px;
  max-width: 1080px;
  padding: 55px 60px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(212, 163, 115, 0.34);
  border-radius: 6px;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 163, 115, 0.12),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      rgba(0, 0, 0, 0.3)
    ),
    rgba(18, 0, 5, 0.38);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.current-event-card::after {
  content: "CURRENT";
  position: absolute;
  right: -18px;
  bottom: -38px;
  color: rgba(212, 163, 115, 0.045);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  pointer-events: none;
}

.current-event-copy,
.current-event-facts {
  position: relative;
  z-index: 1;
}

.current-event-copy h2 {
  margin-top: 0;
  margin-bottom: 22px;
}

.current-event-copy p {
  font-size: 1.12rem;
  line-height: 1.7;
}

.current-event-btn {
  width: 250px;
  margin: 30px 0 0;
}

.current-event-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-top: 1px solid rgba(212, 163, 115, 0.26);
  border-left: 1px solid rgba(212, 163, 115, 0.26);
  border-radius: 5px;
}

.event-fact {
  position: relative;
  display: flex;
  min-height: 145px;
  padding: 24px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(212, 163, 115, 0.26);
  border-bottom: 1px solid rgba(212, 163, 115, 0.26);
  background: rgba(0, 0, 0, 0.16);
  text-align: center;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.event-fact:hover {
  z-index: 2;
  background: rgba(212, 163, 115, 0.08);
  transform: translateY(-4px);
}

.event-fact strong {
  color: #f0d0a8;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.event-fact span {
  margin-top: 12px;
  color: #d8d8d8;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.urgent-fact strong {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.urgent-fact::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-text);
  box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.6);
  animation: limitedPulse 2s infinite;
}

@keyframes limitedPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.58);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(212, 163, 115, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 163, 115, 0);
  }
}

/* =========================================
   8. EVENT MANIFESTO
   ========================================= */

.event-manifesto,
.format-section,
.standard-section,
.dual-section,
.note-section {
  padding: 35px 20px 20px;
}

.manifesto-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  max-width: 1080px;
  padding: 55px 60px;
  align-items: center;
  border: 1px solid rgba(212, 163, 115, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      rgba(0, 0, 0, 0.28)
    ),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.manifesto-left {
  padding-right: 35px;
  border-right: 1px solid rgba(212, 163, 115, 0.22);
  text-align: left;
}

.manifesto-left h2 {
  margin-bottom: 0;
}

.manifesto-right p {
  font-size: 1.18rem;
}

/* =========================================
   9. EVENT FORMAT STAGE
   ========================================= */

.format-wrap {
  text-align: center;
}

.format-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 45px;
}

.format-card {
  position: relative;
  min-height: 260px;
  padding: 42px 34px 34px;
  overflow: hidden;
  border: 1px solid rgba(212, 163, 115, 0.24);
  border-radius: 6px;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 163, 115, 0.12),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      rgba(0, 0, 0, 0.28)
    ),
    rgba(0, 0, 0, 0.16);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  text-align: left;
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.format-card:hover {
  border-color: rgba(212, 163, 115, 0.6);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
  transform: translateY(-8px);
}

.large-card {
  min-height: 310px;
}

.format-tag {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(212, 163, 115, 0.1);
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1;
}

.format-card i {
  margin-bottom: 22px;
  color: var(--gold-text);
  font-size: 1.8rem;
}

.format-card h3 {
  margin-top: 0;
  color: #f0d0a8;
  font-size: 1.35rem;
}

.format-card p {
  font-size: 1.06rem;
  line-height: 1.65;
}

/* =========================================
   10. STANDARD LINE
   ========================================= */

.standard-card,
.note-card,
.contact-centered {
  max-width: 1080px;
  padding: 55px 60px;
  border: 1px solid rgba(212, 163, 115, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035),
      rgba(0, 0, 0, 0.28)
    ),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.standard-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
  overflow: hidden;
  border: 1px solid rgba(212, 163, 115, 0.24);
  border-radius: 6px;
}

.standard-point {
  padding: 32px 24px;
  border-right: 1px solid rgba(212, 163, 115, 0.18);
  background: rgba(0, 0, 0, 0.14);
}

.standard-point:last-child {
  border-right: none;
}

.standard-point span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-text);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.standard-point p {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* =========================================
   11. DUAL PANELS
   ========================================= */

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
}

.dual-panel {
  position: relative;
  padding: 48px 42px;
  border: 1px solid rgba(212, 163, 115, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(
      135deg,
      rgba(212, 163, 115, 0.05),
      rgba(0, 0, 0, 0.28)
    ),
    rgba(0, 0, 0, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  text-align: left;
}

.panel-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-text);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.dual-panel p {
  font-size: 1.12rem;
  line-height: 1.65;
}

.dual-panel ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.dual-panel li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 28px;
  color: #d8d8d8;
  font-size: 1.05rem;
  line-height: 1.55;
}

.dual-panel li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-text);
}

/* =========================================
   12. NOTE
   ========================================= */

.note-card p {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.18rem;
}

/* =========================================
   13. CONTACT FORM
   ========================================= */

.contact {
  padding: 50px 20px 80px;
}

.contact-title {
  margin-bottom: 1.5rem;
}

.contact-intro {
  max-width: 850px;
  margin: 0 auto 1rem;
  color: #d1d1d1;
  font-size: 1.18rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(212, 163, 115, 0.4);
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.contact form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.contact form input:focus,
.contact form textarea:focus {
  outline: none;
  border-color: var(--gold-text);
  box-shadow: 0 0 18px rgba(212, 163, 115, 0.12);
}

/* =========================================
   14. PREMIUM BUTTON
   ========================================= */

.premium-btn {
  position: relative;
  display: flex;
  width: 240px;
  min-height: 54px;
  margin: 0 auto;
  padding: 15px 35px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gold-text);
  border-radius: 3px;
  background: transparent;
  color: var(--gold-text);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.shimmer-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  pointer-events: none;
  transform: rotate(35deg);
  animation: lightShimmer 4s infinite ease-in-out;
}

@keyframes lightShimmer {
  0% {
    left: -60%;
  }

  25% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

.premium-btn:hover {
  background: var(--gold-text);
  color: var(--bg-burgundy);
  box-shadow: 0 5px 20px rgba(212, 163, 115, 0.32);
}

/* =========================================
   15. FOOTER
   ========================================= */

footer {
  padding: 30px 0;
  border-top: 1px solid rgba(212, 163, 115, 0.2);
  background: transparent;
  color: #888888;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 1px;
}

footer p {
  margin: 0;
  color: #888888;
}

/* =========================================
   16. REVEAL ANIMATIONS
   ========================================= */

.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform var(--transition-smooth),
    opacity var(--transition-smooth);
}

.reveal.fade-down {
  transform: translateY(-40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* =========================================
   17. TABLET AND MOBILE
   ========================================= */

@media (max-width: 1000px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
  }

  body {
    font-size: 18px;
  }

  /*
    Keeps the content visible on phones even if the user
    scrolls faster than the reveal animation.
  */

  .reveal,
  .reveal.fade-down {
    opacity: 1 !important;
    transform: none !important;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    box-sizing: border-box;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  h3 {
    font-size: 1.25rem;
  }

  .preloader-logo-img {
    width: 80%;
  }

  /* Mobile header */

  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    width: 100% !important;
    height: 74px !important;
    padding: 9px 16px !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    background: rgba(42, 7, 16, 0.98) !important;
  }

  .logo-link {
    display: flex !important;
    margin: 0 !important;
    align-items: center !important;
    text-decoration: none !important;
  }

  header .logo,
  .logo {
    width: auto !important;
    height: 54px !important;
    max-width: 122px !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  .mobile-menu-toggle {
    z-index: 10001 !important;
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    flex-direction: column !important;
    gap: 5px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(212, 163, 115, 0.55) !important;
    border-radius: 3px !important;
    background: rgba(0, 0, 0, 0.12) !important;
    cursor: pointer !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 20px !important;
    height: 1px !important;
    background: var(--gold-text, #d4a373) !important;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease !important;
  }

  .mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0 !important;
  }

  .mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  header .section-nav,
  .section-nav {
    position: fixed !important;
    top: 74px !important;
    left: 0 !important;
    z-index: 9998 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px 18px 18px !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid rgba(212, 163, 115, 0.28) !important;
    background: rgba(42, 7, 16, 0.99) !important;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) !important;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease !important;
  }

  header .section-nav.open,
  .section-nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  header .section-nav ul.nav-links,
  .section-nav ul.nav-links {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    list-style: none !important;
    transform: none !important;
  }

  header .section-nav ul.nav-links li,
  .section-nav ul.nav-links li {
    width: 100% !important;
    border-bottom: 1px solid rgba(212, 163, 115, 0.15) !important;
    text-align: center !important;
  }

  header .section-nav ul.nav-links li:last-child,
  .section-nav ul.nav-links li:last-child {
    border-bottom: none !important;
  }

  header .section-nav ul.nav-links li a,
  .section-nav ul.nav-links li a {
    display: block !important;
    width: 100% !important;
    padding: 16px 0 !important;
    color: #ffffff !important;
    font-size: 0.8rem !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    letter-spacing: 3px !important;
    white-space: nowrap !important;
  }

  header .section-nav ul.nav-links li a:hover,
  .section-nav ul.nav-links li a:hover {
    color: var(--gold-text, #d4a373) !important;
  }

  /* Mobile hero */

  .events-hero {
    min-height: 70vh;
    padding: 128px 18px 55px;
    box-sizing: border-box;
  }

  .events-hero p {
    font-size: 1.06rem;
    line-height: 1.6;
  }

  /* Mobile Milan event */

  .current-event-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 42px 34px;
  }

  .current-event-copy {
    text-align: center;
  }

  .current-event-copy p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .current-event-btn {
    margin-right: auto;
    margin-left: auto;
  }

  /* Mobile sections */

  .event-manifesto,
  .format-section,
  .standard-section,
  .dual-section,
  .note-section {
    padding: 35px 16px 15px;
  }

  .manifesto-shell,
  .standard-card,
  .note-card,
  .contact-centered {
    padding: 35px 22px;
  }

  .manifesto-shell,
  .format-stage,
  .dual-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .manifesto-left {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 163, 115, 0.22);
    text-align: center;
  }

  .manifesto-right p,
  .note-card p,
  .dual-panel p,
  .contact-intro {
    font-size: 1.04rem;
    line-height: 1.65;
    text-align: center;
  }

  .format-stage {
    margin-top: 32px;
  }

  .format-card,
  .large-card {
    min-height: auto;
    padding: 38px 26px 32px;
    text-align: center;
  }

  .format-tag {
    top: 18px;
    right: 22px;
    font-size: 2.8rem;
  }

  .format-card i {
    font-size: 1.45rem;
  }

  .standard-line {
    grid-template-columns: 1fr;
  }

  .standard-point {
    border-right: none;
    border-bottom: 1px solid rgba(212, 163, 115, 0.18);
  }

  .standard-point:last-child {
    border-bottom: none;
  }

  .dual-panel {
    padding: 36px 26px;
    text-align: center;
  }

  .dual-panel li {
    text-align: left;
  }

  .contact {
    padding: 40px 15px 60px;
  }

  .contact form input,
  .contact form textarea {
    font-size: 1rem;
  }

  .premium-btn {
    width: 220px;
    font-size: 0.92rem;
    letter-spacing: 3px;
  }
}

/* =========================================
   18. SMALL MOBILE PHONES
   ========================================= */

@media (max-width: 600px) {
  .current-event-section {
    padding: 10px 14px 24px;
  }

  .current-event-card {
    gap: 30px;
    width: 100%;
    padding: 32px 20px;
  }

  .current-event-copy h2 {
    font-size: 2rem;
  }

  .current-event-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .current-event-btn {
    width: 100%;
    max-width: 310px;
  }

  .current-event-facts {
    grid-template-columns: 1fr;
  }

  .event-fact {
    min-height: 112px;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 2.45rem;
  }

  header .section-nav ul.nav-links li a,
  .section-nav ul.nav-links li a {
    font-size: 0.74rem !important;
    letter-spacing: 2.4px !important;
  }
}

/* =========================================
   19. ACCESSIBILITY
   ========================================= */

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .urgent-fact::before,
  .glow-orb,
  .shimmer-btn::after {
    animation: none !important;
  }
}