/* =========================================
   1. ROOT VARIABLES & LUXURY BRANDING
   ========================================= */
:root {
  --bg-burgundy: #2a0710;
  --gold-text: #d4a373;
  --text-light: #e8e8e8;
  --font-heading: 'Bodoni Moda', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Jost', sans-serif;
  --transition-curtain: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  --transition-smooth: 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   2. GLOBAL
   ========================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 19.5px;
  margin: 0;
  padding: 0;
  color: var(--text-light);
  line-height: 1.8;
  background-color: var(--bg-burgundy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

h1 { font-size: 4rem; margin: 20px 0; }
h2 { font-size: 42px; margin-bottom: 20px; }
h3 { font-size: 22px; margin-bottom: 12px; }
p { color: #d1d1d1; font-weight: 400; margin-bottom: 15px; }
a { color: var(--gold-text); text-decoration: none; }
a:hover { color: #fff; }

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0;
}

.gold-subtitle {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold-text);
  display: block;
  margin-bottom: 10px;
}

.gold-divider {
  width: 80px;
  height: 1px;
  background-color: var(--gold-text);
  margin: 55px auto;
  border: none;
  opacity: 0.4;
}

/* =========================================
   3. PREMIUM BACKGROUND
   ========================================= */
.premium-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle, rgba(42, 7, 16, 0.4) 0%, rgba(42, 7, 16, 1) 100%);
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: floatOrb 15s infinite alternate ease-in-out;
  z-index: 0;
}

.orb-1 { width: 500px; height: 500px; background: #d4a373; top: 10%; left: 5%; }
.orb-2 { width: 600px; height: 600px; background: #9c1532; bottom: 10%; right: 5%; animation-delay: -7s; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 60px) scale(0.9); }
}

/* =========================================
   4. PRELOADER
   ========================================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-burgundy);
}

.curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--bg-burgundy);
  transition: transform var(--transition-curtain);
  z-index: 1;
}

.curtain-left { left: 0; }
.curtain-right { right: 0; }
#preloader.loaded .curtain-left { transform: translateX(-100%); }
#preloader.loaded .curtain-right { transform: translateX(100%); }

.preloader-logo-img {
  width: 450px;
  max-width: 80vw;
  z-index: 2;
  opacity: 0;
  animation: cinematicImage 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) forwards 0.1s;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

@keyframes cinematicImage { to { opacity: 1; transform: scale(1); } }
#preloader.loaded .preloader-logo-img { opacity: 0 !important; transform: scale(1.05); }

/* =========================================
   5. HEADER
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(42, 7, 16, 0.95);
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.logo { height: 80px; max-width: 250px; margin-right: auto; object-fit: contain; }
.section-nav { display: flex; position: relative; margin-left: 0; }
.section-nav ul.nav-links { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; transform: translateX(-50px); }
.section-nav ul.nav-links li a { text-decoration: none; font-size: 0.9rem; color: #fff; font-family: var(--font-ui); font-weight: 500; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; }
.section-nav ul.nav-links li a:hover { color: var(--gold-text); }

/* =========================================
   6. HERO
   ========================================= */
.coaching-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 175px 20px 85px 20px;
}
.hero-content { max-width: 950px; }
.coaching-hero p { max-width: 850px; margin: 0 auto; font-size: 1.3rem; color: #d1d1d1; }
.hero-btn { margin-top: 35px; }

/* =========================================
   7. MAIN CARDS
   ========================================= */
.coaching-intro, .coaching-details, .process-section, .ideal-client-section { padding: 35px 20px 20px 20px; }

.intro-card, .details-card, .process-card, .ideal-card, .contact-centered {
  max-width: 1050px;
  text-align: center;
  padding: 50px;
  border: 1px solid rgba(212, 163, 115, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.28)), rgba(0, 0, 0, 0.18);
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.intro-card p, .details-card p, .process-card p, .ideal-card p, .contact-centered p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.18rem;
}

/* =========================================
   8. PILLARS
   ========================================= */
.coaching-pillars { padding: 35px 20px 20px 20px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.pillar-card {
  position: relative;
  overflow: hidden;
  padding: 45px 34px 38px 34px;
  border: 1px solid rgba(212, 163, 115, 0.26);
  background: radial-gradient(circle at top left, rgba(212, 163, 115, 0.11), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.28)), rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  text-align: center;
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.pillar-card:hover { transform: translateY(-8px); border-color: rgba(212, 163, 115, 0.68); box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42); }
.pillar-number { position: absolute; top: 22px; right: 26px; font-family: var(--font-heading); font-size: 3.4rem; color: rgba(212, 163, 115, 0.10); }
.pillar-icon { width: 58px; height: 58px; margin: 0 auto 22px auto; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(212, 163, 115, 0.38); border-radius: 50%; color: var(--gold-text); background: rgba(0, 0, 0, 0.18); }
.pillar-icon i { font-size: 1.4rem; }
.pillar-card h2 { font-size: 1.6rem; }
.pillar-card p { font-size: 1.05rem; }

/* =========================================
   9. DETAILS GRID
   ========================================= */
.details-grid { margin-top: 45px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.detail-item { padding: 30px 22px; border: 1px solid rgba(212, 163, 115, 0.22); background: rgba(0, 0, 0, 0.16); border-radius: 5px; text-align: center; transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.detail-item:hover { transform: translateY(-5px); border-color: rgba(212, 163, 115, 0.5); box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28); }
.detail-item i { color: var(--gold-text); font-size: 1.55rem; margin-bottom: 15px; }
.detail-item h3 { font-size: 1.1rem; margin-top: 0; }
.detail-item p { font-size: 0.98rem; line-height: 1.6; margin-bottom: 0; }

/* =========================================
   10. COACHING JOURNEY — EDITORIAL TIMELINE
   ========================================= */
.process-section {
  padding: 35px 20px 20px 20px;
}

.journey-card {
  max-width: 1050px;
  text-align: center;
  padding: 55px 60px;
  border: 1px solid rgba(212, 163, 115, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.28)),
    rgba(0, 0, 0, 0.18);
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.journey-intro {
  max-width: 820px;
  margin: 0 auto 50px auto;
  font-size: 1.18rem;
  color: #d1d1d1;
}

.journey-flow {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.journey-flow::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 163, 115, 0.55),
    transparent
  );
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  align-items: stretch;
  text-align: left;
}

.journey-marker {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(212, 163, 115, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: rgba(212, 163, 115, 0.7);
  background:
    radial-gradient(circle, rgba(212, 163, 115, 0.13), rgba(0, 0, 0, 0.22));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.journey-content {
  position: relative;
  padding: 28px 32px;
  border: 1px solid rgba(212, 163, 115, 0.22);
  background:
    linear-gradient(135deg, rgba(212, 163, 115, 0.045), rgba(0, 0, 0, 0.24)),
    rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.journey-content:hover {
  transform: translateX(8px);
  border-color: rgba(212, 163, 115, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.journey-content h3 {
  margin-top: 0;
  font-size: 1.35rem;
  color: #f0d0a8;
}

.journey-content p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #d8d8d8;
}
/* =========================================
   11. IDEAL CLIENT
   ========================================= */
.ideal-list { max-width: 850px; margin: 35px auto 30px auto; padding: 0; list-style: none; text-align: left; }
.ideal-list li { position: relative; padding-left: 30px; margin-bottom: 16px; color: #d8d8d8; font-size: 1.08rem; line-height: 1.6; }
.ideal-list li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--gold-text); font-size: 0.9rem; }
.note { margin-top: 30px; padding-top: 25px; border-top: 1px solid rgba(212, 163, 115, 0.18); font-size: 1.02rem !important; color: #c7c7c7 !important; }

/* =========================================
   12. CONTACT FORM
   ========================================= */
.contact { padding: 50px 20px 80px 20px; }
.contact-title { margin-bottom: 1.5rem; }
.contact-intro { margin-bottom: 1rem; color: #d1d1d1; font-size: 1.18rem; }
.contact form { display: flex; flex-direction: column; gap: 20px; margin-top: 2rem; margin-bottom: 2rem; }
.contact form input, .contact form textarea { padding: 18px; border: 1px solid rgba(212, 163, 115, 0.4); background-color: rgba(0, 0, 0, 0.3); color: #fff; border-radius: 3px; font-size: 1.1rem; width: 100%; font-family: var(--font-body); }
.contact form textarea { min-height: 170px; resize: vertical; }
.contact form input::placeholder, .contact form textarea::placeholder { color: rgba(255, 255, 255, 0.65); }
.contact form input:focus, .contact form textarea:focus { outline: none; border-color: var(--gold-text); box-shadow: 0 0 18px rgba(212, 163, 115, 0.12); }

/* =========================================
   13. PREMIUM BUTTON WITH SHIMMER
   ========================================= */
.premium-btn {
  position: relative;
  padding: 15px 35px;
  background: transparent;
  color: var(--gold-text);
  border: 1px solid var(--gold-text);
  border-radius: 3px;
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.05rem;
  cursor: pointer;
  width: 240px;
  min-height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s ease;
}

.shimmer-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(35deg);
  animation: lightShimmer 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes lightShimmer {
  0% { left: -60%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

.premium-btn:hover { background: var(--gold-text); color: var(--bg-burgundy); box-shadow: 0 5px 20px rgba(212, 163, 115, 0.32); }

/* =========================================
   14. FOOTER
   ========================================= */
footer { background: transparent; color: #888; text-align: center; padding: 30px 0; border-top: 1px solid rgba(212, 163, 115, 0.2); font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 1px; }
footer p { margin: 0; color: #888; }

/* =========================================
   15. REVEAL
   ========================================= */
.reveal { opacity: 0; will-change: transform, opacity; transition: transform var(--transition-smooth), opacity var(--transition-smooth); }
.reveal.fade-down { transform: translateY(-40px); }
.reveal.fade-down-left { transform: translate(-40px, -30px); }
.reveal.fade-down-right { transform: translate(40px, -30px); }
.reveal.active { opacity: 1; transform: translate(0, 0) !important; }

/* =========================================
   16. MOBILE
   ========================================= */
@media (max-width: 1000px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
  }

  body {
    font-size: 18px;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  h3 {
    font-size: 1.35rem;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
  }

  .preloader-logo-img {
    width: 80%;
  }

  .coaching-hero {
    min-height: 72vh;
    padding: 125px 15px 55px 15px;
  }

  .coaching-hero p,
  .intro-card p,
  .details-card p,
  .process-card p,
  .ideal-card p,
  .contact-centered p {
    font-size: 1.05rem;
  }

  .intro-card,
  .details-card,
  .process-card,
  .ideal-card,
  .contact-centered {
    padding: 35px 22px;
  }

  .pillars-grid,
  .details-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pillar-card {
    padding: 40px 26px 34px 26px;
  }

  .pillar-card h2 {
    font-size: 1.45rem;
  }

  .premium-btn {
    width: 220px;
    font-size: 0.92rem;
    letter-spacing: 3px;
  }

  .journey-card {
    padding: 35px 22px;
  }

  .journey-flow::before {
    left: 32px;
  }

  .journey-step {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .journey-marker {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
  }

  .journey-content {
    padding: 22px 20px;
  }

  .journey-content:hover {
    transform: none;
  }

  .journey-content h3 {
    font-size: 1.08rem;
  }

  .journey-content p {
    font-size: 0.98rem;
  }

  /* Mobile hamburger header */
  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 74px !important;
    padding: 9px 16px !important;
    box-sizing: border-box !important;
    background: rgba(42, 7, 16, 0.98) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 9999 !important;
  }

  .logo-link {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none;
  }

  header .logo,
  .logo {
    height: 54px !important;
    width: auto !important;
    max-width: 122px !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(212, 163, 115, 0.55) !important;
    background: rgba(0, 0, 0, 0.12) !important;
    border-radius: 3px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 10001 !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 20px !important;
    height: 1px !important;
    background: var(--gold-text, #d4a373) !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
  }

  .mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
  }

  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0 !important;
  }

  .mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  header .section-nav,
  .section-nav {
    position: fixed !important;
    top: 74px !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 8px 18px 18px 18px !important;
    box-sizing: border-box !important;
    background: rgba(42, 7, 16, 0.99) !important;
    border-bottom: 1px solid rgba(212, 163, 115, 0.28) !important;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-12px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
    z-index: 9998 !important;
  }

  header .section-nav.open,
  .section-nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  header .section-nav ul.nav-links,
  .section-nav ul.nav-links {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    list-style: none !important;
  }

  header .section-nav ul.nav-links li,
  .section-nav ul.nav-links li {
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(212, 163, 115, 0.15) !important;
  }

  header .section-nav ul.nav-links li:last-child,
  .section-nav ul.nav-links li:last-child {
    border-bottom: none !important;
  }

  header .section-nav ul.nav-links li a,
  .section-nav ul.nav-links li a {
    display: block !important;
    width: 100% !important;
    padding: 16px 0 !important;
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
    color: #fff !important;
    text-decoration: none !important;
  }

  header .section-nav ul.nav-links li a:hover,
  .section-nav ul.nav-links li a:hover {
    color: var(--gold-text, #d4a373) !important;
  }
}

/* =========================================================
   LOCAL LOGO & FAVICON FIX
   Keep logo.png and favicon.jpeg in the same folder as the HTML.
   ========================================================= */
header {
  min-height: 100px;
  box-sizing: border-box;
}

.logo-link {
  flex: 0 0 auto;
  min-width: 0;
}

.logo {
  display: block;
  width: 190px;
  height: 80px;
  max-width: 38vw;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

@media (max-width: 1000px) {
  header {
    min-height: 74px;
  }

  header .logo,
  .logo {
    display: block !important;
    width: 122px !important;
    height: 54px !important;
    max-width: 42vw !important;
    object-fit: contain !important;
    object-position: left center !important;
  }
}

