@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #070707;
  --bg-soft: #111111;
  --surface: #161616;
  --surface-alt: #1d1d1d;
  --card: rgba(18, 18, 18, 0.88);
  --line: rgba(255, 214, 10, 0.18);
  --line-strong: rgba(255, 214, 10, 0.36);
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --yellow: #ffd60a;
  --yellow-deep: #f5b700;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 10, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 214, 10, 0.08), transparent 24%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  line-height: 1.6;
}

.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;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

main {
  overflow: clip;
}

section {
  padding: 4.5rem 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  font-weight: 800;
}

.eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-brand h3,
.footer-brand-title {
  margin-top: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 84px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: #ffd100;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  padding: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-toggle:hover {
  background: #e6c200;
  transform: scale(1.05);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 209, 0, 0.5);
  outline-offset: 3px;
}

.burger-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: #000000;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

.burger-icon::before,
.burger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #000000;
  transition: transform 0.3s ease, top 0.3s ease;
}

.burger-icon::before {
  top: -7px;
}

.burger-icon::after {
  top: 7px;
}

.nav-toggle.active .burger-icon {
  background: transparent;
}

.nav-toggle.active .burger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .burger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.hero-banner,
.hero-home {
  position: relative;
  isolation: isolate;
}

.hero-banner {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 0;
}

.inner-page .hero-banner {
  min-height: 68vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-overlay,
.hero-dark-overlay {
  position: absolute;
  inset: 0;
}

.hero-image-overlay {
  z-index: 1;
  background-image: url('../images/overlaybg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.hero-dark-overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, 0.56) 0%, rgba(2, 2, 2, 0.68) 54%, rgba(2, 2, 2, 0.9) 100%),
    linear-gradient(115deg, rgba(255, 214, 10, 0.14), transparent 42%),
    radial-gradient(circle at 82% 22%, rgba(255, 214, 10, 0.1), transparent 22%);
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: calc(84px + 4rem) 0 5rem;
  display: grid;
  gap: 1.25rem;
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 760px;
}

.hero-banner-copy {
  max-width: 760px;
  padding: 1.5rem 0;
}

.hero-banner-copy h1 {
  max-width: 14ch;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero-home p,
.hero-banner p {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-banner .lead {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffe16a 100%);
  color: #101010;
  box-shadow: 0 18px 35px rgba(255, 214, 10, 0.18);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(255, 214, 10, 0.3);
}

.hero-banner .btn-secondary {
  border-color: rgba(255, 214, 10, 0.46);
  background: rgba(8, 8, 8, 0.42);
  color: var(--white);
}

.hero-banner .btn-secondary:hover {
  background: rgba(255, 214, 10, 0.12);
  border-color: rgba(255, 214, 10, 0.65);
}

.gate-page {
  min-height: 100vh;
}

.gate-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.gate-box {
  width: min(100%, 430px);
  padding: 2.4rem;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 214, 10, 0.18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  text-align: center;
}

.gate-box p {
  color: rgba(255, 255, 255, 0.84);
}

.gate-intro {
  margin-bottom: 0.25rem;
  font-weight: 800;
  color: var(--white);
}

.gate-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.gate-form input {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-align: center;
}

.gate-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.gate-form .btn {
  width: 100%;
}

.error-message {
  margin-top: 1rem;
  color: #ff6b6b;
  font-weight: 700;
}

.error-message[hidden] {
  display: none;
}

.gate-error {
  animation: gate-shake 360ms ease;
}

@keyframes gate-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.hero-stats,
.contact-strip,
.detail-grid,
.grid,
.value-grid,
.footer-grid,
.contact-grid,
.gallery-grid,
.event-grid,
.instructor-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.stat-card,
.card,
.panel,
.contact-card,
.value-card,
.footer-card,
.detail-card,
.form-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card,
.detail-card,
.contact-card,
.value-card,
.footer-card,
.form-card,
.panel {
  padding: 1.4rem;
}

.stat-card span,
.meta-label {
  display: block;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.stat-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.9) contrast(1.05) brightness(0.72);
}

.split-layout {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 214, 10, 0.24);
  background: linear-gradient(180deg, rgba(255, 214, 10, 0.12), rgba(255, 255, 255, 0.02));
}

.media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.event-banner {
  padding: 0;
}

.event-banner-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 214, 10, 0.18), rgba(255, 214, 10, 0.04)),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.95));
}

.kicker {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.carousel-shell {
  position: relative;
  overflow: visible;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem 1.25rem 1.5rem;
  margin: -1rem -1.25rem -1.5rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-card,
.event-card,
.album-card,
.instructor-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.gallery-card:hover,
.event-card:hover,
.album-card:hover,
.instructor-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.gallery-card,
.event-card,
.album-card {
  scroll-snap-align: start;
}

.card-media {
  aspect-ratio: 1.15;
  overflow: hidden;
}

.card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-card:hover .card-media img,
.event-card:hover .card-media img,
.album-card:hover .card-media img,
.instructor-card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.2rem;
}

.card-date {
  display: inline-flex;
  font-size: 0.82rem;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.carousel-controls {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.carousel-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.home-gallery-preview {
  position: relative;
  padding: 5.5rem 0;
  overflow: visible;
}

.home-gallery-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffd100;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  z-index: 0;
}

.home-gallery-preview .container {
  position: relative;
  z-index: 1;
}

.home-gallery-preview .section-heading {
  margin-bottom: 24px;
}

.home-gallery-preview .section-heading .eyebrow,
.home-gallery-preview .section-heading h2,
.home-gallery-preview .section-heading p {
  color: #111111;
}

.home-gallery-preview .section-heading .eyebrow::before {
  background: #111111;
}

.home-gallery-preview .carousel-button {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(17, 17, 17, 0.08);
  color: #111111;
}

.home-gallery-preview .carousel-button:hover {
  background: rgba(17, 17, 17, 0.14);
}

.home-gallery-preview .gallery-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.home-gallery-preview .gallery-card:hover {
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
}

.home-gallery-preview .gallery-card h3 {
  color: #111111;
}

.home-gallery-preview .gallery-card p {
  color: #373737;
}

.home-gallery-preview .card-date {
  color: #8c6400;
}

.club-values-section {
  position: relative;
  padding: 100px 0;
  overflow: visible;
}

.club-values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffd100;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  z-index: 0;
}

.club-values-section .container {
  position: relative;
  z-index: 1;
}

.club-values-section .section-heading h2 {
  color: #111111;
}

.club-values-section .section-heading p,
.club-values-section .value-card p {
  color: var(--muted);
}

.club-values-section .value-card {
  background: #111111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.instructor-section {
  padding: 100px 0;
}

.instructor-section .section-heading {
  margin-bottom: 32px;
}

.instructor-feature-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  background: #111111;
  border: 1px solid rgba(255, 209, 0, 0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

.instructor-image {
  min-height: 420px;
}

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

.instructor-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.instructor-content h3 {
  margin-bottom: 16px;
  color: #ffffff;
}

.instructor-content p {
  margin-bottom: 0;
  color: #d0d0d0;
  line-height: 1.7;
}

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

.contact-card a {
  color: var(--white);
}

.home-contact-cta,
.contact-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 100px 20px;
}

.cta-inner {
  width: 100%;
  max-width: 700px;
}

.contact-cta-card {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.contact-cta-card p {
  margin-bottom: 0;
  max-width: 34rem;
}

.cta-inner h2 {
  margin-bottom: 20px;
}

.cta-inner p {
  margin-bottom: 30px;
}

.cta-inner .btn {
  display: inline-block;
  margin: 0 auto;
}

.inner-page .hero-content {
  padding-top: calc(84px + 2.5rem);
  padding-bottom: 3rem;
}

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

.contact-grid {
  align-items: start;
}

.value-grid,
.instructor-grid,
.gallery-grid,
.event-grid,
.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  align-items: start;
}

.detail-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.detail-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.gallery-full-section {
  padding: 80px 0;
}

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

.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gallery-full-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: min(1100px, 90vw);
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #ffd100;
  color: #000000;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox-close:hover {
  background: #e6c200;
  transform: scale(1.05);
}

body.lightbox-open {
  overflow: hidden;
}

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

.list-clean li + li {
  margin-top: 0.75rem;
}

.contact-list,
.contact-item-list {
  display: grid;
  gap: 14px;
}

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

.contact-icon {
  color: #ffd100;
  width: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-text {
  color: #e0e0e0;
  line-height: 1.5;
  min-width: 0;
}

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

.contact-text a:hover {
  color: #ffd100;
}

.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.footer-grid {
  margin-bottom: 1.8rem;
}

.footer-card p,
.footer-card a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

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

.footer-links-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
}

.footer-links-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ffd100;
  border-radius: 50%;
}

.footer-links-list a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffd100;
  transform: translateX(4px);
}

.footer-contact .contact-item {
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #9f9f9f;
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
  color: #cccccc;
}

.form-card form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 0.95rem 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(255, 214, 10, 0.26);
  border-color: rgba(255, 214, 10, 0.35);
}

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

.notice {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 214, 10, 0.1);
  border: 1px solid rgba(255, 214, 10, 0.16);
  color: #f5e9a8;
  font-size: 0.95rem;
}

.placeholder-block {
  min-height: 220px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 214, 10, 0.3);
  background: linear-gradient(135deg, rgba(255, 214, 10, 0.08), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
}

.contact-map-frame {
  width: 100%;
  height: 320px;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(255, 214, 10, 0.18);
  box-shadow: var(--shadow);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

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

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

@media (max-width: 960px) {
  .split-layout,
  .grid.two-up,
  .detail-grid,
  .contact-grid,
  .value-grid,
  .instructor-grid,
  .gallery-grid,
  .event-grid,
  .footer-grid,
  .contact-strip,
  .hero-stats,
  .event-banner-inner,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    padding: 0.85rem;
    border-radius: 24px;
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-panel.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a {
    padding: 1rem;
  }

  .nav-links a::after {
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: scaleX(0);
    transform-origin: left;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: scaleX(1);
  }

  .hero-home {
    min-height: min(92vh, 880px);
  }

  .inner-page .hero-banner {
    min-height: 58vh;
  }

  .hero-content {
    padding-top: calc(84px + 3rem);
    padding-bottom: 4rem;
  }

  .media-card {
    min-height: 320px;
  }

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

  .instructor-image {
    min-height: 300px;
  }

  .instructor-content {
    padding: 28px 24px;
  }

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

  .contact-map-frame {
    height: 280px;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4rem 0;
  }

  .home-contact-cta,
  .contact-cta-section {
    min-height: auto;
    padding: 60px 20px;
  }

  .cta-inner h2 {
    font-size: 28px;
  }

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

  .gallery-full-item img {
    height: 260px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .home-gallery-preview {
    padding: 4.5rem 0;
  }

  .home-gallery-preview::before {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  }

  .club-values-section::before {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  }

  .nav-shell {
    min-height: 76px;
  }

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

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

  .hero-banner-copy {
    max-width: 100%;
    padding: 0.75rem 0 0;
  }

  .hero-banner .lead {
    max-width: 100%;
  }

  .inner-page .hero-banner {
    min-height: 52vh;
  }

  .gate-box {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .btn,
  button.btn {
    width: 100%;
  }

  .carousel-track {
    grid-auto-columns: 82%;
  }
}
