/* =========================================
   1. ROOT VARIABLES & LUXURY BRANDING
   ========================================= */
:root {
  --bg-burgundy: #2a0710; 
  --gold-text: #d4a373; 
  --text-light: #e8e8e8;
  
  /* Το Νέο Typography Σύστημα */
  --font-heading: 'Bodoni Moda', serif;        /* Τίτλοι: Haute Couture αίσθηση */
  --font-body: 'Cormorant Garamond', serif;    /* Κείμενο: Ρομαντικό και ευανάγνωστο */
  --font-ui: 'Jost', sans-serif;               /* Κουμπιά/Μενού: Σύγχρονο, minimal, luxury */
  
  /* Γρήγορος χρόνος για το preloader */
  --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 STYLES & TYPOGRAPHY
   ========================================= */
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;
}

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

h2 { font-size: 44px; margin-bottom: 20px; }
h3 { font-size: 26px; margin-bottom: 10px; margin-top: 20px;}

p {
  color: #d1d1d1;
  font-weight: 400;
  margin-bottom: 15px;
}

.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: 60px auto;
  border: none;
  opacity: 0.4;
}

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

/* =========================================
   3. PREMIUM AMBIENT 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. LUXURY 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 & NAVIGATION
   ========================================= */
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 li a:hover { color: var(--gold-text); }

/* =========================================
   6. MAIN SECTIONS & ELEGANT WELCOME
   ========================================= */
.welcome, .sisily-standard, .intro-editorial, .philosophy, .why-us, .how-it-works, .membership, .testimonials, .contact {
  background: transparent !important;
}

.welcome {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 150px 20px 52px 20px;
  box-sizing: border-box;
  position: relative;
}

.hero-intro {
  background: transparent !important;
}

.hero-inner {
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.hero-intro h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.65rem, 4.8vw, 5.35rem);
  line-height: 1.02;
  margin: 16px auto 20px auto;
  letter-spacing: 3px;
  color: var(--gold-text);
  text-transform: uppercase;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 28px auto;
  font-size: 1.22rem;
  line-height: 1.58;
  color: #e2d7cf;
}

.hero-btn {
  width: auto !important;
  min-width: 250px;
  max-width: 350px;
  padding: 14px 28px;
  margin: 0 auto;
  display: inline-block;
  text-decoration: none !important;
  color: var(--gold-text) !important;
  font-size: 0.86rem;
  letter-spacing: 3px;
}

.hero-btn:hover {
  color: var(--bg-burgundy) !important;
}

/* =========================================
   6B. THE SISILY STANDARD
   ========================================= */
.sisily-standard {
  width: 100%;
  padding: 0 24px 28px 24px;
  box-sizing: border-box;
  background: transparent !important;
}

.standard-shell {
  width: 96vw;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 34px;
  border-top: 1px solid rgba(212, 163, 115, 0.35);
  border-bottom: 1px solid rgba(212, 163, 115, 0.35);
  background:
    linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.055), transparent),
    rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}

.standard-heading {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px auto;
}

.standard-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3.05rem);
  line-height: 1.12;
  margin: 0;
  letter-spacing: 2.5px;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.standard-card {
  position: relative;
  padding: 28px 24px 24px 24px;
  min-height: 178px;
  border: 1px solid rgba(212, 163, 115, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.24)),
    rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.standard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 115, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.standard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.55), transparent);
}

.standard-number {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: rgba(212, 163, 115, 0.62);
  margin-bottom: 18px;
}

.standard-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 10px 0;
  letter-spacing: 1.6px;
  color: #f0d0a8;
}

.standard-card p {
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
  color: #d8d8d8;
}

.intro-editorial {
  padding: 28px 20px 18px 20px;
  text-align: center;
  background: transparent !important;
}

.intro-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 24px 0 16px 0;
}

.intro-inner p {
  max-width: 860px;
  margin: 0 auto 18px auto;
  font-size: 1.18rem;
  line-height: 1.7;
  color: #d8d2cf;
  text-align: left;
}

.drop-cap {
  float: left;
  font-family: var(--font-heading); 
  font-size: 4.8rem;
  line-height: 0.8;
  padding-top: 6px;
  padding-right: 12px;
  color: var(--gold-text);
}

.philosophy, .why-us, .how-it-works, .membership {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 72px 0;
}

.philosophy .container, 
.why-us .container, 
.how-it-works .container, 
.membership .container {
  display: flex;
  flex-direction: row;
  width: 96vw;
  max-width: 1440px;
  align-items: stretch;
  gap: 34px;
  padding: 0 24px;
  box-sizing: border-box;
}

.text-content { 
  flex: 1 1 50%;
  width: auto;
  display: flex; 
  flex-direction: column; 
} 

.philosophy .text-content, 
.why-us .text-content { 
  padding-right: 0; 
  padding-left: 0; 
}

.how-it-works .text-content, 
.membership .text-content { 
  padding-left: 0; 
}

.image-content { 
  flex: 1 1 50%;
  width: auto;
  display: flex; 
  align-items: stretch; 
  position: relative; 
}

/* Compact text spacing for wider, shorter sections */
.philosophy .text-content p,
.why-us .text-content p,
.how-it-works .text-content p,
.membership .text-content p {
  line-height: 1.62;
  margin-bottom: 11px;
}

.philosophy .text-content h2,
.why-us .text-content h2,
.how-it-works .text-content h2,
.membership .text-content h2 {
  margin-bottom: 14px;
}

.philosophy .text-content h3,
.why-us .text-content h3,
.how-it-works .text-content h3,
.membership .text-content h3 {
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 24px;
}

/* =========================================
   7. SCROLL REVEAL ANIMATIONS
   ========================================= */
.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; }

/* =========================================
   8. IMAGE PARALLAX & GOLDEN FRAMES
   ========================================= */
.parallax-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.frame-border {
  position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(212, 163, 115, 0.4); 
  pointer-events: none; z-index: 2; border-radius: 2px;
}

.parallax-img {
  width: 100%; height: 130%; object-fit: cover; position: absolute; 
  top: -15%; left: 0; will-change: transform; z-index: 1;
}

/* Οι εικόνες παίρνουν αυτόματα το ίδιο ύψος με το κείμενο δίπλα τους */
.philosophy-frame,
.works-frame,
.why-frame,
.membership-frame {
  height: 100%;
  min-height: 100%;
  margin-top: 0;
  top: 0;
}

/* Ειδική ρύθμιση για το Why Us: ίδιο ύψος εικόνας με το κείμενο */
.why-us .container {
  align-items: stretch;
}

.why-us .image-content {
  align-items: stretch;
  padding-top: 0;
}

.why-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin-top: 0;
  top: 0;
  background: transparent;
}

.why-frame .parallax-img {
  width: 100%;
  height: 130%;
  top: -15%;
  left: 0;
  object-fit: cover;
  object-position: 50% center;
}

/* =========================================
   9. GOLDEN SHIMMER BUTTONS
   ========================================= */
.premium-btn {
  position: relative; padding: 15px 35px; background-color: 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.1rem; cursor: pointer; overflow: hidden; 
  transition: all 0.5s ease; width: 240px; margin: 0 auto; display: block;
}

.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.4), transparent);
  transform: rotate(35deg); animation: lightShimmer 4s infinite ease-in-out;
}

@keyframes lightShimmer { 0% { left: -60%; } 25% { left: 140%; } 100% { left: 140%; } }
.premium-btn:hover { background-color: var(--gold-text); color: var(--bg-burgundy); box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3); }

/* =========================================
   10. TESTIMONIALS & CONTACT
   ========================================= */
.testimonials h2 { text-align: center; margin-bottom: 40px; }
.testimonial-row { 
  display: flex; 
  gap: 30px; 
  align-items: stretch; 
  margin-bottom: 50px; 
}

.testimonial-row > .video-container, 
.testimonial-row > .testimonials-grid { 
  flex: 1; 
  min-width: 0;
}

.video-container {
  background: #000;
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 163, 115, 0.3);
  display: flex;
}

.video-container video, 
.video-container iframe { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }

.testimonial {
  background-color: rgba(0, 0, 0, 0.3); border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: 4px; padding: 25px; position: relative; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.testimonial p { margin-bottom: 1rem; line-height: 1.6; color: #e0e0e0; font-style: italic; }
.testimonial .author { color: var(--gold-text); font-weight: bold; text-align: right; margin-top: 1rem; font-family: var(--font-heading);}

.contact-centered { max-width: 700px; margin: 0 auto; text-align: center; padding: 60px 0;}
.contact-title { margin-bottom: 1.5rem; }
.contact-intro { margin-bottom: 1rem; color: #d1d1d1; }
.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%; box-sizing: border-box; font-family: var(--font-body);
}
.contact form input:focus, .contact form textarea:focus { outline: none; border-color: var(--gold-text); }
.contact-info { margin-top: 2rem; font-size: 1.2rem; color: #ccc; font-family: var(--font-ui);}
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;}



/* =========================================
   10B. FAQ ACCORDION — PREMIUM
   ========================================= */
.faq-section {
  background: transparent !important;
  padding: 80px 0 60px 0;
}

.faq-container {
  max-width: 980px;
  text-align: center;
}

.faq-section h2 {
  margin-bottom: 18px;
}

.faq-intro {
  max-width: 720px;
  margin: 0 auto 45px auto;
  font-size: 1.22rem;
  color: #d1d1d1;
}

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.faq-item {
  position: relative;
  overflow: hidden;
  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 12px 35px rgba(0, 0, 0, 0.22);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.55), transparent);
  opacity: 0.6;
}

.faq-item:hover {
  border-color: rgba(212, 163, 115, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--gold-text);
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.faq-question span {
  display: block;
}

.faq-question i {
  flex: 0 0 auto;
  font-size: 0.95rem;
  color: var(--gold-text);
  transition: transform 0.35s ease, color 0.35s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer > div {
  padding: 0 28px 26px 28px;
  border-top: 1px solid rgba(212, 163, 115, 0.16);
}

.faq-answer p {
  color: #d8d8d8;
  font-size: 1.12rem;
  line-height: 1.75;
  margin: 18px 0 0 0;
}

.faq-item.open {
  border-color: rgba(212, 163, 115, 0.62);
  background:
    linear-gradient(135deg, rgba(212, 163, 115, 0.06), rgba(0, 0, 0, 0.32)),
    rgba(0, 0, 0, 0.22);
}


.compact-faq .faq-accordion {
  max-width: 920px;
  margin: 0 auto;
}

.faq-more-btn {
  width: auto !important;
  min-width: 220px;
  display: inline-block;
  margin: 34px auto 0 auto;
  text-decoration: none !important;
  color: var(--gold-text) !important;
  font-size: 0.86rem;
  letter-spacing: 3px;
}

.faq-more-btn:hover {
  color: var(--bg-burgundy) !important;
}


/* =========================================
   FAQ PAGE HERO + CTA
   ========================================= */
.faq-hero {
  min-height: 54vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 155px 20px 55px 20px;
  box-sizing: border-box;
}

.faq-hero-inner {
  max-width: 940px;
}

.faq-hero h1 {
  font-size: clamp(3rem, 5.4vw, 6rem);
  line-height: 1.02;
  margin: 18px 0 24px 0;
  letter-spacing: 4px;
}

.faq-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.65;
  color: #dedede;
}

.faq-page-section {
  background: transparent !important;
  padding: 40px 0 70px 0;
}

.faq-page-section .faq-container {
  max-width: 980px;
  text-align: center;
}

.faq-page-section h2 {
  margin-bottom: 18px;
}

.faq-cta {
  padding: 60px 20px 80px 20px;
  text-align: center;
}

.faq-cta-inner {
  max-width: 780px;
  padding: 45px 40px;
  border: 1px solid rgba(212, 163, 115, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.26)),
    rgba(0, 0, 0, 0.18);
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.faq-cta h2 {
  margin-top: 0;
}

.faq-cta p {
  max-width: 620px;
  margin: 0 auto 28px auto;
  font-size: 1.15rem;
}

.faq-cta .premium-btn {
  width: auto !important;
  min-width: 210px;
  display: inline-block;
  text-decoration: none !important;
  color: var(--gold-text) !important;
}

.faq-cta .premium-btn:hover {
  color: var(--bg-burgundy) !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;
}

/* =========================================
   11. 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.35rem;
  }

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


  /* Homepage / FAQ mobile layout */
  .welcome {
    padding: 128px 18px 50px 18px;
    min-height: 72vh;
    justify-content: center;
  }

  .hero-intro h1 {
    font-size: 2.35rem;
    line-height: 1.08;
    letter-spacing: 1.8px;
  }

  .hero-lead {
    font-size: 1.03rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-btn {
    min-width: 0;
    width: 92% !important;
    max-width: 320px;
    font-size: 0.74rem;
    letter-spacing: 2.2px;
    padding: 14px 16px;
  }

  /* Hide old Sisily Standard if it still exists in older HTML */
  .sisily-standard {
    display: none !important;
  }

  .intro-editorial {
    padding: 24px 16px 12px 16px;
  }

  .intro-inner {
    padding: 18px 0 8px 0;
  }

  .intro-inner p {
    font-size: 1.03rem;
    line-height: 1.65;
    text-align: center;
  }

  .drop-cap {
    float: none;
    display: inline;
    font-size: inherit;
    line-height: inherit;
    padding: 0;
  }

  .philosophy,
  .how-it-works,
  .why-us,
  .membership {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 38px 0;
  }

  .philosophy .container,
  .how-it-works .container,
  .why-us .container,
  .membership .container {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
    gap: 24px;
  }

  .image-content {
    order: 1;
    width: 100%;
    padding: 0;
    margin-bottom: 8px;
  }

  .text-content {
    order: 2;
    width: 100%;
    padding: 0 !important;
    text-align: center !important;
    margin: 0 auto;
  }

  .parallax-frame,
  .why-frame {
    height: 360px !important;
    min-height: 360px !important;
    top: 0 !important;
    margin-top: 0;
    border-radius: 4px;
  }

  .parallax-img,
  .why-frame .parallax-img {
    height: 100% !important;
    top: 0 !important;
    object-fit: cover !important;
  }

  .testimonial-row {
    flex-direction: column;
  }

  .testimonial-row.top .testimonials-grid {
    order: 1;
  }

  .testimonial-row.top .video-container {
    order: 2;
  }

  .video-container {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
  }

  .video-container video,
  .video-container iframe {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .faq-section {
    padding: 45px 15px 35px 15px;
  }

  .faq-container {
    width: 100%;
    padding: 0;
  }

  .faq-section h2 {
    font-size: 2.25rem;
  }

  .faq-intro {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px 18px;
    font-size: 1rem;
    letter-spacing: 1.1px;
  }

  .faq-answer > div {
    padding: 0 18px 22px 18px;
  }

  .faq-answer p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .faq-more-btn {
    width: 92% !important;
    max-width: 320px;
    font-size: 0.76rem;
    letter-spacing: 2.2px;
    padding: 14px 16px;
  }

  .faq-hero {
    min-height: 44vh;
    padding: 118px 18px 38px 18px;
  }

  .faq-hero h1 {
    font-size: 2.55rem;
    line-height: 1.08;
    letter-spacing: 2px;
  }

  .faq-hero p {
    font-size: 1.05rem;
  }

  .faq-page-section {
    padding: 30px 15px 45px 15px;
  }

  .faq-cta {
    padding: 35px 15px 55px 15px;
  }

  .faq-cta-inner {
    padding: 32px 22px;
  }

  .faq-cta .premium-btn {
    width: 92% !important;
    max-width: 300px;
  }

  .contact-centered {
    width: 100%;
    padding: 42px 18px;
    box-sizing: border-box;
  }
}

@media (max-width: 370px) {
  .hero-intro h1,
  .faq-hero h1 {
    font-size: 2.35rem !important;
  }

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

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

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

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

