/* ==============================================
   AURUM PERFORMANCE CLUB — style.css
   Theme: #06060a ultra dark / #d4a84b gold / #f0ece4 platinum
   Fonts: Cormorant Garamond (headings) + Inter (body)
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #06060a;
  --bg2: #09090f;
  --bg3: #0d0d16;
  --gold: #d4a84b;
  --gold2: #e8c470;
  --plat: #f0ece4;
  --text: #e8e4dc;
  --muted: rgba(232,228,220,0.4);
  --border: rgba(212,168,75,0.15);
  --grad: linear-gradient(135deg, #d4a84b, #f0ece4, #d4a84b);
}

html { scroll-behavior: smooth; cursor: none; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; cursor: none; }

/* ---- CUSTOM CURSOR ---- */
.cursor-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; transform: translate(-50%,-50%); pointer-events: none; z-index: 99999; transition: transform 0.1s; }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(212,168,75,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; transform: translate(-50%,-50%); pointer-events: none; z-index: 99998; transition: transform 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s; }
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring { width: 50px; height: 50px; border-color: var(--gold); }
* { cursor: none !important; }

/* ---- PAGE LOADER ---- */
.page-loader { position: fixed; inset: 0; background: var(--bg); z-index: 99990; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.8rem; transition: opacity 0.8s ease; }
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-brand { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; letter-spacing: 10px; text-transform: uppercase; color: var(--gold); }
.loader-line { width: 200px; height: 1px; background: rgba(212,168,75,0.2); position: relative; overflow: hidden; }
.loader-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: load 1.4s ease forwards; }
@keyframes load { to { left: 100%; } }
.loader-tagline { font-size: 0.6rem; letter-spacing: 5px; text-transform: uppercase; color: var(--muted); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- NAV ---- */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 3rem; transition: all 0.5s; }
.site-nav.scrolled { background: rgba(6,6,10,0.96); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); padding: 1rem 3rem; }
.nav-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; text-decoration: none; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; }
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { border: 1px solid rgba(212,168,75,0.4); color: var(--gold); padding: 0.6rem 1.5rem; border-radius: 2px; font-size: 0.6rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.nav-cta:hover { background: rgba(212,168,75,0.08); border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: all 0.3s; }
.mobile-nav { display: none; }

/* ---- HERO ---- */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(212,168,75,0.06) 0%, transparent 65%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; max-width: 900px; }
.hero-eyebrow { display: inline-block; font-size: 0.58rem; font-weight: 500; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.8rem, 8vw, 8rem); font-weight: 600; line-height: 0.95; letter-spacing: -1px; color: var(--plat); margin-bottom: 1.8rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--muted); max-width: 520px; margin: 0 auto 2.8rem; line-height: 2; letter-spacing: 0.2px; }
.hero-cta { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero-divider { width: 60px; height: 1px; background: var(--gold); margin: 2.5rem auto; opacity: 0.4; }

/* ---- BUTTONS ---- */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, #d4a84b, #e8c470); color: #06060a; padding: 0.9rem 2.2rem; border-radius: 2px; font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; border: none; transition: opacity 0.3s, transform 0.3s; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--gold); padding: 0.9rem 2.2rem; border-radius: 2px; font-size: 0.6rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(212,168,75,0.35); transition: all 0.3s; }
.btn-outline:hover { background: rgba(212,168,75,0.06); border-color: var(--gold); }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; display: block; }

/* ---- GENERAL ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 2rem; }
.section-alt { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-label { font-size: 0.55rem; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); display: inline-block; margin-bottom: 1.2rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; color: var(--plat); line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 0.88rem; color: var(--muted); line-height: 2; max-width: 520px; margin-top: 1rem; }
.gold-line { width: 50px; height: 1px; background: var(--gold); margin: 1.5rem auto 0; opacity: 0.5; }

/* ---- AMENITIES ---- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.amenity-card { background: var(--bg); padding: 2.5rem 2rem; transition: background 0.4s; }
.amenity-card:hover { background: rgba(212,168,75,0.03); }
.amenity-icon { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.amenity-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--plat); margin-bottom: 0.6rem; }
.amenity-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }

/* ---- PROGRAMS ---- */
.programs-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.program-item { background: var(--bg); padding: 2rem 2.5rem; display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 2rem; transition: background 0.3s; }
.program-item:hover { background: rgba(212,168,75,0.03); }
.prog-num { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: rgba(212,168,75,0.3); }
.prog-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--plat); margin-bottom: 0.3rem; }
.prog-info p { font-size: 0.8rem; color: var(--muted); }
.prog-tag { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,168,75,0.2); padding: 0.3rem 0.8rem; border-radius: 2px; white-space: nowrap; }

/* ---- TRAINERS ---- */
.trainers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trainer-card { background: rgba(212,168,75,0.02); border: 1px solid var(--border); padding: 2.5rem 1.5rem; text-align: center; transition: all 0.4s; }
.trainer-card:hover { background: rgba(212,168,75,0.04); border-color: rgba(212,168,75,0.35); }
.trainer-avatar { font-size: 3rem; display: block; margin-bottom: 1.2rem; }
.trainer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--plat); margin-bottom: 0.3rem; }
.trainer-spec { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.trainer-exp { font-size: 0.78rem; color: var(--muted); }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); max-width: 950px; margin: 0 auto; }
.pricing-card { background: var(--bg); padding: 3rem 2.5rem; position: relative; transition: background 0.4s; }
.pricing-card.featured { background: rgba(212,168,75,0.04); }
.pricing-card.featured::before { content: 'Most Requested'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #06060a; font-size: 0.5rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 0.3rem 1rem; white-space: nowrap; }
.pricing-name { font-size: 0.55rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 600; color: var(--plat); line-height: 1; margin-bottom: 0.3rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--muted); font-family: 'Inter', sans-serif; }
.pricing-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--border); line-height: 1.7; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.5rem; }
.pricing-features li { font-size: 0.82rem; color: var(--muted); padding-left: 1.4rem; position: relative; }
.pricing-features li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; }

/* ---- TESTIMONIALS ---- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.t-card { background: rgba(212,168,75,0.02); border: 1px solid var(--border); padding: 2.5rem 2rem; }
.t-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; }
.t-name { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.t-role { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }

/* ---- PAGE HERO ---- */
.page-hero { padding: 12rem 2rem 5rem; text-align: center; background: var(--bg); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; color: var(--plat); line-height: 1.1; margin-bottom: 1.2rem; letter-spacing: -0.5px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 0.9rem; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 2; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6rem 2rem; text-align: center; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; color: var(--plat); line-height: 1.1; margin-bottom: 1rem; }
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { font-size: 0.88rem; color: var(--muted); max-width: 440px; margin: 0 auto 2.5rem; line-height: 2; }

/* ---- FOOTER ---- */
.site-footer { background: #030305; border-top: 1px solid var(--border); padding: 5rem 2rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3.5rem; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.9; max-width: 260px; }
.site-footer h4 { font-size: 0.55rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer ul a { text-decoration: none; font-size: 0.82rem; color: var(--muted); transition: color 0.3s; }
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(212,168,75,0.08); text-align: center; font-size: 0.72rem; color: rgba(232,228,220,0.2); letter-spacing: 1px; }
.footer-bottom strong { color: var(--gold); }

/* ---- BACK TO TOP ---- */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; background: transparent; color: var(--gold); border: 1px solid rgba(212,168,75,0.3); padding: 0.75rem 0.9rem; border-radius: 2px; font-size: 0.9rem; opacity: 0; transition: opacity 0.3s, background 0.3s; z-index: 900; }
.back-to-top.visible { opacity: 1; }
.back-to-top:hover { background: rgba(212,168,75,0.08); }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--gold); width: 0; z-index: 9999; transition: width 0.1s; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) { .amenities-grid { grid-template-columns: 1fr 1fr; } .trainers-grid { grid-template-columns: 1fr 1fr; } .pricing-grid { grid-template-columns: 1fr; } .t-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .stats-grid { grid-template-columns: 2fr 2fr; } .program-item { grid-template-columns: 40px 1fr; } .prog-tag { display: none; } }
@media (max-width: 640px) { .amenities-grid, .trainers-grid, .footer-grid { grid-template-columns: 1fr; } .nav-links, .nav-cta { display: none; } .hamburger { display: flex; } .mobile-nav { display: flex; flex-direction: column; background: rgba(6,6,10,0.98); padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid var(--border); } .mobile-nav li a { color: var(--muted); text-decoration: none; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; } .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   GYM TRAINING IMAGES & ANIMATIONS — Aurum Performance Club
   ============================================================ */

/* --- Animated ticker --- */
.workout-ticker{background:#030305;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:0.9rem 0;overflow:hidden;position:relative}
.workout-ticker::before,.workout-ticker::after{content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none}
.workout-ticker::before{left:0;background:linear-gradient(90deg,#030305,transparent)}
.workout-ticker::after{right:0;background:linear-gradient(-90deg,#030305,transparent)}
.ticker-track{display:flex;width:max-content;animation:ticker-run 40s linear infinite}
.ticker-track:hover{animation-play-state:paused}
.ticker-item{display:inline-flex;align-items:center;gap:0.7rem;padding:0 2.5rem;font-size:0.55rem;font-weight:600;letter-spacing:4px;text-transform:uppercase;color:rgba(212,168,75,0.35);white-space:nowrap;font-family:'Cormorant Garamond',serif}
.ticker-item .sep{width:3px;height:3px;border-radius:50%;background:rgba(212,168,75,0.2)}
@keyframes ticker-run{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* --- Gallery section --- */
.gallery-section{padding:5rem 0;background:var(--bg)}
.gallery-scroll{display:flex;gap:1rem;overflow-x:auto;padding:0 2rem 0.5rem;scrollbar-width:none;scroll-snap-type:x mandatory;cursor:grab}
.gallery-scroll:active{cursor:grabbing}
.gallery-scroll::-webkit-scrollbar{display:none}
.gallery-item{flex:0 0 300px;height:220px;overflow:hidden;scroll-snap-align:start;position:relative;border:1px solid var(--border)}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.65s ease,filter 0.5s;filter:brightness(0.55) saturate(0.6)}
.gallery-item:hover img{transform:scale(1.08);filter:brightness(0.75) saturate(0.9)}
.gallery-item .g-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(6,6,10,0.9) 0%,transparent 55%)}
.gallery-item .g-label{position:absolute;bottom:1rem;left:1.2rem;font-family:'Cormorant Garamond',serif;font-size:0.78rem;font-style:italic;color:var(--gold);opacity:0;transform:translateY(8px);transition:all 0.4s}
.gallery-item:hover .g-label{opacity:1;transform:none}
.gallery-item .g-line{position:absolute;bottom:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--gold),transparent);opacity:0;transition:opacity 0.4s}
.gallery-item:hover .g-line{opacity:1}

/* --- Program image lists --- */
.prog-thumb{height:165px;overflow:hidden;position:relative}
.prog-thumb img{width:100%;height:100%;object-fit:cover;filter:brightness(0.5) saturate(0.6);transition:transform 0.65s ease,filter 0.5s}
.program-item:hover .prog-thumb img,.program-card:hover .prog-thumb img{transform:scale(1.06);filter:brightness(0.72) saturate(0.85)}
.prog-thumb .pt-overlay{position:absolute;inset:0;background:linear-gradient(160deg,rgba(212,168,75,0.12) 0%,rgba(6,6,10,0.7) 100%)}
.prog-thumb .pt-badge{position:absolute;top:0.8rem;right:0.8rem;background:rgba(6,6,10,0.8);border:1px solid rgba(212,168,75,0.3);color:var(--gold);font-size:0.5rem;font-family:'Cormorant Garamond',serif;font-style:italic;letter-spacing:2px;padding:0.25rem 0.7rem;backdrop-filter:blur(8px)}

/* --- Trainer photo cards --- */
.trainer-photo{width:88px;height:88px;border-radius:50%;overflow:hidden;margin:0 auto 1.2rem;border:1px solid rgba(212,168,75,0.25);transition:border-color 0.4s,box-shadow 0.4s}
.trainer-card:hover .trainer-photo{border-color:rgba(212,168,75,0.6);box-shadow:0 0 0 4px rgba(212,168,75,0.06),0 0 24px rgba(212,168,75,0.14)}
.trainer-photo img{width:100%;height:100%;object-fit:cover;object-position:top center;filter:sepia(0.12) saturate(0.9)}

/* --- Facility images grid --- */
.facility-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);margin-top:4rem}
.facility-item{position:relative;overflow:hidden;aspect-ratio:4/3;background:var(--bg2)}
.facility-item img{width:100%;height:100%;object-fit:cover;filter:brightness(0.55) saturate(0.65);transition:transform 0.7s ease,filter 0.5s}
.facility-item:hover img{transform:scale(1.07);filter:brightness(0.75) saturate(0.9)}
.facility-item .f-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(6,6,10,0.8) 0%,transparent 50%)}
.facility-item .f-label{position:absolute;bottom:1rem;left:1.2rem;font-family:'Cormorant Garamond',serif;font-size:0.85rem;font-style:italic;color:var(--gold);opacity:0;transform:translateY(6px);transition:all 0.4s}
.facility-item:hover .f-label{opacity:1;transform:none}

/* --- Stat glow pulse --- */
@keyframes stat-glow-gold{0%,100%{text-shadow:0 0 10px rgba(212,168,75,0.2)}50%{text-shadow:0 0 30px rgba(212,168,75,0.55),0 0 60px rgba(212,168,75,0.12)}}
.stat-num{animation:stat-glow-gold 4s ease-in-out infinite}

/* --- Feature icon float --- */
@keyframes float-icon{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.amenity-card:hover .amenity-icon{animation:float-icon 1.4s ease-in-out infinite;display:inline-block}
.amenity-icon{display:inline-block;transition:transform 0.3s}

/* --- Progress bars --- */
.progress-section{padding:5rem 0;background:var(--bg2)}
.progress-two-col{display:grid;grid-template-columns:1fr 1fr;gap:3rem 5rem}
.progress-item{margin-bottom:1.6rem}
.progress-label-row{display:flex;justify-content:space-between;margin-bottom:0.55rem;font-size:0.78rem;font-weight:500;color:rgba(232,228,220,0.45)}
.progress-pct{color:var(--gold)}
.progress-track{height:3px;background:rgba(212,168,75,0.08);overflow:hidden}
.progress-bar{height:100%;width:0;background:linear-gradient(90deg,var(--gold),var(--gold2));transition:width 1.6s cubic-bezier(0.4,0,0.2,1)}
.progress-bar.animated{width:var(--w)}

@media(max-width:640px){.gallery-item{flex:0 0 265px;height:190px}.progress-two-col,.facility-grid{grid-template-columns:1fr}}

/* === HERO BACKGROUND SLIDESHOW === */
.hero-slides{position:absolute;inset:0;z-index:0}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;animation:heroSlide 25s linear infinite}
.hero-slide:nth-child(1){animation-delay:0s}.hero-slide:nth-child(2){animation-delay:5s}.hero-slide:nth-child(3){animation-delay:10s}.hero-slide:nth-child(4){animation-delay:15s}.hero-slide:nth-child(5){animation-delay:20s}
@keyframes heroSlide{0%,100%{opacity:0}3%{opacity:0.75}18%{opacity:0.75}22%{opacity:0}}

/* === TRAINING IN ACTION SHOWCASE === */
.training-showcase{position:relative;height:580px;overflow:hidden;background:var(--bg);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.showcase-slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s ease}
.showcase-slide.active{opacity:1}
.showcase-slide img{width:100%;height:100%;object-fit:cover;filter:brightness(0.4) saturate(0.65);transform:scale(1.06);transition:transform 7s ease}
.showcase-slide.active img{transform:scale(1)}
.showcase-overlay{position:absolute;inset:0;background:linear-gradient(110deg,rgba(6,6,10,0.96) 0%,rgba(6,6,10,0.06) 62%)}
.showcase-inner{position:absolute;inset:0;display:flex;align-items:flex-end;justify-content:space-between;padding:3rem 5rem 4rem}
.showcase-caption-left{max-width:520px}
.showcase-tag{display:inline-block;font-size:0.52rem;letter-spacing:4px;text-transform:uppercase;font-family:'Cormorant Garamond',serif;color:var(--gold);border:1px solid rgba(212,168,75,0.3);padding:0.22rem 0.9rem;margin-bottom:1rem}
.showcase-caption-left h3{font-size:clamp(1.8rem,3.8vw,3.2rem);font-weight:600;font-style:italic;color:var(--gold2);margin:0 0 0.6rem;line-height:1.05;font-family:'Cormorant Garamond',serif}
.showcase-caption-left p{font-size:0.87rem;color:rgba(232,228,220,0.4);margin:0;font-style:italic}
.showcase-count{font-size:0.58rem;letter-spacing:5px;color:rgba(212,168,75,0.28);align-self:flex-end;font-family:'Cormorant Garamond',serif}
.showcase-controls{position:absolute;top:50%;right:3rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:0.6rem}
.showcase-btn{width:44px;height:44px;border:1px solid rgba(212,168,75,0.2);background:rgba(6,6,10,0.6);color:rgba(212,168,75,0.45);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1rem;backdrop-filter:blur(10px);transition:all 0.4s}
.showcase-btn:hover{border-color:var(--gold);background:rgba(6,6,10,0.85);color:var(--gold)}
.showcase-dots{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);display:flex;gap:0.6rem}
.showcase-dot{width:5px;height:5px;border-radius:50%;background:rgba(212,168,75,0.18);cursor:pointer;transition:all 0.4s}
.showcase-dot.active{background:var(--gold);transform:scale(1.6)}
.showcase-pbar{position:absolute;bottom:0;left:0;height:2px;background:linear-gradient(90deg,var(--gold),var(--gold2));width:0;animation:spbar 4s linear infinite}
@keyframes spbar{0%{width:0}100%{width:100%}}
@media(max-width:640px){.training-showcase{height:450px}.showcase-inner{padding:1.5rem 2rem 3rem}.showcase-controls{right:1rem}.showcase-caption-left h3{font-size:1.6rem}}
