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

:root {
  --black: rgb(23, 25, 24);
  --white: #ffffff;
  --deepskyblue: rgb(27, 181, 235);
  --gold: rgb(242, 205, 14);
  --skyblue: rgb(119, 202, 230);
  --silver: rgb(192, 188, 185);
  --darkgray: rgb(151, 157, 163);
  --peru: rgb(188, 135, 74);
  --brown: rgb(178, 62, 39);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--deepskyblue);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement-bar a { color: var(--black); font-weight: 700; text-decoration: underline; }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--black);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 64px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: center; }
nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  white-space: nowrap;
  transition: color 0.2s;
}
nav a:hover { color: var(--deepskyblue); }

/* underline only for direct nav <a> children (not dropdown trigger) */
nav > a { position: relative; }
nav > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--deepskyblue);
  transform: scaleX(0);
  transition: transform 0.2s;
}
nav > a:hover::after,
nav > a[aria-current="page"]::after { transform: scaleX(1); }
nav > a[aria-current="page"] { color: var(--deepskyblue); }

/* ─── NAV DROPDOWN ─── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-item > a::after {
  content: '▾';
  font-size: 9px;
  opacity: 0.6;
}
.nav-item.active > a { color: var(--deepskyblue); }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--black);
  border-top: 3px solid var(--deepskyblue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  min-width: 200px;
  z-index: 500;
  flex-direction: column;
}
.nav-item:hover .dropdown { display: flex; }
.dropdown a {
  padding: 12px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: rgba(27,181,235,0.15); color: var(--deepskyblue); }

.header-actions { display: flex; gap: 8px; flex-shrink: 0; }
.header-actions a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  background: var(--deepskyblue);
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}
.header-actions a:hover { background: var(--black); color: var(--deepskyblue); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.3s; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--deepskyblue); }
.mobile-nav-sub {
  padding: 6px 0 6px 20px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-sub a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 9px 0;
  border-bottom: none;
  color: var(--deepskyblue);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 32px;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  color: var(--white);
}

/* ─── HERO (HOME) ─── */
.hero {
  position: relative;
  min-height: 95vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(23,25,24,0.92) 40%, rgba(23,25,24,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 60px 140px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.hero-text { flex: 1; }
.hero-logo {
  width: auto;
  height: 100%;
  max-height: 400px;
  object-fit: contain;
  align-self: stretch;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.4));
  animation: heroFadeUp 0.7s 0.3s both;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deepskyblue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: heroFadeUp 0.7s 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--deepskyblue);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
  animation: heroFadeUp 0.7s 0.25s both;
}
.hero-title .accent {
  color: var(--deepskyblue);
  display: block;
  text-shadow: 0 0 60px rgba(27,181,235,0.3);
}
.hero-rule {
  width: 72px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
  animation: heroFadeUp 0.7s 0.38s both;
}
.hero-subtitle {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: heroFadeUp 0.7s 0.48s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s 0.6s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PAGE HERO (INNER PAGES) ─── */
.page-hero {
  position: relative;
  padding: 80px 32px 64px;
  background: var(--black);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(23,25,24,0.95) 45%, rgba(23,25,24,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
}
.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deepskyblue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--deepskyblue);
  flex-shrink: 0;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:hover { background: var(--white); color: var(--black); }
.btn-solid { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-solid:hover { background: transparent; color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: transparent; color: var(--black); border-color: var(--black); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-blue { background: var(--deepskyblue); color: var(--black); border-color: var(--deepskyblue); }
.btn-blue:hover { background: transparent; color: var(--deepskyblue); }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--deepskyblue);
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat-item + .stat-item { border-left: 1px solid rgba(23,25,24,0.2); }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--black);
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(23,25,24,0.65);
}

/* ─── SECTION WRAPPERS ─── */
.section { padding: 90px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--black); color: var(--white); }
.section-gray { background: rgba(192,188,185,0.12); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deepskyblue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deepskyblue);
  flex-shrink: 0;
}
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.section-dark .section-heading { color: var(--white); }
.section-sub {
  font-size: 16px;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.75;
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.service-card {
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-card-img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  filter: grayscale(30%);
  transition: transform 0.5s, filter 0.4s;
}
.service-card:hover .service-card-img { transform: scale(1.06); filter: grayscale(0%); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}
.service-card:hover .service-card-body { border-top-color: var(--deepskyblue); }
.service-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}
.service-card-body .btn {
  align-self: flex-start;
  font-size: 12px;
  padding: 10px 20px;
  border-color: rgba(255,255,255,0.3);
}
.service-card-body .btn:hover {
  background: var(--deepskyblue);
  border-color: var(--deepskyblue);
  color: var(--black);
}

/* ─── TRAINING DETAIL ─── */
.training-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.training-block:last-of-type { border-bottom: none; }
.training-block.reverse { direction: rtl; }
.training-block.reverse > * { direction: ltr; }
.training-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.training-info { display: flex; flex-direction: column; gap: 20px; }
.training-info p { font-size: 16px; line-height: 1.8; opacity: 0.75; font-weight: 300; }
.calendly-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-top: 32px;
  border-radius: 4px;
  overflow: hidden;
}
.calendly-side-img {
  width: 320px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.instagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.schedule-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  padding: 32px;
  margin-top: 32px;
  max-width: 640px;
}
.schedule-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 24px;
}
.schedule-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.schedule-card-sub {
  font-size: 13px;
  opacity: 0.5;
  font-weight: 300;
}
.schedule-limit-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30,144,255,0.12);
  border: 1px solid rgba(30,144,255,0.3);
  border-radius: 4px;
  padding: 10px 16px;
  flex-shrink: 0;
}
.schedule-limit-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--deepskyblue);
  line-height: 1;
}
.schedule-limit-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.4;
}
.schedule-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.schedule-col { flex: 1; }
.schedule-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deepskyblue);
  margin-bottom: 12px;
}
.schedule-times {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.schedule-times li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 3px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.slot-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
}
.slot-time em {
  font-style: normal;
  font-size: 11px;
  opacity: 0.5;
  font-weight: 400;
  margin-left: 1px;
}
.slot-sep {
  font-size: 12px;
  opacity: 0.3;
}
.schedule-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin: 0 8px;
}
.schedule-card-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.schedule-coming-soon {
  font-size: 12px;
  opacity: 0.35;
  font-weight: 300;
  font-style: italic;
}

/* ─── 7V7 / PRODUCT ─── */
.product-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-images { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.product-img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.product-img.featured { grid-column: span 3; aspect-ratio: 16/9; }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.04em;
  line-height: 1;
}
.product-note { font-size: 13px; opacity: 0.5; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── STAFF ─── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.staff-card { text-align: center; }
.staff-img-wrap { overflow: hidden; margin-bottom: 16px; }
.staff-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  filter: grayscale(40%);
  transition: filter 0.4s, transform 0.4s;
}
.staff-card:hover .staff-img { filter: grayscale(0%); transform: scale(1.04); }
.staff-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  line-height: 1.1;
}
.staff-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--deepskyblue);
  margin-bottom: 6px;
}
.staff-edu { font-size: 12px; opacity: 0.55; margin-bottom: 12px; line-height: 1.5; }
.staff-card a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--deepskyblue);
}
.staff-card a:hover { text-decoration: underline; }

/* ─── ABOUT ─── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-eyebrow-col .section-heading {
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
  margin-bottom: 0;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { font-size: 16px; line-height: 1.85; opacity: 0.8; font-weight: 300; }

/* ─── TESTIMONIALS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.review-card:hover { border-color: rgba(27,181,235,0.35); background: rgba(27,181,235,0.05); }
.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
  color: var(--deepskyblue);
  opacity: 0.12;
  position: absolute;
  top: 8px;
  left: 20px;
  pointer-events: none;
}
.stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}
.review-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── ONLINE PROGRAMMING ─── */
.online-prog-section {
  background: linear-gradient(135deg, rgb(15,120,175) 0%, var(--deepskyblue) 55%, rgb(85,205,240) 100%);
  padding: 100px 24px;
  text-align: center;
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.online-prog-section::before {
  content: 'ONLINE';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28vw;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(23,25,24,0.05);
  white-space: nowrap;
  pointer-events: none;
}
.online-prog-section .section-inner { position: relative; z-index: 1; }
.online-prog-section .section-label { color: rgba(23,25,24,0.55); justify-content: center; }
.online-prog-section .section-label::before { background: rgba(23,25,24,0.4); display: none; }
.online-prog-section .section-heading { color: var(--black); }
.online-prog-section .section-sub { color: rgba(23,25,24,0.65); margin: 0 auto 40px; }

/* ─── STORE COMING SOON ─── */
.store-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.store-section .section-heading { font-size: clamp(48px, 8vw, 100px); opacity: 0.15; }

/* ─── FACILITY SHOWCASE ─── */
.facility-hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: var(--black);
}
.facility-bg { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.facility-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--white);
  padding: 24px;
}
.facility-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.facility-overlay .section-heading { color: var(--white); margin-bottom: 16px; }
.facility-desc { font-size: 16px; max-width: 640px; opacity: 0.72; line-height: 1.75; font-weight: 300; }

/* ─── CONTACT SECTION ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--deepskyblue);
  margin-bottom: 6px;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
  font-weight: 300;
}
.contact-info-block a:hover { opacity: 1; color: var(--deepskyblue); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 24px 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 14px; opacity: 0.6; line-height: 1.75; margin-bottom: 14px; font-weight: 300; }
.footer-address { font-size: 13px; opacity: 0.5; line-height: 1.8; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: var(--deepskyblue);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; opacity: 0.6; transition: opacity 0.2s, color 0.2s; font-weight: 300; }
.footer-col ul li a:hover { opacity: 1; color: var(--deepskyblue); }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { opacity: 0.4; }
.newsletter-form input:focus { border-color: var(--deepskyblue); }
.newsletter-form button {
  background: var(--deepskyblue);
  color: var(--black);
  border: none;
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
  cursor: pointer;
}
.newsletter-form button:hover { opacity: 0.85; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.social-links a:hover { opacity: 1; border-color: var(--deepskyblue); color: var(--deepskyblue); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  opacity: 0.4;
  font-weight: 300;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--deepskyblue); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-40 { margin-bottom: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-left: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .product-section { grid-template-columns: 1fr; }
  .training-block { grid-template-columns: 1fr; gap: 32px; }
  .training-block.reverse { direction: ltr; }
  .instagram-grid { grid-template-columns: 1fr; }
  .calendly-row { flex-direction: column; }
  .calendly-side-img { width: 100%; height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .header-actions { display: none; }
  .hero-content { padding: 80px 32px 120px; }
  .hero-logo { display: none; }
}
@media (max-width: 640px) {
  .hero-inner { flex-direction: column; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-images { grid-template-columns: 1fr 1fr; }
  .product-img.featured { grid-column: span 2; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-content { padding: 60px 24px 100px; }
  .section { padding: 60px 24px; }
}
