/* =========================================
   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);
}

* {
  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,
.panel-label {
  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;
}

/* 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); }
}

/* 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);
}

/* 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);
}

/* Hero */
.membership-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 175px 20px 85px 20px;
}

.hero-content {
  max-width: 980px;
}

.membership-hero p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #d1d1d1;
}

.hero-btn {
  margin-top: 35px;
}

/* Main Cards */
.membership-intro,
.experience-section,
.method-section,
.client-fit-section,
.discretion-section {
  padding: 35px 20px 20px 20px;
}

.intro-card,
.experience-card,
.method-card,
.client-fit-card,
.discretion-card,
.contact-centered {
  max-width: 1080px;
  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);
}

.intro-card p,
.experience-card p,
.method-card p,
.client-fit-card p,
.discretion-card p,
.contact-centered p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.18rem;
}

/* Experience */
.experience-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 35px;
  align-items: stretch;
  text-align: left;
  margin-top: 45px;
}

.experience-main,
.experience-panel,
.fit-column,
.method-content {
  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;
}

.experience-main {
  padding: 38px 36px;
}

.experience-main h3 {
  color: #f0d0a8;
  font-size: 1.3rem;
  margin-top: 0;
}

.experience-main p {
  max-width: none;
  font-size: 1.06rem;
  line-height: 1.65;
}

.experience-panel {
  padding: 38px 34px;
  background:
    radial-gradient(circle at top left, rgba(212, 163, 115, 0.12), transparent 36%),
    rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 30px rgba(212, 163, 115, 0.04);
}

.panel-label {
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.experience-panel ul,
.fit-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-panel li,
.fit-column li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: #d8d8d8;
  font-size: 1.05rem;
  line-height: 1.55;
}

.experience-panel li::before,
.fit-column li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-text);
}

/* Method Timeline */
.method-flow {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

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

.method-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  text-align: left;
}

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

.method-content {
  padding: 28px 32px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

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

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

.method-content p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Client Fit */
.client-fit-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 45px;
  text-align: left;
}

.fit-column {
  padding: 36px 34px;
  background:
    radial-gradient(circle at top left, rgba(212, 163, 115, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.26)),
    rgba(0, 0, 0, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.fit-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--gold-text);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.9rem;
  font-weight: 500;
}

.fit-label i {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 163, 115, 0.42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-text);
  background: rgba(0, 0, 0, 0.18);
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(212, 163, 115, 0.18);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 4px;
}

.result-item span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: rgba(212, 163, 115, 0.58);
}

.result-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Contact */
.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);
}

/* Button */
.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: 300px;
  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);
}

/* 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;
}

/* Reveal */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.reveal.fade-down {
  transform: translateY(-40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* =========================================
   CLEAN HEADER SUPPORT
   ========================================= */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.logo-link .logo {
  margin-right: 0;
}

.mobile-menu-toggle {
  display: none;
}

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

  body {
    font-size: 18px;
  }

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

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

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

  h3 {
    font-size: 1.25rem;
  }

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


  /* 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 !important;
  }

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


  /* Membership page mobile layout */
  .membership-hero {
    min-height: 70vh;
    padding: 128px 18px 55px 18px;
    box-sizing: border-box;
  }

  .membership-hero p {
    font-size: 1.06rem;
    line-height: 1.6;
  }

  .membership-intro,
  .experience-section,
  .method-section,
  .client-fit-section,
  .discretion-section {
    padding: 35px 16px 15px 16px;
  }

  .intro-card,
  .experience-card,
  .method-card,
  .client-fit-card,
  .discretion-card,
  .contact-centered {
    padding: 35px 22px;
  }

  .intro-card p,
  .experience-card p,
  .method-card p,
  .client-fit-card p,
  .discretion-card p,
  .contact-centered p {
    font-size: 1.04rem;
    line-height: 1.65;
  }

  .experience-layout,
  .client-fit-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .experience-main,
  .experience-panel,
  .fit-column {
    padding: 32px 24px;
  }

  .experience-panel li,
  .fit-column li {
    text-align: left;
  }

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

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

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

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

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

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

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

  .result-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px;
    text-align: left;
  }

  .contact {
    padding: 40px 15px 60px 15px;
  }

  .contact form input,
  .contact form textarea {
    font-size: 1rem;
  }

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

@media (max-width: 370px) {
  h1 {
    font-size: 2.45rem;
  }

  header .section-nav ul.nav-links li a,
  .section-nav ul.nav-links li a {
    font-size: 0.74rem !important;
    letter-spacing: 2.4px !important;
  }
}

/* =========================================================
   LOCAL LOGO & FAVICON FIX
   Keep logo.png and favicon.jpeg beside the HTML and CSS files.
   ========================================================= */
header {
  box-sizing: border-box;
}

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

.preloader-logo-img {
  display: block;
  width: 450px;
  height: auto;
  max-width: 80vw;
  object-fit: contain;
}

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

  .preloader-logo-img {
    width: min(80vw, 360px) !important;
    height: auto !important;
  }
}

