/* ============================================
   INNER YOGA RETREATS - MASTER STYLESHEET
   Version: 2.0 | Complete Global Styles
   ============================================ */

/* ============================================
   DESIGN TOKENS (Global Variables)
   ============================================ */

:root {
  /* Colors */
  --linen: #F4EEE1;
  --linen-2: #ECE3D0;
  --ink: #FFFFFF;
  --ink-soft: #4A5850;
  --moss: #5C7A5E;
  --moss-deep: #41594A;
  --clay: #B5652F;
  --clay-deep: #95521F;
  --sand: #E3D6B9;
  --gold: #C9A54B;
  --gold-light: #E4C07A;
  --gold-pale: #F5E9CC;
  --paper: #FBF8F1;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --text-muted: #6B7068;
  
  /* Spacing & Radius */
  --line: rgba(34,48,42,0.14);
  --border: rgba(34,48,42,0.12);
  --shadow-soft: 0 24px 60px -30px rgba(34,48,42,0.35);
  --shadow-sm: 0 2px 8px rgba(28,53,41,0.08);
  --shadow-md: 0 8px 32px rgba(28,53,41,0.12);
  --shadow-lg: 0 20px 60px rgba(28,53,41,0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 32px;
  
  /* Typography */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  
  /* Transitions */
  --ease: cubic-bezier(.22,1,.36,1);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--linen);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* TYPOGRAPHY */
h1, h2, h3, h4 { 
  font-family: var(--font-serif); 
  font-weight: 500; 
  letter-spacing: -0.01em; 
  margin: 0; 
  color: var(--ink);
}

/* Headings on dark backgrounds */
.hero h1, .hero h2, .hero h3, .hero h4,
.hero-title,
.banner h1, .banner h2, .banner h3,
.programs-banner h1, .programs-banner h2, .programs-banner h3,
.consult-band h1, .consult-band h2, .consult-band h3,
.consult-title,
.pivot-card h1, .pivot-card h2, .pivot-card h3,
.pivot-title,
.newsletter-card h1, .newsletter-card h2, .newsletter-card h3,
.footer h1, .footer h2, .footer h3, .footer h4,
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4,
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4,
[class*="banner"] h1, [class*="banner"] h2, [class*="banner"] h3,
.consultation-section h2 {
    color: var(--white);
}

.display-xl { 
  font-family: var(--font-serif); 
  font-size: clamp(2.6rem, 5.4vw, 4.6rem); 
  font-weight: 300; 
  line-height: 1.02; 
}
.display-lg { 
  font-family: var(--font-serif); 
  font-size: clamp(2.1rem, 3.6vw, 3.1rem); 
  font-weight: 300; 
  line-height: 1.08; 
}
.display-md { 
  font-family: var(--font-serif); 
  font-size: clamp(1.7rem, 2.8vw, 2.3rem); 
  font-weight: 400; 
  line-height: 1.12; 
}
.body-lg { 
  font-size: 1.15rem; 
  color: var(--ink-soft); 
  max-width: 44ch; 
  line-height: 1.75; 
}
.body-sm { 
  font-size: 0.875rem; 
  line-height: 1.6; 
  color: var(--text-muted); 
}
em { font-style: italic; color: var(--moss-deep); }

/* EYEBROW */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--clay);
  display: inline-block;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-clay { 
  background: var(--clay); 
  color: var(--paper); 
  box-shadow: 0 14px 30px -12px rgba(181,101,47,0.55); 
}
.btn-clay:hover { background: var(--clay-deep); }
.btn-ghost { 
  background: transparent; 
  border-color: var(--ink); 
  color: var(--ink); 
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-on-photo { 
  background: rgba(251,248,241,0.92); 
  color: var(--ink); 
}
.btn-on-photo:hover { background: var(--paper); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--moss-deep); }
.btn-gold { 
  background: var(--gold); 
  color: var(--white); 
  box-shadow: 0 8px 24px rgba(196,151,59,0.35); 
}
.btn-gold:hover { background: #b5892e; }
.btn-outline-dark { 
  background: transparent; 
  color: var(--ink); 
  border: 1.5px solid var(--ink); 
}
.btn-outline-dark:hover { background: var(--ink); color: var(--paper); }
.btn i { transition: transform 0.25s ease; }
.btn:hover i { transform: translateX(3px); }

/* ============================================
   NAVIGATION - COMPLETE
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 32px;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
  background: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--paper);
  letter-spacing: 0.01em;
  font-style: italic;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -2px;
  font-style: normal;
}
.nav-logo .logo-dark { display: none; }
.nav.scrolled .nav-logo .logo-light { display: none; }
.nav.scrolled .nav-logo .logo-dark { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a,
.nav-links > li > .nav-link {
  font-size: 0.88rem;
  color: rgba(251,248,241,0.88);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links > li > a:hover::after { width: 100%; }
.nav-link i { font-size: 0.65rem; transition: transform .25s ease; }
.nav-item:hover .nav-link i { transform: rotate(180deg); }
.nav-cta-btn {
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid rgba(251,248,241,0.5);
  color: rgba(251,248,241,0.95);
  font-size: 0.82rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all .3s;
}
.nav-cta-btn:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--paper);
  cursor: pointer;
}
.nav.scrolled {
  background: rgba(244,238,225,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -14px rgba(34,48,42,0.25);
}
.nav.scrolled .nav-inner { height: 70px; }
.nav.scrolled .nav-logo,
.nav.scrolled .nav-links > li > a,
.nav.scrolled .nav-links > li > .nav-link { color: var(--ink); }
.nav.scrolled .nav-cta-btn { border-color: var(--ink); color: var(--ink); }
.nav.scrolled .nav-cta-btn:hover { background: var(--ink); color: var(--paper); }
.nav.scrolled .nav-hamburger { color: var(--ink); }
@media (max-width: 960px) {
  .nav-links, .nav-cta-btn { display: none; }
  .nav-hamburger { display: block; }
}

/* Dropdown Menu */
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  z-index: 150;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  min-width: 500px;
  padding: 8px 0;
}
.dropdown-section { padding: 0 8px; }
.dropdown-section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  padding: 8px 16px;
  margin-bottom: 4px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: all .25s;
  text-decoration: none;
}
.dropdown-item:hover {
  background: var(--sand);
  transform: translateX(4px);
}
.dropdown-item-icon {
  width: 32px;
  height: 32px;
  background: rgba(34,48,42,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink);
  flex-shrink: 0;
}
.dropdown-item-content h4 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--ink);
}
.dropdown-item-content p {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin: 0;
}
.dropdown-large { min-width: 320px; }
.destinations-grid-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 8px;
}
.destination-group { position: relative; }
.destination-parent {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s;
}
.destination-parent:hover { background: var(--sand); }
.destination-flag { font-size: 1.4rem; }
.destination-name { flex: 1; font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.destination-count { font-size: 0.65rem; color: var(--ink-soft); }
.submenu-arrow {
  font-size: 0.7rem;
  color: var(--ink-soft);
  transition: transform .3s;
}
.destination-group.open .submenu-arrow { transform: rotate(90deg); }
.destination-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 220px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  z-index: 160;
  margin-left: 8px;
}
.destination-group:hover .destination-submenu {
  opacity: 1;
  visibility: visible;
}
.destination-submenu::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.submenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--ink);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.submenu-item i { width: 18px; font-size: 0.78rem; color: var(--clay); }
.submenu-item:hover {
  background: var(--sand);
  padding-left: 22px;
}
.dropdown-featured {
  background: linear-gradient(135deg, rgba(34,48,42,0.04), rgba(201,165,75,0.08));
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
}
.dropdown-featured-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .25s;
}
.dropdown-featured-item:hover { background: var(--sand); }
.dropdown-featured-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,165,75,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clay);
}
.dropdown-featured-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.dropdown-featured-content p { font-size: 0.7rem; color: var(--ink-soft); }
@media (max-width: 1024px) {
  .dropdown-grid { grid-template-columns: 1fr; min-width: 260px; }
  .destination-submenu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 40px;
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .destination-submenu::before { display: none; }
  .destination-group.open .destination-submenu { display: block; }
  .submenu-arrow { margin-left: auto; }
}

/* ============================================
   FOOTER - COMPLETE FIX
   ============================================ */
   

.site-footer{background:var(--ink);color:rgba(251,248,241,0.7);padding:80px 0 30px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;margin-bottom:60px;}
@media(max-width:800px){.footer-grid{grid-template-columns:1fr 1fr;}}
.footer-logo{display:flex;align-items:center;margin-bottom:14px;}
.footer-logo img{height:105px;width:auto;display:block;}
.footer-about{font-size:0.88rem;max-width:32ch;margin-bottom:20px;}
.footer-social{display:flex;gap:14px;}
.footer-social a{width:36px;height:36px;border-radius:50%;border:1px solid rgba(251,248,241,0.25);display:flex;align-items:center;justify-content:center;}
.footer-col h5{color:var(--paper);font-size:0.82rem;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:18px;}
.footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px;}
.footer-col a{font-size:0.88rem;}
.footer-bottom{border-top:1px solid rgba(251,248,241,0.15);padding-top:26px;display:flex;justify-content:space-between;font-size:0.78rem;flex-wrap:wrap;gap:10px;}

.site-footer,
footer.footer {
    background: #1C3529 !important;
    color: rgba(255,255,255,0.65) !important;
    padding: 72px 0 36px !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.site-footer .container,
footer.footer .container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
}

/* Footer Grid */
.site-footer .footer-grid,
footer.footer .footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 48px !important;
    padding-bottom: 56px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 0 !important;
}

/* Footer Brand */
.site-footer .footer-brand,
footer.footer .footer-brand {
    display: flex !important;
    flex-direction: column !important;
}

.site-footer .footer-brand-name,
footer.footer .footer-brand-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem !important;
    color: #fff !important;
    margin-bottom: 12px !important;
    font-weight: 400 !important;
}

.site-footer .footer-brand-name span,
footer.footer .footer-brand-name span {
    display: block !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.2em !important;
    font-family: 'DM Sans', sans-serif !important;
    text-transform: uppercase !important;
    opacity: 0.5 !important;
    margin-top: 2px !important;
}

.site-footer .footer-brand > p,
footer.footer .footer-brand > p {
    font-size: 0.83rem !important;
    max-width: 300px !important;
    margin-bottom: 24px !important;
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.6 !important;
}

/* Footer Social */
.site-footer .footer-social,
footer.footer .footer-social {
    display: flex !important;
    gap: 10px !important;
}

.site-footer .footer-social a,
footer.footer .footer-social a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255,255,255,0.55) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.site-footer .footer-social a:hover,
footer.footer .footer-social a:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.3) !important;
    transform: translateY(-2px) !important;
}

/* Footer Columns */
.site-footer .footer-col,
footer.footer .footer-col {
    display: block !important;
}

.site-footer .footer-col h4,
footer.footer .footer-col h4 {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 20px !important;
    font-family: 'DM Sans', sans-serif !important;
}

.site-footer .footer-col ul,
footer.footer .footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.site-footer .footer-col ul li,
footer.footer .footer-col ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .footer-col ul li a,
footer.footer .footer-col ul li a {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.55) !important;
    transition: color 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.site-footer .footer-col ul li a:hover,
footer.footer .footer-col ul li a:hover {
    color: #fff !important;
    text-decoration: none !important;
}

/* Footer Bottom */
.site-footer .footer-bottom,
footer.footer .footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 28px !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    border-top: 1px solid rgba(255,255,255,0.15) !important;
}

.site-footer .footer-bottom p,
footer.footer .footer-bottom p {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.3) !important;
    margin: 0 !important;
    font-family: 'DM Sans', sans-serif !important;
}

/* Remove any global link underlines */
.site-footer a,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:focus,
.site-footer a:active,
footer.footer a,
footer.footer a:visited,
footer.footer a:hover,
footer.footer a:focus,
footer.footer a:active {
    text-decoration: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-footer .footer-grid,
    footer.footer .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
    }
}

@media (max-width: 768px) {
    .site-footer .container,
    footer.footer .container {
        padding: 0 20px !important;
    }
    
    .site-footer .footer-grid,
    footer.footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center !important;
    }
    
    .site-footer .footer-brand,
    footer.footer .footer-brand {
        align-items: center !important;
    }
    
    .site-footer .footer-brand > p,
    footer.footer .footer-brand > p {
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .site-footer .footer-social,
    footer.footer .footer-social {
        justify-content: center !important;
    }
    
    .site-footer .footer-col h4,
    footer.footer .footer-col h4 {
        text-align: center !important;
    }
    
    .site-footer .footer-col ul,
    footer.footer .footer-col ul {
        align-items: center !important;
    }
    
    .site-footer .footer-bottom,
    footer.footer .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,26,22,0.25) 0%, rgba(20,26,22,0.15) 35%, rgba(20,26,22,0.7) 100%);
}
.hero-photo-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKen 22s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.05) translate(0,0); }
  to { transform: scale(1.16) translate(-1%, -1%); }
}
@media (prefers-reduced-motion: reduce) { .hero-photo-layer img { animation: none; } }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 70px;
  padding-top: 180px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(251,248,241,0.14);
  border: 1px solid rgba(251,248,241,0.35);
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s var(--ease);
}
.hero-badge.visible { opacity: 1; transform: translateY(0); }
.hero-title {
  color: var(--white);
  margin-bottom: 22px;
}
.hero-subtitle {
  color: rgba(251,248,241,0.86);
  font-size: 1.12rem;
  max-width: 38ch;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s var(--ease) .1s;
}
.hero-subtitle.visible { opacity: 1; transform: translateY(0); }
.hero-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s var(--ease) .2s;
}
.hero-stats.visible { opacity: 1; transform: translateY(0); }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--paper);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(251,248,241,0.7);
  letter-spacing: 0.04em;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--ink);
  padding: 26px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(251,248,241,0.82);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.trust-item i { color: var(--gold); }

/* ============================================
   FADE IN ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1.visible { transition-delay: .12s; }
.fade-in-delay-2.visible { transition-delay: .24s; }
.fade-in-delay-3.visible { transition-delay: .36s; }

/* ============================================
   CONSULTATION BAND (Shared Component)
   ============================================ */
.consult-band {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background: var(--ink);
}
.consult-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,26,22,0.82) 0%, rgba(20,26,22,0.45) 65%, rgba(20,26,22,0.2) 100%);
  z-index: 1;
}
.consult-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.consult-inner > div:first-child {
  flex: 2;
  max-width: 640px;
}
.consult-eyebrow { color: var(--gold); }
.consult-eyebrow::before { background: var(--gold); }
.consult-title {
  font-family: var(--font-serif);
  color: var(--paper);
  margin-bottom: 16px;
}
.consult-sub {
  color: rgba(251,248,241,0.86);
  font-size: 1.06rem;
  margin-bottom: 26px;
  max-width: 46ch;
}
.consult-benefits {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.consult-benefit {
  color: var(--paper);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.consult-benefit i { color: var(--gold); }
.consult-cta-wrap {
  flex: 1;
  text-align: center;
  min-width: 260px;
}
.consult-note {
  color: rgba(251,248,241,0.7);
  font-size: 0.8rem;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .consult-inner { flex-direction: column; text-align: center; }
  .consult-inner > div:first-child { max-width: 100%; }
  .consult-benefits { justify-content: center; }
  .consult-title { font-size: 28px; }
}

/* ============================================
   NEWSLETTER (Shared Component)
   ============================================ */
.newsletter-section { padding: 0 0 130px; }
.newsletter-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
}
@media (max-width: 860px) { .newsletter-card { grid-template-columns: 1fr; } }
.newsletter-content { padding: 64px; }
.newsletter-content .eyebrow { color: var(--gold); }
.newsletter-content .eyebrow::before { background: var(--gold); }
.newsletter-content h2 {
  font-family: var(--font-serif);
  color: var(--paper);
  margin-bottom: 14px;
}
.newsletter-content p {
  color: rgba(251,248,241,0.78);
  max-width: 38ch;
  margin-bottom: 26px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 100px;
  border: 1px solid rgba(251,248,241,0.3);
  background: rgba(251,248,241,0.08);
  color: var(--paper);
  font-family: var(--font-sans);
}
.newsletter-form input::placeholder { color: rgba(251,248,241,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-note {
  color: rgba(251,248,241,0.5);
  font-size: 0.78rem;
  margin-top: 14px;
}
.newsletter-img { min-height: 320px; }
.newsletter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .newsletter-content { padding: 36px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* ============================================
   PARTNERS (Shared Component)
   ============================================ */
.partners-section { padding: 60px 0 130px; }
.partners-header {
  text-align: center;
  margin-bottom: 40px;
}
.partners-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
}
.partners-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.partners-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: scrollTrack 32s linear infinite;
  align-items: center;
}
.partner-logo img {
  height: 32px;
  filter: grayscale(1);
  opacity: 0.55;
}
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   PIVOT BANNER (Shared Component)
   ============================================ */
.pivot-section { padding: 110px 0 0; }
.pivot-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--ink) 0%, var(--moss-deep) 100%);
  padding: 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 760px) {
  .pivot-card {
    flex-direction: column;
    text-align: center;
    padding: 48px 30px;
  }
}
.pivot-eyebrow { color: var(--gold); }
.pivot-eyebrow::before { background: var(--gold); }
.pivot-title {
  font-family: var(--font-serif);
  color: var(--paper);
  margin-bottom: 14px;
}
.pivot-desc {
  color: rgba(251,248,241,0.82);
  max-width: 46ch;
  margin-bottom: 22px;
}
.pivot-meta {
  color: rgba(251,248,241,0.6);
  font-size: 0.82rem;
  margin-top: 14px;
}
.pivot-visual {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}
.pivot-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(251,248,241,0.25);
}
.pivot-ring-1 { inset: 0; }
.pivot-ring-2 { inset: -18px; }
.pivot-circle {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pivot-circle i { font-size: 1.2rem; margin-bottom: 2px; }
.pivot-circle-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}
.pivot-circle-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 1024px) { .pivot-visual { display: none; } }

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s var(--ease);
  z-index: 999;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification i { color: var(--moss); }
.notification-error i { color: var(--clay); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--ink) !important; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 48px; }
.mb-3 { margin-bottom: 16px; }
.dark-bg { background: var(--ink); color: var(--white); }
.dark-bg .eyebrow { color: var(--gold); }
.dark-bg .eyebrow::before { background: var(--gold); }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .pivot-card { grid-template-columns: 1fr; padding: 52px 48px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta-btn { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 100px 0 40px; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
}