/* ==========================================================================
   MWIA NEAR 2027 — Event Landing Page
   Aesthetic: Zanzibar editorial — ocean depths, spice warmth, carved stone
   ========================================================================== */

:root {
  /* Palette */
  --ocean-deep:    #0a3340;
  --ocean-mid:     #145568;
  --ocean-light:   #1e7a8c;
  --spice-gold:    #c4823a;
  --spice-amber:   #e8a54b;
  --coral:         #d4654a;
  --palm:          #2d6a4f;
  --sand:          #f5f0e8;
  --sand-warm:     #ebe3d4;
  --ivory:         #faf8f4;
  --stone:         #2a2420;
  --stone-muted:   #5c534c;
  --white:         #ffffff;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Karla', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 72rem;
  --header-h:  4.5rem;
  --radius:    0.5rem;
  --radius-lg: 1rem;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--stone);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Typography helpers */
.lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--stone-muted);
}

.section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spice-gold);
  margin-bottom: var(--space-sm);
}

.section__eyebrow--light { color: var(--spice-amber); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ocean-deep);
  letter-spacing: -0.02em;
}

.section__title--light { color: var(--ivory); }

.section__header {
  margin-bottom: var(--space-xl);
  max-width: 40rem;
}

.section {
  padding-block: var(--space-2xl);
}

.section--alt { background: var(--sand); }

.section--dark {
  background: var(--ocean-deep);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(196, 130, 58, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 5% 90%, rgba(30, 122, 140, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.section--dark .section__header { position: relative; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn--primary {
  background: var(--spice-gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 130, 58, 0.35);
}

.btn--primary:hover {
  background: var(--spice-amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 130, 58, 0.45);
}

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--full { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(10, 51, 64, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.1;
}

.nav__logo-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 130, 58, 0.45);
  flex-shrink: 0;
}

.nav__logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.nav__logo-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--spice-amber);
  letter-spacing: 0.05em;
}

.nav__logo-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--spice-amber);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:not(.nav__cta):hover { color: var(--white); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  padding: 0.55rem 1.25rem;
  background: var(--spice-gold);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

.nav__cta:hover { background: var(--spice-amber); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ocean-deep);
  color: var(--white);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4823a' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 51, 64, 0.92) 0%, rgba(10, 51, 64, 0.78) 45%, rgba(10, 51, 64, 0.55) 100%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(196, 130, 58, 0.15) 0%, transparent 50%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl) var(--space-2xl);
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(196, 130, 58, 0.5);
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spice-amber);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--spice-amber);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 32rem;
  margin-bottom: var(--space-lg);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero__meta-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--spice-amber);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4rem;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.countdown__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--spice-amber);
}

.countdown__label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.25);
  padding-bottom: 1rem;
}

.hero__host {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  max-width: 28rem;
}

.hero__host strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.hero__host-anniv {
  color: var(--spice-amber);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, rgba(196, 130, 58, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  background: var(--spice-gold);
  padding-block: var(--space-lg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.4rem;
}

/* ==========================================================================
   Background section
   ========================================================================== */
.background__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.background__content p {
  margin-bottom: var(--space-md);
  color: var(--stone-muted);
}

.background__content .lead {
  color: var(--stone);
  margin-bottom: var(--space-md);
}

.background__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 51, 64, 0.12);
}

.background__figure img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  display: block;
}

.background__figure figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--stone-muted);
  background: var(--white);
  border-top: 3px solid var(--spice-gold);
}

/* ==========================================================================
   About cards
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--sand-warm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  overflow: hidden;
}

.about-card__photo {
  height: 10rem;
  overflow: hidden;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.about-card__photo--featured img {
  object-position: center 40%;
}

.about-card:hover .about-card__photo img {
  transform: scale(1.05);
}

.about-card__photo--logo img {
  object-fit: contain;
  padding: 1.25rem;
  background: var(--ivory);
}

.about-card h3,
.about-card p,
.about-card__tag {
  padding-inline: var(--space-lg);
}

.about-card h3 {
  padding-top: var(--space-md);
}

.about-card p:last-child {
  padding-bottom: var(--space-lg);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 51, 64, 0.08);
}

.about-card--featured {
  background: var(--ocean-deep);
  color: var(--sand);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.about-card--featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(196, 130, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-card--featured p { color: rgba(245, 240, 232, 0.75); }
.about-card--featured h3 { color: var(--ivory); }

.about-card__icon {
  width: 3rem;
  height: 3rem;
  color: var(--spice-gold);
  margin-bottom: var(--space-md);
}

.about-card--featured .about-card__icon { color: var(--spice-amber); }

.about-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spice-amber);
  margin-bottom: var(--space-xs);
}

.about-card--featured .about-card__tag {
  padding-top: var(--space-md);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--ocean-deep);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--stone-muted);
  margin-bottom: var(--space-sm);
}

.about-card p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Goal
   ========================================================================== */
.goal {
  position: relative;
  background: var(--ocean-mid);
  color: var(--ivory);
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.goal__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M0 40h80M40 0v80M0 0l80 80M80 0L0 80'/%3E%3C/g%3E%3C/svg%3E");
}

.goal__inner {
  position: relative;
  max-width: 52rem;
  text-align: center;
}

.goal__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--ivory);
  margin-block: var(--space-md) var(--space-lg);
  quotes: none;
}

.goal__detail {
  font-size: 1rem;
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.8;
}

/* ==========================================================================
   Objectives
   ========================================================================== */
.objectives__list {
  display: grid;
  gap: var(--space-md);
  max-width: 52rem;
}

.objective {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--spice-gold);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.objective:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(10, 51, 64, 0.06);
}

.objective__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--spice-gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
}

.objective p {
  font-size: 1rem;
  color: var(--stone-muted);
}

/* ==========================================================================
   Themes
   ========================================================================== */
.theme-banner {
  background: var(--ocean-deep);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.theme-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196, 130, 58, 0.15) 0%, transparent 70%);
}

.theme-banner__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spice-amber);
  margin-bottom: var(--space-sm);
  position: relative;
}

.theme-banner__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 300;
  position: relative;
}

.theme-banner__note {
  display: block;
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.5);
  margin-top: var(--space-sm);
  position: relative;
}

.themes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.theme-chip {
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--sand-warm);
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ocean-deep);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  cursor: default;
}

.theme-chip:hover {
  background: var(--ocean-deep);
  border-color: var(--ocean-deep);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ==========================================================================
   Participants
   ========================================================================== */
.participants__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
}

.participant {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.9);
  transition: background 0.3s, border-color 0.3s;
}

.participant:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 130, 58, 0.4);
}

.participant svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--spice-amber);
  flex-shrink: 0;
}

/* ==========================================================================
   Program gallery
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(10, 51, 64, 0.1);
}

.gallery__item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10, 51, 64, 0.85));
}

.gallery__item--wide img {
  height: 16rem;
}

/* ==========================================================================
   Program
   ========================================================================== */
.program__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.program-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--sand-warm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.program-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 51, 64, 0.1);
}

.program-item__icon {
  font-size: 1.5rem;
  color: var(--spice-gold);
  margin-bottom: var(--space-sm);
}

.program-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ocean-deep);
  margin-bottom: 0.5rem;
}

.program-item p {
  font-size: 0.9rem;
  color: var(--stone-muted);
}

/* ==========================================================================
   Venue
   ========================================================================== */
.venue__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.venue__list {
  margin-top: var(--space-lg);
  display: grid;
  gap: var(--space-md);
}

.venue__list li {
  padding-left: 1.25rem;
  border-left: 2px solid var(--spice-gold);
}

.venue__list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ocean-deep);
  margin-bottom: 0.15rem;
}

.venue__list li {
  font-size: 0.9rem;
  color: var(--stone-muted);
}

.venue__visual {
  position: relative;
  display: grid;
  gap: var(--space-md);
}

.venue__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(10, 51, 64, 0.15);
}

.venue__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.venue__photo--main img {
  height: 18rem;
}

.venue__photo--secondary img {
  height: 11rem;
}

.venue__badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(10, 51, 64, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 130, 58, 0.4);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.venue__badge-code {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--spice-amber);
  line-height: 1;
}

.venue__badge-dates {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.venue__badge-place {
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Outcomes
   ========================================================================== */
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.outcome {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-warm);
  transition: transform 0.3s var(--ease-out);
}

.outcome:hover { transform: translateY(-4px); }

.outcome__icon {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--spice-gold);
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.outcome p {
  font-size: 0.88rem;
  color: var(--stone-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Partners
   ========================================================================== */
.partners__intro {
  max-width: 48rem;
  margin-bottom: var(--space-xl);
}

.partners__intro p {
  margin-bottom: var(--space-md);
  color: var(--stone-muted);
}

.sponsor-tiers {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.tier {
  flex: 1;
  min-width: 7rem;
  padding: var(--space-md);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s var(--ease-out);
}

.tier:hover { transform: scale(1.05); }

.tier__name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tier--platinum { background: linear-gradient(135deg, #2a3a4a, #4a6080); color: #e8ecf0; }
.tier--gold     { background: linear-gradient(135deg, #8b6914, #c4823a); color: #fff8e8; }
.tier--silver   { background: linear-gradient(135deg, #8a9098, #c0c8d0); color: #2a3040; }
.tier--bronze   { background: linear-gradient(135deg, #7a4a28, #a0623a); color: #f5e8d8; }
.tier--inkind   { background: var(--ocean-deep); color: var(--sand); border: 1px dashed rgba(196, 130, 58, 0.4); }

.partners__note {
  font-size: 0.9rem;
  color: var(--stone-muted);
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.partners__sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-xl);
}

.partners__sectors span {
  padding: 0.4rem 1rem;
  background: var(--sand);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ocean-deep);
  letter-spacing: 0.04em;
}

.partners__implementers h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ocean-deep);
  margin-bottom: var(--space-sm);
}

.partners__implementers li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--stone-muted);
  border-bottom: 1px solid var(--sand-warm);
}

.partners__implementers li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--spice-gold);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  position: relative;
  background: var(--ocean-deep);
  color: var(--ivory);
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.contact__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='%23c4823a' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__info p {
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 28rem;
}

.contact__person {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--spice-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact__person strong {
  display: block;
  font-size: 1rem;
  color: var(--ivory);
}

.contact__person span {
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.55);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--spice-amber);
  transition: color 0.2s;
}

.contact__link:hover { color: var(--ivory); }

.contact__link svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.contact__form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.6);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--ivory);
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 248, 244, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--spice-gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select option {
  background: var(--ocean-deep);
  color: var(--ivory);
}

.form-group textarea { resize: vertical; min-height: 5rem; }

.form__note {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.25rem;
}

.form__note.success { color: #7dcea0; }
.form__note.error   { color: #e8a0a0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--stone);
  color: rgba(245, 240, 232, 0.6);
  padding-block: var(--space-xl);
}

.footer__inner {
  display: grid;
  gap: var(--space-lg);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--spice-amber);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--spice-amber); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.footer__dates {
  color: var(--spice-amber);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer__credits {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.35);
  padding-top: var(--space-sm);
}

.footer__credits a {
  color: rgba(196, 130, 58, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__credits a:hover {
  color: var(--spice-amber);
}

/* ==========================================================================
   Scroll reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.themes__grid .theme-chip.reveal:nth-child(1)  { transition-delay: 0.00s; }
.themes__grid .theme-chip.reveal:nth-child(2)  { transition-delay: 0.04s; }
.themes__grid .theme-chip.reveal:nth-child(3)  { transition-delay: 0.08s; }
.themes__grid .theme-chip.reveal:nth-child(4)  { transition-delay: 0.12s; }
.themes__grid .theme-chip.reveal:nth-child(5)  { transition-delay: 0.16s; }
.themes__grid .theme-chip.reveal:nth-child(6)  { transition-delay: 0.20s; }
.themes__grid .theme-chip.reveal:nth-child(7)  { transition-delay: 0.24s; }
.themes__grid .theme-chip.reveal:nth-child(8)  { transition-delay: 0.28s; }
.themes__grid .theme-chip.reveal:nth-child(9)  { transition-delay: 0.32s; }
.themes__grid .theme-chip.reveal:nth-child(10) { transition-delay: 0.36s; }
.themes__grid .theme-chip.reveal:nth-child(11) { transition-delay: 0.40s; }

.objectives__list .objective.reveal:nth-child(1) { transition-delay: 0.00s; }
.objectives__list .objective.reveal:nth-child(2) { transition-delay: 0.08s; }
.objectives__list .objective.reveal:nth-child(3) { transition-delay: 0.16s; }
.objectives__list .objective.reveal:nth-child(4) { transition-delay: 0.24s; }
.objectives__list .objective.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about__grid,
  .program__grid { grid-template-columns: 1fr 1fr; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }

  .background__layout { grid-template-columns: 1fr; }
  .background__figure img { height: 18rem; }

  .outcomes__grid { grid-template-columns: repeat(3, 1fr); }
  .outcomes__grid .outcome:last-child { grid-column: span 3; max-width: 20rem; margin-inline: auto; width: 100%; }

  .venue__layout,
  .contact__inner { grid-template-columns: 1fr; }

  .venue__visual { order: -1; max-width: 22rem; margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 51, 64, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    padding: 2rem;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__links a { font-size: 1.1rem; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .about__grid,
  .program__grid,
  .participants__grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: auto; }
  .gallery__item img { height: 14rem; }

  .outcomes__grid {
    grid-template-columns: 1fr;
  }

  .outcomes__grid .outcome:last-child { grid-column: auto; max-width: none; }

  .hero__countdown { flex-wrap: wrap; }

  .countdown__item { min-width: 3.5rem; }
  .countdown__num { font-size: 1.5rem; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .sponsor-tiers { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
