:root {
  color-scheme: dark;
  --ink: #f7f0df;
  --muted: #b8b0a0;
  --soft: #e5d9bd;
  --black: #05070d;
  --navy: #07101f;
  --navy-2: #0b1830;
  --gold: #d8a83e;
  --gold-2: #ffcf6a;
  --saffron: #ff8f2a;
  --teal: #42d9c8;
  --ruby: #ce405b;
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 216, 128, 0.22);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --mx: 50%;
  --my: 35%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

body[data-theme="light"] {
  color-scheme: light;
  --ink: #17110a;
  --muted: #665847;
  --soft: #2f2619;
  --black: #fff8ea;
  --navy: #fffaf0;
  --navy-2: #f5ead3;
  --gold: #a66d12;
  --gold-2: #b87613;
  --saffron: #e3751d;
  --teal: #0a7e79;
  --ruby: #9b2d45;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --line: rgba(166, 109, 18, 0.25);
  --shadow: 0 22px 80px rgba(90, 60, 20, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(66, 217, 200, 0.1), transparent 24%),
    linear-gradient(245deg, rgba(206, 64, 91, 0.09), transparent 26%),
    linear-gradient(180deg, var(--black), #080c15 38%, #030407);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body[data-theme="light"] {
  background:
    linear-gradient(115deg, rgba(10, 126, 121, 0.1), transparent 24%),
    linear-gradient(245deg, rgba(227, 117, 29, 0.11), transparent 26%),
    linear-gradient(180deg, #fff9ed, #f7edd8 44%, #fffaf1);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 96px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

body[data-theme="light"]::before {
  opacity: 0.45;
  background:
    repeating-linear-gradient(90deg, rgba(94, 65, 20, 0.045) 0, rgba(94, 65, 20, 0.045) 1px, transparent 1px, transparent 96px),
    repeating-linear-gradient(0deg, rgba(94, 65, 20, 0.03) 0, rgba(94, 65, 20, 0.03) 1px, transparent 1px, transparent 96px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.58;
  background:
    linear-gradient(120deg, transparent 12%, rgba(216, 168, 62, 0.12), transparent 34%),
    linear-gradient(300deg, transparent 18%, rgba(255, 143, 42, 0.09), transparent 42%);
  animation: ambientSweep 16s ease-in-out infinite alternate;
}

body[data-theme="light"]::after {
  opacity: 0.34;
  background:
    linear-gradient(120deg, transparent 10%, rgba(184, 118, 19, 0.15), transparent 34%),
    linear-gradient(300deg, transparent 18%, rgba(10, 126, 121, 0.11), transparent 42%);
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

section {
  position: relative;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.content-section {
  padding: 96px 0;
}

.authority-section {
  padding: 34px 0 92px;
}

.section-panel {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.85vw, 4.45rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.3vw, 4.15rem);
  font-weight: 850;
}

h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

p {
  color: var(--muted);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 20px;
  background: #030407;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 207, 106, 0.55);
  color: var(--gold-2);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 50px rgba(216, 168, 62, 0.2);
}

.loader-line {
  width: 180px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.loader-line::before {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  animation: loadLine 1s infinite;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.particle-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle-layer span {
  position: absolute;
  bottom: -40px;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  border: 1px solid rgba(255, 207, 106, 0.72);
  background: rgba(216, 168, 62, 0.18);
  transform: rotate(45deg);
  animation: floatParticle var(--duration) linear infinite;
  animation-delay: var(--delay);
  opacity: 0.52;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 13, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body[data-theme="light"] .site-header {
  background: rgba(255, 250, 240, 0.72);
  border-color: rgba(166, 109, 18, 0.16);
}

.site-header.scrolled {
  background: rgba(5, 7, 13, 0.86);
  border-color: rgba(255, 216, 128, 0.16);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.35);
}

body[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 14px 48px rgba(90, 60, 20, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 207, 106, 0.52);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 207, 106, 0.22), rgba(66, 217, 200, 0.08)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.brand-mark img {
  width: 118px;
  max-width: none;
  height: 42px;
  object-fit: cover;
  object-position: 6% center;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

body[data-theme="light"] .brand small,
body[data-theme="light"] p,
body[data-theme="light"] .stat-card span:last-child,
body[data-theme="light"] .gallery-card figcaption span {
  color: rgba(55, 42, 25, 0.72);
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu a {
  color: rgba(247, 240, 223, 0.78);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

body[data-theme="light"] .primary-menu a {
  color: rgba(23, 17, 10, 0.76);
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--gold-2);
}

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  font-weight: 800;
  isolation: isolate;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.nav-cta {
  color: #140d03;
  background: linear-gradient(135deg, var(--gold-2), var(--saffron));
  box-shadow: 0 14px 44px rgba(216, 168, 62, 0.18);
  white-space: nowrap;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 207, 106, 0.24);
  border-radius: 999px;
  color: rgba(247, 240, 223, 0.86);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 207, 106, 0.48);
}

.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--saffron));
  box-shadow: 0 0 22px rgba(255, 207, 106, 0.3);
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #05070d;
  transition: opacity 0.2s ease;
}

body[data-theme="light"] .theme-toggle {
  color: #17110a;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(166, 109, 18, 0.25);
}

body[data-theme="light"] .theme-toggle-icon::after {
  opacity: 0;
}

.btn {
  min-width: 158px;
}

.btn::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #130d05;
  background: linear-gradient(135deg, var(--gold-2), var(--saffron));
  box-shadow: 0 18px 54px rgba(216, 168, 62, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 22px 70px rgba(255, 143, 42, 0.28);
}

.btn-ghost {
  border-color: rgba(255, 207, 106, 0.36);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
}

body[data-theme="light"] .btn-ghost {
  color: #17110a;
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(166, 109, 18, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  align-items: center;
  min-height: min(690px, 78svh);
  padding: 28px 0 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.94) 0%, rgba(3, 4, 7, 0.82) 37%, rgba(3, 4, 7, 0.36) 68%, rgba(3, 4, 7, 0.74) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.22), #05070d 98%);
}

body[data-theme="light"] .hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94) 0%, rgba(255, 250, 240, 0.82) 38%, rgba(255, 250, 240, 0.38) 70%, rgba(255, 250, 240, 0.78) 100%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), #fff8ea 98%);
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: none;
  transition: opacity 1.15s ease, filter 5.6s ease;
}

.hero-slide.active {
  opacity: 1;
  filter: saturate(1.05) contrast(1.03);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.94), rgba(3, 4, 7, 0.72) 44%, rgba(3, 4, 7, 0.22) 74%, rgba(3, 4, 7, 0.72)),
    radial-gradient(circle at 76% 34%, rgba(255, 207, 106, 0.22), transparent 28%);
}

body[data-theme="light"] .hero-slider::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.95), rgba(255, 250, 240, 0.78) 44%, rgba(255, 250, 240, 0.26) 74%, rgba(255, 250, 240, 0.8)),
    radial-gradient(circle at 76% 34%, rgba(184, 118, 19, 0.2), transparent 28%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 207, 106, 0.26), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(5, 7, 13, 0.7) 100%);
}

body[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 78% 42%, rgba(184, 118, 19, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(255, 248, 234, 0.8) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #05070d);
}

body[data-theme="light"] .hero::after {
  background: linear-gradient(180deg, transparent, #fff8ea);
}

.hero-light {
  position: absolute;
  inset: -20% -10% auto;
  height: 74%;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 5%, rgba(255, 207, 106, 0.16), transparent 46%),
    linear-gradient(250deg, transparent 16%, rgba(66, 217, 200, 0.12), transparent 42%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 207, 106, 0.28), transparent 22%);
  filter: blur(10px);
  opacity: 0.7;
  transform: translate3d(0, var(--hero-shift, 0), 0);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.72);
}

body[data-theme="light"] .hero-copy {
  text-shadow: 0 12px 48px rgba(255, 255, 255, 0.58);
}

.hero-subhead {
  max-width: 660px;
  color: rgba(247, 240, 223, 0.76);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.hero-authority {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 0;
}

.hero-authority span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 207, 106, 0.22);
  border-radius: 999px;
  color: rgba(255, 207, 106, 0.9);
  background: rgba(5, 7, 13, 0.46);
  font-size: 0.75rem;
  font-weight: 850;
}

body[data-theme="light"] .hero-authority span,
body[data-theme="light"] .hero-official-line span {
  color: #5c3a0a;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(166, 109, 18, 0.24);
}

.trust-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 16px;
  list-style: none;
}

.trust-lines li,
.tags span,
.contact-notes span {
  border: 1px solid rgba(255, 207, 106, 0.24);
  border-radius: 6px;
  color: rgba(247, 240, 223, 0.86);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
}

body[data-theme="light"] .trust-lines li,
body[data-theme="light"] .tags span,
body[data-theme="light"] .contact-notes span {
  color: rgba(23, 17, 10, 0.86);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(166, 109, 18, 0.2);
}

.trust-lines li {
  padding: 9px 12px;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-official-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-official-line span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-left: 2px solid var(--gold-2);
  border-radius: 4px;
  color: rgba(247, 240, 223, 0.8);
  background: rgba(5, 7, 13, 0.48);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 475px;
}

.city-chips {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.city-chips span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 207, 106, 0.3);
  border-radius: 6px;
  color: rgba(247, 240, 223, 0.86);
  background: rgba(5, 7, 13, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: chipDrift 7s ease-in-out infinite alternate;
}

.city-chips span:nth-child(1) {
  top: 18px;
  left: -8px;
}

.city-chips span:nth-child(2) {
  top: 82px;
  right: -6px;
  animation-delay: -1s;
}

.city-chips span:nth-child(3) {
  bottom: 140px;
  left: -10px;
  animation-delay: -2s;
}

.city-chips span:nth-child(4) {
  bottom: 70px;
  right: 16px;
  animation-delay: -3s;
}

.city-chips span:nth-child(5) {
  top: 230px;
  right: -20px;
  animation-delay: -4s;
}

.hero-photo-frame {
  position: absolute;
  inset: 14px 16px 0;
  margin: 0;
  border: 1px solid rgba(255, 207, 106, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(calc(-8deg + var(--tilt-y))) rotateX(calc(3deg + var(--tilt-x)));
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-photo-frame:hover {
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.58);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.76)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 70%, rgba(255, 207, 106, 0.16));
}

.hero-photo-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 207, 106, 0.22);
  border-radius: 6px;
  background: rgba(5, 7, 13, 0.74);
  backdrop-filter: blur(14px);
}

body[data-theme="light"] .hero-photo-frame figcaption,
body[data-theme="light"] .hero-brand-plate,
body[data-theme="light"] .hero-cycle-card {
  background: rgba(255, 250, 240, 0.76);
  border-color: rgba(166, 109, 18, 0.22);
}

.hero-photo-frame figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-photo-frame figcaption strong {
  color: var(--gold-2);
  text-align: right;
}

.hero-brand-plate {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  padding: 8px;
  border: 1px solid rgba(255, 207, 106, 0.24);
  border-radius: 6px;
  background: rgba(5, 7, 13, 0.68);
  backdrop-filter: blur(16px);
}

.hero-brand-plate img {
  width: 100%;
  border-radius: 4px;
}

.hero-cycle-card {
  position: absolute;
  top: 114px;
  right: 18px;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(255, 207, 106, 0.24);
  border-radius: 6px;
  background: rgba(5, 7, 13, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-cycle-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-cycle-card strong {
  display: block;
  margin-top: 2px;
  color: var(--gold-2);
}

.hero-slider-dots {
  position: absolute;
  right: 18px;
  bottom: 104px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slider-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-slider-dots button.active {
  width: 54px;
  background: linear-gradient(90deg, var(--gold-2), var(--saffron));
}

.award-visual {
  position: absolute;
  inset: 42px 22px 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 207, 106, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(20deg, rgba(66, 217, 200, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(900px) rotateY(-7deg) rotateX(4deg);
}

.award-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 207, 106, 0.12);
  background:
    linear-gradient(90deg, transparent, rgba(255, 207, 106, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 42px);
}

.award-ring {
  position: absolute;
  width: min(320px, 76%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 207, 106, 0.26);
  border-radius: 50%;
  background:
    conic-gradient(from 120deg, transparent, rgba(255, 207, 106, 0.25), transparent, rgba(66, 217, 200, 0.14), transparent);
  mask: radial-gradient(circle, transparent 57%, #000 58%);
  animation: rotateSlow 16s linear infinite;
}

.trophy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 22px 44px rgba(216, 168, 62, 0.24));
  animation: trophyFloat 5s ease-in-out infinite;
}

.trophy-cup {
  position: relative;
  width: 154px;
  height: 132px;
  border-radius: 8px 8px 62px 62px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.6), transparent 18%),
    linear-gradient(135deg, #ffedaa, #d8a83e 45%, #8a5f16);
  clip-path: polygon(14% 0, 86% 0, 74% 100%, 26% 100%);
}

.trophy-cup::before,
.trophy-cup::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 58px;
  height: 64px;
  border: 10px solid rgba(255, 207, 106, 0.78);
  border-radius: 8px;
}

.trophy-cup::before {
  left: -44px;
  border-right: 0;
}

.trophy-cup::after {
  right: -44px;
  border-left: 0;
}

.trophy-stem {
  width: 36px;
  height: 76px;
  background: linear-gradient(90deg, #8a5f16, #ffcf6a, #8a5f16);
}

.trophy-base {
  width: 184px;
  height: 56px;
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.35), transparent 18%),
    linear-gradient(135deg, #8a5f16, #ffcf6a 52%, #65400b);
}

.award-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 207, 106, 0.2);
  border-radius: 6px;
  background: rgba(5, 7, 13, 0.68);
  backdrop-filter: blur(14px);
}

.award-caption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.award-caption strong {
  color: var(--gold-2);
  text-align: right;
}

.stats-strip {
  padding: 56px 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body[data-theme="light"] .stats-strip {
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(166, 109, 18, 0.12);
}

.stats-strip .section-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) 1fr minmax(220px, 0.56fr);
  gap: 36px;
  align-items: center;
}

.stats-showcase {
  display: grid;
  gap: 10px;
}

.stats-showcase article {
  position: relative;
  min-height: 108px;
  border: 1px solid rgba(255, 207, 106, 0.16);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  transform: translateZ(0);
}

.stats-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.stats-showcase article:hover img {
  transform: scale(1.08);
  filter: saturate(1.18) contrast(1.08);
}

.stats-showcase article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.76), transparent 70%);
}

body[data-theme="light"] .stats-showcase article::after {
  background: linear-gradient(90deg, rgba(40, 22, 8, 0.66), transparent 70%);
}

.stats-showcase span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff3d2;
  font-size: 0.86rem;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.stats-intro h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.45rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card,
.program-card,
.edition-card,
.team-card,
.team-showcase,
.nomination-desk,
.timeline-step,
.vision-panel,
.impact-list,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

body[data-theme="light"] .stat-card,
body[data-theme="light"] .program-card,
body[data-theme="light"] .edition-card,
body[data-theme="light"] .team-card,
body[data-theme="light"] .team-showcase,
body[data-theme="light"] .nomination-desk,
body[data-theme="light"] .timeline-step,
body[data-theme="light"] .vision-panel,
body[data-theme="light"] .impact-list,
body[data-theme="light"] .contact-form,
body[data-theme="light"] .authority-points article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.58);
  border-color: rgba(166, 109, 18, 0.16);
  box-shadow: 0 16px 44px rgba(90, 60, 20, 0.11);
}

.stat-card {
  padding: 22px 18px;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stat-card span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.section-copy p {
  font-size: 1.04rem;
}

.vision-panel,
.impact-list {
  padding: 30px;
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.authority-copy {
  display: grid;
  align-content: center;
  padding: 28px;
  border-left: 2px solid rgba(255, 207, 106, 0.72);
  background:
    linear-gradient(100deg, rgba(255, 207, 106, 0.08), transparent),
    rgba(255, 255, 255, 0.025);
}

.authority-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
}

.authority-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.authority-points article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
}

.authority-points span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 207, 106, 0.36);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 900;
}

.authority-points strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.authority-points p {
  margin: 0;
  font-size: 0.92rem;
}

.panel-photo {
  width: 100%;
  aspect-ratio: 1.42;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 207, 106, 0.16);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.vision-panel h3,
.impact-list h3 {
  color: var(--gold-2);
}

.vision-panel ul,
.impact-list ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.vision-panel li,
.impact-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(247, 240, 223, 0.78);
}

.vision-panel li::before,
.impact-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-2);
  transform: rotate(45deg);
}

.program-grid,
.edition-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 288px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.program-card::before,
.gallery-card::before,
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 207, 106, 0.14), transparent);
  transform: translateX(-105%);
  transition: transform 0.7s ease;
}

.program-card:hover,
.edition-card:hover,
.team-card:hover,
.timeline-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 207, 106, 0.34);
}

.program-card:hover::before,
.gallery-card:hover::before,
.team-card:hover::before {
  transform: translateX(105%);
}

.program-card h3,
.program-card p,
.program-card .tags,
.program-card a {
  position: relative;
  z-index: 1;
}

.program-card h3 {
  min-height: 58px;
  margin-bottom: 16px;
}

.program-card p {
  min-height: 96px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.tags span {
  padding: 6px 8px;
  font-size: 0.75rem;
}

.program-card a {
  color: var(--gold-2);
  font-weight: 800;
}

.program-card a::after {
  content: ">";
  margin-left: 8px;
}

.nomination-desk {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 30px;
  padding: 18px;
  overflow: hidden;
}

.nomination-photo {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
}

.nomination-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nomination-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.74));
}

.nomination-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  color: rgba(247, 240, 223, 0.78);
  font-size: 0.82rem;
}

.nomination-copy {
  display: grid;
  align-content: center;
  padding: 12px 10px;
}

.nomination-copy h3 {
  max-width: 660px;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.official-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.official-grid article {
  min-height: 140px;
  padding: 16px;
  border: 1px solid rgba(255, 207, 106, 0.16);
  border-radius: 6px;
  background: rgba(5, 7, 13, 0.38);
}

.official-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
}

.official-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.edition-grid {
  grid-template-columns: repeat(3, 1fr);
}

.edition-card {
  position: relative;
  min-height: 364px;
  padding: 16px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.edition-visual,
.gallery-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #101421;
}

.edition-visual {
  height: 168px;
  margin-bottom: 18px;
}

.edition-visual::before,
.gallery-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 36px);
}

.edition-visual::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 20px;
  width: 120px;
  height: 62px;
  border: 1px solid rgba(255, 207, 106, 0.4);
  border-bottom: 7px solid rgba(255, 207, 106, 0.5);
  transform: skew(-10deg);
  background: rgba(255, 207, 106, 0.08);
}

.visual-india {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.66)), url("assets/images/winner-felicitation.jpg");
  background-position: center;
  background-size: cover;
}

.visual-dubai {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.66)), url("assets/images/showcase-stage-trophy.jpg");
  background-position: center;
  background-size: cover;
}

.visual-singapore {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.66)), url("assets/images/leadership-summit-panel.jpg");
  background-position: center;
  background-size: cover;
}

.visual-canada {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.66)), url("assets/images/audience-hall.jpg");
  background-position: center;
  background-size: cover;
}

.visual-london {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.66)), url("assets/images/red-carpet-arrivals.jpg");
  background-position: center;
  background-size: cover;
}

.visual-asia {
  background-image: linear-gradient(180deg, transparent, rgba(5, 7, 13, 0.66)), url("assets/images/networking-dinner.jpg");
  background-position: center;
  background-size: cover;
}

.edition-card h3,
.edition-card p,
.edition-card span {
  position: relative;
  z-index: 1;
}

.edition-card span {
  display: inline-block;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.border-flow {
  isolation: isolate;
}

.border-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent, rgba(255, 207, 106, 0.9), rgba(66, 217, 200, 0.46), transparent);
  background-size: 280% 100%;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: borderFlow 6s linear infinite;
}

.gallery-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025), transparent),
    rgba(255, 255, 255, 0.015);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 18px;
}

.gallery-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  break-inside: avoid;
}

.gallery-visual {
  height: 220px;
  border-radius: 0;
  border-width: 0 0 1px;
  transition: filter 0.55s ease;
}

.gallery-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card.tall .gallery-visual {
  height: 320px;
}

.gallery-card:hover .gallery-visual img {
  transform: scale(1.055);
  filter: saturate(1.18) brightness(1.08);
}

.gallery-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.38)),
    linear-gradient(110deg, transparent, rgba(255, 207, 106, 0.16), transparent);
  transform: translateX(-85%);
  transition: transform 0.7s ease;
}

.gallery-card:hover .gallery-visual::after {
  transform: translateX(85%);
}

.stage {
  background:
    linear-gradient(180deg, rgba(255, 207, 106, 0.2), transparent 36%),
    radial-gradient(ellipse at 50% 18%, rgba(255, 207, 106, 0.58), transparent 24%),
    linear-gradient(135deg, #17101a, #06111f 68%);
}

.conference {
  background:
    linear-gradient(100deg, rgba(66, 217, 200, 0.24), transparent 40%),
    linear-gradient(180deg, #11182a, #05070d);
}

.carpet {
  background:
    linear-gradient(160deg, rgba(206, 64, 91, 0.64), transparent 42%),
    linear-gradient(180deg, #160a12, #07101f);
}

.trophy-close {
  background:
    radial-gradient(ellipse at 48% 30%, rgba(255, 207, 106, 0.74), transparent 24%),
    linear-gradient(135deg, rgba(255, 143, 42, 0.34), transparent 38%),
    linear-gradient(180deg, #120d0b, #05070d);
}

.audience {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 32%),
    repeating-linear-gradient(0deg, rgba(255, 207, 106, 0.14) 0 2px, transparent 2px 20px),
    linear-gradient(135deg, #0c1424, #05070d);
}

.media-wall {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 50px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, rgba(255, 207, 106, 0.22), transparent 40%),
    linear-gradient(180deg, #10131f, #05070d);
}

.dinner {
  background:
    radial-gradient(ellipse at 50% 24%, rgba(255, 207, 106, 0.5), transparent 20%),
    linear-gradient(135deg, rgba(66, 217, 200, 0.18), transparent 42%),
    linear-gradient(180deg, #12101b, #05070d);
}

.felicitation {
  background:
    linear-gradient(125deg, rgba(255, 207, 106, 0.44), transparent 36%),
    linear-gradient(250deg, rgba(206, 64, 91, 0.34), transparent 42%),
    linear-gradient(180deg, #111322, #05070d);
}

.gallery-card figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 16px;
}

.gallery-card figcaption strong {
  font-size: 1rem;
}

.gallery-card figcaption span {
  color: var(--muted);
  font-size: 0.84rem;
}

.team-grid {
  grid-template-columns: repeat(6, 1fr);
}

.team-showcase {
  position: relative;
  margin: 0 0 22px;
  overflow: hidden;
}

.team-showcase img {
  width: 100%;
  aspect-ratio: 2.25;
  object-fit: cover;
}

.team-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.72));
}

.team-showcase figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: rgba(247, 240, 223, 0.82);
  font-size: 0.9rem;
}

.team-card {
  position: relative;
  padding: 14px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.portrait {
  position: relative;
  height: 170px;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 207, 106, 0.14);
  background: linear-gradient(180deg, #1a2032, #080b12);
}

.portrait::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 42%),
    #c58f65;
}

.portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 142px;
  height: 82px;
  border-radius: 52px 52px 0 0;
  transform: translateX(-50%);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 28%),
    #172743;
}

.portrait-one {
  background: linear-gradient(135deg, rgba(255, 207, 106, 0.25), rgba(7, 16, 31, 0.9));
}

.portrait-two {
  background: linear-gradient(135deg, rgba(206, 64, 91, 0.28), rgba(7, 16, 31, 0.9));
}

.portrait-three {
  background: linear-gradient(135deg, rgba(66, 217, 200, 0.22), rgba(7, 16, 31, 0.9));
}

.portrait-four {
  background: linear-gradient(135deg, rgba(255, 143, 42, 0.24), rgba(7, 16, 31, 0.9));
}

.portrait-five {
  background: linear-gradient(135deg, rgba(151, 169, 255, 0.22), rgba(7, 16, 31, 0.9));
}

.portrait-six {
  background: linear-gradient(135deg, rgba(247, 240, 223, 0.18), rgba(7, 16, 31, 0.9));
}

.team-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  font-size: 1rem;
}

.team-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  counter-reset: steps;
}

.timeline-step {
  position: relative;
  min-height: 260px;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 207, 106, 0.34);
  border-radius: 6px;
  color: var(--gold-2);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-step h3 {
  font-size: 1rem;
}

.timeline-step p {
  font-size: 0.9rem;
}

.cta-band {
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(115deg, rgba(255, 207, 106, 0.2), transparent 42%),
    linear-gradient(245deg, rgba(66, 217, 200, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 790px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.2vw, 4.15rem);
}

.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-notes span {
  padding: 9px 12px;
  font-size: 0.86rem;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(247, 240, 223, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(5, 7, 13, 0.64);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 207, 106, 0.58);
  box-shadow: 0 0 0 3px rgba(216, 168, 62, 0.13);
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--gold-2);
  font-size: 0.92rem;
}

.site-footer {
  padding: 58px 0 38px;
  background: #030407;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(130px, 0.65fr));
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-disclaimer {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(247, 240, 223, 0.66);
  font-size: 0.9rem;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: rgba(247, 240, 223, 0.68);
  font-size: 0.92rem;
}

.site-footer a:not(.brand):hover {
  color: var(--gold-2);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes loadLine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(210%);
  }
}

@keyframes ambientSweep {
  from {
    transform: translate3d(-2%, -1%, 0);
  }
  to {
    transform: translate3d(2%, 1%, 0);
  }
}

@keyframes floatParticle {
  from {
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  to {
    transform: translate3d(var(--drift), -110vh, 0) rotate(405deg);
  }
}

@keyframes borderFlow {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 280% 50%;
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes trophyFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes chipDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(12px);
  }
}

@media (max-width: 1180px) {
  .nav-cta {
    display: none;
  }

  .primary-menu {
    gap: 12px;
  }

  .primary-menu a {
    font-size: 0.82rem;
  }

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

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-strip .section-inner {
    grid-template-columns: minmax(260px, 0.8fr) 1fr;
  }

  .stats-showcase {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

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

  h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
  }
}

@media (min-width: 900px) and (max-height: 720px) {
  .hero {
    min-height: calc(100svh - 104px);
    padding: 12px 0 16px;
  }

  .hero-copy {
    padding: 8px 0;
  }

  h1 {
    max-width: 620px;
    margin-bottom: 16px;
    font-size: clamp(2.9rem, 4.45vw, 4.15rem);
  }

  .hero-subhead {
    max-width: 610px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-authority {
    margin-top: 14px;
  }

  .trust-lines,
  .hero-official-line {
    display: none;
  }

  .hero-visual {
    min-height: 408px;
  }

  .hero-photo-frame {
    inset: 10px 14px 0;
  }

  .hero-cycle-card {
    top: 104px;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-menu {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 207, 106, 0.18);
    border-radius: var(--radius);
    background: rgba(5, 7, 13, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .primary-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-menu a {
    display: block;
    padding: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid,
  .split-grid,
  .authority-grid,
  .stats-strip .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-photo-frame {
    inset-inline: 0;
    transform: none;
  }

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

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

  .gallery-masonry {
    column-count: 2;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .nomination-desk {
    grid-template-columns: 1fr;
  }

  .authority-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .content-section {
    padding: 72px 0;
  }

  .brand small {
    max-width: 170px;
  }

  .theme-toggle {
    position: absolute;
    right: 66px;
    width: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
  }

  .theme-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .primary-menu {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 34px;
    background-position: 68% center;
  }

  .hero-light {
    inset-inline: 0;
  }

  h1 {
    font-size: clamp(2.25rem, 8.8vw, 3rem);
  }

  .hero-grid {
    display: grid;
    gap: 26px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

  .hero-subhead {
    font-size: 0.98rem;
  }

  .hero-authority {
    gap: 7px;
  }

  .hero-authority span {
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .trust-lines {
    gap: 8px;
    margin: 20px 0 16px;
  }

  .trust-lines li {
    flex: 1 1 45%;
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .btn {
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    z-index: 2;
    width: 100%;
    min-height: 292px;
    opacity: 1;
    pointer-events: auto;
  }

  .city-chips {
    display: none;
  }

  .hero-photo-frame {
    position: relative;
    inset: auto;
    width: 100%;
    height: 292px;
    transform: none;
  }

  .hero-brand-plate,
  .hero-cycle-card {
    display: none;
  }

  .hero-photo-frame figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .stats-grid,
  .stats-showcase,
  .program-grid,
  .edition-grid,
  .team-grid,
  .timeline,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .gallery-card.tall .gallery-visual,
  .gallery-visual {
    height: 230px;
  }

  .nomination-desk {
    padding: 12px;
  }

  .nomination-photo {
    min-height: 260px;
  }

  .authority-section {
    padding: 18px 0 72px;
  }

  .authority-copy {
    padding: 22px 18px;
  }

  .authority-points article {
    min-height: auto;
  }

  .team-showcase img {
    aspect-ratio: 1.25;
  }

  .team-card {
    text-align: left;
  }

  .team-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 16px;
  }

  .portrait {
    height: 124px;
    margin-bottom: 0;
  }

  .timeline-step {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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