/* ── RESET & ROOT ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --emerald:#1B4D3E;--forest:#0D3322;--leaf:#3A7D5A;
  --sage:#7DB89A;--mist:#B8D8C8;--amber:#C97D20;
  --gold:#E8A040;--coral:#D4603A;--sun:#F0B060;
  --cream:#FBF5E8;--parchment:#F2E8D0;--warm-white:#FDFAF4;
}
html{scroll-behavior:smooth;font-size:16px}
body{
  background:var(--warm-white);
  color:var(--forest);
  font-family:'DM Sans',sans-serif;
  font-weight:300;
  overflow-x:hidden;
  cursor:none;
}
@media(hover:none){body{cursor:auto}}
img{display:block;width:100%;height:100%;object-fit:cover}
a{text-decoration:none;color:inherit}
button{border:none;background:none;font-family:inherit;cursor:pointer}

/* ── CUSTOM CURSOR ── */
#cursor{
  position:fixed;width:26px;height:26px;
  pointer-events:none;z-index:9999;
  transform:translate(-50%,-50%);
}
#cursor svg{
  width:26px;height:26px;
  transition:transform .25s ease;
}
#cursor-dot{
  position:fixed;width:5px;height:5px;
  background:var(--amber);border-radius:50%;
  pointer-events:none;z-index:9998;
  transform:translate(-50%,-50%);
  transition:width .2s,height .2s;
}
@media(hover:none){#cursor,#cursor-dot{display:none}}

/* ── NAV ── */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:500;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.2rem 2.5rem;
  transition:background .4s,padding .4s,box-shadow .4s;
}
#nav.scrolled{
  background:rgba(13,51,34,.96);
  padding:.8rem 2.5rem;
  box-shadow:0 2px 30px rgba(0,0,0,.3);
  backdrop-filter:blur(12px);
}
.logo{display:flex;align-items:center;gap:.9rem;color:var(--cream)}
.nav-img-logo{height:38px;width:auto}
.nav-links{display:flex;gap:2.2rem;align-items:center;list-style:none}
.nav-links a{
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(251,245,232,.75);transition:color .3s;
}
.nav-links a:hover{color:var(--gold)}
.btn-reserve{
  background:var(--amber);color:var(--cream)!important;
  padding:.55rem 1.4rem;border-radius:2px;
  letter-spacing:.1em;transition:background .3s!important;
}
.btn-reserve:hover{background:var(--gold)!important}
/* Hamburger */
.hamburger{
  display:none;flex-direction:column;justify-content:center;
  gap:6px;width:36px;height:36px;padding:2px;
  background:none;border:none;
  cursor:pointer;flex-shrink:0;
}
.hamburger span{
  display:block;width:100%;height:2px;background:var(--cream);
  transform-origin:center;transition:transform .32s,opacity .25s,width .25s;
  border-radius:2px;
}
.hamburger span:nth-child(3){width:65%;}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
/* Mobile menu */
.mobile-menu{
  position:fixed;inset:0;z-index:499;
  background:rgba(8,26,17,.97);
  backdrop-filter:blur(16px);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:2rem;
  opacity:0;pointer-events:none;
  transition:opacity .38s ease;
}
.mobile-menu.open{opacity:1;pointer-events:all}
.mm-link{
  font-family:'Fraunces',serif;font-size:2.2rem;font-weight:200;
  color:var(--cream);letter-spacing:.06em;
  transition:color .25s,transform .25s;
  display:block;
}
.mm-link:hover{color:var(--gold);transform:translateX(6px)}
.mm-divider{
  width:40px;height:1px;background:rgba(232,160,64,.3);
  margin:.4rem 0;
}
@media(max-width:860px){
  .nav-links{display:none}
  .hamburger{display:flex}
}
@media(max-width:380px){
}

/* ── HERO ── */
.hero{
  position:relative;height:100svh;min-height:600px;
  display:flex;align-items:center;overflow:hidden;
}
.hero-photo{
  position:absolute;inset:0;
  background:url('images/new-hero.webp') center/cover no-repeat;
  transform:scale(1.06);
  transition:transform 8s ease;
}
.hero-photo.loaded{transform:scale(1)}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(160deg,rgba(13,51,34,.68) 0%,rgba(13,51,34,.3) 60%,rgba(201,125,32,.15) 100%);
}
#heroCanvas{position:absolute;inset:0;width:100%;height:100%;pointer-events:none}
.hero-inner{
  position:relative;z-index:2;
  max-width:1200px;margin:0 auto;padding:0 2.5rem;
  width:100%;
}
.hero-tag{
  display:inline-block;
  font-size:.68rem;letter-spacing:.24em;text-transform:uppercase;
  color:var(--gold);border:1px solid rgba(232,160,64,.4);
  padding:.35rem .9rem;margin-bottom:1.8rem;
  opacity:0;animation:fadeUp .9s .3s forwards;
}
.hero-title{
  font-family:'Fraunces',serif;font-weight:200;
  font-size:clamp(3rem,7vw,6rem);line-height:1.05;
  color:var(--cream);
  opacity:0;animation:fadeUp .9s .5s forwards;
}
.hero-title em{font-style:italic;color:var(--gold)}
.hero-sub{
  font-size:1rem;color:rgba(251,245,232,.7);
  margin:1.4rem 0 2.6rem;max-width:480px;
  opacity:0;animation:fadeUp .9s .7s forwards;
}
.hero-ctas{
  display:flex;gap:1.2rem;flex-wrap:wrap;
  opacity:0;animation:fadeUp .9s .9s forwards;
}
.btn-primary{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--amber);color:var(--cream);
  padding:.85rem 2rem;border-radius:2px;
  font-size:.82rem;letter-spacing:.1em;
  transition:background .3s,transform .2s;
}
.btn-primary:hover{background:var(--gold);transform:translateY(-2px)}
.btn-outline{
  display:inline-flex;align-items:center;gap:.5rem;
  border:1px solid rgba(251,245,232,.45);color:var(--cream);
  padding:.85rem 2rem;border-radius:2px;
  font-size:.82rem;letter-spacing:.1em;
  transition:all .3s;
}
.btn-outline:hover{background:rgba(251,245,232,.1);border-color:rgba(251,245,232,.7)}
.hero-scroll{
  position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  color:rgba(251,245,232,.45);font-size:.65rem;letter-spacing:.2em;
  z-index:2;animation:bounce 2.5s 1.5s infinite;
}
.hero-scroll svg{stroke:rgba(251,245,232,.45)}
@media(max-width:600px){.hero-scroll{display:none}}

/* ── STATS BAR ── */
.stats-bar{
  background:var(--forest);color:var(--cream);
  display:flex;justify-content:center;
  padding:1.4rem 2rem;gap:0;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.stat{
  flex:1;max-width:220px;text-align:center;
  padding:.4rem 1.5rem;
}
.stat+.stat{border-left:1px solid rgba(184,216,200,.12)}
.stat-val{
  font-family:'Fraunces',serif;font-size:1.6rem;font-weight:200;
  color:var(--gold);line-height:1;
}
.stat-lbl{font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(184,216,200,.75);margin-top:.3rem}
@media(max-width:600px){
  .stats-bar{flex-wrap:wrap;gap:.8rem}
  .stat{min-width:45%;border-left:none!important}
}

/* ── SECTIONS ── */
.section-tag{
  display:inline-block;font-size:.66rem;letter-spacing:.22em;
  text-transform:uppercase;color:var(--amber);
  margin-bottom:1rem;
}
.section-title{
  font-family:'Fraunces',serif;font-weight:200;
  font-size:clamp(2rem,4.5vw,3.4rem);line-height:1.1;
  color:var(--forest);
}
.section-title em{font-style:italic;color:var(--amber)}
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s ease,transform .8s ease}
.reveal.visible{opacity:1;transform:none}

/* ── ABOUT ── */
#about{
  position:relative;
  padding:8rem 2rem 9rem;
  background:var(--forest);
  overflow:hidden;
}

/* ambient rings */
.about-ring{
  position:absolute;border-radius:50%;
  border:1px solid rgba(201,125,32,.06);
  pointer-events:none;
}
.about-ring--1{
  width:700px;height:700px;
  top:-200px;left:-200px;
}
.about-ring--2{
  width:500px;height:500px;
  bottom:-180px;right:-100px;
  border-color:rgba(184,216,200,.05);
}

.about-inner{
  max-width:1200px;margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6rem;
  align-items:center;
}

/* ── IMAGE COLUMN ── */
.about-visual{
  position:relative;
  height:560px;
}

/* Corner frame lines — top-left and bottom-right L-shapes in amber */
.about-frame-tl,
.about-frame-br{
  position:absolute;
  pointer-events:none;
  z-index:4;
}
.about-frame-tl{
  top:-12px;left:-12px;
  width:48px;height:48px;
  border-top:2px solid var(--amber);
  border-left:2px solid var(--amber);
  opacity:.6;
}
.about-frame-br{
  bottom:-12px;right:-12px;
  width:48px;height:48px;
  border-bottom:2px solid var(--amber);
  border-right:2px solid var(--amber);
  opacity:.6;
}

/* Main tall image — left-anchored, full height */
.about-img-primary{
  position:absolute;
  left:0;top:0;
  width:68%;
  height:100%;
  overflow:hidden;
}
.about-img-primary img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform 6s ease;
}
.about-visual:hover .about-img-primary img{
  transform:scale(1.04);
}
/* subtle dark veil on main image */
.about-img-veil{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(13,51,34,.35) 0%, transparent 45%);
  pointer-events:none;
}

/* Accent image — smaller portrait, bottom-right, overlaps main */
.about-img-secondary{
  position:absolute;
  right:0;
  bottom:40px;
  width:44%;
  height:52%;
  overflow:hidden;
  /* 4px gap framed by the forest background color */
  outline:5px solid var(--forest);
  box-shadow:0 12px 40px rgba(0,0,0,.5);
  transition:transform .5s cubic-bezier(.2,.8,.3,1);
}
.about-img-secondary:hover{
  transform:translateY(-6px);
}
.about-img-secondary img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}
.about-img-secondary:hover img{
  transform:scale(1.05);
}

/* coordinate badge */
.about-badge{
  position:absolute;
  bottom:-18px;left:0;
  display:flex;align-items:center;gap:.5rem;
  background:rgba(13,51,34,.92);
  backdrop-filter:blur(10px);
  border:1px solid rgba(201,125,32,.22);
  padding:.45rem .9rem;
  color:rgba(232,160,64,.85);
  font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;
  z-index:5;
  box-shadow:0 4px 20px rgba(0,0,0,.4);
}
.about-badge svg{flex-shrink:0;color:var(--gold)}

/* elevation tag */
.about-elev{
  position:absolute;
  top:0;right:0;
  display:flex;flex-direction:column;align-items:center;
  background:var(--amber);
  padding:.5rem .75rem;
  z-index:5;
  box-shadow:0 4px 16px rgba(201,125,32,.35);
}
.about-elev-label{
  font-size:.5rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(255,255,255,.7);line-height:1;
}
.about-elev-val{
  font-family:'Fraunces',serif;font-size:1rem;font-weight:300;
  color:#fff;margin-top:.15rem;line-height:1;
}

/* ── TEXT COLUMN ── */
.about-text{
  display:flex;flex-direction:column;gap:0;
}
.about-eyebrow{
  display:flex;align-items:center;gap:1.2rem;
  margin-bottom:.2rem;
}
.about-rule{
  flex:1;height:1px;
  background:linear-gradient(to right, rgba(201,125,32,.4), transparent);
  max-width:120px;
}
.about-heading{
  color:var(--parchment) !important;
  margin-bottom:1.6rem;
}
.about-para{
  line-height:1.9;
  color:rgba(242,232,208,.75);
  margin-bottom:1rem;
  font-size:.95rem;
}

/* ── FEATURE ACCORDION ROWS ── */
.about-feats{
  margin-top:2.2rem;
  border-top:1px solid rgba(184,216,200,.1);
}
.about-feat{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:1rem;
  padding:1.1rem 0;
  border-bottom:1px solid rgba(184,216,200,.08);
  cursor:pointer;
  overflow:hidden;
  transition:background .25s;
  outline:none;
}
.about-feat:focus-visible{background:rgba(201,125,32,.06)}

/* animated amber bar that slides in from left on hover */
.about-feat-bar{
  position:absolute;
  bottom:0;left:0;
  height:1px;width:0;
  background:var(--amber);
  transition:width .4s cubic-bezier(.4,0,.2,1);
}
.about-feat:hover .about-feat-bar,
.about-feat:focus-visible .about-feat-bar{width:100%}

/* number */
.about-feat-num{
  font-family:'Fraunces',serif;font-size:.72rem;font-weight:200;
  color:rgba(201,125,32,.35);
  letter-spacing:.1em;
  padding-top:.15rem;
  flex-shrink:0;
  min-width:24px;
  transition:color .3s;
}
.about-feat:hover .about-feat-num,
.about-feat:focus-visible .about-feat-num{color:var(--amber)}

.about-feat-body{flex:1;min-width:0}

.about-feat-top{
  display:flex;align-items:center;gap:.7rem;
}
.about-feat-icon{
  font-size:1rem;line-height:1;flex-shrink:0;
}
.about-feat-title{
  font-family:'Fraunces',serif;font-weight:300;font-size:.95rem;
  color:var(--parchment);flex:1;
  transition:color .25s;
}
.about-feat:hover .about-feat-title,
.about-feat:focus-visible .about-feat-title{color:var(--gold)}

.about-feat-arrow{
  flex-shrink:0;color:rgba(201,125,32,.4);
  transition:transform .35s cubic-bezier(.2,.8,.3,1), color .3s;
}
.about-feat:hover .about-feat-arrow,
.about-feat:focus-visible .about-feat-arrow{
  color:var(--amber);
  transform:translate(3px,-3px);
}

/* description: hidden by default, revealed on hover/focus */
.about-feat-desc{
  font-size:.76rem;
  color:rgba(184,216,200,.6);
  line-height:1.6;
  margin-top:0;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .35s ease, opacity .3s ease, margin-top .3s ease;
  padding-left:1.7rem; /* align with title (icon + gap) */
}
.about-feat:hover .about-feat-desc,
.about-feat:focus-visible .about-feat-desc{
  max-height:60px;
  opacity:1;
  margin-top:.4rem;
}

/* ── RESPONSIVE ── */
@media(max-width:1000px){
  .about-inner{gap:3.5rem}
  .about-visual{height:460px}
}
@media(max-width:860px){
  .about-inner{
    grid-template-columns:1fr;
    gap:3rem;
  }
  .about-visual{order:1;height:360px}
  .about-text{order:2}
  /* always show desc on mobile — touch users can't hover */
  .about-feat-desc{
    max-height:none !important;
    opacity:1 !important;
    margin-top:.4rem !important;
  }
  .about-feat-bar{width:100% !important;opacity:.35}
  .about-feat-arrow{transform:translate(3px,-3px);color:var(--amber)}
}
@media(max-width:600px){
  #about{padding:5rem 1.2rem 6rem}
  .about-visual{height:280px}
  .about-img-primary{width:70%}
  .about-img-secondary{width:46%;height:50%;bottom:30px}
  .about-badge{font-size:.56rem;padding:.35rem .7rem;bottom:-14px}
  .about-elev{padding:.4rem .6rem}
  .about-elev-val{font-size:.9rem}
  .about-frame-tl,.about-frame-br{width:32px;height:32px}
}

/* ── EXPERIENCES ── */
#experiences{padding:5rem 2rem 7rem;background:var(--parchment)}
.exp-inner{max-width:1200px;margin:0 auto}
.exp-head{text-align:center;margin-bottom:3.5rem}
.exp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.exp-card{
  position:relative;height:480px;overflow:hidden;
  cursor:pointer;
}
.exp-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  transform:scale(1.05);transition:transform .7s ease;
}
.exp-card:hover .exp-bg{transform:scale(1)}
.exp-veil{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(13,51,34,.88) 0%,rgba(13,51,34,.15) 60%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:2rem;color:var(--cream);
  transition:background .4s;
}
.exp-card:hover .exp-veil{background:linear-gradient(0deg,rgba(13,51,34,.92) 0%,rgba(13,51,34,.25) 70%)}
.exp-num{font-size:.65rem;letter-spacing:.22em;color:var(--gold);margin-bottom:.6rem}
.exp-name{font-family:'Fraunces',serif;font-size:1.5rem;font-weight:200;line-height:1.2;margin-bottom:.7rem}
.exp-teaser{font-size:.82rem;color:rgba(251,245,232,.7);line-height:1.7;max-height:0;overflow:hidden;transition:max-height .5s ease,opacity .4s}
.exp-card:hover .exp-teaser{max-height:100px;opacity:1}
.exp-link{
  position:absolute;top:1.6rem;right:1.6rem;
  width:40px;height:40px;border-radius:50%;
  background:rgba(251,245,232,.1);border:1px solid rgba(251,245,232,.2);
  display:flex;align-items:center;justify-content:center;
  color:var(--cream);
  transition:background .3s,transform .3s;
}
.exp-card:hover .exp-link{background:var(--amber);transform:rotate(45deg)}
.eb1{background-image:url('images/exp-mountain-hike.webp');background-size:cover;background-position:center}
.eb2{background-image:url('images/exp-coconut-palmwine.webp');background-size:cover;background-position:center}
.eb3{background-image:url('images/exp-events.webp');background-size:cover;background-position:center}
@media(max-width:860px){.exp-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}}

/* ── CANOPY DIVIDER ── */
.canopy-divider{height:180px;overflow:hidden;background:var(--forest)}
#canvasDiv{width:100%;height:100%}

/* ── GALLERY (POLAROID) ── */
#gallery{padding:5rem 0 7rem;background:var(--parchment);overflow:hidden}
.gallery-inner{max-width:100%}
.gallery-head{
  text-align:center;margin-bottom:.8rem;
  padding:0 2rem;
}
.gallery-intro{
  text-align:center;color:#5a7060;font-size:.95rem;
  margin:.6rem auto 3rem;max-width:480px;line-height:1.7;
  padding:0 2rem;
}

/* Strip wrapper — positions arrows flanking the viewport */
.pol-strip-wrap{
  display:flex;align-items:center;
  gap:0;
}

/* Arrow buttons */
.pol-arrow{
  flex-shrink:0;
  width:48px;height:48px;border-radius:50%;
  background:var(--forest);border:none;
  color:var(--cream);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:2;
  transition:background .25s,opacity .25s;
}
.pol-arrow:hover{background:var(--amber)}
.pol-arrow svg{width:22px;height:22px;pointer-events:none}
.pol-arrow-prev{margin-left:1.5rem;margin-right:.8rem}
.pol-arrow-next{margin-right:1.5rem;margin-left:.8rem}

/* Scrollable viewport — hides scrollbar, allows native touch scroll */
.pol-viewport{
  flex:1 1 0;
  overflow-x:auto;
  overflow-y:visible;
  cursor:grab;
  /* hide scrollbar */
  scrollbar-width:none;
  -ms-overflow-style:none;
  /* extra vertical space so rotated cards don't clip */
  padding:2.5rem 0 3.5rem;
}
.pol-viewport::-webkit-scrollbar{display:none}
.pol-viewport:active{cursor:grabbing}

/* The inner flex row of polaroids */
.pol-strip{
  display:flex;
  gap:20px;
  align-items:center;
  width:max-content;
  padding:0 1.5rem;
}

/* Individual polaroid card */
.pol-card{
  flex-shrink:0;
  width:240px;
  background:#F2E8D0; /* default — overridden per card below */
  padding:10px 10px 44px;
  cursor:pointer;
  position:relative;
  transition:transform .35s cubic-bezier(.2,.8,.3,1);
  will-change:transform;
}
/* Alternating tilt pattern */
.pol-card:nth-child(4n+1){transform:rotate(-2.2deg)}
.pol-card:nth-child(4n+2){transform:rotate(1.6deg)}
.pol-card:nth-child(4n+3){transform:rotate(-1deg)}
.pol-card:nth-child(4n+4){transform:rotate(2.4deg)}

/* Hover — straighten + zoom over neighbours */
.pol-card:hover{
  transform:rotate(0deg) scale(1.18) translateY(-6px) !important;
  z-index:10;
}

/* Per-card background colors — warm/cool alternating so overlaps always contrast */
.pol-card:nth-child(1) { background:#E8845A } /* coral              */
.pol-card:nth-child(2) { background:#4BBFB0 } /* teal               */
.pol-card:nth-child(3) { background:#F0B840 } /* golden yellow      */
.pol-card:nth-child(4) { background:#6BAED6 } /* soft blue          */
.pol-card:nth-child(5) { background:#E8A050 } /* warm amber         */
.pol-card:nth-child(6) { background:#74C476 } /* fresh green        */
.pol-card:nth-child(7) { background:#E07060 } /* warm red-coral     */
.pol-card:nth-child(8) { background:#7EB8D4 } /* sky blue           */
.pol-card:nth-child(9) { background:#F0924A } /* burnt orange       */

/* Image area */
.pol-img-wrap{
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:var(--forest);
}
.pol-img-wrap img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
  user-select:none;
}

/* Caption strip at bottom of polaroid */
.pol-caption{
  position:absolute;bottom:0;left:0;right:0;
  height:44px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-style:italic;font-weight:200;
  font-size:.78rem;color:rgba(251,245,232,.75);
  letter-spacing:.04em;
  padding:0 8px;
  text-align:center;
  line-height:1.2;
  pointer-events:none;
}

@media(max-width:900px){
  .pol-card{width:200px}
  .pol-arrow{width:40px;height:40px}
  .pol-arrow-prev{margin-left:1rem;margin-right:.5rem}
  .pol-arrow-next{margin-right:1rem;margin-left:.5rem}
}
/* View more link */
.pol-more {
  text-align: center;
  margin-top: 2.8rem;
  padding: 0 2rem;
}
.pol-more-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid rgba(27,77,62,.3);
  padding-bottom: .25rem;
  transition: color .3s, border-color .3s;
}
.pol-more-link:hover { color: var(--amber); border-color: var(--amber); }
.pol-more-link svg { transition: transform .3s; }
.pol-more-link:hover svg { transform: translate(2px,-2px); }

@media(max-width:640px){
  .pol-card{width:170px;padding:8px 8px 38px}
  .pol-caption{height:38px;font-size:.72rem}
  .pol-arrow{width:34px;height:34px}
  .pol-arrow-prev{margin-left:.5rem;margin-right:.3rem}
  .pol-arrow-next{margin-right:.5rem;margin-left:.3rem}
  .pol-strip{gap:14px}
}

/* ── LIGHTBOX ── */
#lbBackdrop{
  position:fixed;inset:0;z-index:800;
  background:rgba(4,10,7,.95);
  backdrop-filter:blur(18px) saturate(.35);
  opacity:0;pointer-events:none;
  transition:opacity .38s ease;
}
#lbBackdrop.open{opacity:1;pointer-events:all}

/* Close button */
#lbClose{
  position:fixed;top:1rem;right:1.2rem;z-index:802;
  width:38px;height:38px;border-radius:50%;
  background:rgba(251,245,232,.08);border:1px solid rgba(251,245,232,.16);
  color:rgba(251,245,232,.7);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .22s,color .22s;
}
#lbClose:hover{background:var(--amber);border-color:var(--amber);color:#fff}
#lbClose svg{width:16px;height:16px;pointer-events:none}

/* Prev/Next nav — vertically centred on the image area on desktop */
.lb-nav{
  position:fixed;top:50%;transform:translateY(-50%);z-index:802;
  width:42px;height:42px;border-radius:50%;
  background:rgba(251,245,232,.08);border:1px solid rgba(251,245,232,.14);
  color:rgba(251,245,232,.6);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .22s,color .22s;
}
.lb-nav:hover{background:var(--amber);border-color:var(--amber);color:#fff}
.lb-nav svg{width:22px;height:22px;pointer-events:none}
#lbPrev{left:1rem}
#lbNext{right:1rem}

/* ── DESKTOP LIGHTBOX LAYOUT ── */
#lightbox{
  position:fixed;inset:0;z-index:801;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  padding:3.2rem 5.5rem 0;
  box-sizing:border-box;
  opacity:0;pointer-events:none;
  transition:opacity .3s ease;
}
#lightbox.open{opacity:1;pointer-events:all}

/* Image stage — height fills available space, width auto from ratio */
.lb-stage{
  position:relative;
  flex:1 1 0;
  min-height:0;
  width:auto;
  max-width:calc(100vw - 11rem);
  display:flex;align-items:center;justify-content:center;
}
.lb-photo{
  display:block;
  max-height:100%;
  max-width:100%;
  width:auto;
  height:auto;
  border-radius:2px;
  box-shadow:0 16px 60px rgba(0,0,0,.85);
  transition:opacity .26s ease,transform .26s ease;
}
.lb-photo.fading{opacity:0;transform:scale(.97)}

/* Spinner */
.lb-spin-wrap{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .2s;
}
.lb-spin-wrap.show{opacity:1}
.lb-spinner{
  width:30px;height:30px;border-radius:50%;
  border:1.5px solid rgba(201,125,32,.18);
  border-top-color:var(--amber);
  animation:lbspin .75s linear infinite;
}
@keyframes lbspin{to{transform:rotate(360deg)}}

/* Desktop footer — single row: caption | dots + counter */
.lb-footer{
  flex-shrink:0;
  width:calc(100vw - 11rem);
  max-width:calc(100vw - 11rem);
  height:3.8rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;
  padding:.6rem 0 0;
  border-top:1px solid rgba(255,255,255,.09);
}
.lb-footer-meta{
  display:flex;align-items:center;gap:.7rem;flex-shrink:0;
}
.lb-caption{
  font-family:'Fraunces',serif;font-style:italic;
  font-size:.82rem;color:rgba(251,245,232,.65);
  flex:1 1 0;min-width:0;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.lb-dots{
  display:flex;gap:5px;align-items:center;
}
.lb-dot{
  width:18px;height:2px;border-radius:1px;
  background:rgba(251,245,232,.2);
  border:none;cursor:pointer;padding:0;
  transition:background .22s,width .22s;
}
.lb-dot.active{background:var(--gold);width:28px}
.lb-counter{
  font-size:.68rem;letter-spacing:.14em;
  color:rgba(251,245,232,.38);
  font-variant-numeric:tabular-nums;
}

/* ── MOBILE LIGHTBOX ── */
@media(max-width:640px){
  #lbClose{width:34px;height:34px;top:.7rem;right:.8rem}

  .lb-nav{width:34px;height:34px}
  #lbPrev{left:.3rem}
  #lbNext{right:.3rem}

  /*
    Full-screen flex column:
    [top pad: 3rem] [stage: flex:1 takes all remaining] [footer: fixed 5rem]
    Nothing can push the footer — it's always 5rem at the bottom.
  */
  #lightbox{
    padding:3rem 0 0;
    justify-content:flex-start;
    align-items:stretch; /* stage stretches full width */
  }

  /* Stage: fills all space between top-pad and footer. Image centers inside. */
  .lb-stage{
    flex:1 1 0;
    min-height:0;        /* critical — lets flex shrink below content height */
    width:100%;
    max-width:100%;
    padding:0 2.6rem;    /* clear the nav arrow buttons */
    box-sizing:border-box;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }

  /* Image: contained within the stage box, no crop, no stretch */
  .lb-photo{
    max-width:100%;
    max-height:100%;     /* constrained by stage flex height */
    width:auto;
    height:auto;
    box-shadow:0 8px 32px rgba(0,0,0,.75);
    display:block;
  }

  /*
    Footer: fixed 5rem, never moves.
    Column: caption first, then dots+counter row below.
  */
  .lb-footer{
    flex-shrink:0;
    height:5rem;
    width:100%;
    max-width:100%;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:.3rem;
    padding:.6rem 1.2rem;
    border-top:1px solid rgba(255,255,255,.09);
    margin-top:0;
  }
  .lb-caption{
    font-size:.78rem;
    text-align:center;
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    flex:0 0 auto;
    width:100%;
    line-height:1.3;
  }
  .lb-footer-meta{
    justify-content:center;
    gap:.8rem;
    flex-shrink:0;
  }
  .lb-dot{width:14px}
  .lb-dot.active{width:22px}
  .lb-counter{font-size:.65rem}
}

/* ── PULL QUOTE ── */
.pull-quote{
  background:var(--emerald);padding:6rem 2rem;
  text-align:center;
}
.pull-quote blockquote{
  max-width:800px;margin:0 auto;
  font-family:'Fraunces',serif;font-size:clamp(1.5rem,3.5vw,2.4rem);
  font-weight:200;font-style:italic;
  color:var(--cream);line-height:1.5;
}
.pull-quote cite{color:rgba(184,216,200,.6)}
.pull-quote cite{
  display:block;margin-top:1.5rem;
  font-family:'DM Sans',sans-serif;font-style:normal;
  font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(184,216,200,.55);
}

/* ── LOCATION ── */
#location{padding:7rem 2rem;background:var(--parchment)}
.loc-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.loc-text .section-title{margin-bottom:1.5rem}
.loc-text p{line-height:1.85;color:#3a5048;margin-bottom:1.2rem}
.directions-list{list-style:none;margin-top:1rem}
.directions-list li{
  display:flex;align-items:flex-start;gap:.8rem;
  padding:.7rem 0;border-bottom:1px solid rgba(27,77,62,.1);
  font-size:.88rem;color:#3a5048;line-height:1.5;
}
.directions-list li:last-child{border-bottom:none}
.dir-num{
  width:22px;height:22px;min-width:22px;border-radius:50%;
  background:var(--amber);color:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-size:.65rem;font-weight:500;margin-top:.1rem;
}
.loc-card{
  background:var(--forest);color:var(--cream);padding:2.5rem;border-radius:3px;
}
.loc-card .section-tag{display:block;margin-bottom:1rem}
.phone-link{
  display:flex;align-items:center;gap:.7rem;
  font-family:'Fraunces',serif;font-size:1.6rem;font-weight:200;
  color:var(--gold);margin:1.2rem 0 1.8rem;
}
.phone-link svg{stroke:var(--gold)}
.loc-detail{
  font-size:.82rem;color:rgba(184,216,200,.65);line-height:1.8;
  border-top:1px solid rgba(184,216,200,.1);padding-top:1.2rem;
  margin-top:1.2rem;
}
@media(max-width:860px){.loc-inner{grid-template-columns:1fr;gap:3rem}}

/* ── EVENTS ── */
#events{padding:6rem 2rem;background:var(--warm-white)}
.events-inner{max-width:1100px;margin:0 auto}
.events-head{text-align:center;margin-bottom:3rem}
.events-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.ev-card{
  border:1px solid rgba(27,77,62,.12);padding:2.2rem;
  border-radius:3px;transition:box-shadow .3s,transform .3s;
}
.ev-card:hover{box-shadow:0 8px 40px rgba(27,77,62,.1);transform:translateY(-3px)}
.ev-icon{
  width:44px;height:44px;background:var(--parchment);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;margin-bottom:1.2rem;
}
.ev-name{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:300;color:var(--forest);margin-bottom:.6rem}
.ev-desc{font-size:.82rem;color:#5a7060;line-height:1.7}
@media(max-width:860px){.events-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}}

/* ── CTA ── */
.cta-band{
  position:relative;padding:8rem 2rem;overflow:hidden;text-align:center;
}
.cta-bg{
  position:absolute;inset:0;
  background:url('images/new-cta-background.webp') center/cover no-repeat;
  filter:brightness(.35);
} 
.cta-inner{position:relative;z-index:1}
.cta-inner .section-title{color:var(--cream)!important;margin-bottom:1.4rem}
.cta-inner p{color:rgba(251,245,232,.75);margin-bottom:2.2rem;font-size:.95rem}

/* ── FOOTER ── */
footer{background:var(--forest);color:var(--cream);padding:4rem 2rem 2rem}
.foot-inner{max-width:1200px;margin:0 auto}
.foot-top{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;padding-bottom:2.5rem;
  border-bottom:1px solid rgba(184,216,200,.1);
  margin-bottom:1.8rem;
}
.foot-brand .nav-img-logo{height:32px;margin-bottom:1rem;opacity:.7}
.foot-tagline{font-size:.8rem;color:rgba(184,216,200,.45);line-height:1.7;max-width:240px}
.foot-col h4{font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(184,216,200,.4);margin-bottom:1rem}
.foot-col ul{list-style:none}
.foot-col li{margin-bottom:.6rem}
.foot-col a{font-size:.82rem;color:rgba(184,216,200,.6);transition:color .25s}
.foot-col a:hover{color:var(--gold)}
.foot-socials{display:flex;gap:.7rem;margin-top:1rem}
.foot-socials a{
  width:34px;height:34px;border:1px solid rgba(184,216,200,.12);
  display:flex;align-items:center;justify-content:center;
  color:rgba(184,216,200,.45);border-radius:2px;
  transition:all .25s;
}
.foot-socials a:hover{color:var(--cream);border-color:var(--amber);background:rgba(201,125,32,.2)}
.foot-socials svg{width:15px;height:15px}
.foot-bottom{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
  font-size:.72rem;color:rgba(184,216,200,.5);
}
.foot-bottom a{color:rgba(232,160,64,.6);transition:color .25s}
.foot-bottom a:hover{color:var(--gold)}
@media(max-width:860px){.foot-top{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.foot-top{grid-template-columns:1fr}}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
@keyframes bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)}}

/* ── DARK BACKGROUND TEXT SAFETY ── */
/* Stats bar */
.stat-val{color:var(--gold)}
.stat-lbl{color:rgba(184,216,200,.8)}
/* Pull quote */
.pull-quote{color:var(--cream)}
.pull-quote blockquote{color:var(--cream)}
.pull-quote cite{color:rgba(184,216,200,.65)}
/* CTA band */
.cta-band{color:var(--cream)}
.cta-inner h2,.cta-inner .section-title{color:var(--cream)!important}
.cta-inner p{color:rgba(251,245,232,.8)!important}
/* Footer */
.foot-tagline{color:rgba(184,216,200,.65)!important}
.foot-col h4{color:rgba(184,216,200,.55)!important}
.foot-col a{color:rgba(184,216,200,.72)!important}
.foot-col a:hover{color:var(--gold)!important}
.foot-bottom{color:rgba(184,216,200,.6)!important}
/* Location card */
.loc-card{color:var(--cream)}
.loc-detail{color:rgba(184,216,200,.75)!important}
/* Mobile menu */
.mm-link{color:var(--cream)!important}


/* ── PAGE SHELL ── */
body { background: var(--warm-white); }

/* ── ALBUM HERO ── */
.alb-hero {
  position: relative;
  background: var(--forest);
  padding: 9rem 2rem 5rem;
  overflow: hidden;
  text-align: center;
}
/* film-strip holes row — top */
.alb-strip-top,
.alb-strip-bot {
  position: absolute;
  left: 0; right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 12px;
  background: rgba(0,0,0,.35);
  pointer-events: none;
}
.alb-strip-top { top: 0; }
.alb-strip-bot { bottom: 0; }
.alb-hole {
  width: 18px; height: 14px;
  border-radius: 3px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* decorative diagonal amber lines */
.alb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 38px,
    rgba(201,125,32,.03) 38px,
    rgba(201,125,32,.03) 39px
  );
  pointer-events: none;
}

.alb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}
.alb-eyebrow::before,
.alb-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: rgba(232,160,64,.4);
}

.alb-title {
  font-family: 'Fraunces', serif;
  font-weight: 200;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.0;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp .8s .35s forwards;
}
.alb-title em {
  font-style: italic;
  color: var(--gold);
}

.alb-sub {
  margin: 1.4rem auto 0;
  max-width: 480px;
  font-size: .9rem;
  color: rgba(251,245,232,.55);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}

.alb-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2.6rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251,245,232,.45);
  border: 1px solid rgba(251,245,232,.14);
  padding: .55rem 1.2rem;
  border-radius: 2px;
  transition: color .3s, border-color .3s;
  opacity: 0;
  animation: fadeUp .7s .65s forwards;
}
.alb-back:hover { color: var(--gold); border-color: rgba(232,160,64,.5); }
.alb-back svg { transition: transform .3s; }
.alb-back:hover svg { transform: translateX(-3px); }

/* photo count badge */
.alb-count {
  position: absolute;
  bottom: 3.2rem;
  right: 2.5rem;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 200;
  color: rgba(251,245,232,.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── ALBUM BODY ── */
.alb-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 7rem;
}

/* ── CHAPTER HEADER ── */
.alb-chapter {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 5rem 0 2.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.alb-chapter.visible { opacity: 1; transform: none; }
.alb-chapter:first-child { margin-top: 0; }

.alb-ch-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  color: rgba(201,125,32,.18);
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.alb-ch-divider {
  flex-shrink: 0;
  width: 3px;
  height: 52px;
  background: var(--amber);
  border-radius: 2px;
}
.alb-ch-meta {}
.alb-ch-tag {
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: .3rem;
}
.alb-ch-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 200;
  color: var(--forest);
  line-height: 1.1;
}
.alb-ch-name em { font-style: italic; color: var(--amber); }

/* ── MASONRY GRID ── */
.alb-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
}

/* ── PHOTO PRINT ── */
.alb-photo {
  background: #fff;
  padding: 10px 10px 46px;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease, box-shadow .35s;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.alb-photo.visible {
  opacity: 1;
  transform: none;
}
.alb-photo:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.16);
  z-index: 5;
}
.alb-photo:hover .alb-photo-img img {
  filter: brightness(1.04);
}

/* subtle stagger rotations */
.alb-photo:nth-child(3n+1) { transform: rotate(-1deg); }
.alb-photo:nth-child(3n+2) { transform: rotate(.8deg); }
.alb-photo:nth-child(3n+3) { transform: rotate(-1.4deg); }
.alb-photo.visible:nth-child(3n+1) { transform: rotate(-1deg); }
.alb-photo.visible:nth-child(3n+2) { transform: rotate(.8deg); }
.alb-photo.visible:nth-child(3n+3) { transform: rotate(-1.4deg); }
.alb-photo:hover { transform: rotate(0deg) scale(1.02) translateY(-4px) !important; }

/* tape corners — amber strip in top corners */
.alb-photo::before,
.alb-photo::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 36px; height: 14px;
  background: rgba(201,125,32,.35);
  transform: rotate(-2deg);
  pointer-events: none;
  z-index: 2;
}
.alb-photo::before { left: 14px; transform: rotate(-3deg); }
.alb-photo::after  { right: 14px; transform: rotate(2.5deg); }

.alb-photo-img {
  width: 100%;
  overflow: hidden;
  background: var(--forest);
}
.alb-photo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .4s;
}

.alb-photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: .78rem;
  color: #4a3c2e;
  letter-spacing: .03em;
  padding: 0 8px;
  text-align: center;
  pointer-events: none;
}

/* ── GRID COLUMN SPANS (desktop) ── */
/* Chapter 1 — The Mountain */
.ch1-p1 { grid-column: span 5; }
.ch1-p1 .alb-photo-img { aspect-ratio: 4/5; }

.ch1-p2 { grid-column: span 4; }
.ch1-p2 .alb-photo-img { aspect-ratio: 1/1; }

.ch1-p3 { grid-column: span 3; }
.ch1-p3 .alb-photo-img { aspect-ratio: 3/4; }

.ch1-p4 { grid-column: 2 / span 5; }
.ch1-p4 .alb-photo-img { aspect-ratio: 16/9; }

.ch1-p5 { grid-column: span 5; }
.ch1-p5 .alb-photo-img { aspect-ratio: 16/9; }

/* Chapter 2 — The Gardens */
.ch2-p1 { grid-column: span 4; }
.ch2-p1 .alb-photo-img { aspect-ratio: 3/4; }

.ch2-p2 { grid-column: span 5; }
.ch2-p2 .alb-photo-img { aspect-ratio: 4/3; }

.ch2-p3 { grid-column: span 3; }
.ch2-p3 .alb-photo-img { aspect-ratio: 1/1; }

.ch2-p4 { grid-column: span 5; }
.ch2-p4 .alb-photo-img { aspect-ratio: 3/2; }

.ch2-p5 { grid-column: span 4; }
.ch2-p5 .alb-photo-img { aspect-ratio: 4/5; }

/* Chapter 3 — The Gatherings */
.ch3-p1 { grid-column: span 6; }
.ch3-p1 .alb-photo-img { aspect-ratio: 16/9; }

.ch3-p2 { grid-column: span 3; }
.ch3-p2 .alb-photo-img { aspect-ratio: 1/1; }

.ch3-p3 { grid-column: span 3; }
.ch3-p3 .alb-photo-img { aspect-ratio: 4/5; }

.ch3-p4 { grid-column: 2 / span 4; }
.ch3-p4 .alb-photo-img { aspect-ratio: 4/3; }

.ch3-p5 { grid-column: span 5; }
.ch3-p5 .alb-photo-img { aspect-ratio: 3/2; }

/* ── TABLET ── */
@media(max-width: 900px) {
  .alb-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  .ch1-p1,.ch1-p2,.ch1-p3,.ch1-p4,.ch1-p5,
  .ch2-p1,.ch2-p2,.ch2-p3,.ch2-p4,.ch2-p5,
  .ch3-p1,.ch3-p2,.ch3-p3,.ch3-p4,.ch3-p5 {
    grid-column: span 3;
  }
  .ch1-p1 .alb-photo-img,
  .ch1-p2 .alb-photo-img,
  .ch1-p3 .alb-photo-img,
  .ch2-p1 .alb-photo-img,
  .ch2-p2 .alb-photo-img,
  .ch2-p3 .alb-photo-img,
  .ch3-p1 .alb-photo-img,
  .ch3-p2 .alb-photo-img,
  .ch3-p3 .alb-photo-img,
  .ch1-p4 .alb-photo-img,
  .ch1-p5 .alb-photo-img,
  .ch2-p4 .alb-photo-img,
  .ch2-p5 .alb-photo-img,
  .ch3-p4 .alb-photo-img,
  .ch3-p5 .alb-photo-img {
    aspect-ratio: 1 / 1;
  }
}

/* ── MOBILE ── */
@media(max-width: 600px) {
  .alb-hero { padding: 7rem 1.4rem 4rem; }
  .alb-count { display: none; }
  .alb-body { padding: 2.5rem 1.2rem 5rem; }
  .alb-chapter { margin: 4rem 0 2rem; gap: 1rem; }
  .alb-ch-num { font-size: 2.5rem; }
  .alb-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ch1-p1,.ch1-p2,.ch1-p3,.ch1-p4,.ch1-p5,
  .ch2-p1,.ch2-p2,.ch2-p3,.ch2-p4,.ch2-p5,
  .ch3-p1,.ch3-p2,.ch3-p3,.ch3-p4,.ch3-p5 {
    grid-column: span 1;
  }
  /* make first photo of each chapter span full width */
  .ch1-p1, .ch2-p1, .ch3-p1 { grid-column: span 2; }
  .alb-photo-img { aspect-ratio: 1 / 1 !important; }
  .ch1-p1 .alb-photo-img,
  .ch2-p1 .alb-photo-img,
  .ch3-p1 .alb-photo-img { aspect-ratio: 16/9 !important; }
  .alb-photo { padding: 7px 7px 36px; }
  .alb-photo-cap { height: 36px; font-size: .7rem; }
  .alb-photo::before,.alb-photo::after { width: 26px; height: 10px; }
}

/* Events*/

.ev-hero{position:relative;background:var(--forest);padding:11rem 2rem 7rem;overflow:hidden;text-align:center}
.ev-hero-bg{position:absolute;inset:0;background:url('images/new-hero.webp') center 60%/cover no-repeat;opacity:.18;filter:saturate(.5)}
.ev-hero-lines{position:absolute;inset:0;background:repeating-linear-gradient(-52deg,transparent,transparent 40px,rgba(201,125,32,.025) 40px,rgba(201,125,32,.025) 41px);pointer-events:none}
.ev-hero-inner{position:relative;z-index:2}
.ev-hero-tag{display:inline-flex;align-items:center;gap:.8rem;font-size:.62rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin-bottom:1.4rem;opacity:0;animation:fadeUp .7s .2s forwards}
.ev-hero-tag::before,.ev-hero-tag::after{content:'';width:28px;height:1px;background:rgba(232,160,64,.4)}
.ev-hero-title{font-family:'Fraunces',serif;font-weight:200;font-size:clamp(3rem,7.5vw,5.8rem);line-height:1.0;color:var(--cream);opacity:0;animation:fadeUp .85s .35s forwards}
.ev-hero-title em{font-style:italic;color:var(--gold)}
.ev-hero-sub{margin:1.5rem auto 2.8rem;max-width:540px;font-size:.93rem;color:rgba(251,245,232,.55);line-height:1.85;opacity:0;animation:fadeUp .85s .5s forwards}
.ev-hero-ctas{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;opacity:0;animation:fadeUp .85s .65s forwards}

/* Featured banner */
.ev-featured{background:linear-gradient(135deg,#0a2e1e 0%,#1B4D3E 55%,#0f3827 100%);padding:3.5rem 2rem;border-bottom:1px solid rgba(232,160,64,.15)}
.ev-featured-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:3rem;align-items:center}
.ev-feat-label{font-size:.6rem;letter-spacing:.26em;text-transform:uppercase;color:var(--gold);margin-bottom:.5rem;display:flex;align-items:center;gap:.5rem}
.ev-feat-label::before{content:'';width:16px;height:1px;background:rgba(232,160,64,.5)}
.ev-feat-title{font-family:'Fraunces',serif;font-size:clamp(1.6rem,3.5vw,2.6rem);font-weight:200;color:var(--cream);line-height:1.15;margin-bottom:.5rem}
.ev-feat-title em{font-style:italic;color:var(--gold)}
.ev-feat-meta{font-size:.78rem;color:rgba(184,216,200,.55);display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap;margin-top:.4rem}
.ev-feat-meta span{display:flex;align-items:center;gap:.35rem}
.ev-feat-actions{display:flex;gap:.7rem;margin-top:1.5rem;flex-wrap:wrap}

/* Countdown */
.ev-countdown{text-align:center;flex-shrink:0}
.ev-cd-row{display:flex;gap:.6rem;align-items:flex-start}
.cd-unit{text-align:center}
.cd-num{font-family:'Fraunces',serif;font-size:3rem;font-weight:200;color:var(--gold);line-height:1;display:block;min-width:64px;background:rgba(255,255,255,.04);border:1px solid rgba(232,160,64,.15);border-radius:3px;padding:.4rem .5rem}
.cd-lbl{font-size:.55rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(184,216,200,.4);margin-top:.4rem;display:block}
.cd-sep{font-family:'Fraunces',serif;font-size:2rem;color:rgba(232,160,64,.25);margin-top:.5rem}
.ev-cd-label{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(184,216,200,.35);margin-bottom:.8rem}
@media(max-width:860px){.ev-featured-inner{grid-template-columns:1fr;gap:2rem}.ev-countdown{border-top:1px solid rgba(184,216,200,.1);padding-top:1.8rem}.ev-cd-row{justify-content:center}}

/* Daily schedule */
.ev-schedule{background:var(--parchment);padding:5rem 2rem}
.ev-schedule-inner{max-width:1100px;margin:0 auto}
.ev-schedule-head{text-align:center;margin-bottom:3rem}
.ev-schedule-head .section-title{margin-top:.5rem}
.ev-days{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.ev-day{background:#fff;border-radius:3px;border:1px solid rgba(27,77,62,.08);overflow:hidden;transition:box-shadow .3s,transform .3s}
.ev-day:hover{box-shadow:0 8px 40px rgba(27,77,62,.1);transform:translateY(-3px)}
.ev-day-header{background:var(--forest);padding:1.2rem 1.4rem;position:relative;overflow:hidden}
.ev-day-header::after{content:'';position:absolute;right:-10px;top:-10px;width:70px;height:70px;border-radius:50%;background:rgba(255,255,255,.04)}
.ev-day-num{font-family:'Fraunces',serif;font-size:2.4rem;font-weight:200;color:rgba(232,160,64,.35);line-height:1;position:absolute;right:1rem;bottom:.2rem}
.ev-day-name{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.25rem}
.ev-day-date{font-family:'Fraunces',serif;font-size:1rem;font-weight:200;color:var(--cream)}
.ev-day-body{padding:1.4rem}
.ev-day-event{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:200;color:var(--forest);line-height:1.3;margin-bottom:.5rem}
.ev-day-event em{font-style:italic;color:var(--amber)}
.ev-day-desc{font-size:.76rem;color:#5a7060;line-height:1.7;margin-bottom:1.2rem}
.ev-day-time{display:inline-flex;align-items:center;gap:.35rem;font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;color:var(--amber);background:rgba(201,125,32,.08);padding:.28rem .65rem;border-radius:1px}
@media(max-width:900px){.ev-days{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.ev-days{grid-template-columns:1fr}}

/* Extras */
.ev-extras{background:var(--forest);padding:5rem 2rem}
.ev-extras-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:3fr 2fr;gap:4rem;align-items:start}
.ev-extras-title{font-size:.6rem;letter-spacing:.24em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem}
.ev-extras h3{font-family:'Fraunces',serif;font-size:1.6rem;font-weight:200;color:var(--cream);margin-bottom:1.4rem}
.ev-extras h3 em{font-style:italic;color:var(--gold)}
.ev-attraction-grid{display:flex;flex-wrap:wrap;gap:.5rem}
.ev-attraction-chip{display:inline-flex;align-items:center;gap:.4rem;background:rgba(255,255,255,.06);border:1px solid rgba(184,216,200,.12);color:rgba(251,245,232,.7);font-size:.75rem;padding:.45rem 1rem;border-radius:2px;transition:all .25s}
.ev-attraction-chip:hover{background:rgba(201,125,32,.15);border-color:rgba(232,160,64,.3);color:var(--cream)}
.ev-attraction-chip span{font-size:.85rem}
.ev-refresh-list{list-style:none}
.ev-refresh-list li{display:flex;align-items:center;gap:1rem;padding:1rem 0;border-bottom:1px solid rgba(184,216,200,.08);color:rgba(251,245,232,.75);font-size:.88rem}
.ev-refresh-list li:last-child{border-bottom:none}
.ev-refresh-icon{width:40px;height:40px;background:rgba(255,255,255,.05);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
@media(max-width:760px){.ev-extras-inner{grid-template-columns:1fr;gap:2.5rem}}

/* Share bar */
.ev-share-bar{background:var(--amber);padding:1.4rem 2rem}
.ev-share-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.ev-share-text{font-size:.8rem;color:rgba(251,245,232,.85);display:flex;align-items:center;gap:.6rem}
.ev-share-text strong{font-family:'Fraunces',serif;font-size:1rem;font-weight:300;color:var(--cream)}
.ev-share-btns{display:flex;gap:.6rem;flex-wrap:wrap}
.ev-share-btn{display:inline-flex;align-items:center;gap:.4rem;background:rgba(251,245,232,.15);border:1px solid rgba(251,245,232,.25);color:var(--cream);padding:.5rem 1.1rem;border-radius:2px;font-size:.72rem;font-family:inherit;cursor:pointer;letter-spacing:.08em;text-decoration:none;transition:background .2s}
.ev-share-btn:hover{background:rgba(251,245,232,.28)}
.ev-share-btn.wa{background:rgba(37,211,102,.35);border-color:rgba(37,211,102,.4)}
.ev-share-btn.wa:hover{background:rgba(37,211,102,.5)}

/* More events */
.ev-more{padding:5rem 2rem 7rem;background:var(--warm-white)}
.ev-more-inner{max-width:1100px;margin:0 auto}
.ev-more-head{text-align:center;margin-bottom:3rem}
.ev-recurring-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.ev-rec-card{background:#fff;border:1px solid rgba(27,77,62,.08);border-radius:3px;padding:2rem;transition:box-shadow .3s,transform .3s}
.ev-rec-card:hover{box-shadow:0 6px 36px rgba(27,77,62,.09);transform:translateY(-3px)}
.ev-rec-icon{font-size:1.8rem;width:52px;height:52px;background:var(--parchment);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem}
.ev-rec-label{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;color:var(--amber);margin-bottom:.4rem}
.ev-rec-name{font-family:'Fraunces',serif;font-size:1.1rem;font-weight:200;color:var(--forest);margin-bottom:.6rem}
.ev-rec-name em{font-style:italic;color:var(--amber)}
.ev-rec-desc{font-size:.78rem;color:#5a7060;line-height:1.75}
@media(max-width:860px){.ev-recurring-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.ev-recurring-grid{grid-template-columns:1fr}}

/* CTA */
.ev-cta{position:relative;padding:7rem 2rem;overflow:hidden;text-align:center}
.ev-cta-bg{position:absolute;inset:0;background:url('images/new-cta-background.webp') center/cover no-repeat;
  filter:brightness(.35);}
.ev-cta-inner{position:relative;z-index:1}
.ev-cta-inner .section-title{color:var(--cream)!important;margin-bottom:1.2rem}
.ev-cta-inner p{color:rgba(251,245,232,.7);font-size:.95rem;margin-bottom:2rem;max-width:480px;margin-left:auto;margin-right:auto;line-height:1.8}
.ev-cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* WhatsApp button */
.btn-whatsapp{display:inline-flex;align-items:center;gap:.5rem;background:#25D366;color:#fff;padding:.85rem 2rem;border-radius:2px;font-size:.82rem;letter-spacing:.1em;transition:background .3s,transform .2s;text-decoration:none}
.btn-whatsapp:hover{background:#1fbb58;transform:translateY(-2px)}

/* Calendar dropdown */
.cal-wrap{position:relative}
.cal-dropdown{position:absolute;bottom:calc(100% + 8px);left:0;width:230px;background:#fff;border:1px solid rgba(27,77,62,.12);border-radius:3px;box-shadow:0 8px 40px rgba(0,0,0,.14);overflow:hidden;display:none;z-index:200}
.cal-dropdown.open{display:block}
.cal-dropdown-title{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:#9aad9f;padding:.8rem 1rem .35rem}
.cal-option{display:flex;align-items:center;gap:.7rem;padding:.65rem 1rem;font-size:.8rem;color:var(--forest);text-decoration:none;transition:background .2s;cursor:pointer;border:none;background:none;width:100%;text-align:left;font-family:inherit}
.cal-option:hover{background:rgba(27,77,62,.05);color:var(--forest)}
.cal-divider{height:1px;background:rgba(27,77,62,.07);margin:.2rem 0}

/* Toast */
.toast{position:fixed;bottom:2rem;left:50%;transform:translateX(-50%) translateY(20px);background:var(--forest);color:var(--cream);padding:.75rem 1.6rem;border-radius:3px;font-size:.78rem;letter-spacing:.06em;opacity:0;transition:opacity .3s,transform .3s;z-index:9999;pointer-events:none;white-space:nowrap}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

@media (max-width: 768px) {

  /* HERO */
  .ev-hero {
    padding: 7rem 1.2rem 4rem;
  }

  .ev-hero-title {
    font-size: 2.5rem;
  }

  .ev-hero-sub {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }

  /* FEATURED SECTION */
  .ev-featured-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* SCHEDULE */
  .ev-days {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .ev-day {
    width: 100%;
  }

  /* SHARE BAR */
  .ev-share-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .ev-share-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

}