/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:14px;}
body{font-family:'Montserrat',system-ui,sans-serif;background:#F7F3EC;color:var(--text);line-height:1.7;overflow-x:hidden;}
h1,h2,h3,h4,h5{font-family:'Cormorant Garamond',serif;font-weight:400;line-height:1.2;}
img{max-width:100%;display:block;height:auto;}
a{text-decoration:none;}

/* ═══════════════════════════════════
   COLOR TOKENS
═══════════════════════════════════ */
:root{
  --cream:      #F7F3EC;
  --cream2:     #EDE7D9;
  --cream3:     #E8E0CF;
  --gold:       #D1AD64;
  --gold-lt:    #DEC07E;
  --gold-btn:   linear-gradient(135deg,#DEC07E 0%,#C9A050 100%);
  --dark:       #8a7248;
  --dark2:      #5a4428;
  --text:       #3d3428;
  --text-mid:   #6b5e4a;
  --text-lt:    #9a8b78;
  --teal-dot:   #7BA7A0;
  --border:     rgba(168,137,58,0.2);
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:#fff;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 3rem;height:80px;
  border-bottom:1px solid var(--border);
  transition:box-shadow 0.3s;
}
#nav.scrolled{box-shadow:0 2px 20px rgba(0,0,0,0.08);}
.nav-logo img{height:52px;width:auto;transition:height 0.3s;}
#nav.scrolled .nav-logo img{height:44px;}
.nav-links{display:flex;align-items:center;gap:0.2rem;list-style:none;}
.nav-links a{
  font-size:0.72rem;letter-spacing:0.16em;text-transform:uppercase;font-weight:500;
  color:var(--gold);padding:0.4rem 0.75rem;transition:color 0.2s;
}
.nav-links a:hover{color:var(--gold);}
.nav-book{
  margin-left:0.5rem;
  background:var(--gold-btn)!important;
  color:#fff!important;
  padding:0.6rem 1.4rem!important;
  font-weight:600!important;
  letter-spacing:0.14em!important;
  transition:opacity 0.2s!important;
}
.nav-book:hover{opacity:0.85!important;}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--gold);transition:0.3s;}

/* DROPDOWN */
.has-dropdown{position:relative;}
.has-dropdown>a::after{content:'▾';margin-left:0.3em;font-size:0.65em;vertical-align:middle;}
.dropdown{
  display:none;position:absolute;top:100%;left:0;
  background:#fff;border:1px solid var(--border);
  min-width:190px;z-index:1001;
  box-shadow:0 4px 24px rgba(0,0,0,0.09);
}
.has-dropdown:hover .dropdown{display:block;}
.dropdown li{list-style:none;}
.dropdown li a{
  display:block;padding:0.75rem 1.2rem;
  font-size:0.65rem;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--text-mid);font-weight:500;
  transition:color 0.2s,background 0.2s;
  border-bottom:1px solid var(--border);
}
.dropdown li:last-child a{border-bottom:none;}
.dropdown li a:hover{color:var(--gold);background:var(--cream);}

/* ═══════════════════════════════════
   HERO — VIDEO
═══════════════════════════════════ */
.hero{
  position:relative;
  height:50vh;min-height:320px;max-height:560px;
  overflow:hidden;
  background:#c8bda8;
  margin-top:80px;
}
.hero video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center center;
}
.hero-fade{
  position:absolute;bottom:0;left:0;right:0;
  height:40%;
  background:linear-gradient(to bottom, transparent 0%, var(--cream) 100%);
  pointer-events:none;z-index:1;
}

/* ═══════════════════════════════════
   HERO TEXT — below video, cream bg
═══════════════════════════════════ */
.hero-text{
  background:var(--cream);
  padding:3rem 8% 4rem;
}
.hero-tag{
  display:flex;align-items:center;gap:0.5rem;
  font-size:0.6rem;letter-spacing:0.28em;text-transform:uppercase;
  color:var(--teal-dot);font-weight:600;margin-bottom:1.8rem;
}
.hero-tag::before{display:none;}
.hero-text h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:300;color:var(--gold);
  line-height:1.05;margin-bottom:1rem;letter-spacing:0.01em;
}
.hero-text h1 em{font-style:italic;}
.hero-text p{
  font-size:0.95rem;line-height:1.9;
  color:var(--text-mid);max-width:600px;margin-bottom:2.5rem;
}
.hero-btns{display:flex;gap:0.8rem;flex-wrap:wrap;}
.btn-fill{
  display:inline-block;padding:0.9rem 2rem;
  background:var(--gold-btn);color:#fff;
  font-size:0.63rem;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;
  transition:opacity 0.25s,transform 0.2s;
  border:none;cursor:pointer;
}
.btn-fill:hover{opacity:0.85;transform:translateY(-1px);}
.btn-stroke{
  display:inline-block;padding:0.9rem 2rem;
  border:1.5px solid var(--text);color:var(--text);
  font-size:0.63rem;font-weight:600;letter-spacing:0.2em;text-transform:uppercase;
  transition:border-color 0.25s,color 0.25s,transform 0.2s;
  background:none;cursor:pointer;
}
.btn-stroke:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-1px);}

/* ═══════════════════════════════════
   ICON BAR
═══════════════════════════════════ */
.icon-bar{
  background:var(--cream2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:3rem 8%;
  margin-top:0;
}
.hero-text + .icon-bar{
  margin-top:4rem;
}
.icon-bar-inner{
  max-width:900px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;
}
.icon-item{
  text-align:center;padding:0 2rem;
  border-right:1px solid var(--border);
}
.icon-item:last-child{border-right:none;}
.icon-item svg{width:32px;height:32px;margin:0 auto 1rem;stroke:var(--gold);fill:none;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.icon-name{font-size:0.78rem;color:var(--gold);font-weight:500;margin-bottom:0.3rem;letter-spacing:0.04em;}
.icon-sub{font-size:0.72rem;color:var(--text-lt);}

/* ═══════════════════════════════════
   SANCTUARY
═══════════════════════════════════ */
.sanctuary{
  background:var(--cream);
  padding:6rem 8%;
  text-align:center;
}
.s-inner{max-width:820px;margin:0 auto;}
.eyebrow{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.6rem;letter-spacing:0.28em;text-transform:uppercase;
  color:var(--teal-dot);font-weight:600;margin-bottom:1.5rem;
}
.eyebrow::before{display:none;}
.sanctuary h2{
  font-size:clamp(2rem,4vw,3.2rem);
  color:var(--gold);margin-bottom:1.5rem;font-weight:400;
}
.gold-rule{width:48px;height:1px;background:var(--gold);margin:0 auto 2rem;}
.sanctuary p{font-size:1.05rem;line-height:2;color:var(--text-mid);max-width:780px;margin:0 auto 1.2rem;}
.sanctuary .quote{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;font-size:1.4rem;color:var(--gold);
  margin-top:1.5rem;display:block;
}

/* ═══════════════════════════════════
   PRIMARY OFFERINGS — 3 cards
═══════════════════════════════════ */
.primary-offerings{
  background:var(--cream);
  padding:1rem 6% 6rem;
}
.section-header{text-align:center;margin-bottom:3.5rem;}
.section-header h2{font-size:clamp(1.8rem,3.5vw,3rem);color:var(--gold);margin:1rem 0 1.5rem;font-weight:400;}
.three-grid{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
}
.offer-card{background:#fff;overflow:hidden;}
.offer-card-img{width:100%;aspect-ratio:4/3;overflow:hidden;background:var(--cream3);}
.offer-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s;}
.offer-card:hover .offer-card-img img{transform:scale(1.04);}
.offer-card-body{padding:1.8rem 1.8rem 1.6rem;text-align:center;}
.offer-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.35rem;color:var(--gold);
  margin-bottom:0.8rem;font-weight:400;
}
.offer-card p{font-size:0.78rem;color:var(--text-mid);line-height:1.8;margin-bottom:1.2rem;}
.explore-link{
  font-size:0.6rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);font-weight:700;
  display:inline-flex;align-items:center;gap:0.4rem;
  transition:gap 0.2s;border:none;background:none;cursor:pointer;
}
.explore-link:hover{gap:0.7rem;}

/* ═══════════════════════════════════
   SIGNATURE OFFERINGS — 7 grid
═══════════════════════════════════ */
.sig-offerings{background:#faf8f4;padding:6rem 5%;}
.seven-grid{
  max-width:1300px;margin:0 auto;
  display:grid;grid-template-columns:repeat(7,1fr);gap:1.2rem;
}
.sig-card{text-align:center;}
.sig-card-img{width:100%;aspect-ratio:1/1;overflow:hidden;background:var(--cream3);margin-bottom:1rem;}
.sig-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s;}
.sig-card:hover .sig-card-img img{transform:scale(1.06);}
.sig-card h3{
  font-size:0.6rem;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--text);font-weight:700;font-family:'Montserrat',sans-serif;
  margin-bottom:0.5rem;line-height:1.4;
}
.sig-card h3.gold{color:var(--gold);}
.sig-card p{font-size:0.68rem;color:var(--text-lt);line-height:1.7;}

/* ═══════════════════════════════════
   EXPERIENCE — dark split
═══════════════════════════════════ */
.exp-tagline-band{
  background:var(--cream);
  padding:2rem 8%;
  display:flex;align-items:center;justify-content:center;gap:2rem;
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
}
.exp-tagline-band svg{width:28px;height:28px;stroke:var(--gold);fill:none;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.exp-tagline-band span{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;font-size:1.5rem;color:var(--gold);letter-spacing:0.04em;
}
.experience{display:grid;grid-template-columns:1fr 1fr;min-height:500px;}
.exp-img{overflow:hidden;background:#2a231a;min-height:480px;}
.exp-img img{width:100%;height:100%;object-fit:cover;opacity:0.92;transition:transform 0.6s;}
.exp-img:hover img{transform:scale(1.03);}
.exp-text{
  background:var(--dark);
  padding:4.5rem 5%;
  display:flex;flex-direction:column;justify-content:center;
}
.exp-dot-tag{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.58rem;letter-spacing:0.24em;text-transform:uppercase;
  color:var(--gold-lt);font-weight:600;margin-bottom:1.2rem;
}
.exp-dot-tag::before{display:none;}
.exp-text h2{font-size:clamp(1.8rem,3vw,2.8rem);color:#fff;font-weight:300;margin-bottom:1.5rem;}
.exp-text .btn-fill{align-self:flex-start;}
.exp-text p{font-size:0.84rem;line-height:2;color:rgba(245,240,232,0.72);margin-bottom:0.8rem;}
.exp-features{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.2rem 2rem;margin:2rem 0;
  border-top:1px solid rgba(201,169,110,0.15);padding-top:2rem;
}
.exp-feat-title{
  font-size:0.58rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold-lt);font-weight:700;margin-bottom:0.3rem;
  border-left:2px solid var(--gold-lt);padding-left:0.7rem;
}
.exp-feat-desc{font-size:0.75rem;color:rgba(245,240,232,0.6);line-height:1.6;padding-left:0.7rem;}

/* ═══════════════════════════════════
   DIGITAL PROGRAMS
═══════════════════════════════════ */
.digital{background:var(--cream);padding:6rem 8%;}
.digital-inner{max-width:1200px;margin:0 auto;}
.digital .section-header{text-align:center;}
.digital h2{font-size:clamp(1.8rem,3.5vw,3rem);color:var(--gold);margin:1rem 0 1rem;font-weight:400;}
.digital .intro-p{font-size:0.88rem;color:var(--text-mid);line-height:1.9;max-width:620px;margin:0 auto 3rem;text-align:center;}
.digital-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem;}
.digital-card{
  background:#fff;padding:2.2rem 2rem;border:1px solid var(--border);
  position:relative;overflow:hidden;transition:border-color 0.3s,transform 0.3s;
}
.digital-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--gold-btn);transform:scaleX(0);transform-origin:left;transition:transform 0.4s;
}
.digital-card:hover{border-color:var(--gold);transform:translateY(-3px);}
.digital-card:hover::before{transform:scaleX(1);}
.digital-card-icon{
  width:44px;height:44px;border-radius:50%;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;
}
.digital-card-icon svg{width:22px;height:22px;stroke:var(--gold);fill:none;stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;}
.digital-card h3{font-family:'Cormorant Garamond',serif;font-size:1.25rem;color:var(--text);margin-bottom:0.7rem;font-weight:500;}
.digital-card p{font-size:0.76rem;color:var(--text-lt);line-height:1.8;margin-bottom:1.2rem;}
.digital-card .tag{font-size:0.55rem;letter-spacing:0.18em;text-transform:uppercase;color:var(--gold);font-weight:700;}

/* ═══════════════════════════════════
   DESTINATION CTA
═══════════════════════════════════ */
.destination{
  background:var(--cream2);padding:6rem 8% 3rem;
  text-align:center;border-top:1px solid var(--border);
}
.destination .italic-tag{
  font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.1rem;
  color:var(--gold);margin-bottom:1.5rem;display:block;
}
.destination h2{font-size:clamp(2rem,4vw,3.5rem);color:var(--gold);margin-bottom:1.2rem;font-weight:400;}
.destination .sub{font-size:0.9rem;color:var(--text-mid);margin-bottom:0.8rem;}
.destination .phone{
  font-family:'Cormorant Garamond',serif;font-size:clamp(1.4rem,3vw,2rem);
  color:var(--gold);margin:1rem 0 2rem;display:block;letter-spacing:0.06em;
}
.destination a.phone:hover{color:var(--text);}

/* ═══════════════════════════════════
   PAGE HERO (subpages)
═══════════════════════════════════ */
.page-hero{
  background:var(--cream2);
  padding:3rem 8% 2rem;
  border-bottom:1px solid var(--border);
  margin-top:80px;
}
.page-hero .eyebrow{margin-bottom:1rem;}
.page-hero h1{
  font-size:clamp(2.5rem,5vw,4.5rem);
  color:var(--gold);font-weight:300;margin-bottom:1.2rem;
}
.page-hero p{font-size:0.95rem;color:var(--text-mid);max-width:580px;line-height:1.9;}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer{background:#fff;padding:5rem 8% 2.5rem;border-top:1px solid var(--border);}
.footer-grid{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:4rem;padding-bottom:4rem;
  border-bottom:1px solid var(--border);
  max-width:1200px;margin:0 auto;
}
.footer-logo img{height:50px;width:auto;margin-bottom:0.8rem;}
.footer-brand-sub{
  display:flex;align-items:center;gap:0.4rem;
  font-size:0.58rem;letter-spacing:0.18em;text-transform:uppercase;
  color:var(--text-lt);margin-bottom:1.2rem;
}
.footer-about{font-size:0.76rem;color:var(--text-lt);line-height:1.9;margin-bottom:1.2rem;max-width:280px;}
.footer-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;
  border:1px solid var(--border);transition:border-color 0.3s;margin-right:0.5rem;
}
.footer-social a:hover{border-color:var(--gold);}
.footer-social svg{width:15px;height:15px;stroke:var(--gold);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.footer-col h4{font-size:0.58rem;letter-spacing:0.24em;text-transform:uppercase;color:var(--text);font-weight:700;margin-bottom:1.2rem;}
.footer-col ul{list-style:none;}
.footer-col li{margin-bottom:0.65rem;}
.footer-col a{font-size:0.78rem;color:var(--text-lt);transition:color 0.2s;}
.footer-col a:hover{color:var(--gold);}
.footer-visit p,.footer-visit a{font-size:0.78rem;color:var(--text-lt);line-height:1.8;}
.footer-visit a{color:var(--gold);}
.footer-bottom{
  max-width:1200px;margin:2rem auto 0;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:0.5rem;
}
.footer-bottom p{font-size:0.65rem;color:var(--text-lt);letter-spacing:0.04em;}

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.8s ease,transform 0.8s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}
.rd1{transition-delay:0.1s;}.rd2{transition-delay:0.2s;}.rd3{transition-delay:0.3s;}.rd4{transition-delay:0.4s;}

/* ═══════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════ */
.mob-nav{
  display:none;position:fixed;inset:0;
  background:rgba(245,240,232,0.99);z-index:999;
  flex-direction:column;align-items:center;justify-content:center;gap:1.8rem;
}
.mob-nav.open{display:flex;}
.mob-nav a{
  font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:300;
  color:var(--text);transition:color 0.2s;
}
.mob-nav a:hover{color:var(--gold);}
.mob-close{position:absolute;top:1.5rem;right:1.8rem;background:none;border:none;cursor:pointer;font-size:1.4rem;color:var(--gold);}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media(max-width:1100px){
  .seven-grid{grid-template-columns:repeat(4,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem;}
}
@media(max-width:900px){
  .experience{grid-template-columns:1fr;}
  .exp-img{min-height:300px;}
  .three-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto;}
}
@media(max-width:768px){
  #nav{padding:0 1.2rem;height:68px;}
  .nav-links{display:none;}
  .hamburger{display:flex;}
  .hero{margin-top:68px;}
  .hero-text{padding:2.5rem 5% 3.5rem;}
  .hero-text h1{font-size:clamp(2.8rem,10vw,4rem);}
  .icon-bar{padding:2.5rem 5%;}
  .icon-bar-inner{grid-template-columns:1fr;gap:1.5rem;}
  .icon-item{border-right:none;border-bottom:1px solid var(--border);padding-bottom:1.5rem;}
  .icon-item:last-child{border-bottom:none;}
  .sanctuary,.primary-offerings,.sig-offerings,.digital,.destination{padding:4rem 5%;}
  .seven-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem;}
  .exp-text{padding:3rem 5%;}
  .exp-features{grid-template-columns:1fr;}
  footer{padding:4rem 5% 2rem;}
  .footer-grid{grid-template-columns:1fr;gap:2.5rem;}
  .exp-tagline-band{flex-wrap:wrap;text-align:center;padding:1.2rem 5%;}
  .page-hero{padding:6rem 5% 4rem;}
}
@media(max-width:480px){
  .seven-grid{grid-template-columns:repeat(2,1fr);}
  .hero-btns{flex-direction:column;}
  .btn-fill,.btn-stroke{text-align:center;}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;}
}
