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

:root {
  --gold: #B8922A;
  --gold-light: #E8C96A;
  --gold-pale: #FBF4E3;

  --navy: #0D1F3C;
  --navy-mid: #1A3358;
  --navy-light: #2C4A72;

  --white: #FFFFFF;
  --off-white: #F9F7F3;

  --gray: #6B7280;
  --gray-light: #E8E6E1;
  --text: #1A1A1A;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5%;
  background: transparent;
  border-bottom: none;
  overflow: visible;

  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

nav.nav-hidden {
  opacity: 0;
  transform: translateY(-24px) scale(0.98);
  pointer-events: none;
}

.events-nav {
  background: rgba(7,15,30,.96);
  border-bottom: 1px solid rgba(184,146,42,.38);
}

.events-nav .nav-logo {
  color: var(--white);
}

.events-nav .nav-links a[aria-current="page"] {
  color: var(--gold-light);
}

.floating-socials {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-socials a,
.floating-action {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232,201,106,.34);
  border-radius: 6px;
  background: rgba(13,31,60,.9);
  box-shadow: 0 14px 34px rgba(13,31,60,.22);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.floating-socials a:hover,
.floating-action:hover {
  background: var(--gold);
  border-color: var(--gold-light);
}

.floating-socials a:hover {
  transform: translateX(3px);
}

.floating-action:hover {
  transform: translateY(-2px);
}

.floating-socials img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 95;
  display: grid;
  gap: 10px;
}

.floating-action {
  border: 0;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-action {
  background: #25D366;
  border-color: #25D366;
  color: white;
}
.whatsapp-action svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.back-to-top span {
  font-size: 22px;
  line-height: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
  color: var(--white);
}

.nav-logo img {
  height: 74px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-est {
  padding-top: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(232, 201, 106, 0.78);
  font-weight: 700;
}

.logo-year {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0 18px;

  color: rgba(255,255,255,0.75);
  text-decoration: none;

  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 72px;
  text-transform: uppercase;

  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  height: 72px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--gold-light);
}

.nav-dropdown-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
}

.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 1100;
  width: 180px;
  padding: 8px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(232,201,106,.25);
  border-radius: 6px;
  background: rgba(7,15,30,.98);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s, visibility .18s, transform .18s;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

.nav-dropdown-menu a {
  padding: 11px 12px;
  border-radius: 4px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .03em;
  text-transform: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--navy);
  background: var(--gold-light);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;

  padding: 10px 22px !important;
  border-radius: 3px;

  line-height: 1 !important;
  font-weight: 500 !important;
  margin-left: 8px;
  align-self: center;

  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: rgba(255,255,255,.5);
  line-height: 72px;
}

.language-switcher button,
.language-switcher a {
  border: 1px solid rgba(232,201,106,.35);
  border-radius: 4px;
  background: rgba(13,31,60,.24);
  color: rgba(255,255,255,.72);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  padding: 7px 9px;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s;
}

.language-switcher button:hover,
.language-switcher button.active,
.language-switcher a:hover,
.language-switcher a.active {
  color: var(--navy);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

body.lang-zh {
  font-family: 'Noto Sans SC', 'DM Sans', sans-serif;
}

body.lang-zh h1,
body.lang-zh h2,
body.lang-zh h3,
body.lang-zh .section-title {
  font-family: 'Noto Serif SC', 'Playfair Display', serif;
}

.art-hero.art-hero-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.art-hero.art-hero-cover .art-hero-inner {
  text-shadow: 0 2px 16px rgba(0, 0, 0, .42);
}

@media (min-width: 1181px) and (max-width: 1366px) {
  nav {
    padding: 0 3.5%;
  }

  .nav-logo img {
    height: 64px;
  }

  .nav-links a {
    padding: 0 12px;
    font-size: 13px;
    letter-spacing: 0.03em;
  }

  .nav-cta {
    padding: 10px 16px !important;
    margin-left: 4px;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;

  background:
    linear-gradient(
      90deg,
      rgba(7, 15, 30, 0.92) 0%,
      rgba(13, 31, 60, 0.88) 22%,
      rgba(13, 31, 60, 0.72) 38%,
      rgba(13, 31, 60, 0.38) 52%,
      rgba(13, 31, 60, 0.05) 68%,
      rgba(13, 31, 60, 0) 100%
    ),
    url('assets/hero-bg.png') center/cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 120px 10% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at left center,
      rgba(232, 201, 106, 0.08),
      transparent 45%
    );

  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);

  width: 380px;
  height: 380px;

  border: 1px solid rgba(184,146,42,0.2);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  position: relative;
  z-index: 1;

  background: rgba(184,146,42,0.15);
  border: 1px solid rgba(184,146,42,0.4);
  color: var(--gold-light);

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  position: relative;
  z-index: 1;

  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;

  color: var(--white);
  max-width: 600px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero p {
  position: relative;
  z-index: 1;

  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.7;

  max-width: 480px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;

  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);

  padding: 14px 32px;
  border-radius: 3px;

  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.03em;

  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);

  padding: 14px 32px;
  border-radius: 3px;

  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.03em;

  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-stats {
  position: relative;
  z-index: 1;

  display: flex;
  gap: 48px;

  margin-top: 64px;
  padding-top: 40px;

  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;

  color: var(--gold-light);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);

  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
section {
  padding: 96px 10%;
}

.section-tag {
  display: inline-block;

  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  margin-bottom: 14px;
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.2;

  color: var(--navy);
  margin-bottom: 20px;
}

h2.section-title.light {
  color: var(--white);
}

.section-sub {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;

  max-width: 540px;
  margin-bottom: 52px;
}

.gold-line {
  width: 48px;
  height: 3px;

  background: var(--gold);
  margin-bottom: 32px;
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
}

/* Top layout: group photo left, Card 1 + Card 2 right */
.about-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;

  align-items: center;
}

.about-img-wrap {
  position: relative;

  display: inline-block;
  width: 100%;

  padding: 18px;

  border: 1px solid rgba(184,146,42,0.85);
  border-radius: 6px;

  background:
    linear-gradient(
      145deg,
      rgba(13,31,60,0.96),
      rgba(20,40,75,0.92)
    );

  box-shadow:
    0 18px 45px rgba(13,31,60,0.18),
    inset 0 0 0 1px rgba(184,146,42,0.25);
}

.about-img-wrap::before {
  content: "";
  position: absolute;

  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;

  border: 1px solid rgba(184,146,42,0.75);
  border-radius: 4px;

  pointer-events: none;
  z-index: 2;
}

.about-img-wrap img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;

  border-radius: 4px;
}

.about-badge {
  position: absolute;
  right: clamp(10px, 2vw, 24px);
  bottom: clamp(10px, 2vw, 24px);
  z-index: 2;

  min-width: clamp(105px, 14vw, 150px);
  padding: clamp(14px, 2vw, 22px) clamp(16px, 2.2vw, 24px);

  text-align: center;
  color: var(--white);

  background: rgba(13, 31, 60, 0.96);
  border: 1px solid rgba(232, 201, 106, 0.35);
  border-radius: 5px;
  box-shadow: 0 12px 32px rgba(7, 15, 30, 0.22);
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}

.about-badge span {
  display: block;
  margin-top: 6px;

  font-size: clamp(8px, 1.2vw, 11px);
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.62);
}

.about-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-side .section-sub {
  margin-bottom: 0;
}

.about-side-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

/* Bottom layout: Card 3, Card 4, Card 5 */
.about-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

/* ── FEATURE CARDS ── */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
  margin: 0;
  padding: 24px 28px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(13,31,60,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(13,31,60,0.10);
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 50%;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.feature-text h4 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}

.feature-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.feature-cn {
  margin-top: 8px;
  color: var(--gold) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

#services {
  background: var(--white);
}

#services .about-features {
  max-width: 900px;
}

/* ================================
   CASB Vision / Mission / Values
================================ */

.casb-belief-section {
  padding: 80px 6%;
  background: var(--off-white);
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 24px;
}

/* Card Base */
.belief-card {
  position: relative;
  min-height: 540px;
  padding: 40px 30px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  box-shadow: 0 18px 45px rgba(13, 31, 60, 0.12);
}

/* Logo */
.belief-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.belief-logo img {
  width: 72px;
  height: auto;
  flex-shrink: 0;
}

.belief-logo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.belief-logo p {
  font-size: 12px;
  color: var(--navy);
}

/* Inner Content Container */
.belief-content {
  width: 100%;
  max-width: 430px;
  margin: 80px auto 0;
}

/* Text */
.belief-cn {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy);
}
}

.belief-en {
  margin-top: 56px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.65;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
}

/* Bottom Title */
.belief-title {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 3.8vw, 64px);
  font-weight: 700;
  letter-spacing: clamp(6px, 0.8vw, 14px);
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
  text-align: center;
}

/* Accent Lines */
.gold-line,
.silver-line {
  display: block;
}

.gold-line {
  width: 58%;
  height: 8px;
  margin-top: 26px;
  background: linear-gradient(
    90deg,
    var(--gold-light),
    rgba(232, 201, 106, 0)
  );
}

.silver-line {
  width: 56%;
  height: 4px;
  margin: 38px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
}

/* ================================
   Mission Card
================================ */

.belief-mission {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
}

.belief-mission .belief-logo h3,
.belief-mission .belief-en,
.belief-mission .belief-cn,
.belief-mission .belief-title {
  color: var(--white);
}

.belief-mission .belief-logo p,
.belief-mission .belief-kicker,
.belief-mission strong {
  color: var(--gold-light);
}

.belief-mission .belief-content {
  max-width: 460px;
  margin-top: 78px;
  text-align: center;
}

.belief-mission .belief-kicker {
  margin-bottom: 30px;
  font-size: 16px;
  letter-spacing: 9px;
}

.belief-mission .belief-title {
  position: static;
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing: clamp(8px, 1vw, 15px);
}

.belief-mission .belief-en {
  margin: 0;
}

.belief-mission .belief-cn {
  margin-top: 42px;
}

/* ================================
   Vision Card
================================ */

.belief-vision .belief-content {
  max-width: 420px;
}

/* ================================
   Core Values Card
================================ */

.belief-values .belief-content {
  max-width: 420px;
  text-align: center;
}

.belief-values .belief-cn,
.belief-values .belief-en {
  color: var(--text);
}

.belief-values .belief-title {
  font-size: clamp(28px, 2.6vw, 46px);
  letter-spacing: clamp(3px, 0.35vw, 6px);
}

/* ================================
   Responsive
================================ */

@media (max-width: 1200px) {
  .casb-belief-section {
    padding: 70px 4%;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 18px;
  }

  .belief-card {
    padding: 34px 24px;
  }

  .belief-title {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 900px) {
  .casb-belief-section {
    grid-template-columns: 1fr;
  }

  .belief-card {
    min-height: 520px;
  }
}

/* ── ACHIEVEMENTS ── */
#achievements {
  background: var(--navy);
}

.ach-featured-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  margin-top: 52px;
  margin-bottom: 24px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  margin-top: 52px;
}

.ach-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,146,42,0.25);
  border-radius: 4px;

  padding: 32px 28px;

  transition: background 0.2s, border-color 0.2s;
}

.ach-card:hover {
  background: rgba(184,146,42,0.08);
  border-color: rgba(184,146,42,0.5);
}

.ach-medal {
  width: 48px;
  height: 48px;

  background: rgba(184,146,42,0.15);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;
}

.ach-medal svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
}

.ach-year {
  color: var(--gold);

  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  margin-bottom: 12px;
}

.ach-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;

  color: var(--white);
  margin-bottom: 12px;
}

.ach-body {
  color: rgba(255,255,255,0.55);

  font-size: 14px;
  line-height: 1.6;
}

.ach-card-featured {
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.ach-poster {
  width: 100%;
  aspect-ratio: 3 / 4;

  background: rgba(255,255,255,0.03);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 24px;

  border: 1px solid rgba(184,146,42,0.35);
}

.ach-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  display: block;

  transition: transform 0.4s ease;
}

.ach-card-featured:hover .ach-poster img {
  transform: scale(1.03);
}

.ach-link {
  display: inline-block;
  margin-top: 18px;

  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── ACHIEVEMENT CAROUSEL ── */

.ach-carousel {
  position: relative;
  overflow: hidden;
}

.ach-carousel img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 0.45s ease;
}

.ach-carousel img.active {
  opacity: 1;
  position: relative;
}

/* Buttons */

.ach-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 38px;
  height: 38px;

  border: 1px solid rgba(184,146,42,0.7);
  background: rgba(10,24,48,0.82);

  color: var(--gold);
  font-size: 22px;

  cursor: pointer;
  z-index: 5;

  transition: all 0.2s ease;
}

.ach-carousel .carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.ach-carousel .prev {
  left: 12px;
}

.ach-carousel .next {
  right: 12px;
}

/* Slight premium differentiation */

.ach-card-mdrt {
  border-color: rgba(184,146,42,0.38);
}

.ach-card-monthly {
  border-color: rgba(184,146,42,0.24);
}

.ach-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ach-card-link:hover .ach-card {
  transform: translateY(-3px);
}

/* ── EVENTS ── */
#events {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  margin-top: 52px;
}

.home-events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 52px;
}

.current-campaign-card,
.past-events-panel {
  border: 1px solid rgba(184,146,42,0.28);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(13,31,60,0.08);
  overflow: hidden;
}

.current-campaign-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.campaign-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.campaign-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,31,60,.34), rgba(13,31,60,.02));
  pointer-events: none;
}

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

.campaign-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: clamp(26px, 3.4vw, 38px);
}

.campaign-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.campaign-content h3,
.past-events-head h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.campaign-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin: 22px 0 30px;
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.campaign-whatsapp {
  border-color: rgba(184,146,42,.48);
  color: var(--navy);
}

.campaign-whatsapp:hover {
  color: var(--gold);
}

.past-events-panel {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.past-events-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.home-carousel-controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.home-carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184,146,42,.42);
  border-radius: 4px;
  background: var(--navy);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background .2s, color .2s, transform .2s;
}

.home-carousel-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.home-events-track {
  position: relative;
  min-height: 430px;
  flex: 1;
}

.home-event-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px);
  transition: opacity .35s ease, transform .35s ease;
}

.home-event-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.home-event-slide .event-card {
  height: 100%;
}

.home-event-slide .event-img {
  height: 210px;
}

.past-events-more {
  align-self: flex-start;
  margin-top: 20px;
}

.event-card {
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;

  transition: box-shadow 0.2s, transform 0.2s;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13,31,60,0.12);
}

.event-img {
  width: 100%;
  height: 200px;

  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
}

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

.event-img .img-label {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;

  background: var(--gold);
  color: var(--white);

  padding: 6px 14px;
  border-radius: 2px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-body {
  padding: 24px;
}

.event-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;

  color: var(--navy);
  margin-bottom: 10px;
}

.event-body p {
  color: var(--gray);

  font-size: 14px;
  line-height: 1.6;

  margin-bottom: 20px;
}

.read-more {
  color: var(--gold);

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more::after {
  content: '→';
  transition: transform 0.2s;
}

.read-more:hover::after {
  transform: translateX(4px);
}

.event-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.events-more {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.join-actions .btn-primary,
.join-actions .btn-outline {
  min-width: 198px;
  text-align: center;
}

.mentor-btn {
  border-color: rgba(232,201,106,.62);
  color: var(--gold-light);
}

.event-upload-detail {
  min-height: 100vh;
  padding: 54px 6% 88px;
  background: var(--off-white);
}

.campaign-page {
  min-height: 100vh;
  padding: 130px 8% 88px;
  background: var(--off-white);
}

.campaign-page > section {
  padding: 0;
}

.campaign-hero {
  display: flex;
  flex-direction: column-reverse;
  gap: 34px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 58px;
}

.campaign-hero-copy {
  max-width: 880px;
  text-align: center;
}

.campaign-hero-copy h1 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.campaign-hero-subtitle {
  color: var(--gold);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.campaign-hero-copy p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.campaign-event-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 28px;
}

.campaign-event-meta span {
  min-width: 180px;
  padding: 12px 18px;
  border: 1px solid rgba(184,146,42,.34);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(13,31,60,.06);
}

.campaign-hero-media {
  width: 100%;
  border: 1px solid rgba(184,146,42,.55);
  border-radius: 6px;
  padding: 14px;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  box-shadow: 0 24px 60px rgba(13,31,60,.16);
}

.campaign-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.campaign-section-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.campaign-info-card {
  background: var(--white);
  border: 1px solid rgba(184,146,42,.22);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(13,31,60,.06);
}

.campaign-info-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.campaign-info-card p,
.campaign-info-card li {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
}

.campaign-info-card p + p {
  margin-top: 12px;
}

.campaign-info-card ul {
  padding-left: 18px;
}

.campaign-check-list {
  display: grid;
  gap: 10px;
}

.campaign-check-list span {
  position: relative;
  padding-left: 28px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.55;
}

.campaign-check-list span::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.campaign-faq-panel {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid rgba(184,146,42,.22);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(13,31,60,.06);
}

.campaign-page > .campaign-faq-panel {
  padding: clamp(28px, 4vw, 46px);
}

.campaign-faq-panel .section-tag {
  margin-bottom: 12px;
}

.campaign-faq-panel h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 28px;
}

.campaign-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.campaign-faq-list article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(184,146,42,.2);
  border-top: 3px solid rgba(184,146,42,.52);
  border-radius: 6px;
  background: var(--off-white);
}

.campaign-faq-list h3 {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.campaign-faq-list p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .campaign-faq-list {
    grid-template-columns: 1fr;
  }
}

.campaign-form-panel {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background: var(--navy);
  border: 1px solid rgba(232,201,106,.32);
  border-radius: 6px;
  color: var(--white);
}

.campaign-page > .campaign-form-panel {
  padding: 34px;
}

.campaign-form-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.campaign-form-panel p {
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.campaign-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.campaign-form-actions .btn-outline {
  border-color: rgba(232,201,106,.52);
  color: var(--gold-light);
}

.campaign-booking-page {
  padding-top: 128px;
}

.campaign-booking-intro {
  max-width: 960px;
  margin: 0 auto 28px;
  text-align: center;
}

.campaign-booking-intro .back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.campaign-booking-intro h1 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.campaign-booking-intro p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

.campaign-form-embed {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 18px);
  background: var(--white);
  border: 1px solid rgba(184,146,42,.32);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(13,31,60,.08);
}

.campaign-page > .campaign-form-embed {
  padding: clamp(12px, 2vw, 18px);
}

.campaign-form-embed iframe {
  width: 100%;
  min-height: 1680px;
  display: block;
  border: 0;
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
}

.campaign-form-fallback {
  margin-top: 18px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
  border: 1px solid rgba(184,146,42,.22);
  border-radius: 6px;
}

.campaign-form-fallback p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.campaign-form-fallback .btn-outline {
  color: var(--navy);
}

@media (max-width: 700px) {
  .campaign-booking-page {
    padding-left: 0;
    padding-right: 0;
  }

  .campaign-booking-intro {
    padding: 0 6%;
  }

  .campaign-booking-intro .campaign-event-meta span {
    width: 100%;
  }

  .campaign-form-embed {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .campaign-page > .campaign-form-embed {
    padding: 0;
  }

  .campaign-form-embed iframe {
    min-height: 1780px;
    border-radius: 0;
  }

  .campaign-form-fallback {
    margin: 14px 6% 0;
  }
}

.event-upload-detail .back {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 42px;
}

.event-upload-cover {
  max-width: 1120px;
  margin: 0 auto 42px;
  border: 1px solid rgba(184,146,42,.38);
  border-radius: 8px;
  background: var(--navy);
  padding: 18px;
  box-shadow: 0 18px 44px rgba(13,31,60,.14);
}

.event-upload-cover-frame {
  aspect-ratio: 16 / 7;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232,201,106,.3);
  border-radius: 5px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: rgba(255,255,255,.5);
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  padding: 24px;
}

.event-upload-intro {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.event-upload-intro h1 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: 1.08;
  margin: 14px 0 18px;
}

.event-upload-intro p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

.event-upload-strip {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.event-upload-photo {
  border-radius: 7px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--gray-light);
  box-shadow: 0 10px 24px rgba(13,31,60,.06);
}

.event-upload-photo div {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-pale), #fff);
  color: rgba(13,31,60,.38);
  font-size: 12px;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.event-upload-photo p {
  padding: 14px 16px;
  color: var(--gray);
  font-size: 14px;
}

/* ── BRANCHES ── */
#branches {
  background: var(--off-white);

  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.branches-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-top: 52px;
}

.branch-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;

  padding: 22px 24px;

  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.branch-item.active,
.branch-item:hover {
  border-color: var(--gold);
}

.branch-item.active {
  background: var(--gold-pale);
}

.branch-city {
  color: var(--navy);

  font-weight: 600;
  font-size: 15px;

  display: flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 4px;
}

.branch-city .dot {
  width: 8px;
  height: 8px;

  background: var(--gold);
  border-radius: 50%;
}

.branch-addr {
  color: var(--gray);
  font-size: 13px;
}

.branch-tel {
  color: var(--gold);

  font-size: 13px;
  font-weight: 500;

  margin-top: 6px;
}

/* ── CONTACT ── */
#contact {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;

  margin-top: 52px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: rgba(255,255,255,0.6);

  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;

  color: var(--white);

  padding: 12px 16px;

  font-family: 'DM Sans', sans-serif;
  font-size: 15px;

  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

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

.form-group select option {
  background: var(--navy);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;

  border: 1px solid rgba(184,146,42,0.35);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.info-label {
  color: rgba(255,255,255,0.45);

  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  margin-bottom: 4px;
}

.info-val {
  color: var(--white);
  font-size: 15px;
}

.info-val a {
  color: var(--white);
  text-decoration: none;
}

.info-val a:hover {
  color: var(--gold-light);
}

/* ── FOOTER ── */
.site-footer {
  background: #070F1E;
  color: var(--white);
  border-top: 1px solid rgba(184,146,42,0.45);
  padding: 44px 8% 22px;
}

.event-site-footer {
  margin-top: 0;
  padding-top: 50px;
}

.legal-site-footer {
  margin-top: 0;
  padding-top: 50px;
}

.event-site-footer .footer-main,
.legal-site-footer .footer-main,
.event-site-footer .footer-bottom {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.legal-site-footer .footer-bottom {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.event-site-footer .footer-brand p,
.legal-site-footer .footer-brand p {
  max-width: 360px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1.15fr .9fr;
  gap: 34px;
  padding-bottom: 28px;
}

.footer-brand img {
  height: 66px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

.footer-bottom-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  border: 1px solid rgba(232,201,106,.22);
  border-radius: 5px;
  background: rgba(255,255,255,.04);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-bottom-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(232,201,106,.68);
  background: rgba(184,146,42,.18);
}

.footer-bottom-socials img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 42px 6% 24px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

/* ── SCROLL ANIMATION ── */
.fade-in {
  opacity: 1;
  transform: none;
}

/* Only animate if JS is running (body.js-loaded added by main.js) */
body.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-loaded .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  section {
    padding: 80px 6%;
  }

  .hero {
    padding: 120px 6% 72px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  .about-top,
  .about-bottom,
  .campaign-hero,
  .campaign-section-grid,
  .campaign-form-panel,
  #branches,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-top {
    gap: 32px;
  }

  .about-img-wrap img {
    min-height: auto;
    object-fit: contain;
  }

.about-img-wrap {
  border: 2px solid var(--gold);
}
.ach-featured-row,
.achievements-grid,
.events-grid,
.home-events-layout {
  grid-template-columns: 1fr;
}

  .current-campaign-card {
    min-height: auto;
  }

  .campaign-form-actions {
    justify-content: flex-start;
  }

  .campaign-faq-list {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 12px;
    bottom: 12px;
  }

  .feature-item {
    padding: 22px 24px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  width: 36px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  margin: 7px 0;
  transition: 0.3s ease;
}

@media (min-width: 768px) and (max-width: 1180px) {
  nav {
    height: 66px;
    padding: 0 2.6%;
  }

  .nav-logo {
    gap: 8px;
  }

  .nav-logo img {
    height: 58px;
  }

  .logo-est {
    padding-top: 6px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .nav-links a {
    padding: 0 7px;
    font-size: 11px;
    letter-spacing: 0.025em;
    line-height: 66px;
  }

  .nav-cta {
    padding: 9px 12px !important;
    margin-left: 3px;
  }

  .language-switcher {
    padding: 0 5px;
  }

  .language-switcher button,
  .language-switcher a {
    padding: 6px 7px;
    font-size: 10px;
  }
}

/* Mobile nav */
@media (max-width: 767px) {
  nav {
    height: 66px;
    padding: 0 84px 0 24px;
    background: rgba(13,31,60,0.82);
    backdrop-filter: blur(12px);
  }

  .nav-logo {
    gap: 10px;
  }

  .nav-logo img {
    height: 58px;
  }

  .logo-est {
    padding-top: 6px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hamburger {
    display: block;
    flex: 0 0 auto;
    position: fixed;
    top: 19px;
    right: 24px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 86vw);
    height: 100dvh;

    background: rgba(13,31,60,0.92);
    backdrop-filter: blur(14px);
    padding: 88px 28px 32px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    transition: right 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: white;
    font-size: 15px;
    line-height: 1.25;
    padding: 14px 4px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    height: auto;
    padding: 14px 4px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: white;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: .08em;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: max-height .24s ease, padding .24s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 130px;
    padding-top: 5px;
    padding-bottom: 5px;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 11px 12px;
    font-size: 14px;
    line-height: 1.25;
    text-transform: none;
  }

  .nav-links .nav-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin: 14px 0 0;
    padding: 14px 18px !important;
    border-bottom: 0;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 8px;
    line-height: 1;
    order: 20;
  }

  .language-switcher button,
  .language-switcher a {
    min-width: 76px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

@media (max-width: 767px) {
  .floating-socials {
    left: 10px;
    gap: 8px;
  }

  .floating-socials a {
    width: 40px;
    height: 40px;
  }

  .floating-socials img {
    width: 18px;
    height: 18px;
  }

  .floating-actions {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }

  .floating-action {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    width: min(360px, 86vw);
    background: rgba(13,31,60,0.94);
    backdrop-filter: blur(14px);
    box-shadow: -24px 0 60px rgba(0,0,0,0.35);
  }
}

@media (max-width: 520px) {
  nav {
    padding: 0 76px 0 18px;
  }

  .hamburger {
    right: 18px;
  }

  .logo-est {
    display: none;
  }

  .nav-links {
    width: 100vw;
    padding: 84px 24px 30px;
  }

  .hero {
    padding: 112px 7% 64px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.12;
    overflow-wrap: normal;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns a {
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    height: 58px;
  }

  .footer-brand p,
  .footer-column a,
  .footer-contact p {
    font-size: 13px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-bottom {
    gap: 16px;
  }

  .footer-legal {
    gap: 14px 18px;
  }

  .event-upload-detail {
    padding: 36px 5% 70px;
  }

  .event-upload-cover {
    padding: 12px;
  }

  .event-upload-cover-frame {
    aspect-ratio: 4 / 3;
  }

  .event-upload-strip {
    grid-template-columns: 1fr;
  }
}

/* ── JOIN SECTION (replaces inline styles) ── */
.join-section { padding-top: 52px; }
.join-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 36px;
  color: white;
}
.join-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
}
.join-body {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hotline-card {
  background: var(--gold-pale);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: 4px;
  padding: 28px;
  margin-top: 20px;
}
.hotline-label {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.hotline-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  font-weight: 700;
}
.hotline-hours {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
}

/* ── SMOOTH SCROLL POLYFILL FALLBACK ── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── MONTHLY ACHIEVERS MODAL ── */
.ma-modal {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4,8,20,.82);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.ma-modal.open { display: flex; }

.ma-modal-inner {
  background: linear-gradient(160deg, #0d1f3c 0%, #060c1a 100%);
  border: 1px solid rgba(232,201,106,.2);
  border-radius: 12px;
  width: min(960px, 96vw);
  max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  overflow: hidden;
  position: relative;
}

.ma-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.ma-modal-close:hover { background: rgba(255,255,255,.18); color: #fff; }
.ma-modal-close svg { width: 16px; height: 16px; }

.ma-modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(232,201,106,.12);
  flex-shrink: 0;
}
.ma-modal-kicker {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.ma-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: #fff; line-height: 1;
}

.ma-modal-body {
  display: flex; flex: 1; min-height: 0; overflow: hidden;
}

/* Diamond year nav */
.ma-modal-year-nav {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0; padding: 24px 20px;
  border-right: 1px solid rgba(232,201,106,.1);
  flex-shrink: 0;
}
.ma-diamond-connector {
  width: 1px; height: 24px;
  background: linear-gradient(180deg, rgba(232,201,106,.3), rgba(232,201,106,.1));
}
.ma-diamond-btn {
  position: relative; width: 64px; height: 64px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ma-diamond-btn::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1.5px solid rgba(232,201,106,.25);
  border-radius: 4px;
  transform: rotate(45deg);
  transition: background .2s, border-color .2s, transform .25s;
}
.ma-diamond-btn:hover::before {
  background: rgba(232,201,106,.1);
  border-color: rgba(232,201,106,.55);
  transform: rotate(45deg) scale(1.1);
}
.ma-diamond-btn.active::before {
  background: var(--gold);
  border-color: var(--gold-light);
}
.ma-diamond-btn span {
  position: relative; z-index: 1;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  color: rgba(255,255,255,.45); font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}
.ma-diamond-btn:hover span { color: var(--gold-light); }
.ma-diamond-btn.active span { color: #fff; }

/* Center content */
.ma-modal-content {
  flex: 1; min-width: 0; overflow-y: auto;
  padding: 20px 28px 28px;
  scrollbar-width: thin; scrollbar-color: rgba(232,201,106,.2) transparent;
}
.ma-panel { display: none; }
.ma-panel.active { display: block; }

/* Month accordion */
.ma-month {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ma-month:last-child { border-bottom: none; }
.ma-month-summary {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 4px; cursor: pointer; list-style: none; user-select: none;
  transition: background .15s; border-radius: 4px;
}
.ma-month-summary::-webkit-details-marker { display: none; }
.ma-month-summary:hover { background: rgba(232,201,106,.04); }
.ma-month-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: #fff; flex: 1;
}
.ma-month-count { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; }
.ma-month-chevron {
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(232,201,106,.1); flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.ma-month-chevron svg { width: 12px; height: 12px; color: var(--gold-light); }
.ma-month[open] .ma-month-chevron { transform: rotate(180deg); background: var(--gold); }
.ma-month[open] .ma-month-chevron svg { color: #fff; }

.ma-month-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr));
  gap: 10px; padding: 12px 4px 20px;
}
.ma-month-grid img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 6px; border: 1px solid rgba(255,255,255,.08);
  cursor: zoom-in; transition: transform .2s, border-color .2s;
}
.ma-month-grid img:hover { transform: scale(1.04); border-color: rgba(232,201,106,.4); }

.ma-month-empty {
  padding: 20px 4px; font-size: 13px; color: rgba(255,255,255,.3);
}
.ma-panel-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 200px; gap: 12px; text-align: center;
  color: rgba(255,255,255,.3);
}
.ma-panel-empty svg { width: 32px; height: 32px; opacity: .25; }
.ma-panel-empty p { font-size: 14px; }
.section-sub-muted {
  color: rgba(255, 255, 255, 0.55);
}

.contact-submit {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.nav-links a.is-active {
  color: #E8C96A;
}

.form-success {
  padding: 40px 0;
  text-align: center;
}

.form-success-icon {
  font-size: 36px;
}

.form-success h3 {
  color: #fff;
  font-size: 20px;
  margin: 12px 0 8px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.6);
}
