/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A24B;
  --gold-light: #D4AF6A;
  --gold-lighter: #E5C878;
  --gold-dark: #8A6A2A;
  --gold-deep: #B8860B;
  --bg: #0a0a0a;
  --bg-panel: #0d0c08;
  --bg-warm: #110f08;
  --text: #f2efe8;
  --text-dim: rgba(242, 239, 232, 0.78);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --hex: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover { color: var(--gold-light); }

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

@keyframes apxPulse { 0%, 100% { opacity: .35; } 50% { opacity: .65; } }
@keyframes apxMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

input::placeholder, textarea::placeholder { color: rgba(242, 239, 232, 0.35); }
input:focus, textarea:focus { outline: none; border-color: var(--gold) !important; }

/* ---------- Reusable ---------- */
.hex-bullet {
  width: 16px;
  height: 18px;
  background: var(--gold);
  clip-path: var(--hex);
  flex-shrink: 0;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.section-heading-center { justify-content: center; margin-bottom: 10px; }

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: 2px;
  background: linear-gradient(#fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-note {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
  margin: 0 0 44px;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 38px;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: transform .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--bg);
  font-weight: 600;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201, 162, 75, 0.3); color: var(--bg); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--text);
  background: transparent;
  transition: background .15s, transform .15s;
}
.btn-outline:hover { background: rgba(201, 162, 75, 0.12); color: var(--text); }
.btn-small { padding: 10px 22px; font-size: 14px; }
.btn-full { width: 100%; padding: 16px; }
.btn-ghost {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(201, 162, 75, 0.5);
  padding: 8px 16px;
  color: var(--text);
  clip-path: none;
}
.btn-ghost:hover { background: rgba(201, 162, 75, 0.12); color: var(--text); }

.hex-tile {
  width: 230px;
  height: 260px;
  clip-path: var(--hex);
  background: repeating-linear-gradient(135deg, rgba(212, 175, 106, 0.65) 0px, rgba(212, 175, 106, 0.65) 14px, rgba(201, 162, 75, 0.45) 14px, rgba(201, 162, 75, 0.45) 28px);
}
.hex-tile-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.6);
}
.hex-tile-inner span {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-lighter);
  text-align: center;
  padding: 0 12px;
}

.section { padding: 100px 5vw; max-width: 1100px; margin: 0 auto; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* reveal animation (JS toggles .is-visible) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 14px 5vw;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px;
  height: 38px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold-dark));
  clip-path: var(--hex);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--bg);
  padding-top: 2px;
}
.logo-mark-small { width: 28px; height: 32px; font-size: 16px; padding-top: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text);
}
.logo-text .accent { color: var(--gold); }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a:not(.btn) { color: var(--text); }
.nav-links a:not(.btn):hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.52) 55%, rgba(10,10,10,0.92) 100%);
  pointer-events: none;
}
.photo-credit {
  position: absolute;
  left: 14px;
  bottom: 10px;
  z-index: 2;
  font-size: 11px;
  color: rgba(242, 239, 232, 0.5);
}
.hero-hex {
  position: absolute;
  clip-path: var(--hex);
  pointer-events: none;
}
.hero-hex-1 {
  right: -90px;
  top: 12%;
  width: 340px;
  height: 380px;
  border: 1.5px solid rgba(201, 162, 75, 0.35);
  animation: apxPulse 5s ease-in-out infinite;
}
.hero-hex-2 {
  left: -60px;
  bottom: 10%;
  width: 200px;
  height: 224px;
  border: 1px solid rgba(201, 162, 75, 0.22);
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 80px 24px;
  max-width: 900px;
  pointer-events: none;
}
.eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 150px);
  line-height: 0.9;
  background: linear-gradient(#fff 0%, var(--gold-lighter) 35%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  letter-spacing: 14px;
  margin: 6px 0 22px;
  color: var(--text);
}
.hero-tagline {
  font-size: 17px;
  color: rgba(242, 239, 232, 0.75);
  margin: 0 auto 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 75, 0.3);
  border-bottom: 1px solid rgba(201, 162, 75, 0.3);
  background: var(--bg-panel);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: apxMarquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 40px;
}

/* ---------- About ---------- */
.about-copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 0 48px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.stat-card {
  border: 1px solid rgba(201, 162, 75, 0.35);
  background: linear-gradient(160deg, rgba(201, 162, 75, 0.09), rgba(10, 10, 10, 0));
  padding: 28px 26px;
  transition: transform .15s, box-shadow .15s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.stat-value {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(242, 239, 232, 0.7);
}

/* ---------- Gallery ---------- */
.gallery { padding-top: 60px; }
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.hex-tile-offset { margin-top: 40px; }

/* ---------- Rates ---------- */
.rates {
  padding: 100px 5vw;
  background: linear-gradient(var(--bg), var(--bg-warm) 50%, var(--bg));
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.rate-card {
  border: 1.5px solid var(--gold);
  background: var(--bg-panel);
  transition: transform .15s, box-shadow .15s;
}
.rate-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.4); }
.rate-card-header {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  padding: 14px 24px;
}
.rate-card-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--bg);
}
.rate-card-body { padding: 26px 24px 30px; }
.rate-table {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px 28px;
  align-items: baseline;
}
.rate-col-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.rate-row-label { font-size: 15px; color: var(--text); }
.rate-price {
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
}
.rate-footnote {
  font-size: 12px;
  color: rgba(242, 239, 232, 0.5);
  margin-top: 20px;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.service-card {
  border: 1px solid rgba(201, 162, 75, 0.35);
  background: var(--bg-panel);
  padding: 30px 26px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
}
.service-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 50px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold-dark));
  clip-path: var(--hex);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(242, 239, 232, 0.65);
}

/* ---------- Coaches ---------- */
.coaches { padding-top: 20px; }
.coaches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.coach-card {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.coach-card .hex-tile { width: 190px; height: 214px; }
.coach-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1.5px;
  color: var(--text);
}
.coach-role {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 8px;
}
.coach-bio {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 239, 232, 0.65);
}

/* ---------- Testimonials ---------- */
.testimonials { padding-top: 20px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.testimonial-card {
  border-left: 3px solid var(--gold);
  background: linear-gradient(120deg, rgba(201, 162, 75, 0.08), rgba(10, 10, 10, 0) 70%);
  padding: 30px 30px 26px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(242, 239, 232, 0.85);
  margin-bottom: 16px;
}
.testimonial-card figcaption {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
}

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(var(--bg), var(--bg-warm) 50%, var(--bg));
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.map {
  width: 100%;
  height: 260px;
  border: 1px solid rgba(201, 162, 75, 0.4);
  filter: grayscale(0.6) contrast(1.05);
}
.info-list {
  display: grid;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242, 239, 232, 0.8);
}
.info-list strong {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
}
.social-links { display: flex; gap: 18px; margin-top: 4px; }

.contact-form-wrap { position: relative; }
#contact-form { display: grid; gap: 16px; }
#contact-form[hidden] { display: none; }
#contact-form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.65);
}
#contact-form input,
#contact-form textarea {
  background: var(--bg-panel);
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--text);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .15s;
}
#contact-form textarea { resize: vertical; }

.contact-success {
  border: 1px solid rgba(201, 162, 75, 0.35);
  background: var(--bg-panel);
  padding: 32px 28px;
  text-align: center;
}
.contact-success-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-success-copy {
  font-size: 15px;
  color: rgba(242, 239, 232, 0.75);
  margin-bottom: 22px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(201, 162, 75, 0.25);
  padding: 44px 5vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer .logo-text { font-size: 18px; }
.footer-links {
  display: flex;
  gap: 22px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(242, 239, 232, 0.45);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--gold);
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold);
  font-size: 18px;
  clip-path: var(--hex);
  cursor: pointer;
  z-index: 60;
  transition: transform .15s, background .15s;
}
.back-to-top:hover { background: var(--gold); color: var(--bg); transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .nav-links { font-size: 13px; gap: 10px 16px; }
  .section { padding: 70px 6vw; }
}
