@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap");

:root {
  --brand-navy: #003f69;
  --accent-blue: #1764a4;
  --error-red: #ea1a2d;
  --charcoal: #2e2e2e;
  --near-black: #000000;
  --white: #ffffff;
  --border-gray: #e8e8e8;
  --accent: var(--error-red);
  --accent-dark: #cc1621;
  --ink: #232222;
  --muted: #6f6a68;
  --line: #ece6e3;
  --surface: #ffffff;
  --surface-soft: #f6f3f1;
  --surface-alt: #f2efed;
  --surface-dark: #252222;
  --container: 1200px;
  --shadow: 0 24px 60px rgba(24, 21, 21, 0.08);
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.1);
  --font-base: "Montserrat", sans-serif;
  --font-display: "Syne", "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-base);
  color: var(--ink);
  background: #fff;
}

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

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

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

[hidden] {
  display: none !important;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  background: #282425;
  color: var(--white);
}

.text-muted {
  color: var(--muted);
}

.accent {
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8c8683;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2,
.section-head h3,
.headline,
.mission-copy h2,
.footer-brand {
  margin: 0;
  line-height: 1.05;
}

.section-copy h2,
.section-copy h3 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-copy p {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  background: #252222;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, transform 160ms ease;
}

.btn:hover {
  background: #1d1a1b;
}

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

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--secondary {
  background: var(--white);
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.btn--secondary:hover {
  background: #f5f5f5;
}

.btn.light {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
}

.btn.light:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn.ghost {
  background: #fff;
  border: 1px solid #ebe4e1;
  color: #252222;
}

.btn.ghost:hover {
  background: #f7f4f2;
}

.button-row {
  margin-top: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  box-shadow: var(--card-shadow);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
}

.input,
.search-input {
  width: 100%;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input {
  min-height: 40px;
  padding: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.search-input {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.input:focus,
.search-input:focus {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(0, 63, 105, 0.1);
}

.input::placeholder,
.search-input::placeholder {
  color: #999999;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

.badge--primary {
  background: var(--error-red);
  color: var(--white);
}

.badge--secondary {
  background: var(--brand-navy);
  color: var(--white);
}

.badge--neutral {
  background: var(--border-gray);
  color: var(--charcoal);
}

.topbar {
  background: #131212;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  gap: 20px;
}

.topbar-links,
.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(236, 230, 227, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  gap: 24px;
  position: relative;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.logo small {
  display: block;
  margin-top: -3px;
  font-size: 9px;
  letter-spacing: 0.34em;
  color: #807977;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #47413f;
}

.nav-links > a,
.nav-item > a {
  position: relative;
  transition: color 160ms ease;
}

.nav-links > a:hover,
.nav-item > a:hover {
  color: var(--accent);
}

.nav-links > a.active,
.nav-item > a.active {
  color: var(--accent);
  position: relative;
}

.nav-links > a.active::after,
.nav-item > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: currentColor;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-item--mega {
  position: static;
}

.nav-item--mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: min(calc(100vw - 48px), var(--container));
  padding: 28px 28px 24px;
  border: 1px solid rgba(234, 26, 45, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 55px rgba(15, 31, 47, 0.12);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 30;
}

.nav-item--mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item--mega.is-open > a {
  color: var(--accent);
}

.nav-item--mega.is-open > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: currentColor;
}

.mega-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}

.mega-menu-head h3 {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.mega-menu-head p {
  max-width: 360px;
  margin: 0;
  color: #5f5a57;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: right;
  text-transform: none;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 58px;
}

.mega-menu-list {
  display: grid;
  gap: 18px;
}

.mega-menu-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(234, 26, 45, 0);
  color: #5b5451;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.mega-menu-list a::before {
  content: "\2192";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
}

.mega-menu-list a:hover,
.mega-menu-list a:focus-visible {
  color: var(--accent);
  border-color: rgba(234, 26, 45, 0.75);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-badge {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle,
.nav-submenu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle {
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 700;
}

.nav-toggle-label {
  line-height: 1;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-line {
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-item-row {
  display: contents;
}

.nav-submenu-toggle {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, #fbfaf9 0%, #fbfaf9 56%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: stretch;
  min-height: 640px;
}

.hero-copy {
  padding: 78px 36px 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 760px;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-search {
  width: min(100%, 460px);
  display: flex;
  align-items: center;
  border: 1px solid #ebe5e2;
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px 8px 22px;
  box-shadow: 0 14px 34px rgba(22, 22, 22, 0.06);
}

.hero-search input {
  flex: 1;
  border: 0;
  outline: none;
  color: #4b4442;
  background: transparent;
}

.hero-search button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
  padding-top: 20px;
}

.stat {
  position: relative;
}

.stat:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #ede8e6;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8d8684;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.95));
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.category-section {
  position: relative;
  padding: 86px 0 78px;
  background: linear-gradient(180deg, #f4f1ef 0%, #f8f6f4 100%);
  overflow: hidden;
}

.bg-word {
  position: absolute;
  left: -18px;
  bottom: 52px;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  user-select: none;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  position: relative;
  z-index: 1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.category-card {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid #e8e1de;
  background: rgba(255, 255, 255, 0.92);
  color: #393332;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(29, 25, 25, 0.04);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.category-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: scale(1.02);
}

.category-card::before {
  content: "+";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  border: 1px solid #f1d1d3;
  font-weight: 700;
  flex: 0 0 auto;
}

.venues {
  padding: 98px 0 92px;
}

.venues-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 40px;
  align-items: center;
}

.map-graphic {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1.6;
  margin-top: 36px;
}

.home-venue-map {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 611 / 350;
  margin-top: 36px;
}

.map-graphic-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-venue-map-points {
  position: absolute;
  inset: 0;
}

.home-venue-map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  z-index: 1;
}

.home-venue-map-point::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(238, 59, 66, 0.12);
  animation: mapPointPulse 2.4s ease-out infinite;
}

.home-venue-map-point-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(124, 24, 26, 0.18);
}

.home-venue-map-point-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(197, 185, 181, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(46, 36, 33, 0.18);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 160ms ease, transform 160ms ease;
}

.home-venue-map-point-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(197, 185, 181, 0.9);
  border-bottom: 1px solid rgba(197, 185, 181, 0.9);
  transform: translate(-50%, -7px) rotate(45deg);
}

.home-venue-map-point:hover,
.home-venue-map-point:focus-visible {
  z-index: 2;
}

.home-venue-map-point:hover .home-venue-map-point-card,
.home-venue-map-point:focus-visible .home-venue-map-point-card {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.home-venue-map-point-flag {
  font-size: 20px;
  line-height: 1;
}

.home-venue-map-point-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.home-venue-map-point-copy strong,
.home-venue-map-legend-item span {
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-venue-map-point-copy small,
.home-venue-map-legend-item small {
  color: #7b736f;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-venue-map-legend {
  display: none;
  max-width: 520px;
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-venue-map-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #f7f4f2;
  color: inherit;
  text-decoration: none;
}

@keyframes mapPointPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.map-graphic span {
  position: absolute;
  background: rgba(238, 59, 66, 0.18);
  border-radius: 56% 44% 50% 50%;
  filter: blur(0.2px);
}

.map-graphic span:nth-child(1) {
  left: 4%;
  top: 42%;
  width: 20%;
  height: 25%;
}

.map-graphic span:nth-child(2) {
  left: 22%;
  top: 26%;
  width: 18%;
  height: 20%;
}

.map-graphic span:nth-child(3) {
  left: 39%;
  top: 22%;
  width: 23%;
  height: 18%;
}

.map-graphic span:nth-child(4) {
  left: 54%;
  top: 26%;
  width: 20%;
  height: 16%;
}

.map-graphic span:nth-child(5) {
  left: 68%;
  top: 30%;
  width: 18%;
  height: 20%;
}

.map-graphic span:nth-child(6) {
  left: 29%;
  top: 51%;
  width: 13%;
  height: 22%;
}

.map-graphic span:nth-child(7) {
  left: 59%;
  top: 49%;
  width: 20%;
  height: 24%;
}

.map-graphic .pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 8px rgba(238, 59, 66, 0.12);
}

.map-graphic .pin.one {
  left: 50%;
  top: 36%;
}

.map-graphic .pin.two {
  left: 61%;
  top: 34%;
}

.map-graphic .pin.three {
  left: 76%;
  top: 40%;
}

.map-graphic .pin.four {
  left: 18%;
  top: 37%;
}

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

.venue-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #f7f4f2;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.flag {
  font-size: 24px;
  line-height: 1;
}

.venue-card small {
  display: block;
  margin-top: 4px;
  color: #948d8b;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.centered-section {
  padding: 92px 0;
  background: #f4f1ef;
  text-align: center;
}

.centered-intro {
  max-width: 740px;
  margin: 0 auto 34px;
}

.centered-intro h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.centered-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.logo-card {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 152px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 14px 32px rgba(33, 29, 29, 0.04);
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff0f1, #f9dfe1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.logo-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #4e4745;
  font-weight: 700;
}

.featured {
  padding: 96px 0 102px;
}

.quote {
  max-width: 360px;
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.course-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 34px rgba(30, 26, 26, 0.05);
}

.course-image {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.course-body {
  padding: 22px 20px 20px;
}

.course-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.course-meta {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  color: #8f8784;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.square-arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #252222;
  color: #fff;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.carousel-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: #44403f;
  cursor: pointer;
}

.mission {
  padding: 86px 0 88px;
  background: #282425;
  color: #fff;
}

.mission-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.mission-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.mission-card {
  padding: 12px 8px 0 0;
}

.mission-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 18px;
}

.mission-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.mission-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 14px;
}

.expertise {
  position: relative;
  padding: 98px 0;
  overflow: hidden;
}

.expertise .bg-word {
  top: 34px;
  bottom: auto;
  color: rgba(244, 240, 238, 0.95);
}

.expertise-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #f0d8da;
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}

.video-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.28), rgba(18, 18, 18, 0.08) 32%, rgba(18, 18, 18, 0.4));
  color: #fff;
}

.video-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.video-label {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  font-size: 26px;
}

.video-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.articles {
  padding: 34px 0 110px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px 20px;
}

.article-date {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 18px 0 12px;
  font-size: 18px;
  line-height: 1.4;
}

.article-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.read-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer {
  background: #252122;
  color: rgba(255, 255, 255, 0.84);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(130px, 0.7fr)) minmax(220px, 1fr);
  gap: 28px;
  padding: 58px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: var(--accent);
  font-size: 30px;
  font-weight: 800;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-address {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.9;
  font-size: 13px;
}

.footer-column h4,
.footer-contact h4 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-column a {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-contact {
  padding: 22px;
  border-left: 1px solid rgba(238, 59, 66, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.footer-contact a,
.footer-contact p {
  display: block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.socials a,
.socials span {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
}

.socials a:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0 34px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.footer-legal-copy {
  color: rgba(255, 255, 255, 0.52);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.page-hero--legal {
  background-image:
    linear-gradient(120deg, rgba(28, 25, 26, 0.82), rgba(230, 58, 70, 0.28)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.legal-rich-text {
  display: grid;
  gap: 24px;
}

.legal-rich-text section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.legal-rich-text h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.legal-rich-text p,
.legal-rich-text li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.legal-rich-text ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-side-stack {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.legal-nav {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.legal-nav a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.legal-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-meta-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f6 100%);
}

.legal-meta-card strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  color: var(--charcoal);
}

.legal-meta-card span {
  color: #8c8683;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 16, 17, 0.88), rgba(38, 17, 19, 0.54) 55%, rgba(18, 16, 18, 0.28));
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: var(--white);
  clip-path: polygon(0 48%, 100% 14%, 100% 100%, 0 100%);
}

.page-hero--course {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80");
}

.page-hero--catalog {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");
}

.page-hero--venue {
  background-image: url("https://images.unsplash.com/photo-1499092346589-b9b6be3e94b2?auto=format&fit=crop&w=1600&q=80");
}

.page-hero--about {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80");
}

.page-hero--contact {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 90px 0 110px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.breadcrumbs span:last-child {
  color: rgba(255, 255, 255, 0.96);
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero-title {
  max-width: 760px;
  margin: 18px 0 12px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-section {
  padding: 88px 0;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 30px;
  align-items: start;
}

body[data-page="course-details"] .page-layout {
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.55fr);
}

.content-stack,
.side-stack,
.content-block,
.form-stack,
.office-stack {
  display: grid;
  gap: 18px;
}

.side-stack {
  position: sticky;
  top: 108px;
}

.detail-card,
.sidebar-card,
.feature-panel,
.contact-panel,
.filter-panel,
.milestone-card,
.value-card,
.leadership-card,
.venue-showcase-card,
.office-card,
.stat-card,
.mini-card,
.faq-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(24, 20, 20, 0.05);
}

.detail-card,
.sidebar-card,
.feature-panel,
.contact-panel,
.filter-panel,
.value-card,
.leadership-card,
.venue-showcase-card,
.office-card,
.faq-card {
  padding: 24px;
}

.detail-card p,
.feature-panel p,
.contact-panel p,
.office-card p,
.sidebar-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.detail-card p + p,
.feature-panel p + p,
.contact-panel p + p,
.sidebar-card p + p,
.office-card p + p,
.faq-card p + p {
  margin-top: 12px;
}

.detail-card h3,
.feature-panel h3,
.sidebar-card h3,
.value-card h3,
.leadership-card h3,
.venue-showcase-card h3,
.office-card h3,
.faq-card h3,
.contact-panel h3,
.filter-panel h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.detail-list,
.icon-list,
.office-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li,
.icon-list li,
.office-list li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: #5f5957;
  font-size: 14px;
  line-height: 1.75;
}

.detail-list li::before,
.icon-list li::before,
.office-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 18px;
}

.schedule-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(22, 20, 20, 0.05);
  overflow: hidden;
}

.schedule-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #fff;
}

.schedule-card-head--red {
  border-bottom: 2px solid var(--accent);
}

.schedule-card-head--green {
  border-bottom: 2px solid #6ac36a;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid #f2ebea;
  font-size: 12px;
}

.schedule-table th {
  color: #978e8b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schedule-table td:last-child,
.schedule-table th:last-child {
  text-align: right;
}

.schedule-fee-cell {
  white-space: nowrap;
}

.schedule-fee-stack {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.schedule-register-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: #252222;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.schedule-register-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateX(1px);
}

.schedule-meta {
  padding: 16px 18px;
  color: #978e8b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-tile {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.live-tile-body {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 34px 24px;
  text-align: center;
}

.live-tile-body > div {
  width: 100%;
}

.live-tile-body strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-date-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #f2ebea;
  font-size: 12px;
  text-align: left;
}

.live-date-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.schedule-register-link--live {
  width: 30px;
  height: 30px;
}

.live-date-line:first-child {
  border-top: 0;
}

.live-date-line strong {
  margin-bottom: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.fee-with-vat {
  white-space: nowrap;
}

.fee-with-vat small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #978e8b;
}

.invoice-summary {
  display: grid;
  gap: 12px;
}

.registration-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.registration-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.registration-fact {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #f8f5f3;
}

.registration-fact span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #978e8b;
}

.registration-fact strong {
  font-size: 14px;
  color: var(--charcoal);
}

.registration-discount-box {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff8f7;
}

.registration-tier-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.registration-tier-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}

.registration-form-section {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #eee5e2;
}

.registration-form-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.registration-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.registration-form-head h4 {
  margin: 10px 0 8px;
  font-size: 24px;
}

.registration-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.registration-add-button {
  white-space: nowrap;
}

.participant-list {
  display: grid;
  gap: 16px;
}

.participant-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fbf8f7;
}

.participant-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.participant-card-head h4 {
  margin: 10px 0 0;
  font-size: 18px;
}

.participant-remove-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.participant-remove-button[hidden] {
  display: none;
}

.invoice-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f2ebea;
  font-size: 12px;
}

.invoice-line strong {
  font-size: 14px;
}

.invoice-line small {
  font-size: 10px;
  color: #978e8b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.invoice-line--total {
  border-bottom: 0;
  padding-bottom: 0;
}

.side-menu {
  display: grid;
}

.side-menu a {
  padding: 12px 0;
  border-top: 1px solid #f1e9e7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-menu a:first-child {
  border-top: 0;
}

.side-menu a.active,
.side-menu a:hover {
  color: var(--accent);
}

.register-card {
  background: linear-gradient(180deg, #ff4b58, #dc2432);
  color: var(--white);
}

.register-card h3,
.register-card p,
.register-card .mini-meta {
  color: inherit;
}

.register-card .btn {
  width: 100%;
  margin-top: 18px;
  background: var(--white);
  color: var(--charcoal);
}

.register-card .btn:hover {
  background: #f7f4f2;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-box {
  display: grid;
  gap: 14px;
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid #f1e9e7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-list {
  display: grid;
  gap: 16px;
}

.module-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(24, 20, 20, 0.05);
  overflow: hidden;
}

.module-day {
  display: grid;
  place-items: center;
  background: #f8f5f3;
  border-right: 1px solid var(--line);
  color: #948a87;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.module-day strong {
  display: block;
  margin-top: 8px;
  color: var(--charcoal);
  font-size: 38px;
  letter-spacing: -0.04em;
}

.module-body {
  padding: 20px 22px;
}

.module-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.module-body ul {
  margin: 0;
  padding-left: 18px;
  color: #5f5957;
  font-size: 14px;
  line-height: 1.8;
}

.partner-grid,
.value-grid,
.leadership-grid,
.venue-showcase-grid,
.milestone-grid,
.contact-card-grid,
.office-grid,
.stats-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.partner-card {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(22, 20, 20, 0.04);
  text-align: center;
}

.partner-card strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.partner-card span {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #948a87;
}

.cta-banner {
  padding: 36px 0;
  background: #2b2728;
  color: var(--white);
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.catalog-layout,
.contact-layout,
.split-feature,
.spotlight-layout,
.venue-map-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.catalog-layout {
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
}

.filter-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip.active,
.chip:hover {
  color: var(--accent);
  border-color: #f1d1d3;
}

.filter-panel {
  background: #f8f5f3;
}

.filter-group + .filter-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #eee5e3;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #514b49;
  font-size: 13px;
}

.checkbox-row input {
  accent-color: var(--accent);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-summary {
  color: #8c8481;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination a,
.pagination span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.pagination a.active,
.pagination span.active,
.pagination a:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

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

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: #8d8684;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.venue-showcase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.venue-showcase-card {
  padding: 0;
  overflow: hidden;
}

.venue-card-media {
  position: relative;
  margin: 18px 18px 0;
  overflow: hidden;
}

.venue-card-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.venue-showcase-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.venue-showcase-card-body {
  padding: 20px 22px 22px;
}

.venue-showcase-card p,
.leadership-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.venue-course-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.venue-course-meta-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.venue-course-meta-item strong {
  display: block;
  margin-bottom: 2px;
  color: #252222;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.venue-course-meta-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #252222;
}

.venue-course-meta-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1400px) {
  .venue-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.spotlight-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.spotlight-media img,
.split-feature-media img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.split-feature {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

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

.milestone-card {
  padding: 24px;
  background: #f8f5f3;
  border: 1px solid var(--line);
}

.milestone-card strong {
  display: block;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
}

.milestone-card span {
  display: block;
  margin-top: 10px;
  color: #8d8684;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.value-grid,
.leadership-grid,
.contact-card-grid,
.office-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leadership-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 18px;
}

.leadership-role {
  display: block;
  margin-bottom: 10px;
  color: #8d8684;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card-grid,
.office-grid {
  gap: 20px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.contact-panel--dark {
  background: #2a2627;
  color: var(--white);
}

.contact-panel--dark h3,
.contact-panel--dark p,
.contact-panel--dark li,
.contact-panel--dark a {
  color: inherit;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

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

.form-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #756d6a;
}

textarea.input {
  min-height: 160px;
  resize: vertical;
}

.contact-card {
  padding: 24px;
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.loading-state,
.empty-state {
  padding: 24px;
  border: 1px solid var(--line);
  background: #f8f5f3;
  color: #6f6a68;
  font-size: 14px;
  line-height: 1.8;
}

.page-loader {
  min-height: 220px;
  display: grid;
  place-items: center;
}

.loader-icon {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(37, 34, 34, 0.14);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: loader-spin 0.9s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.rich-text p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.map-box {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(0deg, rgba(234, 26, 45, 0.12), rgba(234, 26, 45, 0.12)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=80") center/cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
  .page-layout,
  .catalog-layout,
  .contact-layout,
  .split-feature,
  .spotlight-layout,
  .venue-map-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="course-details"] .page-layout {
    display: block;
  }

  body[data-page="course-details"] .side-stack {
    position: static;
    margin-top: 18px;
  }

  .registration-highlight,
  .registration-facts {
    grid-template-columns: 1fr;
  }

  .registration-form-head,
  .participant-card-head {
    flex-direction: column;
  }

  .catalog-grid,
  .venue-showcase-grid,
  .value-grid,
  .leadership-grid,
  .office-grid,
  .contact-card-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .side-stack {
    position: static;
  }
}

@media (max-width: 860px) {
  .page-hero {
    min-height: 320px;
  }

  .page-hero::after {
    height: 84px;
  }

  .cta-banner-inner,
  .filter-toolbar,
  .schedule-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .catalog-grid,
  .venue-showcase-grid,
  .value-grid,
  .leadership-grid,
  .contact-card-grid,
  .office-grid,
  .faq-grid,
  .legal-meta-grid,
  .stats-grid,
  .partner-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    grid-template-columns: 1fr;
  }

  .module-day {
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-layout,
  .schedule-grid {
    gap: 18px;
  }

  body[data-page="course-details"] .page-layout {
    gap: 18px;
  }

  body[data-page="course-details"] .page-hero-meta {
    gap: 10px 14px;
  }

  body[data-page="course-details"] .schedule-table thead {
    display: none;
  }

  body[data-page="course-details"] .schedule-table,
  body[data-page="course-details"] .schedule-table tbody,
  body[data-page="course-details"] .schedule-table tr,
  body[data-page="course-details"] .schedule-table td {
    display: block;
    width: 100%;
  }

  body[data-page="course-details"] .schedule-table tr {
    padding: 14px 18px;
    border-bottom: 1px solid #f2ebea;
  }

  body[data-page="course-details"] .schedule-table tr:last-child {
    border-bottom: 0;
  }

  body[data-page="course-details"] .schedule-table td {
    padding: 8px 0;
    border-bottom: 0;
    text-align: left;
  }

  body[data-page="course-details"] .schedule-table td::before {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #978e8b;
  }

  body[data-page="course-details"] .schedule-table td:nth-child(1)::before {
    content: "Date";
  }

  body[data-page="course-details"] .schedule-table td:nth-child(2)::before {
    content: "Venue";
  }

  body[data-page="course-details"] .schedule-table td:nth-child(3)::before {
    content: "Fee";
  }

  body[data-page="course-details"] .schedule-fee-cell,
  body[data-page="course-details"] .schedule-table td:last-child,
  body[data-page="course-details"] .schedule-table th:last-child {
    text-align: left;
  }

  body[data-page="course-details"] .schedule-fee-stack {
    flex-wrap: wrap;
    gap: 10px;
  }

  body[data-page="course-details"] .fee-with-vat {
    white-space: normal;
  }

  body[data-page="course-details"] .fee-with-vat small {
    display: block;
    margin-top: 4px;
  }

  body[data-page="course-details"] .live-date-line {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="course-details"] .live-date-actions {
    width: 100%;
    justify-content: space-between;
  }

  body[data-page="course-details"] .contact-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-side-stack {
    position: static;
  }
}

@media (max-width: 560px) {
  .page-hero-inner {
    padding: 72px 0 88px;
  }

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

  .detail-card,
  .sidebar-card,
  .feature-panel,
  .contact-panel,
  .filter-panel,
  .value-card,
  .leadership-card,
  .office-card,
  .faq-card,
  .contact-card,
  .stat-card {
    padding: 20px;
  }

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

  .page-hero-title {
    font-size: 2.2rem;
  }

  body[data-page="course-details"] .page-hero-meta {
    gap: 8px;
    font-size: 10px;
  }

  body[data-page="course-details"] .schedule-table tr {
    padding: 12px 14px;
  }

  body[data-page="course-details"] .schedule-card-head,
  body[data-page="course-details"] .schedule-meta,
  body[data-page="course-details"] .live-tile-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  body[data-page="course-details"] .side-menu a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 18px;
    font-size: 11px;
  }

  .mega-menu {
    width: min(calc(100vw - 32px), 980px);
    padding: 24px 22px 20px;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 36px;
  }

  .hero-inner,
  .category-layout,
  .venues-layout,
  .expertise-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

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

  .category-grid,
  .logo-grid,
  .course-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-contact {
    border-left: 0;
    border-top: 1px solid rgba(238, 59, 66, 0.5);
  }
}

@media (max-width: 980px) {
  .mega-menu {
    width: min(calc(100vw - 24px), 760px);
  }

  .home-venue-map-point-card {
    display: none;
  }

  .home-venue-map-legend {
    display: grid;
  }
}


.admin-section {
  background: linear-gradient(180deg, #f7f2ef 0%, #ffffff 22%, #ffffff 100%);
}

.admin-hero-inner {
  display: grid;
  gap: 24px;
}

.admin-hero-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.auth-shell {
  width: min(100%, 520px);
  margin: 0 auto;
}

.admin-shell-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.admin-shell-main {
  min-width: 0;
}

.admin-shell-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.admin-sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 242, 0.96)),
    #fff;
}

.admin-sidebar-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.admin-sidebar-card--brand {
  background: linear-gradient(160deg, #231f20 0%, #403638 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.admin-sidebar-card--brand .eyebrow,
.admin-sidebar-card--brand p {
  color: rgba(255, 255, 255, 0.74);
}

.admin-sidebar-card--brand h3 {
  margin: 16px 0 0;
  font-size: 30px;
  line-height: 1.05;
  color: var(--white);
}

.admin-sidebar-identity {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar-identity span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-sidebar-identity strong {
  font-size: 22px;
  color: var(--white);
}

.admin-side-nav {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid #ece1de;
  border-radius: 18px;
  background: #fff;
  color: var(--charcoal);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.admin-side-link-copy {
  display: grid;
  gap: 5px;
}

.admin-side-link-copy strong {
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.admin-side-link-copy small {
  color: #807675;
  font-size: 11px;
  line-height: 1.5;
}

.admin-side-link-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f5efed;
  color: #5c5351;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.admin-side-nav a:hover,
.admin-side-nav a.is-active {
  transform: translateX(4px);
  border-color: var(--accent);
  background: linear-gradient(135deg, #231f20, #3a3133);
  color: var(--white);
}

.admin-side-nav a:hover .admin-side-link-copy small,
.admin-side-nav a.is-active .admin-side-link-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.admin-side-nav a:hover .admin-side-link-index,
.admin-side-nav a.is-active .admin-side-link-index {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.admin-side-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #efe5e2;
  color: #5f5653;
  font-size: 13px;
}

.admin-side-stat:first-of-type {
  margin-top: 14px;
}

.admin-side-stat strong {
  color: var(--charcoal);
  font-size: 24px;
}

.admin-side-stat span {
  color: #7b7270;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-card,
.admin-stat-card,
.verify-result,
.admin-document-preview-card {
  border-radius: 24px;
}

.admin-stats-grid,
.admin-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 6px;
}

.admin-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.admin-action-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.admin-action-card .button-row {
  margin-top: 20px;
}

.admin-action-grid--dashboard .admin-action-card:last-child {
  grid-column: 1 / -1;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 24px;
}

.admin-overview-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8f4f2 100%);
}

.admin-overview-hero h3,
.admin-overview-aside h3 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.admin-overview-hero > p,
.admin-overview-aside > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.admin-overview-aside {
  align-self: start;
}

.admin-page-stack {
  display: grid;
  gap: 24px;
}

.admin-page-lead {
  background: linear-gradient(180deg, #ffffff 0%, #f8f4f2 100%);
}

.admin-page-lead h3 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.admin-page-lead p {
  max-width: 860px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.admin-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-mini-stat {
  padding: 20px;
  border: 1px solid #eadfdb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.admin-mini-stat span {
  color: #8a8180;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-mini-stat strong {
  display: block;
  margin-top: 14px;
  color: var(--charcoal);
  font-size: 28px;
  line-height: 1.05;
}

.admin-mini-stat p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.admin-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.admin-form-card {
  min-width: 0;
}

.admin-side-stack {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.admin-summary-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6f4 100%);
}

.admin-summary-card h3,
.admin-panel-muted h3,
.admin-form-card h3,
.admin-table-card h3 {
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: 1.12;
}

.admin-panel-muted {
  background: #fbf8f7;
}

.admin-panel-muted p,
.admin-form-card p,
.admin-table-card p,
.admin-summary-card p {
  color: var(--muted);
  line-height: 1.8;
}

.admin-summary-lines {
  margin-top: 18px;
}

.admin-key-value {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-key-value-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #ece3e0;
}

.admin-key-value-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.admin-key-value-row span {
  color: #7a716f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-key-value-row strong {
  color: var(--charcoal);
  font-size: 16px;
  text-align: right;
}

.admin-note-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.admin-note-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.admin-table-card {
  min-width: 0;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-kpi-card {
  padding: 20px;
  border: 1px solid #eadfdb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.admin-kpi-card span {
  color: #8a8180;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-kpi-card strong {
  display: block;
  margin-top: 14px;
  color: var(--charcoal);
  font-size: 34px;
  line-height: 1;
}

.admin-kpi-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.admin-status-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-status-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbf7f6;
}

.admin-status-item span {
  color: #8a8180;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-status-item strong {
  display: block;
  margin-top: 12px;
  color: var(--charcoal);
  font-size: 22px;
  line-height: 1.15;
}

.admin-status-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.admin-dashboard-panels {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.admin-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.admin-grid--secondary {
  align-items: start;
}

body[data-page="certificate-verification"] .admin-grid--secondary {
  grid-template-columns: 1fr;
}

body[data-page="certificate-verification"] .certificate-stage {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.admin-grid--tables {
  margin-top: 32px;
}

.admin-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

#admin-document-form {
  gap: 24px;
}

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

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-field--full,
.admin-form-grid .button-row {
  grid-column: 1 / -1;
}

.admin-form textarea.input {
  min-height: 140px;
  resize: vertical;
}

.button-row form {
  margin: 0;
}

.admin-alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.admin-alert--success {
  background: #edf7f1;
  border: 1px solid #cfe8d8;
  color: #215c37;
}

.admin-alert--error {
  background: #fff2f1;
  border: 1px solid #f3d2cf;
  color: #8a2424;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.admin-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.6;
}

.admin-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-table-link {
  color: var(--brand-navy);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.admin-table-link:hover {
  color: var(--accent);
}

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

.verify-result--success {
  border-color: #cfe8d8;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf6 100%);
}

.verify-result--error {
  border-color: #f0d6d2;
  background: linear-gradient(180deg, #ffffff 0%, #fff6f4 100%);
}

.admin-document-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-document-amount {
  min-width: 220px;
  padding: 24px;
  border-radius: 22px;
  background: var(--surface-soft);
}

.admin-document-amount h3,
.admin-stat-card h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
}

.admin-preview-actions {
  margin-top: 0;
}

.admin-preview-actions .btn,
.admin-preview-actions form {
  margin: 0;
}

#admin-document-summary {
  display: grid;
  gap: 14px;
}

.certificate-stage {
  display: grid;
  gap: 16px;
}

.certificate-stage-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(238, 59, 66, 0.1);
  color: #9d1a20;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.certificate-sheet {
  position: relative;
  width: 100%;
  aspect-ratio: 1492 / 1054;
  container-type: inline-size;
  border: 1px solid #e7dfdc;
  border-radius: 28px;
  overflow: hidden;
  background: #fff url("/Certficate-template.png") center center / cover no-repeat;
  box-shadow: 0 28px 48px rgba(42, 34, 32, 0.12);
}

.certificate-sheet-overlay {
  position: absolute;
  inset: 8.5% 6.5% 9% 34%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-sheet-barcode {
  position: absolute;
  top: 8.25%;
  right: 6.5%;
  width: min(20%, 190px);
  padding: 10px 12px;
  border: 1px solid rgba(218, 208, 204, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 28px rgba(42, 34, 32, 0.08);
}

.certificate-sheet-barcode img {
  display: block;
  width: 100%;
  height: auto;
}

.certificate-sheet-copy {
  width: min(100%, 74cqw);
  text-align: center;
}

.certificate-sheet-kicker {
  display: inline-block;
  color: #8f8683;
  font-size: clamp(7px, 1.35cqw, 10px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-wrap: balance;
}

.certificate-sheet-recipient {
  margin: 16px 0 0;
  color: #231f20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 5.6cqw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.certificate-sheet-line {
  margin: 12px auto 0;
  max-width: 600px;
  color: #5e5653;
  font-size: clamp(9px, 2.15cqw, 13px);
  line-height: 1.55;
  text-wrap: balance;
}

.certificate-sheet-course {
  margin: 14px auto 0;
  max-width: 680px;
  color: #c8232a;
  font-size: clamp(1rem, 3.9cqw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.certificate-sheet-line--support {
  max-width: 620px;
  color: #726967;
}

.certificate-sheet-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.certificate-sheet-meta-item {
  padding: 12px 14px;
  border: 1px solid rgba(218, 208, 204, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
}

.certificate-sheet-meta-item span {
  display: block;
  color: #918885;
  font-size: clamp(6px, 1.25cqw, 8px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.certificate-sheet-meta-item strong {
  display: block;
  margin-top: 8px;
  color: #231f20;
  font-size: clamp(9px, 2.05cqw, 12px);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.certificate-sheet-verification {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(218, 208, 204, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.certificate-sheet-qr {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 5px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(218, 208, 204, 0.95);
}

.certificate-sheet-qr img {
  display: block;
  width: 100%;
  height: 100%;
}

.certificate-sheet-verify-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.certificate-sheet-verify-copy span {
  color: #918885;
  font-size: clamp(6px, 1.25cqw, 8px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.certificate-sheet-verify-copy a {
  color: #c8232a;
  font-size: clamp(9px, 2cqw, 12px);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.certificate-sheet-verify-copy small {
  color: #726967;
  font-size: clamp(8px, 1.6cqw, 10px);
  line-height: 1.45;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .admin-shell-layout,
  .admin-overview-grid,
  .admin-workspace-grid,
  .admin-action-grid,
  .admin-stats-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-mini-stats,
  .admin-kpi-grid,
  .admin-action-grid--dashboard {
    grid-template-columns: 1fr;
  }

  .admin-shell-sidebar,
  .admin-side-stack {
    position: static;
  }

  .admin-document-header,
  .admin-hero-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .certificate-sheet-overlay {
    inset: 8% 5.5% 8% 33.5%;
  }

  .certificate-sheet-barcode {
    right: 5.5%;
    width: min(22%, 180px);
  }

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

  .certificate-sheet-verification {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-document-amount {
    width: 100%;
    min-width: 0;
  }

  .admin-table {
    min-width: 560px;
  }

  .certificate-sheet {
    border-radius: 20px;
  }

  .certificate-sheet-overlay {
    inset: 7% 5% 7% 31.5%;
  }

  .certificate-sheet-barcode {
    top: 6.5%;
    right: 5%;
    width: min(24%, 150px);
    padding: 8px 10px;
  }

  .certificate-sheet-meta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .certificate-sheet-meta-item {
    padding: 12px 14px;
  }

  .certificate-sheet-verification {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 14px;
  }

  .certificate-sheet-qr {
    margin: 0 auto;
  }

  .certificate-sheet-verify-copy {
    text-align: center;
  }
}

@media print {
  body[data-page="admin-certificate-preview"] .page-hero,
  body[data-page="admin-certificate-preview"] .admin-shell-sidebar,
  body[data-page="admin-certificate-preview"] .admin-alert,
  body[data-page="admin-certificate-preview"] .admin-grid,
  body[data-page="admin-certificate-preview"] .admin-preview-actions,
  body[data-page="certificate-verification"] .page-hero,
  body[data-page="certificate-verification"] .admin-grid > :not(.certificate-stage),
  body[data-page="certificate-verification"] .verify-result {
    display: none !important;
  }

  body[data-page="admin-certificate-preview"] .admin-shell-layout,
  body[data-page="certificate-verification"] .admin-grid {
    display: block;
  }

  body[data-page="admin-certificate-preview"] .container,
  body[data-page="certificate-verification"] .container {
    width: 100%;
    max-width: none;
  }

  body[data-page="admin-certificate-preview"] .certificate-sheet,
  body[data-page="certificate-verification"] .certificate-sheet {
    box-shadow: none;
    border: 0;
    break-inside: avoid;
  }
}

@media (max-width: 980px) {
  .mega-menu-head {
    flex-direction: column;
    gap: 12px;
  }

  .mega-menu-head p {
    max-width: none;
    text-align: left;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .topbar-inner,
  .section-head,
  .mission-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-inner {
    min-height: 72px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .navbar.is-mobile-menu-open .nav-links {
    display: flex;
  }

  .nav-links > a,
  .nav-item {
    width: 100%;
  }

  .nav-links > a,
  .nav-item-row > a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 14px 0;
  }

  .nav-links > a {
    border-bottom: 1px solid rgba(236, 230, 227, 0.9);
  }

  .nav-item {
    display: block;
    border-bottom: 1px solid rgba(236, 230, 227, 0.9);
  }

  .nav-item--mega::after {
    display: none;
  }

  .nav-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-item-row > a {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-submenu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-links > a.active::after,
  .nav-item > a.active::after,
  .nav-item--mega.is-open > a::after {
    display: none;
  }

  .mega-menu {
    display: none;
    position: static;
    width: 100%;
    padding: 0 0 14px;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
  }

  .nav-item--mega.is-open .mega-menu {
    display: block;
  }

  .mega-menu-head {
    margin: 4px 0 14px;
    gap: 10px;
  }

  .mega-menu-head p {
    max-width: none;
    text-align: left;
  }

  .mega-menu-grid,
  .mega-menu-list {
    gap: 0;
  }

  .mega-menu-list a {
    padding: 12px 0 12px 14px;
  }

  .navbar.is-mobile-menu-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar.is-mobile-menu-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .navbar.is-mobile-menu-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mega-menu {
    display: none;
  }

  .hero {
    background: #fbfaf9;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-stats,
  .category-grid,
  .venue-list,
  .logo-grid,
  .course-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .stat:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .topbar {
    display: none;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-copy,
  .category-section,
  .venues,
  .centered-section,
  .featured,
  .mission,
  .expertise,
  .articles {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-search {
    padding-left: 16px;
  }

  .btn,
  .hero-search button {
    min-height: 48px;
  }

  .play-button {
    width: 68px;
    height: 68px;
    font-size: 20px;
  }
}