/* ==========================================================================
   AL DECK — styles.css
   Yoga & ceremony space inside Zeneidas Surf Garden (sister brand)
   Palette: nature & sunset — beige, orange, yellow, jungle green
   ========================================================================== */

:root{
  --sand:        #F4E9CE;   /* warm beige background */
  --sand-dim:    #EAD9AE;   /* deeper beige, for cards on sand */
  --ink:         #26402A;   /* deep jungle green — dark sections, headings */
  --ink-soft:    #35592F;   /* lighter jungle green, gradients */
  --rust:        #E17A34;   /* sunset orange — primary CTA */
  --rust-deep:   #B65A1F;
  --ocean:       #4C7A44;   /* jungle green accent — secondary */
  --gold:        #F0B93F;   /* sunset yellow — small highlights */
  --charcoal:    #2A2118;   /* body text on sand */
  --paper:       #FBF3E1;   /* near-white warm paper, for contrast panels on ink */
  --line:        rgba(42,33,24,0.14);
  --line-onink:  rgba(251,243,225,0.16);
  --whatsapp:    #2FA845;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 100px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--sand);
  color:var(--charcoal);
  font-family:'DM Sans', sans-serif;
  font-weight:400;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{list-style:none;}
.container{max-width:1140px; margin:0 auto; padding:0 28px;}

h1,h2,h3{
  font-family:'Cormorant Garamond', serif;
  font-weight:400;
  letter-spacing:-0.01em;
  color:var(--ink);
}
.mono{
  font-family:'Space Mono', monospace;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
}
.section-label{
  display:block;
  color:var(--rust);
  margin-bottom:14px;
  opacity:0.9;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'DM Sans', sans-serif;
  font-size:14.5px; font-weight:500;
  padding:14px 26px;
  border-radius:var(--radius-sm);
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--rust); color:var(--paper); box-shadow:0 3px 0 var(--rust-deep);}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 5px 0 var(--rust-deep);}
.btn-whatsapp{
  background:var(--whatsapp); color:#fff;
  padding:10px 20px; font-size:13.5px;
  box-shadow:0 2px 0 #1f7a30;
}
.btn-whatsapp:hover{transform:translateY(-1px);}
.btn-outline{border:1px solid var(--line-onink); color:var(--paper);}
.btn-outline:hover{background:rgba(251,246,234,0.08); border-color:var(--paper);}
.btn-outline-dark{border:1px solid var(--line); color:var(--ink);}
.btn-outline-dark:hover{background:rgba(31,54,38,0.06); border-color:var(--ink);}
.btn-big{padding:17px 34px; font-size:15.5px;}
.btn-wa-exp{
  font-family:'Space Mono', monospace;
  font-size:11.5px; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--whatsapp); border:1px solid rgba(47,168,69,0.5);
  padding:9px 16px; border-radius:var(--radius-sm);
  transition:background .2s, color .2s;
}
.btn-wa-exp:hover{background:var(--whatsapp); color:#fff;}

/* ===== HEADER ===== */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(241,232,214,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .2s, background .2s;
}
.site-header.scrolled{border-color:var(--line); background:rgba(241,232,214,0.97);}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:12px 28px;}
.logo-link{font-family:'Cormorant Garamond', serif; font-size:23px; color:var(--ink); display:flex; align-items:baseline; gap:6px;}
.logo-link .logo-mark{font-style:italic; color:var(--rust); font-weight:500;}
.site-nav{display:flex; gap:30px; font-size:14px;}
.site-nav a{color:var(--charcoal); opacity:0.75; transition:opacity .2s, color .2s;}
.site-nav a:hover{opacity:1; color:var(--rust);}
.header-actions{display:flex; align-items:center; gap:14px;}
.lang-toggle{
  font-family:'Space Mono', monospace; font-size:12px;
  border:1px solid var(--line); background:none; color:var(--charcoal);
  padding:8px 13px; border-radius:var(--radius-sm); cursor:pointer;
  transition:border-color .2s, color .2s;
}
.lang-toggle:hover{border-color:var(--rust); color:var(--rust);}

/* ===== HERO ===== */
.hero{
  display:grid; grid-template-columns:1fr 1fr; min-height:80vh;
}
.hero-text{
  background:var(--ink);
  position:relative;
  padding:100px 56px;
  display:flex; flex-direction:column; justify-content:center;
}
.hero-text::before{
  content:"";
  position:absolute; inset:0;
  background-image:repeating-linear-gradient(115deg, rgba(251,246,234,0.035) 0px, rgba(251,246,234,0.035) 1px, transparent 1px, transparent 90px);
  pointer-events:none;
}
.hero-text > *{position:relative;}
.hero-photo{position:relative; overflow:hidden; min-height:340px;}
.hero-photo img{width:100%; height:100%; object-fit:cover; display:block; position:absolute; inset:0;}
.hero-text .section-label{color:var(--gold);}
.hero-text h1{
  font-size:clamp(34px, 3.6vw, 54px);
  line-height:1.08; color:var(--paper); max-width:13ch; margin-bottom:22px;
}
.hero-text h1 em{color:var(--rust); font-style:italic;}
.hero-text p{
  font-family:'DM Sans', sans-serif; font-weight:400; font-size:17px;
  color:rgba(251,246,234,0.85); max-width:44ch; margin-bottom:34px; line-height:1.6;
}

/* ===== HERO QUICK-ACTION LINKS ===== */
.hero-doors{display:flex; flex-wrap:wrap; gap:32px; margin-bottom:22px;}
.door-link{
  display:inline-flex; align-items:baseline; gap:10px;
  border-bottom:1px solid rgba(251,243,225,0.35);
  padding-bottom:6px;
  transition:border-color .2s;
}
.door-link:hover{border-color:var(--paper);}
.door-icon{font-size:19px; font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;}
.door-title{
  font-family:'Cormorant Garamond', serif; font-size:22px; font-style:italic;
  color:var(--paper);
}
.door-arrow{color:rgba(251,243,225,0.7); font-size:16px;}
.hero-location{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Space Mono', monospace; font-size:12.5px;
  color:rgba(251,243,225,0.72);
  border-bottom:1px dotted rgba(251,243,225,0.4);
  padding-bottom:2px;
  transition:color .2s;
}
.hero-location:hover{color:var(--paper);}

/* ===== STRIP ===== */
.strip{background:var(--rust); color:var(--paper); padding:15px 0; overflow:hidden; white-space:nowrap; border-bottom:1px solid var(--rust-deep);}
.strip-track{display:inline-block; font-family:'Space Mono', monospace; font-size:12.5px; letter-spacing:0.05em; animation:scroll 30s linear infinite;}
.strip-track span{margin:0 26px; opacity:0.95;}
@keyframes scroll{0%{transform:translateX(0);} 100%{transform:translateX(-50%);}}

/* ===== SECTIONS GENERIC ===== */
section{padding:72px 0;}
.section-intro{font-size:16.5px; font-weight:300; opacity:0.75; max-width:58ch; margin-top:14px;}
h2{font-size:clamp(30px,3.6vw,44px); margin-bottom:6px; line-height:1.08;}

/* ===== ABOUT ===== */
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;}
.about-copy p{font-size:17px; font-weight:300; opacity:0.85; margin-bottom:18px;}
.about-copy p.lede{
  font-family:'Cormorant Garamond', serif; font-size:26px; font-style:italic;
  opacity:1; color:var(--ink); line-height:1.4;
}
.about-visual{
  aspect-ratio:4/5; border-radius:var(--radius-lg);
  background-image:linear-gradient(0deg, rgba(31,28,20,0.55) 0%, transparent 55%), url('../assets/img/about-altar.jpg');
  background-size:cover; background-position:center;
  display:flex; align-items:flex-end; padding:30px;
  box-shadow:0 24px 50px -22px rgba(38,64,42,0.4);
}
.about-visual span{font-family:'Cormorant Garamond', serif; font-style:italic; color:var(--paper); font-size:21px; line-height:1.35;}

/* ===== EDITORIAL LAYOUT (photo + plain list, no card chrome) ===== */
.editorial-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center; margin-top:44px;}
.editorial-visual{border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5;}
.editorial-visual img{width:100%; height:100%; object-fit:cover; display:block;}

/* ===== PHOTO DIVIDER (fills gaps between sections) ===== */
.photo-divider{padding:0 0 72px;}
.photo-divider .container{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
.photo-divider img{width:100%; height:300px; object-fit:cover; border-radius:var(--radius-lg); display:block;}
.photo-divider-single .container{grid-template-columns:1fr;}
.photo-divider-single img{height:360px;}
.simple-list{list-style:none;}
.simple-list li{display:flex; gap:18px; padding:22px 0; border-top:1px solid var(--line);}
.simple-list li:first-child{border-top:none; padding-top:0;}
.simple-list .mark{font-size:22px; flex-shrink:0; line-height:1.3; color:var(--charcoal); font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;}
.simple-list h3{font-size:21px; margin-bottom:6px;}
.simple-list p{font-size:14.5px; opacity:0.75; font-weight:300;}

/* ===== SCHEDULE (Momoyoga) ===== */
.schedule-section{
  position:relative;
  background-image:linear-gradient(0deg, var(--ink) 0%, rgba(38,64,42,0.88) 40%, rgba(38,64,42,0.72) 100%), url('../assets/img/deck-empty-wide.jpg');
  background-size:cover; background-position:center 70%;
  color:var(--paper);
}
.schedule-section h2{color:var(--paper);}
.schedule-section .section-intro{color:rgba(251,246,234,0.72);}
.offer-tags{display:flex; flex-wrap:wrap; gap:12px; margin-top:36px;}
.offer-tag{
  font-family:'Space Mono', monospace; font-size:12.5px; letter-spacing:0.03em;
  padding:12px 20px; border-radius:var(--radius-sm);
  background:var(--sand-dim); border:1px solid var(--line);
  color:var(--charcoal); text-decoration:none; display:inline-block;
  transition:background .2s, border-color .2s;
}
a.offer-tag:hover{background:var(--paper); border-color:var(--rust);}
.schedule-section .offer-tag{
  background:rgba(251,243,225,0.08); border:1px solid rgba(251,243,225,0.24);
  color:var(--paper);
}
.schedule-section a.offer-tag:hover{background:rgba(251,243,225,0.18); border-color:rgba(251,243,225,0.5);}
.schedule-ig{
  display:inline-flex; align-items:center; gap:8px; margin-top:24px;
  font-size:14px; color:rgba(251,243,225,0.75); transition:color .2s;
  border-bottom:1px dotted rgba(251,243,225,0.4); padding-bottom:2px;
}
.schedule-ig .mono{color:var(--gold); font-size:13px;}
.schedule-ig:hover{color:var(--paper);}
.schedule-private-note{margin-top:18px;}
.schedule-private-note a{
  font-size:13.5px; color:rgba(251,243,225,0.65); text-decoration:underline;
  text-underline-offset:3px; text-decoration-color:rgba(251,243,225,0.3);
  transition:color .2s;
}
.schedule-private-note a:hover{color:var(--paper);}
.schedule-foot{
  display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;
  margin-top:36px; padding-top:26px; border-top:1px solid var(--line-onink);
}
.schedule-foot p{font-size:13.5px; color:rgba(251,246,234,0.55); max-width:46ch;}

/* ===== BOOKING RULE ===== */
.rule{
  background:var(--sand-dim); border:1.5px dashed var(--line); border-radius:var(--radius-lg);
  padding:46px 40px; display:grid; grid-template-columns:auto 1fr auto; gap:32px; align-items:center;
}
.rule-icon{width:56px; height:56px; border-radius:14px; background:var(--rust); color:var(--paper); display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;}
.rule h3{font-size:23px; margin-bottom:8px;}
.rule p{font-size:15px; opacity:0.75; font-weight:300; max-width:52ch;}

/* ===== PRIVATE SESSIONS ===== */
.exp-grid{display:grid; grid-template-columns:repeat(2, 1fr); gap:22px; margin-top:44px;}
.exp-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; transition:transform .2s, box-shadow .2s;
}
.exp-card:hover{transform:translateY(-4px); box-shadow:0 18px 34px -20px rgba(36,31,26,0.35);}
.exp-card-img{aspect-ratio:4/3; overflow:hidden;}
.exp-card-img img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease;}
.exp-card:hover .exp-card-img img{transform:scale(1.05);}
.exp-card-body{padding:26px 24px 24px;}
.exp-label{font-family:'Cormorant Garamond', serif; font-size:21px; display:block; margin-bottom:10px; color:var(--ink);}
.exp-card-body p{font-size:14px; opacity:0.75; font-weight:300; line-height:1.55; min-height:64px;}
.exp-card-footer{display:flex; justify-content:space-between; align-items:center; margin-top:20px; padding-top:18px; border-top:1px solid var(--line);}
.exp-note{font-size:12px; font-family:'Space Mono', monospace; opacity:0.55; letter-spacing:0.02em;}
.exp-location-note{font-size:13.5px; opacity:0.6; margin-top:32px; font-family:'Space Mono', monospace;}

/* ===== MOMENTS GALLERY ===== */
.gallery-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:12px; margin-top:44px;
}
.gallery-item{
  aspect-ratio:3/4; border-radius:var(--radius-md); overflow:hidden;
  background:var(--sand-dim);
}
.gallery-item img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease;}
.gallery-item:hover img{transform:scale(1.04);}

/* ===== STEPS ===== */
.steps-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:48px;}
.step-number{font-family:'Space Mono', monospace; color:var(--rust); font-size:13px; letter-spacing:0.06em;}
.step h3{font-size:23px; margin:14px 0 10px;}
.step p{font-size:15px; opacity:0.75; font-weight:300;}

/* ===== CONTACT ===== */
.contact-section{
  background-image:linear-gradient(155deg, rgba(38,64,42,0.85), rgba(38,64,42,0.9)), url('../assets/img/sunset-beach.jpg');
  background-size:cover; background-position:center;
  color:var(--paper); border-radius:var(--radius-lg); margin:0 28px; max-width:1140px; margin-inline:auto;
}
.contact-inner{padding:64px 56px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center;}
.contact-inner .section-label{color:rgba(251,246,234,0.75);}
.contact-inner h2{color:var(--paper);}
.contact-inner p{font-size:16px; font-weight:300; opacity:0.85; max-width:46ch; margin:14px 0 26px;}
.contact-info{display:flex; flex-direction:column; gap:14px;}
.contact-info-item{
  display:flex; justify-content:space-between; align-items:center;
  padding:17px 20px; background:rgba(251,246,234,0.08); border:1px solid rgba(251,246,234,0.18);
  border-radius:var(--radius-md); font-size:14px; gap:12px;
}
.contact-info-label{opacity:0.75; white-space:nowrap;}
.contact-info-value a{transition:opacity .2s;}
.contact-info-value a:hover{opacity:0.7;}

/* ===== FOOTER ===== */
.site-footer{padding:64px 0 140px;}
.footer-inner{display:flex; flex-direction:column; align-items:center; gap:22px; text-align:center;}
.footer-nav{display:flex; gap:26px; flex-wrap:wrap; justify-content:center; font-size:14px;}
.footer-nav a{opacity:0.7; transition:opacity .2s;}
.footer-nav a:hover{opacity:1; color:var(--rust);}
.footer-copy{font-family:'Space Mono', monospace; font-size:11.5px; opacity:0.5;}

/* ===== BOTTOM NAV (mobile) ===== */
.bottom-nav{
  position:fixed; bottom:16px; left:50%; transform:translateX(-50%) translateY(0);
  display:none; align-items:center; gap:6px;
  background:var(--ink); border-radius:var(--radius-sm);
  padding:8px; box-shadow:0 12px 30px -10px rgba(31,54,38,0.5);
  z-index:70; transition:transform .3s ease, opacity .3s ease;
}
.bottom-nav.hidden{transform:translateX(-50%) translateY(120%); opacity:0;}
.bottom-nav-item{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  color:rgba(251,246,234,0.7); font-size:10.5px; padding:8px 14px; border-radius:var(--radius-sm);
  transition:background .2s, color .2s;
}
.bottom-nav-item:hover{background:rgba(251,246,234,0.08); color:var(--paper);}
.nav-icon{font-size:16px;}
.bottom-nav-wa{
  width:46px; height:46px; border-radius:50%; background:var(--whatsapp);
  display:flex; align-items:center; justify-content:center; margin:0 2px;
}
.bottom-nav-wa svg{width:22px; height:22px; fill:#fff;}

/* ===== SCROLL REVEAL ===== */
.sa-reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
.sa-reveal.sa-visible{opacity:1; transform:translateY(0);}
.sa-reveal-delay-1{transition-delay:.1s;}
.sa-reveal-delay-2{transition-delay:.2s;}
.sa-reveal-delay-3{transition-delay:.3s;}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .site-nav{display:none;}
  .hero{grid-template-columns:1fr;}
  .hero-photo{order:-1; min-height:260px;}
  .hero-text{padding:48px 24px 56px;}
  .about-grid, .contact-inner{grid-template-columns:1fr;}
  .about-visual{order:-1; aspect-ratio:16/9;}
  .exp-grid, .steps-grid{grid-template-columns:1fr;}
  .editorial-grid{grid-template-columns:1fr; gap:28px;}
  .editorial-visual{order:-1; aspect-ratio:16/9;}
  .photo-divider .container{grid-template-columns:1fr 1fr; gap:8px;}
  .photo-divider img{height:160px;}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);}
  .rule{grid-template-columns:1fr; text-align:left;}
  .contact-inner{padding:44px 26px;}
  .contact-section{margin:0 16px;}
  .bottom-nav{display:flex;}
  .site-footer{padding-bottom:140px;}
}
@media (max-width: 480px){
  .hero-doors{flex-direction:column; gap:14px;}
}
@media (prefers-reduced-motion: reduce){
  .strip-track{animation:none;}
  html{scroll-behavior:auto;}
  .sa-reveal{opacity:1; transform:none; transition:none;}
}
