*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --brand: #e84f14;
  --brand-dark: #c9420f;
  --brand-light: #ff7a4a;
  --brand-pale: #fde8e0;
  --white: #ffffff;
  --off-white: #f8f6f3;
  --light-grey: #f0ede9;
  --mid-grey: #d8d3cc;
  --text: #3b3835;
  --text-mid: #5a5550;
  --text-light: #9a928a;
  --dark-bg: #0f0d0b;
  --dark-surface: #171410;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 96px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(241, 89, 34, 0.1);
  transition: all 0.4s ease;
}
nav.dark-mode {
  background: rgba(15, 13, 11, 0.95);
  border-bottom-color: rgba(241, 89, 34, 0.18);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-logo {
  width: 64px;
  height: 64px;
}
.nav-logo-name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}
nav.dark-mode .nav-logo-name {
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--brand);
}
nav.dark-mode .nav-links a {
  color: rgba(255, 255, 255, 0.4);
}
nav.dark-mode .nav-links a:hover {
  color: var(--brand-light);
}
.nav-btn {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.3rem;
  background: var(--brand);
  color: #fff;
  transition: background 0.2s;
}
.nav-btn:hover {
  background: var(--brand-dark);
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 620px;
  display: grid;
  grid-template-columns: 500px 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 66px;
}
.hero-panel {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem 4rem 5rem;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-right: 1px solid rgba(241, 89, 34, 0.12);
}
/* .hero-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -56px;
  bottom: 0;
  width: 56px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.72), transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
} */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
}
.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.hero-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hero-title span {
  color: var(--brand);
}
.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 1.6rem;
  line-height: 1.45;
}
.hero-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-mid);
  max-width: 36ch;
  margin-bottom: 2.2rem;
}
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-pale);
  padding: 0.38rem 0.85rem;
}
.hero-badge b {
  font-size: 1.05rem;
  font-weight: 900;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  align-self: flex-start;
  text-decoration: none;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 0.85rem 1.8rem;
  transition: all 0.22s;
}
.hero-cta:hover {
  background: var(--brand-dark);
  transform: translateX(3px);
}

/* SLIDER */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide.active {
  opacity: 1;
}
.slide-1 {
  background: linear-gradient(
    125deg,
    #1a0e08 0%,
    #4a2210 40%,
    #7a3818 70%,
    #2a1006 100%
  );
}
.slide-2 {
  background: linear-gradient(140deg, #07101e 0%, #122340 50%, #1c3558 100%);
}
.slide-3 {
  background: linear-gradient(
    155deg,
    #100808 0%,
    #2e0f0f 40%,
    #5a1818 70%,
    #1a0808 100%
  );
}
.slide-4 {
  background: linear-gradient(
    115deg,
    #0f0a1a 0%,
    #281248 40%,
    #3a1e60 65%,
    #180a2c 100%
  );
}
/* .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 38px,
    rgba(255, 255, 255, 0.6) 38px,
    rgba(255, 255, 255, 0.6) 39px
  );
} */
.slide-caption {
  background-color: #00000079;
  padding: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 5;
  text-align: right;

}
.slide-caption-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.slide-caption-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-top: 0.35rem;
}
.slider-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 520px;
  z-index: 20;
  display: flex;
  gap: 0.45rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: var(--brand);
  width: 22px;
}

/* SHARED */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.section-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15em;
  text-transform: none;
  letter-spacing: 0;
}

/* AWARDS */
.section-awards {
  background: var(--white);
  padding: 7rem 5rem;
}
.awards-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.awards-intro {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-mid);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mid-grey);
}
.award-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.28s;
}
.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s;
}
.award-card:hover::before {
  transform: scaleX(1);
}
.award-card:hover {
  background: var(--off-white);
}
.award-year {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.7rem;
}
.award-name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.28rem;
  line-height: 1.3;
}
.award-place {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.award-desc {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
}
.award-icon {
  position: absolute;
  bottom: 1rem;
  right: 1.4rem;
  font-size: 1.7rem;
  opacity: 0.13;
  transition: opacity 0.28s;
}
.award-card:hover .award-icon {
  opacity: 0.32;
}

/* EVENTS */
.section-events {
  background: var(--off-white);
  padding: 7rem 5rem;
  border-top: 1px solid var(--mid-grey);
}
.events-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  margin-top: 3rem;
}
.event-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--mid-grey);
  cursor: default;
  transition: padding-left 0.22s;
}
.event-item:first-child {
  border-top: 1px solid var(--mid-grey);
}
.event-item:hover {
  padding-left: 0.5rem;
}
.event-date-col {
  text-align: center;
  background: var(--brand);
  padding: 0.55rem 0;
}
.event-date-day {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
}
.event-date-mon {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.1rem;
}
.event-title-t {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.22rem;
}
.event-meta {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--text-light);
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.event-meta span + span::before {
  content: "· ";
  color: var(--brand);
}
.event-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  white-space: nowrap;
  align-self: center;
}

/* CALENDAR */
.cal-widget {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  padding: 1.4rem;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.cal-month-label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}
.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  color: var(--text-mid);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.cal-nav:hover {
  color: var(--brand);
}
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.4rem;
}
.cal-day-name {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.25rem 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: var(--text-mid);
  cursor: default;
  position: relative;
  transition: all 0.18s;
}
.cal-cell.empty {
  color: transparent;
  pointer-events: none;
}
.cal-cell.today {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}
.cal-cell.has-event {
  font-weight: 700;
  color: var(--brand);
  cursor: pointer;
}
.cal-cell.has-event::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
}
.cal-cell.has-event:hover {
  background: var(--brand-pale);
}
.cal-legend {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cal-legend::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}

/* NEWS */
.section-news {
  background: var(--white);
  padding: 7rem 5rem;
  border-top: 1px solid var(--mid-grey);
}
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.news-all {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.news-all:hover {
  gap: 0.8rem;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 2px;
  background: var(--mid-grey);
}
.news-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: background 0.22s;
}
.news-card:hover {
  background: var(--off-white);
}
.news-img {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.news-card:first-child .news-img {
  height: 250px;
}
.news-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img-bg {
  transform: scale(1.05);
}
.news-img-bg.p1 {
  background: linear-gradient(
    135deg,
    #180e08 0%,
    #422012 40%,
    #7a3820 70%,
    #281206 100%
  );
}
.news-img-bg.p2 {
  background: linear-gradient(155deg, #070e1c 0%, #122036 50%, #1c3050 100%);
}
.news-img-bg.p3 {
  background: linear-gradient(120deg, #100812 0%, #28102e 50%, #3c1e48 100%);
}
.news-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  background: var(--brand);
  color: #fff;
}
.news-body {
  padding: 1.7rem 1.7rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.news-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.28;
  margin-bottom: 0.7rem;
}
.news-card:first-child .news-title {
  font-size: 1.28rem;
}
.news-excerpt {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.1rem;
}
.news-read {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: gap 0.2s;
  align-self: flex-start;
}
.news-read:hover {
  gap: 0.75rem;
}

/* MANIFESTO */
.section-manifesto {
  background: var(--text);
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.manifesto-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.48;
  padding-left: 1.8rem;
  border-left: 3px solid var(--brand);
}
.manifesto-quote strong {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-light);
}
.manifesto-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.92;
}
.manifesto-body p {
  margin-bottom: 1.1rem;
}

/* MEMBERS */
.section-members {
  background: var(--off-white);
  padding: 7rem 5rem;
  border-top: 1px solid var(--mid-grey);
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--mid-grey);
  margin-top: 3rem;
}
.member-card {
  background: var(--white);
  padding: 2rem 1.4rem 1.8rem;
  text-align: center;
  cursor: default;
  transition: background 0.22s;
}
.member-card:hover {
  background: var(--off-white);
}
.member-avatar {
  width: 68px;
  height: 68px;
  background: var(--brand-pale);
  border-radius: 50%;
  margin: 0 auto 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: background 0.28s;
}
.member-card:hover .member-avatar {
  background: var(--brand);
}
.member-name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.member-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}
.member-desc {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
}

/* WORLD DIVIDER */
.world-divider {
  height: 72px;
  background: var(--text);
  position: relative;
  overflow: hidden;
}
.world-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--dark-bg);
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}

/* DARK WORLD */
.dark-world {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.dark-world::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 15% 40%,
      rgba(241, 89, 34, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(241, 89, 34, 0.04) 0%,
      transparent 45%
    );
}
.dark-hero {
  padding: 6rem 5rem 4rem;
  position: relative;
  z-index: 2;
}
.dark-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.dark-eyebrow::before {
  content: "///";
  color: var(--brand-dark);
}
.dark-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.dark-title-solid {
  color: #fff;
  display: block;
}
.dark-title-outline {
  display: block;
  -webkit-text-stroke: 2px var(--brand);
  color: transparent;
}
.dark-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
}
.genres-section {
  padding: 0 5rem 5rem;
  position: relative;
  z-index: 2;
}
.genres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(241, 89, 34, 0.1);
}
.genre-card {
  background: var(--dark-bg);
  padding: 2.4rem 1.8rem;
  transition: background 0.32s;
  cursor: default;
}
.genre-card:hover {
  background: #170e09;
}
.genre-icon {
  font-size: 2.3rem;
  margin-bottom: 0.9rem;
  display: block;
}
.genre-name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.28rem;
  text-transform: uppercase;
}
.genre-tag {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.genre-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.72;
}
.dark-stats {
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(241, 89, 34, 0.12);
  border-bottom: 1px solid rgba(241, 89, 34, 0.12);
  position: relative;
  z-index: 2;
}
.dark-stat {
  text-align: center;
}
.dark-stat-num {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 0.38rem;
}
.dark-stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.6;
}
.dark-events {
  padding: 5rem;
  position: relative;
  z-index: 2;
}
.dark-section-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 0.02em;
}
.dark-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(241, 89, 34, 0.4), transparent);
}
.dark-events-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.d-event-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 1.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.24s;
}
.d-event-row:hover {
  background: rgba(241, 89, 34, 0.05);
  border-color: rgba(241, 89, 34, 0.2);
}
.d-event-date {
  text-align: center;
  border-right: 1px solid rgba(241, 89, 34, 0.18);
  padding-right: 2rem;
}
.d-event-day {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
}
.d-event-mon {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}
.d-event-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.d-event-loc {
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
}
.d-event-badge {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  white-space: nowrap;
}
.dark-cta {
  padding: 5rem;
  text-align: center;
  border-top: 1px solid rgba(241, 89, 34, 0.1);
  position: relative;
  z-index: 2;
}
.dark-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.55rem;
}
.dark-cta-sub {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 2.4rem;
}
.dark-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 1rem 2.4rem;
  transition: all 0.24s;
}
.dark-cta-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 89, 34, 0.35);
}
footer {
  background: #060504;
  padding: 3.2rem 5rem 2.4rem;
  border-top: 1px solid rgba(241, 89, 34, 0.07);
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.45rem;
}
.footer-brand-sq {
  width: 30px;
  height: 30px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand-sq svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.footer-brand-name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.84rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.18);
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.14);
  text-align: right;
  line-height: 1.75;
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fd1 {
  transition-delay: 0.1s;
}
.fd2 {
  transition-delay: 0.2s;
}
.fd3 {
  transition-delay: 0.3s;
}
.fd4 {
  transition-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-title {
  animation: fadeUp 0.7s ease 0.35s both;
}
.hero-subtitle {
  animation: fadeUp 0.7s ease 0.45s both;
}
.hero-desc {
  animation: fadeUp 0.7s ease 0.55s both;
}
.hero-badges {
  animation: fadeUp 0.7s ease 0.65s both;
}
.hero-cta {
  animation: fadeUp 0.7s ease 0.75s both;
}
