:root {
  color-scheme: dark;
  --red-500: #e01d24;
  --red-600: #c3161c;
  --red-700: #991219;
  --charcoal-900: #090909;
  --charcoal-800: #121212;
  --charcoal-700: #1c1c1c;
  --neutral-100: #f3f2ee;
  --neutral-300: #c9c6c0;
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.25);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: "Bebas Neue", "Arial Black", sans-serif;
  --font-body: "Sora", "Trebuchet MS", sans-serif;
  --header-height: 88px;
  --promo-height: clamp(280px, 32vw, 420px);
  --promo-height-compact: clamp(160px, 18vw, 220px);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  /* scroll-padding-top: calc(var(--header-height) + 200px); */
}

body {
  font-family: var(--font-body);
  /* scroll-padding-top: calc(var(--header-height) + 200px); */
  background: radial-gradient(circle at 15% 20%, rgba(224, 29, 36, 0.25), transparent 50%),
    linear-gradient(140deg, #050505 0%, #0b0b0b 40%, #1a1a1a 100%);
  color: var(--neutral-100);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.page::before {
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(224, 29, 36, 0.8), transparent 60%);
}

.page::after {
  bottom: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8vw;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 0;
  flex-wrap: wrap;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  margin-left: auto;
  padding: 10px 12px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--neutral-100);
  border: 1px solid rgba(255, 255, 255, 0.12);
  align-self: center;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--neutral-100);
  transition: background 0.2s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--neutral-100);
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header.is-open {
  background: rgba(8, 8, 8, 0.95);
}

.site-header.is-open .site-nav,
.site-header.is-open .header-actions {
  display: flex;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  gap: 2px;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 6px 2px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--neutral-100);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red-500);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-btn {
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.2em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--neutral-100);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 80px 8vw 80px;
  z-index: 1;
  scroll-snap-align: start;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 10px 0 12px;
}

.lead {
  font-size: 18px;
  line-height: 1.5;
  max-width: 560px;
  color: var(--neutral-300);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn {
  display: grid;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0.08em;
  text-align: center;
  align-items: flex-start;
}

.contact-btn span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.contact-btn strong {
  font-size: 16px;
  letter-spacing: 0.14em;
}

.btn.primary {
  background: rgba(224, 29, 36, 0.18);
  color: var(--neutral-100);
  box-shadow: none;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
}

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

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

.hero-pills span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.announcement {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(224, 29, 36, 0.2), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(224, 29, 36, 0.4);
  box-shadow: var(--shadow-soft);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(224, 29, 36, 0.2);
  border: 1px solid rgba(224, 29, 36, 0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  width: max-content;
}

.tag.light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.announcement h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.announcement p {
  color: var(--neutral-300);
}

.announcement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-image: var(--image, none),
    linear-gradient(140deg, rgba(224, 29, 36, 0.2), rgba(0, 0, 0, 0.85));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 60%);
}

.image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll span {
  width: 48px;
  height: 1px;
  background: var(--red-500);
  display: inline-block;
}

.section {
  position: relative;
  padding: 120px 8vw;
  z-index: 1;
  scroll-snap-align: start;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.align-right {
  margin-left: auto;
  text-align: right;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: 0.08em;
  margin: 14px 0 16px;
  text-transform: uppercase;
}

.section-lead {
  color: var(--neutral-300);
  font-size: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.benefits-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(224, 29, 36, 0.18), rgba(0, 0, 0, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.benefits-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.benefits-media {
  width: min(280px, 100%);
  aspect-ratio: 3 / 4;
  justify-self: end;
  border-radius: var(--radius-lg);
  background-image: var(--image, none),
    linear-gradient(140deg, rgba(224, 29, 36, 0.2), rgba(0, 0, 0, 0.85));
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.benefits-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 12px 0 16px;
}

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

.benefits-list span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(16, 16, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p {
  color: var(--neutral-300);
}

.sifu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.sifu-portrait {
  min-height: 360px;
  border-radius: var(--radius-lg);
  background-image: var(--image, none),
    linear-gradient(140deg, rgba(224, 29, 36, 0.2), rgba(0, 0, 0, 0.85));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.sifu-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

.portrait-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}

.sifu-content p {
  color: var(--neutral-300);
  margin-bottom: 20px;
}

.sifu-highlights {
  display: grid;
  gap: 16px;
}

.sifu-highlights h4 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.instructor-photo {
  min-height: 340px;
  border-radius: var(--radius-lg);
  background-image: var(--image, none),
    linear-gradient(140deg, rgba(224, 29, 36, 0.2), rgba(0, 0, 0, 0.85));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.instructor-content p {
  color: var(--neutral-300);
  margin-bottom: 20px;
}

.instructor-highlights {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.instructor-highlights h4 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sihing-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  margin-top: 22px;
  border-radius: var(--radius-md);
  background: rgba(12, 12, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sihing-photo {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background-image: var(--image, none);
  background-size: cover;
  background-position: center;
}

.sihing-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sihing-info p {
  color: var(--neutral-300);
  margin-bottom: 8px;
}

.sihing-info a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

blockquote {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 2px solid var(--red-500);
  background: rgba(224, 29, 36, 0.1);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--neutral-300);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.location-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(12, 12, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 20px;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card p {
  color: var(--neutral-300);
}

.schedule {
  display: grid;
  gap: 12px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-row span:last-child {
  text-align: right;
}

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

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(224, 29, 36, 0.16);
  border: 1px solid rgba(224, 29, 36, 0.5);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

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

.gallery-grid > :last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.gallery-tile {
  min-height: 220px;
  border-radius: var(--radius-md);
  background-image: var(--image, none),
    linear-gradient(140deg, rgba(224, 29, 36, 0.3), rgba(0, 0, 0, 0.85));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

.gallery-video {
  background: #0b0b0b;
}

.gallery-video::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 60%);
}

.gallery-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

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

.promo-tile {
  position: relative;
  height: var(--promo-height-compact);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0b0b;
  box-shadow: var(--shadow-soft);
}

.promo-main {
  height: var(--promo-height);
}

.promo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

.promo-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-portrait {
  height: var(--promo-height-compact);
  width: 100%;
}

.promo-portrait video {
  object-fit: cover;
}

.promo-center {
  grid-column: 1 / -1;
  width: min(45%, 480px);
  justify-self: center;
}

.video-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.promo-head {
  max-width: 560px;
  margin: 0 0 26px;
}

.promo-head h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 0.98;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 12px 0;
}

.video-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0b0b;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.video-tile iframe,
.video-tile video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-tile video {
  object-fit: cover;
  background: #000;
}

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

.news-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.news-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card p {
  color: var(--neutral-300);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.map-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.map-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-card p {
  color: var(--neutral-300);
}

.cta {
  padding-bottom: 120px;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(224, 29, 36, 0.3), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(224, 29, 36, 0.4);
  box-shadow: var(--shadow-strong);
}

.cta-inner > div:first-child {
  align-self: center;
}

.cta-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.cta-actions .contact-btn {
  max-width: none;
}

.cta-actions .contact-btn:first-child {
  max-width: none;
}

.cta-actions .contact-btn span {
  font-size: 10px;
  letter-spacing: 0.14em;
}

.cta-actions .contact-btn strong {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.cta-panel {
  display: grid;
  gap: 16px;
}

.cta-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cta-item .text-link {
  display: inline-block;
  margin-top: 6px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.social-links a {
  color: var(--neutral-100);
}

.social-sep {
  color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  padding: 40px 8vw 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer strong {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-100);
}

.powered {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 961px) {
  .site-header {
    flex-wrap: nowrap;
  }
}

@media (max-width: 1280px) {
  .site-header {
    padding: 16px 6vw;
    gap: 16px;
  }

  .site-nav {
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .header-btn {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-actions {
    display: none;
    width: 100%;
  }
}

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

@media (min-width: 960px) {
  .instructor.alt .instructor-photo {
    order: 2;
  }

  .instructor.alt .instructor-content {
    order: 1;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    padding: 14px 6vw 16px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .brand {
    flex: 1;
    order: 1;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
    margin-top: 3px;
  }

  .site-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .site-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
    order: 3;
    text-align: center;
  }

  .header-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    order: 4;
  }

  .header-actions .btn {
    margin: 0 auto;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 0;
  }


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

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

  .promo-center {
    width: min(75%, 480px);
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 90px 6vw 70px;
  }

  .section {
    padding: 110px 6vw;
  }

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

  .gallery-grid > :last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(420px, 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
    --promo-height: clamp(260px, 75vw, 380px);
    --promo-height-compact: clamp(180px, 50vw, 240px);
  }

  .site-header {
    padding: 12px 6vw 14px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 0.96;
  }

  .lead,
  .section-lead {
    font-size: 15px;
  }

  .section-head h2 {
    font-size: clamp(28px, 7.5vw, 38px);
    line-height: 0.96;
  }

  .announcement h3 {
    font-size: 25px;
  }

  .card h3 {
    font-size: 24px;
  }

  .sifu-highlights h4 {
    font-size: 22px;
  }

  .location-card h3 {
    font-size: 26px;
  }

  .news-card h4 {
    font-size: 22px;
  }

  .sihing-info h4 {
    font-size: 20px;
  }

  .cta-item h4 {
    font-size: 20px;
  }

  .benefits-card {
    padding: 32px;
  }

  .benefits-media {
    width: 100%;
    aspect-ratio: 4 / 5.3;
    justify-self: stretch;
  }

  .news-card {
    padding: 26px;
  }

  .cta-item {
    padding: 20px;
  }

  .grid-3,
  .location-grid {
    gap: 30px;
  }

  .gallery-grid,
  .video-collage,
  .news-grid {
    gap: 28px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promo-portrait {
    max-height: 320px;
  }

  .promo-center {
    width: 100%;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .site-nav {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .section,
  .hero {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .header-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }

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

  .sihing-photo {
    width: 100%;
    height: 200px;
  }

  .video-collage {
    grid-template-columns: 1fr;
  }

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

  .hero-scroll {
    letter-spacing: 0.18em;
  }

  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .benefits-media {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
