/* ===== Art of Aesthetics Summit 2026 — Brand System ===== */

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBold.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-ExtraBoldItalic.otf') format('opentype');
  font-weight: 800; font-style: italic; font-display: swap;
}

:root {
  /* Official brand palette (from Art of Aesthetics Summit brand kit) */
  --navy: #072642;
  --indigo: #3a3a6f;
  --magenta: #a35378;
  --mauve: #a06492;
  --teal: #2f8ea3;
  --deep-teal: #085d64;

  --light: #eef0f6;
  --white: #ffffff;
  --text: #1c2430;
  --muted: #626c7a;
  --border: #e0e2ec;

  --brand-gradient: linear-gradient(120deg, var(--magenta) 0%, var(--indigo) 100%);
  --dark-gradient: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 100%);

  --shadow: 0 14px 34px rgba(7, 38, 66, 0.12);
  --radius: 16px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.3rem; font-style: normal; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text); }

a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--magenta); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.eyebrow--light {
  background: none;
  -webkit-text-fill-color: initial;
  color: rgba(255,255,255,0.85);
}

.section { padding: 76px 0; }
.section--alt { background: var(--light); }

.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head p { color: var(--muted); }
.section-head__text {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn--primary {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(163, 83, 120, 0.35);
}
.btn--primary:hover { filter: brightness(1.08); color: var(--white); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.14); color: var(--white); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: var(--indigo); color: var(--white); }

.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== Header / Nav ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(7, 38, 66, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  transition: padding 0.3s ease;
}
.site-header.is-scrolled .nav { padding: 9px 0; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 40px; width: auto; transition: height 0.3s ease; }
.site-header.is-scrolled .brand img { height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}
.nav-links a.active, .nav-links a:hover { color: var(--magenta); }

.nav-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
  background: var(--light);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.nav-toggle:hover { background: #e3e6f1; }
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.25s ease, background 0.25s ease;
}
.nav-toggle.open { background: var(--navy); }
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop { display: none; }

/* Single breakpoint drives the whole mobile nav — chosen wide enough that the
   full link set + CTA never gets squeezed on mid-size laptop windows. */
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav-cta .btn--dark { display: none; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-top: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(7, 38, 66, 0.18);
    padding: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.25s ease, transform 0.3s ease;
  }
  .nav-links.open {
    max-height: 640px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    border-top: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav-links.open li { opacity: 1; transform: translateY(0); }
  .nav-links.open li:nth-child(1) { transition-delay: 0.03s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.06s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.09s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.12s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.18s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.21s; }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    border-radius: 10px;
  }
  .nav-links a:hover, .nav-links a.active { background: var(--light); color: var(--magenta); }

  .nav-cta-mobile {
    display: block;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }
  .nav-cta-mobile a.btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
  }
  .nav-cta-mobile a.btn:hover { color: var(--white); }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(7, 38, 66, 0.35);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
}

body.nav-open { overflow: hidden; }

@media (max-width: 640px) {
  .nav { padding: 10px 0; }
  .brand img { height: 32px; }
  .site-header.is-scrolled .brand img { height: 30px; }
}

@media (max-width: 640px) {
  .hero { padding: 90px 0 70px; min-height: 0; }
}


/* ===== Hero (home — photographic) ===== */

.hero {
  position: relative;
  color: var(--white);
  padding: 130px 0 110px;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy) url('../images/hero-background.jpg') center 20% / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,38,66,0.85) 0%, rgba(7,38,66,0.78) 55%, rgba(58,58,111,0.72) 100%);
}

.hero .container { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }

.hero-organizers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.org-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.org-chip:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.org-chip img { height: 68px; width: 68px; border-radius: 50%; background: #fff; object-fit: contain; padding: 3px; }
.org-chip span b { display: block; color: var(--white); font-weight: 700; }

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
}

.hero p.lead {
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 36px;
}
.hero-meta div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-meta div:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.hero-meta .icon { color: var(--gold, #e4d3a3); opacity: 0.9; }
.hero-meta strong { display: block; color: var(--white); font-size: 0.95rem; }
.hero-meta span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }

/* ===== Icon utility ===== */

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 18px; height: 18px; }

a:has(> svg.icon) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-circle {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.icon-circle .icon { width: 22px; height: 22px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== Page hero (inner pages — gradient only) ===== */

.page-hero {
  background: var(--dark-gradient);
  color: var(--white);
  padding: 74px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; }

/* ===== Visual showcase ===== */

.about-media {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  margin-top: 32px;
  align-items: stretch;
}

.about-media__stack {
  display: grid;
  gap: 18px;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-card__content {
  padding: 22px 24px 24px;
}

.photo-card__tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--light);
  color: var(--magenta);
  margin-bottom: 10px;
}

.photo-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.photo-card p {
  margin: 0;
  color: var(--muted);
}

.photo-card--small {
  min-height: 220px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 38, 66, 0.16);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 14px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(to top, rgba(7, 38, 66, 0.72), rgba(7, 38, 66, 0));
}

.gallery-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card--wide {
  grid-column: 1 / -1;
}

.gallery-card__cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(to right, rgba(7, 38, 66, 0.55), rgba(7, 38, 66, 0.55));
  transition: background 0.3s ease;
}

.gallery-card--wide:hover .gallery-card__cta {
  background: linear-gradient(to right, rgba(7, 38, 66, 0.72), rgba(7, 38, 66, 0.72));
}

.gallery-card--wide:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .about-media {
    grid-template-columns: 1fr;
  }
  .about-media__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-card--feature {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .about-media__stack {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card--feature {
    grid-column: 1;
    grid-row: span 1;
  }
  .gallery-grid {
    grid-auto-rows: 220px;
  }
}

/* ===== Stats strip ===== */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }

.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 38, 66, 0.16);
}
.stat .num {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 800;
  font-style: italic;
  transition: transform 0.3s ease;
}
.stat:hover .num { transform: scale(1.08) rotate(-4deg); }
.stat strong { display: block; color: var(--navy); font-size: 1rem; font-weight: 700; }
.stat span { color: var(--muted); font-size: 0.85rem; }

/* ===== Cards / Grids ===== */

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 38, 66, 0.16);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; }

.icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--light);
  color: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ===== Session list ===== */

.session-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-left: 3px solid var(--magenta);
  padding: 10px 0 10px 22px;
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}
.session-item:hover { transform: translateX(6px); }
.session-item h3 { margin-bottom: 6px; font-size: 1.15rem; }
.session-item p { color: var(--muted); margin: 0; }

.track-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-gradient);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ===== Committee ===== */

.leader-card { text-align: center; padding: 40px 20px; }
.leader-photo {
  width: 150px; height: 150px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 4px solid var(--light);
  box-shadow: 0 0 0 3px var(--magenta);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800; font-style: italic;
  font-size: 1.8rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.leader-card:hover .leader-photo { transform: translateY(-4px); box-shadow: 0 0 0 5px var(--magenta); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.4s ease; }
.leader-card:hover .leader-photo img { transform: scale(1.08); }
.leader-card h3 { margin-bottom: 4px; font-style: normal; }
.leader-card span {
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.coming-soon-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 60px 30px;
  text-align: center;
  color: var(--muted);
  background: var(--light);
}
.coming-soon-box strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.coming-soon-box .icon-circle { margin: 0 auto 18px; }

/* ===== Sponsorship ===== */

.sponsor-benefit {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.sponsor-benefit:last-child { border-bottom: none; }
.sponsor-benefit .num {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-style: italic;
}
.sponsor-benefit h3 { margin-bottom: 4px; font-size: 1.05rem; }
.sponsor-benefit p { margin: 0; color: var(--muted); }

.contact-strip {
  background: var(--dark-gradient);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-between; align-items: center;
  margin-top: 40px;
}
.contact-strip a { color: var(--white); font-weight: 700; }
.contact-strip a:hover { color: rgba(255,255,255,0.8); }

/* ===== Forms ===== */

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--text); background: var(--light);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--magenta); background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }

.form-status { margin-top: 16px; font-weight: 700; display: none; }
.form-status.success { display: block; color: #1a7f4a; }
.form-status.error { display: block; color: #b3312c; }

/* ===== Registration ===== */

.registration-box {
  text-align: center;
  padding: 60px 30px;
  border-radius: var(--radius);
  background: var(--dark-gradient);
  color: var(--white);
}
.registration-box p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }

/* ===== Footer ===== */

.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 50px 0 26px; }

.footer-org {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 30px; margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-org img { height: 44px; width: 44px; border-radius: 50%; background: #fff; flex-shrink: 0; }
.footer-org p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.7); max-width: 560px; }
.footer-org strong { color: var(--white); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif; font-style: normal;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-brand-mark { height: 58px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,0.75); display: inline-flex; align-items: center; gap: 10px; transition: color 0.2s ease, transform 0.2s ease; }
.site-footer a:hover { color: var(--white); transform: translateX(3px); }
.site-footer a .icon { color: var(--magenta); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
.footer-bottom strong { color: rgba(255,255,255,0.75); }
.footer-organizer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.footer-organizer span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.footer-glitter-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.25s ease;
}
.footer-glitter-logo:hover { opacity: 1; }

/* ===== Scroll-reveal & entrance animations ===== */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in-view { opacity: 1; transform: none; }

  /* Higher specificity so hover transitions on these components aren't
     clobbered by the plain .reveal transition rule above. */
  .card.reveal, .stat.reveal, .session-item.reveal {
    transition: opacity 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
  }
  .hero-organizers, .hero h1, .hero .lead, .hero-meta, .hero-actions {
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards;
  }
  .hero-organizers { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.15s; }
  .hero .lead { animation-delay: 0.25s; }
  .hero-meta { animation-delay: 0.35s; }
  .hero-actions { animation-delay: 0.45s; }
}
