:root {
  /* Logo palette */
  --brand-black: #000000;
  --brand-green: #66bf3f;
  --brand-green-deep: #529832;
  --brand-green-bright: #7ed053;

  /* Semantic tokens — green is accent only, not body/surface color */
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --accent: var(--brand-green);
  --accent-deep: var(--brand-green-deep);
  --accent-bright: var(--brand-green-bright);
  --accent-rgb: 102, 191, 63;
  --ink-rgb: 17, 17, 17;
  --surface: #ffffff;
  --mist: #f7f9f5;
  --mist-deep: #eef3ea;
  --text: #1a1a1a;
  --muted: #666666;
  --footer: var(--brand-black);
  --on-dark: #ffffff;
  --on-accent: #ffffff;
  --radius: 16px;
  --btn-radius: 0;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-copy {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 36rem;
}

.eyebrow {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* ---------- Logo / Buttons ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--on-dark) !important;
  letter-spacing: -0.02em;
}

.logo em {
  font-style: normal;
  font-weight: 500;
  opacity: 0.92;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-right: 1rem;
  text-decoration: none;
}

.brand-logo__img {
  height: 62px;
  width: auto;
  display: block;
}

.brand-logo__img--footer {
  height: 92px;
}

.site-nav.scrolled .brand-logo__img {
  height: 54px;
}

.footer-logo.brand-logo {
  margin-bottom: 0.5rem;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.site-nav .navbar-brand.logo {
  padding: 0;
  margin-right: 1rem;
}

.site-nav.scrolled .logo-img {
  height: 60px;
}

.btn-cta {
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: var(--btn-radius);
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background: var(--accent-deep);
  color: var(--on-accent);
  transform: translateY(-1px);
}

.btn-dark-pill {
  background: var(--accent-deep);
  color: var(--on-dark);
  border: none;
  border-radius: var(--btn-radius);
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-dark-pill:hover {
  background: var(--ink-soft);
  color: var(--on-dark);
  transform: translateY(-1px);
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(var(--ink-rgb), 0.2);
  background: var(--surface);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-arrow:hover {
  background: var(--accent-deep);
  color: var(--on-dark);
  border-color: var(--accent-deep);
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
}

/* ---------- Nav ---------- */
.site-nav {
  padding: 0.65rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 100%);
  border-bottom: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-nav.scrolled {
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  padding: 0.65rem 0;
}

.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.4rem 0.2rem !important;
}

.site-nav .nav-link:hover {
  color: var(--accent) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.45);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.65) 100%);
}

/* ---------- Intro ---------- */
.intro-band {
  background: var(--brand-black);
  color: var(--on-dark);
  padding: 4.5rem 0;
  border-bottom: 3px solid var(--accent);
}

.intro-heading {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0;
  color: var(--on-dark);
}

.intro-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

/* ---------- Partners ---------- */
.partner-bar {
  background: var(--mist);
  padding: 1.75rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--mist-deep);
}

.partner-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--mist), transparent);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--mist), transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 4rem;
  will-change: transform;
}

.partner-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
}

.partner-item img {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.5;
  /* Logo SVGs are white — invert to dark for the light partner bar */
  filter: grayscale(1) brightness(0);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.partner-marquee:hover .partner-item img {
  opacity: 0.85;
  filter: grayscale(0) brightness(0);
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--surface);
  padding: 4rem 0;
}

.stats-row {
  border: 1px solid var(--mist-deep);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  border-right: 1px solid var(--mist-deep);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--mist-deep);
    text-align: center;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ---------- Members ---------- */
.members-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 191, 63, 0.07), transparent 40%),
    var(--surface);
}

.members-head {
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.members-head .section-copy {
  margin-bottom: 0;
}

.member-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(47, 82, 32, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(47, 82, 32, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(47, 82, 32, 0.1);
}

.member-card-featured {
  border-color: rgba(102, 191, 63, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 244, 0.95) 100%);
  box-shadow: 0 18px 50px rgba(47, 82, 32, 0.08);
}

.member-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--on-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.member-card-top {
  margin-bottom: 1.5rem;
}

.member-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.member-card-featured .member-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--on-accent);
}

.member-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.member-price {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}

.member-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}

.member-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(47, 82, 32, 0.06);
}

.member-features li:last-child {
  border-bottom: none;
}

.member-features i {
  color: var(--accent-deep);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.btn-member {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(47, 82, 32, 0.18);
  border-radius: var(--btn-radius);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-member:hover {
  background: var(--accent-deep);
  color: var(--on-dark);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-member-primary {
  background: var(--accent-deep);
  color: var(--on-dark);
  border-color: var(--accent-deep);
}

.btn-member-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.members-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--brand-black);
  border-radius: 22px;
  color: var(--on-dark);
  border-left: 4px solid var(--accent);
}

.members-banner-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--on-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.members-banner-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.members-banner .btn-cta {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .members-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem;
  }

  .members-banner-stat {
    width: 100%;
  }

  .members-banner .btn-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* ---------- Select Events ---------- */
.select-events {
  background:
    radial-gradient(circle at 0% 100%, rgba(47, 82, 32, 0.06), transparent 42%),
    var(--mist);
}

.select-events-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 82, 32, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(47, 82, 32, 0.06);
}

.featured-event {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.featured-event img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-event:hover img {
  transform: scale(1.04);
}

.featured-event::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
}

.featured-event-panel {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: var(--on-dark);
}

.edition-badge {
  display: inline-flex;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--on-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.featured-event-panel h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.featured-event-panel p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.select-events-content {
  max-width: 34rem;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.event-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: var(--mist);
  border: 1px solid rgba(47, 82, 32, 0.06);
  border-radius: 14px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.event-list li:hover {
  transform: translateX(4px);
  border-color: rgba(102, 191, 63, 0.35);
  box-shadow: 0 8px 24px rgba(47, 82, 32, 0.06);
}

.event-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.select-events-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.select-events-cta i {
  transition: transform 0.2s ease;
}

.select-events-cta:hover i {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .select-events-content {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .select-events-shell {
    padding: 1.25rem;
    border-radius: 22px;
  }
}

/* ---------- Upcoming ---------- */
.events-upcoming {
  background: var(--surface);
}

.upcoming-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.upcoming-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.upcoming-counter {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  min-width: 4.5rem;
  text-align: right;
}

.upcoming-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.upcoming-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 320px;
}

.upcoming-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.upcoming-carousel .carousel-item.active .upcoming-card img {
  transform: scale(1.04);
}

.upcoming-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%);
}

.upcoming-panel {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  max-width: min(540px, calc(100% - 4rem));
  padding: 1.5rem 1.65rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--on-dark);
}

.upcoming-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}

.upcoming-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--on-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.upcoming-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.upcoming-panel h3 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.upcoming-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
}

.btn-upcoming {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--ink);
  border: none;
  border-radius: var(--btn-radius);
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-upcoming:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

.upcoming-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 2rem;
  left: auto;
  margin: 0;
  gap: 0.4rem;
  z-index: 3;
}

.upcoming-dots [data-bs-target] {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.upcoming-dots .active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 767.98px) {
  .upcoming-head {
    align-items: flex-start;
  }

  .upcoming-controls {
    width: 100%;
    justify-content: space-between;
  }

  .upcoming-card {
    aspect-ratio: 4 / 5;
    min-height: 420px;
  }

  .upcoming-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    padding: 1.25rem;
  }

  .upcoming-dots {
    right: 1rem;
    bottom: auto;
    top: 1rem;
  }
}

/* ---------- Publication ---------- */
.publication {
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 191, 63, 0.08), transparent 40%),
    var(--surface);
}

.publication-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(47, 82, 32, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(47, 82, 32, 0.06);
}

.publication-content {
  max-width: 34rem;
}

.pub-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.pub-stat {
  padding: 1rem 0.85rem;
  background: var(--mist);
  border-radius: 16px;
  text-align: center;
}

.pub-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pub-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.pub-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.pub-cta i {
  transition: transform 0.2s ease;
}

.pub-cta:hover i {
  transform: translateX(3px);
}

.pub-showcase {
  position: relative;
  min-height: 420px;
}

.pub-feature {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow);
}

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

.pub-showcase:hover .pub-feature img {
  transform: scale(1.03);
}

.pub-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

.pub-feature-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.pub-portraits {
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 82, 32, 0.08);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(47, 82, 32, 0.12);
}

.pub-portrait {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -14px;
  box-shadow: 0 4px 14px rgba(47, 82, 32, 0.12);
  transition: transform 0.25s ease, z-index 0s;
}

.pub-portrait:first-child {
  margin-left: 0;
}

.pub-portraits:hover .pub-portrait {
  transform: translateY(-2px);
}

.pub-portrait-1 { z-index: 1; }
.pub-portrait-2 { z-index: 2; }
.pub-portrait-3 { z-index: 3; }
.pub-portrait-4 { z-index: 4; }
.pub-portrait-5 { z-index: 5; }

.pub-portraits:hover .pub-portrait-5 {
  transform: translateY(-6px) scale(1.06);
}

@media (max-width: 991.98px) {
  .publication-content {
    max-width: none;
    text-align: center;
  }

  .pub-stats {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .pub-showcase {
    min-height: auto;
    margin-top: 0.5rem;
  }

  .pub-portraits {
    position: static;
    justify-content: center;
    margin-top: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .publication-shell {
    padding: 1.25rem;
    border-radius: 22px;
  }

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

  .pub-portrait {
    width: 48px;
    height: 48px;
    margin-left: -12px;
  }
}

/* ---------- Challenge cities ---------- */
.challenge {
  background: var(--mist);
  overflow: hidden;
}

.challenge-head {
  margin-bottom: 2rem;
}

.city-slider {
  position: relative;
  overflow: hidden;
}

.city-slider-viewport {
  overflow: hidden;
}

.city-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.city-card {
  flex: 0 0 calc(25% - 0.94rem);
  min-width: 0;
}

.city-card img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.city-card h4 {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.challenge-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.challenge-nav .nav-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .city-card {
    flex: 0 0 calc(33.333% - 0.84rem);
  }
}

@media (max-width: 767.98px) {
  .city-card {
    flex: 0 0 calc(50% - 0.63rem);
  }
}

@media (max-width: 575.98px) {
  .city-card {
    flex: 0 0 calc(100% - 0.5rem);
  }
}

.in-words {
  background: var(--surface);
  overflow: hidden;
}

.in-words-head {
  margin-bottom: 2.5rem;
}

.in-words-eyebrow {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.35rem;
}

.words-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 clamp(0.5rem, 3vw, 2rem);
}

.words-slider-viewport {
  flex: 1;
  overflow: hidden;
}

.words-slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.word-card {
  position: relative;
  flex: 0 0 auto;
  width: var(--word-card-width, 240px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(47, 82, 32, 0.12);
}

.word-card__poster,
.word-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.word-card__video {
  position: absolute;
  inset: 0;
  display: none;
  background: var(--ink);
}

.word-card.is-playing .word-card__poster {
  display: none;
}

.word-card.is-playing .word-card__video {
  display: block;
}

.word-card.is-playing .word-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.word-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--btn-radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--on-dark);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.word-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}

.words-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.words-arrow:hover:not(:disabled) {
  color: var(--accent-deep);
  transform: scale(1.08);
}

.words-arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.words-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
}

.words-dot {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: rgba(47, 82, 32, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.words-dot.active {
  background: var(--accent);
  transform: scale(1.15);
}

@media (max-width: 991.98px) {
  .word-card {
    border-radius: 20px;
  }
}

@media (max-width: 767.98px) {
  .word-card {
    border-radius: 18px;
  }

  .words-arrow {
    width: 34px;
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .words-slider-wrap {
    padding: 0 0.25rem;
  }
}

/* ---------- Media grid ---------- */
.media-grid {
  background: var(--surface);
}

.media-large,
.media-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.media-large {
  height: 100%;
  min-height: 360px;
}

.media-large img,
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-thumb {
  aspect-ratio: 4 / 3;
}

.media-label {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(0, 0, 0, 0.75);
  color: var(--on-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: none;
  border-radius: var(--btn-radius);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(47, 82, 32, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--accent-bright);
}

.play-sm {
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}

/* ---------- Why brands ---------- */
.why-brands {
  background: var(--brand-black);
  color: var(--on-dark);
}

.why-brands .section-title {
  color: var(--on-dark);
}

.why-brands .nav-arrow {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--on-dark);
}

.why-brands .nav-arrow:hover {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

.why-brands .nav-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.quote-slider {
  overflow: hidden;
}

.quote-slider-viewport {
  overflow: hidden;
}

.quote-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.quote-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.quote-text {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.quote-author {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* ---------- Partnerships ---------- */
.partnerships {
  background:
    radial-gradient(circle at 20% 20%, rgba(102, 191, 63, 0.08), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(47, 82, 32, 0.06), transparent 40%),
    var(--mist);
  position: relative;
  overflow: hidden;
}

.partnerships::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(47, 82, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 82, 32, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(47, 82, 32, 0.35), transparent 85%);
  pointer-events: none;
}

.partnerships .container {
  position: relative;
  z-index: 1;
}

.partnerships-head {
  margin-bottom: 3rem;
}

.partnerships-eyebrow {
  margin-bottom: 0.85rem;
}

.partnerships-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 82, 32, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(47, 82, 32, 0.06);
  backdrop-filter: blur(8px);
}

.partnership-badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--on-accent);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.partnership-badge-text {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding-right: 0.35rem;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.partner-logo {
  margin: 0;
  text-align: center;
}

.partner-logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 82, 32, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(47, 82, 32, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-logo img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.88);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.partner-logo figcaption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
}

.partner-logo:hover .partner-logo-inner,
.partner-logo:focus-within .partner-logo-inner {
  transform: translateY(-6px);
  border-color: rgba(102, 191, 63, 0.35);
  box-shadow: 0 18px 40px rgba(47, 82, 32, 0.1);
}

.partner-logo:hover img,
.partner-logo:focus-within img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .partnerships-head {
    margin-bottom: 2.25rem;
  }

  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .partner-logo-inner {
    min-height: 118px;
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .partner-logo figcaption {
    font-size: 0.72rem;
  }
}

@media (max-width: 575.98px) {
  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partnership-badge {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
  }

  .partnership-badge-text {
    padding-right: 0;
  }
}

/* ---------- FAQ ---------- */
.faq-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(102, 191, 63, 0.07), transparent 42%),
    var(--mist);
}

.faq-intro-wrap {
  position: sticky;
  top: 6rem;
}

.faq-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 22rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 82, 32, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(47, 82, 32, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(102, 191, 63, 0.45);
  box-shadow: 0 14px 36px rgba(47, 82, 32, 0.08);
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
  padding: 1.25rem 1.35rem;
  text-align: left;
}

.faq-accordion .accordion-button span:first-child {
  flex: 1;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--btn-radius);
  background: var(--mist);
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  transform: rotate(180deg);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon::before,
.faq-accordion .accordion-button:not(.collapsed) .faq-icon::after {
  background: var(--on-accent);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-accordion .accordion-body {
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  border-top: 1px solid rgba(47, 82, 32, 0.06);
  margin: 0 0.25rem;
}

@media (max-width: 991.98px) {
  .faq-intro-wrap {
    position: static;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .faq-intro {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Contact ---------- */
.contact-section {
  background: linear-gradient(180deg, var(--mist) 0%, var(--mist) 45%, var(--footer) 45%, var(--footer) 100%);
  padding-bottom: 0;
}

.contact-card {
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  margin-bottom: -2rem;
}

.form-line {
  border: none;
  border-bottom: 1px solid rgba(47, 82, 32, 0.2);
  border-radius: 0;
  background: transparent;
  padding: 0.9rem 0;
  box-shadow: none !important;
  color: var(--text);
}

.form-line:focus {
  border-bottom-color: var(--accent);
  background: transparent;
}

.form-line::placeholder {
  color: #888888;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 2rem;
}

.socials {
  display: flex;
  gap: 0.85rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: var(--on-accent);
}

.site-footer h5 {
  color: var(--on-dark);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-meta {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Responsive nav collapse ---------- */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .btn-cta {
    margin-top: 0.75rem;
    display: inline-block;
  }

  .hero {
    height: 70vh;
    min-height: 420px;
    max-height: none;
  }

  .contact-section {
    background: var(--mist);
    padding-bottom: 3rem;
  }

  .contact-card {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .challenge-nav {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 3.75rem 0;
  }
}

/* ---------- Inner pages (About, etc.) ---------- */
.site-nav--solid,
.site-nav--solid.scrolled {
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.site-nav .nav-link.active {
  color: var(--accent) !important;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78vh;
  min-height: 520px;
  max-height: 880px;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.78) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  color: var(--on-dark);
  text-align: center;
  max-width: 760px;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.55);
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: var(--accent);
}

.page-breadcrumb [aria-current="page"] {
  color: var(--accent);
}

.page-hero__eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--on-dark);
}

.page-hero__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 1.25rem auto 0;
  border-radius: 999px;
}

.page-hero__lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  max-width: 34rem;
}

.about-story {
  background: var(--surface);
}

.about-story__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__badge {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--brand-black);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  color: var(--on-dark);
  text-align: center;
}

.about-story__badge-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.about-story__badge-text {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  max-width: 9rem;
  line-height: 1.35;
}

.about-pillars {
  background: var(--mist);
}

.about-pillars__head {
  max-width: 36rem;
  margin: 0 auto;
}

.about-pillar {
  height: 100%;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-pillar--featured {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(247, 252, 244, 0.95) 100%);
}

.about-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.about-pillar--featured .about-pillar__icon {
  background: var(--accent);
  color: var(--on-accent);
}

.about-pillar h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.about-pillar p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-timeline {
  background: var(--surface);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 3.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--mist-deep);
}

.timeline__item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.25rem;
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__year {
  flex-shrink: 0;
  width: 6.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  padding-top: 0.35rem;
}

.timeline__year::after {
  content: "";
  position: absolute;
  left: 3.05rem;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline__body {
  flex: 1;
  padding: 1.25rem 1.5rem;
  background: var(--mist);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.timeline__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-capabilities {
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb), 0.06), transparent 40%),
    var(--mist);
}

.about-capabilities__head {
  max-width: 40rem;
  margin: 0 auto;
}

.about-cap {
  height: 100%;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-cap:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  transform: translateY(-4px);
}

.about-cap__num {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.about-cap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.65rem;
}

.about-cap p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-leadership {
  background: var(--surface);
}

.about-leadership__head {
  max-width: 36rem;
  margin: 0 auto;
}

.about-leader {
  text-align: center;
  height: 100%;
}

.about-leader__photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--mist-deep);
  transition: border-color 0.25s ease;
}

.about-leader:hover .about-leader__photo {
  border-color: var(--accent);
}

.about-leader__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-leader h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

.about-leader__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin: 0 0 0.75rem;
}

.about-leader__bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.about-cta {
  padding: 4rem 0;
  background: var(--mist);
}

.about-cta__inner {
  padding: 2.5rem 2.75rem;
  background: var(--brand-black);
  border-radius: 24px;
  border-left: 4px solid var(--accent);
  color: var(--on-dark);
}

.about-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--on-dark);
}

.about-cta__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
}

@media (max-width: 991.98px) {
  .page-hero {
    height: 68vh;
    min-height: 460px;
    max-height: none;
    padding: 7rem 0 4rem;
  }
}

@media (max-width: 767.98px) {
  .page-hero {
    height: 58vh;
    min-height: 400px;
  }

  .page-hero__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
}

@media (max-width: 767.98px) {
  .timeline::before {
    left: 0.45rem;
  }

  .timeline__item {
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1.75rem;
  }

  .timeline__year {
    width: auto;
    padding-top: 0;
  }

  .timeline__year::after {
    left: -1.3rem;
  }

  .about-cta__inner {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .about-cta__text {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Shared inner-page components ---------- */
.page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.page-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-tab:hover,
.page-tab.active {
  background: var(--accent-deep);
  color: var(--on-dark);
  border-color: var(--accent-deep);
}

.module-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.module-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.module-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.module-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--on-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.module-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.module-card__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.module-card__body p {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.module-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.module-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.module-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.module-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--mist);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-item__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}

.info-panel {
  padding: 2rem;
  background: var(--brand-black);
  border-radius: 22px;
  border-left: 4px solid var(--accent);
  color: var(--on-dark);
}

.info-panel h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--on-dark);
}

.info-panel p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.95rem;
}

.split-section {
  background: var(--mist);
}

.detail-tabs {
  border-bottom: 1px solid var(--mist-deep);
  margin-bottom: 2rem;
}

.detail-tabs .nav-link {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0.85rem 1.25rem;
}

.detail-tabs .nav-link.active {
  color: var(--accent-deep);
  background: transparent;
  border-bottom-color: var(--accent);
}

.leaderboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.92rem;
}

.leaderboard-table thead th {
  background: var(--mist);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.leaderboard-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--mist-deep);
}

.leaderboard-table .rank {
  font-weight: 800;
  color: var(--accent-deep);
  width: 3rem;
}

.leaderboard-table tr.highlight td {
  background: rgba(var(--accent-rgb), 0.08);
}

.form-card {
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.form-card .form-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.form-select-line,
.form-line {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  background: transparent;
  padding: 0.9rem 0;
  box-shadow: none !important;
  color: var(--text);
}

.form-select-line:focus,
.form-line:focus {
  border-bottom-color: var(--accent);
  background: transparent;
}

.media-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.media-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-item:hover img {
  transform: scale(1.05);
}

.media-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  color: var(--on-dark);
}

.media-item__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.35rem;
}

.media-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

.trip-itinerary {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trip-itinerary li {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.trip-itinerary li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: var(--mist-deep);
}

.trip-day {
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trip-itinerary h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.trip-itinerary p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.pricing-card {
  height: 100%;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  text-align: center;
}

.pricing-card--featured {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(247, 252, 244, 0.95) 100%);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--mist-deep);
}

.pricing-card ul li i {
  color: var(--accent-deep);
  margin-top: 0.15rem;
}

.service-card {
  height: 100%;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--mist);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.sponsor-tier {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sponsor-tier h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.sponsor-tier-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.sponsor-tier-logos img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(1) brightness(0);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.sponsor-tier:hover .sponsor-tier-logos img {
  opacity: 1;
  filter: grayscale(0) brightness(0);
}

.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb), 0.08), transparent 45%),
    var(--mist);
}

.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.auth-card .auth-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--mist-deep);
}

.contact-info-card {
  height: 100%;
  padding: 1.75rem;
  background: var(--mist);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.contact-info-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-info-card a {
  color: var(--accent-deep);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-pill:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--on-dark);
}

.btn-sm-pill {
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
}

.section-anchor {
  scroll-margin-top: 6rem;
}

/* ---------- User Dashboard ---------- */
body.dashboard-body {
  background: var(--mist);
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 72px;
}

.dashboard-sidebar {
  position: fixed;
  top: 72px;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--brand-black);
  color: var(--on-dark);
  padding: 1.5rem 1rem;
  overflow-y: auto;
  z-index: 100;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-sidebar__user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-sidebar__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.dashboard-sidebar__name {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  color: var(--on-dark);
  line-height: 1.3;
}

.dashboard-sidebar__role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.dashboard-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dashboard-nav a i {
  font-size: 1.1rem;
  width: 1.25rem;
  text-align: center;
  opacity: 0.85;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--on-dark);
}

.dashboard-nav a.active {
  border-left: 3px solid var(--accent);
  padding-left: calc(0.85rem - 3px);
}

.dashboard-nav__badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  min-width: 1.25rem;
  text-align: center;
}

.dashboard-nav__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.75rem 0;
}

.dashboard-nav .logout-link {
  color: rgba(255, 120, 120, 0.85);
}

.dashboard-nav .logout-link:hover {
  background: rgba(255, 80, 80, 0.12);
  color: #ff8a8a;
}

.dashboard-main {
  flex: 1;
  margin-left: 260px;
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 3rem;
  min-width: 0;
}

.dashboard-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dashboard-topbar h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}

.dashboard-topbar p {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.dashboard-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--surface);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.dashboard-icon-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: var(--mist);
}

.dashboard-icon-btn .dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--surface);
}

.dashboard-panel {
  display: none;
}

.dashboard-panel.active {
  display: block;
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.dash-stat {
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.dash-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mist);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.dash-stat__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.dash-stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.dash-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.dash-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--mist-deep);
}

.dash-card__head h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.dash-card__body {
  padding: 1.25rem 1.5rem;
}

.dash-table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.dash-table th,
.dash-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--mist-deep);
}

.dash-table th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--mist);
}

.dash-table tbody tr:last-child td {
  border-bottom: none;
}

.dash-table tbody tr:hover td {
  background: rgba(var(--accent-rgb), 0.04);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.status-pill--success {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-deep);
}

.status-pill--pending {
  background: rgba(255, 170, 0, 0.12);
  color: #b8860b;
}

.status-pill--paid {
  background: rgba(0, 100, 200, 0.1);
  color: #0064c8;
}

.dash-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--muted);
}

.dash-empty i {
  font-size: 2.5rem;
  color: var(--mist-deep);
  margin-bottom: 1rem;
  display: block;
}

.dash-profile-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.dash-profile-photo {
  text-align: center;
}

.dash-profile-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--mist-deep);
  margin-bottom: 1rem;
}

.dash-notif-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mist-deep);
}

.dash-notif-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dash-notif-item.unread {
  background: rgba(var(--accent-rgb), 0.04);
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.dash-notif-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--mist);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-notif-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ink);
}

.dash-notif-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.dash-notif-item time {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
  display: block;
}

.dashboard-mobile-toggle {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: var(--btn-radius);
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 1.35rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 200;
}

.site-nav .nav-user {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.35rem 0.75rem !important;
  border-radius: var(--btn-radius);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.2);
  }

  .dashboard-sidebar.open {
    transform: translateX(0);
  }

  .dashboard-main {
    margin-left: 0;
  }

  .dashboard-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .dash-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .dash-stat-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    padding: 1.25rem 1rem 5rem;
  }
}

/* ---------- Responsive polish (all devices) ---------- */
@media (max-width: 991.98px) {
  .detail-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .detail-tabs::-webkit-scrollbar {
    display: none;
  }

  .detail-tabs .nav-item {
    flex-shrink: 0;
  }

  .form-card.sticky-top {
    position: static !important;
    top: auto !important;
  }

  .dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .dashboard-topbar__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .upcoming-head .section-title {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }

  .in-words-head,
  .partnerships-head {
    text-align: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 575.98px) {
  .site-nav .navbar-collapse .btn-cta {
    display: block;
    width: 100%;
    text-align: center;
  }

  .auth-card {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .page-tab,
  .media-filter .page-tab {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
  }
}

/* Square buttons — Bootstrap + site overrides */
.btn,
button[type="submit"],
button[type="button"]:not(.accordion-button):not(.words-dot):not(.words-arrow):not(.navbar-toggler):not(.carousel-indicators button):not(.upcoming-dots button) {
  border-radius: var(--btn-radius) !important;
}

.accordion-button,
.navbar-toggler,
.words-dot,
.words-arrow,
.carousel-indicators [data-bs-target],
.upcoming-dots [data-bs-target] {
  border-radius: var(--btn-radius);
}

.faq-icon {
  border-radius: var(--btn-radius);
}

.socials a,
.site-nav .nav-user,
.city-play {
  border-radius: var(--btn-radius) !important;
}
