*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --terra:#A04020; --brand:#c77654; --sienna:#C05830;
  --amber:#D4843A; --sand:#E8C89A; --cream:#F7F0E6;
  --parchment:#EDE0CC; --smoke:#D6C8B4; --ink:#1E120A;
}
html { scroll-behavior: smooth; }
body { background:var(--cream); color:var(--ink); font-family:'Jost',sans-serif; font-weight:300; overflow-x:hidden; }
body::after {
  content:''; position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events:none; z-index:9999;
}

/* ── PAGE SYSTEM ── */
.page { display:none; opacity:0; transition:opacity 0.6s ease; }
.page.active { display:block; opacity:1; }
.page.fade-in { animation: fadeInPage 0.45s ease forwards; }
@keyframes fadeInPage { from{opacity:0; transform:translateY(12px)} to{opacity:1; transform:translateY(0)} }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:500;
  display:flex; justify-content:space-between; align-items:center;
  padding:1.3rem 4rem;
  background:rgba(247,240,230,0.94); backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(160,64,32,0.1);
}
.nav-logo {
  font-family:'Cormorant Garamond',serif; font-size:1rem;
  letter-spacing:0.3em; text-transform:uppercase; color:var(--terra);
  cursor:pointer; text-decoration:none;
}
.nav-links { display:flex; gap:0; list-style:none; position:relative; }
.nav-item { position:relative; }
.nav-item > a {
  font-size:0.68rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--terra); text-decoration:none; opacity:0.75; transition:opacity 0.3s;
  padding:0.5rem 1.2rem; display:block; cursor:pointer;
}
.nav-item > a:hover, .nav-item > a.active { opacity:1; }
.nav-item > a.active { border-bottom:1px solid var(--brand); }
.nav-dropdown {
  position:absolute; top:100%; left:0;
  background:var(--cream); border:1px solid var(--smoke);
  min-width:260px; opacity:0; pointer-events:none;
  transform:translateY(6px); transition:all 0.25s; z-index:600;
}
.nav-item:hover .nav-dropdown { opacity:1; pointer-events:all; transform:translateY(0); }
.nav-dropdown a {
  display:block; padding:0.75rem 1.2rem;
  font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase;
  color:var(--terra); text-decoration:none; border-bottom:1px solid var(--parchment);
  transition:background 0.2s; cursor:pointer;
}
.nav-dropdown a:hover { background:var(--parchment); }
.nav-dropdown a:last-child { border-bottom:none; }
.nav-cta {
  font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--cream); background:var(--terra); padding:0.75rem 1.6rem;
  text-decoration:none; transition:background 0.3s; cursor:pointer;
}
.nav-cta:hover { background:var(--brand); }

/* ── SHARED ── */
.section-label { font-size:0.62rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--brand); margin-bottom:1.2rem; }
.btn-primary {
  font-size:0.7rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--cream); background:var(--terra); padding:1rem 2.4rem;
  text-decoration:none; transition:background 0.3s, transform 0.3s; display:inline-block; cursor:pointer; border:none;
}
.btn-primary:hover { background:var(--brand); transform:translateY(-2px); }
.btn-ghost {
  font-size:0.7rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--terra); text-decoration:none; display:inline-flex; align-items:center; gap:0.6rem; transition:gap 0.3s; cursor:pointer;
}
.btn-ghost:hover { gap:1rem; }
.marquee-strip { background:var(--terra); padding:0.85rem 0; overflow:hidden; white-space:nowrap; }
.marquee-track { display:inline-block; animation:marquee 30s linear infinite; }
.marquee-track span { font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; color:rgba(247,240,230,0.65); margin:0 1.8rem; }
.marquee-dot { color:var(--amber); margin:0 0.8rem; }
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ──────────────────────────────
   PAGE 1: HOME
─────────────────────────────── */
/* ── BANNER HERO ── */
.hero-banner {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: slowZoom 20s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,10,4,0.25) 0%,
    rgba(30,10,4,0.45) 50%,
    rgba(30,10,4,0.75) 100%
  );
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 4rem 6rem;
  width: 100%;
  max-width: 900px;
}

/* ── HERO (old split — keep for reference) ── */
.hero { min-height:100vh; display:grid; grid-template-columns:1fr 1fr; padding-top:64px; overflow:hidden; }
.hero-left { display:flex; flex-direction:column; justify-content:center; padding:6rem 4rem 6rem 6rem; position:relative; }
.hero-left::after { content:''; position:absolute; right:0; top:12%; bottom:12%; width:1px; background:linear-gradient(to bottom,transparent,var(--smoke) 30%,var(--smoke) 70%,transparent); }
.eyebrow { display:flex; align-items:center; gap:1rem; font-size:0.62rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--brand); margin-bottom:2rem; opacity:0; animation:riseIn 1s 0.4s ease forwards; }
.eyebrow-line { width:36px; height:1px; background:var(--brand); opacity:0.5; }
.hero-tagline { font-family:'Cormorant Garamond',serif; font-size:clamp(1.4rem,2.2vw,2rem); font-weight:300; font-style:italic; color:var(--terra); margin-bottom:1rem; opacity:0; animation:riseIn 1s 0.5s ease forwards; }
.hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.8rem,4.5vw,4.5rem); font-weight:300; color:var(--terra); line-height:1.1; margin-bottom:2.2rem; opacity:0; animation:riseIn 1s 0.6s ease forwards; }
.hero-title em { font-style:italic; color:var(--brand); }
.hero-desc { font-size:0.95rem; line-height:2; color:var(--ink); opacity:0; max-width:420px; margin-bottom:3rem; animation:riseIn 1s 0.8s ease forwards; }
.hero-actions { display:flex; gap:1.5rem; align-items:center; opacity:0; animation:riseIn 1s 1s ease forwards; }
.hero-right { background:radial-gradient(ellipse at 40% 50%,#7A2808 0%,#3D1206 60%,#1E0A04 100%); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.hero-rings { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none; }
.ring { position:absolute; border-radius:50%; border:1px solid rgba(240,192,112,0.08); animation:pulsate 6s ease-in-out infinite; }
.ring:nth-child(1){width:88%;aspect-ratio:1;animation-delay:0s}
.ring:nth-child(2){width:72%;aspect-ratio:1;animation-delay:0.7s}
.ring:nth-child(3){width:56%;aspect-ratio:1;animation-delay:1.4s}
.ring:nth-child(4){width:42%;aspect-ratio:1;animation-delay:2.1s}
.logo-container { position:relative; width:60%; max-width:360px; z-index:2; opacity:0; animation:floatIn 1.4s 0.5s ease forwards; filter:drop-shadow(0 0 50px rgba(212,132,58,0.2)); }
.logo-container img { width:100%; display:block; border-radius:50%; }
.hero-vertical-text { position:absolute; left:2rem; bottom:4rem; writing-mode:vertical-rl; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:0.82rem; color:rgba(240,192,112,0.3); letter-spacing:0.18em; }
.intro-prose { background:var(--cream); padding:7rem 6rem; display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:start; }
.intro-left { position:sticky; top:7rem; }
.intro-big-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,3.5vw,3.2rem); font-weight:300; color:var(--terra); line-height:1.15; }
.intro-big-title em { font-style:italic; color:var(--brand); }
.intro-number { font-family:'Cormorant Garamond',serif; font-size:7rem; font-weight:300; color:var(--parchment); line-height:0.85; margin-top:1.5rem; user-select:none; }
.intro-right { border-top:1px solid var(--smoke); padding-top:2rem; }
.intro-poem p { font-family:'Cormorant Garamond',serif; font-size:1.2rem; line-height:2.1; color:var(--ink); margin-bottom:0.3rem; }
.intro-poem .spacer { height:1.2rem; }
.intro-poem .bold-line { font-weight:400; color:var(--terra); font-size:1.25rem; }
.brand-band { background:var(--brand); padding:5rem 6rem; text-align:center; }
.brand-band-eyebrow { font-size:0.62rem; letter-spacing:0.38em; text-transform:uppercase; color:rgba(247,240,230,0.7); margin-bottom:1.5rem; }
.brand-band-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.5rem); font-weight:300; color:var(--cream); line-height:1.2; max-width:700px; margin:0 auto 2.5rem; }
.brand-band-title em { font-style:italic; }
.btn-band { font-size:0.7rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--brand); background:var(--cream); padding:1rem 2.5rem; text-decoration:none; transition:background 0.3s, color 0.3s; display:inline-block; }
.btn-band:hover { background:var(--ink); color:var(--cream); }
.testimonial { background:radial-gradient(ellipse at 50% 50%,#5C1A06 0%,#1E0A04 100%); padding:9rem 6rem; text-align:center; position:relative; overflow:hidden; }
.testimonial::before { content:''; position:absolute; width:700px; height:700px; border-radius:50%; border:1px solid rgba(240,192,112,0.06); top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
.testi-mark { font-family:'Cormorant Garamond',serif; font-size:6rem; line-height:0.4; color:var(--brand); opacity:0.4; margin-bottom:2.5rem; position:relative; z-index:1; }
.testi-text { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(1.4rem,2.5vw,2.1rem); font-weight:300; color:var(--sand); line-height:1.65; max-width:660px; margin:0 auto 2.5rem; position:relative; z-index:1; }
.testi-author { font-size:0.65rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--amber); position:relative; z-index:1; }

/* ──────────────────────────────
   PAGE 2: THE AMANAIA PATH
─────────────────────────────── */
.page-hero { min-height:55vh; display:flex; flex-direction:column; justify-content:flex-end; padding:9rem 6rem 5rem; background:radial-gradient(ellipse at 30% 60%,#7A2808,#1E0A04 70%); position:relative; overflow:hidden; }
.page-hero-rings { position:absolute; inset:0; pointer-events:none; }
.page-hero-ring { position:absolute; border-radius:50%; border:1px solid rgba(240,192,112,0.06); }
.page-hero-ring:nth-child(1){width:60%;aspect-ratio:1;top:-10%;right:-10%}
.page-hero-ring:nth-child(2){width:40%;aspect-ratio:1;top:10%;right:5%}
.page-hero-super { font-size:0.62rem; letter-spacing:0.38em; text-transform:uppercase; color:rgba(247,240,230,0.4); margin-bottom:1rem; }
.page-hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,6vw,5.5rem); font-weight:300; color:var(--cream); line-height:1.05; margin-bottom:1.5rem; }
.page-hero-title em { font-style:italic; color:var(--sand); }
.page-hero-desc { font-size:1rem; line-height:1.9; color:rgba(247,240,230,0.65); max-width:580px; }
.path-steps-full { padding:6rem; background:var(--parchment); }
.path-step-row { display:grid; grid-template-columns:80px 1fr; gap:3rem; padding:3rem 0; border-bottom:1px solid var(--smoke); align-items:start; }
.path-step-row:last-child { border-bottom:none; }
.path-step-numeral { font-family:'Cormorant Garamond',serif; font-size:4.5rem; font-weight:300; color:var(--smoke); line-height:1; }
.path-step-content {}
.path-step-tag { font-size:0.58rem; letter-spacing:0.35em; text-transform:uppercase; color:var(--brand); margin-bottom:0.5rem; }
.path-step-title { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:300; color:var(--terra); margin-bottom:1rem; line-height:1.2; }
.path-step-body { font-size:0.92rem; line-height:2; color:var(--ink); opacity:0.75; margin-bottom:1.5rem; }
.path-step-sub { background:var(--cream); padding:2rem; margin-top:1.5rem; }
.path-sub-title { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--terra); margin-bottom:0.5rem; }
.path-sub-desc { font-size:0.85rem; line-height:1.85; color:var(--ink); opacity:0.7; margin-bottom:1.2rem; }
.path-sub-reserve { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--brand); text-decoration:none; display:inline-flex; align-items:center; gap:0.5rem; transition:gap 0.3s; cursor:pointer; }
.path-sub-reserve:hover { gap:0.9rem; }
.path-photo-slot { background:var(--parchment); border:1px dashed var(--smoke); padding:2rem; text-align:center; font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--smoke); margin-top:1.5rem; }
.path-cta-band { background:var(--brand); padding:4rem 6rem; text-align:center; }
.path-cta-text { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.8rem; color:var(--cream); margin-bottom:0.5rem; }
.path-cta-sub { font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(247,240,230,0.65); margin-bottom:2rem; }

/* ──────────────────────────────
   PAGE 3: CURATED RETREATS
─────────────────────────────── */
.tiers-page-intro { padding:8rem 6rem 5rem; background:var(--cream); display:grid; grid-template-columns:1fr 1.4fr; gap:6rem; align-items:center; }
.tiers-page-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.8rem,5vw,4.5rem); font-weight:300; color:var(--terra); line-height:1.05; }
.tiers-page-title em { font-style:italic; color:var(--brand); }
.tiers-page-sub { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.15rem; color:var(--ink); opacity:0.7; margin-top:1.5rem; line-height:1.8; }
.tiers-page-desc { font-size:0.95rem; line-height:2; color:var(--ink); opacity:0.75; }
.tiers-page-grid { padding:0 6rem 6rem; background:var(--cream); display:grid; grid-template-columns:1fr 1fr; gap:2px; }
.tier-card { background:var(--parchment); padding:3.5rem 3rem; border-top:3px solid transparent; transition:border-color 0.3s, transform 0.4s; }
.tier-card:hover { border-color:var(--brand); transform:translateY(-4px); }
.tier-tag { font-size:0.58rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--brand); margin-bottom:0.5rem; }
.tier-essence { font-size:0.62rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--smoke); margin-bottom:1.5rem; }
.tier-name { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:300; color:var(--terra); margin-bottom:0.5rem; }
.tier-tagline { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1rem; color:var(--brand); margin-bottom:1.5rem; }
.tier-desc { font-size:0.88rem; line-height:1.85; color:var(--ink); opacity:0.72; margin-bottom:1.5rem; }
.tier-includes { list-style:none; margin-bottom:2rem; }
.tier-includes li { font-size:0.82rem; line-height:1.7; padding:0.4rem 0; border-bottom:1px solid rgba(0,0,0,0.06); display:flex; align-items:flex-start; gap:0.8rem; }
.tier-includes li:last-child { border-bottom:none; }
.ti-dot { color:var(--brand); flex-shrink:0; }
.tier-investment { padding-top:1.5rem; border-top:1px solid var(--smoke); display:flex; justify-content:space-between; align-items:flex-end; }
.tier-price { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:300; color:var(--terra); }
.tier-nights { font-size:0.72rem; letter-spacing:0.12em; color:var(--ink); opacity:0.5; }
.tier-iv { background:#3D1206; border-color:var(--brand); grid-column:1/-1; }

/* ──────────────────────────────
   PAGE 4: FOR EXECUTIVES
─────────────────────────────── */
.exec-section { background:radial-gradient(ellipse at 30% 20%,#3D1206 0%,#1E0A04 70%); color:var(--cream); }
.exec-inner { display:grid; grid-template-columns:1fr 1fr; gap:6rem; padding:8rem 6rem 5rem; border-bottom:1px solid rgba(247,240,230,0.08); }
.exec-title { font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,5vw,5rem); font-weight:300; color:var(--cream); line-height:1; margin-bottom:0.5rem; }
.exec-subtitle { font-size:0.82rem; letter-spacing:0.12em; color:var(--sand); opacity:0.8; margin-bottom:0.4rem; }
.exec-location { font-size:0.68rem; letter-spacing:0.28em; text-transform:uppercase; color:var(--brand); margin-bottom:3rem; }
.exec-poem p { font-family:'Cormorant Garamond',serif; font-size:1.15rem; line-height:2; color:rgba(247,240,230,0.75); margin-bottom:0.2rem; }
.exec-bold { color:var(--sand) !important; font-style:italic; }
.btn-exec { display:inline-block; margin-top:2.5rem; font-size:0.68rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--cream); border:1px solid rgba(247,240,230,0.3); padding:1rem 2.2rem; text-decoration:none; transition:border-color 0.3s, background 0.3s; cursor:pointer; }
.btn-exec:hover { border-color:var(--brand); background:rgba(199,118,84,0.15); }
.exec-block { margin-bottom:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(247,240,230,0.08); }
.exec-block:last-child { border-bottom:none; margin-bottom:0; }
.exec-block-label { font-size:0.58rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--brand); margin-bottom:0.6rem; }
.exec-block-title { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:300; color:var(--cream); line-height:1.2; margin-bottom:1rem; }
.exec-block-desc { font-size:0.88rem; line-height:1.9; color:rgba(247,240,230,0.6); margin-bottom:1.2rem; }
.exec-list { list-style:none; margin-bottom:1.2rem; }
.exec-list li { display:flex; gap:0.8rem; align-items:flex-start; font-size:0.85rem; line-height:1.75; color:rgba(247,240,230,0.7); padding:0.4rem 0; border-bottom:1px solid rgba(247,240,230,0.06); }
.exec-list li:last-child { border-bottom:none; }
.exec-dot { color:var(--brand); flex-shrink:0; font-size:0.7rem; margin-top:0.3rem; }
.exec-em { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.05rem; color:var(--sand); line-height:1.6; }
.exec-framework { padding:5rem 6rem; border-bottom:1px solid rgba(247,240,230,0.08); text-align:center; }
.exec-framework-label { font-size:0.58rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--brand); margin-bottom:0.8rem; }
.exec-framework-title { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:300; color:var(--cream); margin-bottom:0.75rem; }
.exec-framework-sub { font-size:0.9rem; color:rgba(247,240,230,0.55); max-width:480px; margin:0 auto 3.5rem; line-height:1.8; }
.exec-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin-bottom:3rem; }
.exec-step { background:rgba(247,240,230,0.04); padding:3rem 2.5rem; text-align:left; border-top:2px solid var(--brand); transition:background 0.3s; }
.exec-step:hover { background:rgba(199,118,84,0.1); }
.exec-step-num { font-family:'Cormorant Garamond',serif; font-size:3rem; color:rgba(247,240,230,0.12); line-height:1; margin-bottom:1rem; }
.exec-step-name { font-size:0.72rem; letter-spacing:0.3em; color:var(--brand); margin-bottom:0.4rem; }
.exec-step-tag { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--cream); margin-bottom:0.8rem; line-height:1.3; }
.exec-step-desc { font-size:0.82rem; line-height:1.8; color:rgba(247,240,230,0.55); }
.exec-framework-close { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.2rem; color:var(--sand); line-height:1.8; }
.exec-outcomes { display:grid; grid-template-columns:1fr 1fr; gap:6rem; padding:5rem 6rem; border-bottom:1px solid rgba(247,240,230,0.08); }
.exec-closing { padding:7rem 6rem; text-align:center; }
.exec-closing-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,4vw,3.5rem); font-weight:300; color:var(--cream); line-height:1.2; margin-bottom:2.5rem; }
.exec-closing-title em { font-style:italic; color:var(--brand); }
.exec-closing-body { font-size:0.95rem; line-height:2; color:rgba(247,240,230,0.65); max-width:600px; margin:0 auto 1.2rem; }
.exec-closing-final { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.5rem; color:var(--sand); line-height:1.7; margin-top:2rem; }

/* ──────────────────────────────
   PAGE 5: ABOUT US
─────────────────────────────── */
.about-page { padding:8rem 6rem 6rem; }
.about-page-header { margin-bottom:5rem; }
.about-page-title { font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,5vw,4.5rem); font-weight:300; color:var(--terra); line-height:1.05; }
.about-page-title em { font-style:italic; color:var(--brand); }
.team-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; }
.team-card { display:grid; grid-template-columns:220px 1fr; gap:3rem; align-items:start; }
.team-photo { aspect-ratio:3/4; background:var(--parchment); overflow:hidden; }
.team-photo-placeholder { width:100%; min-height:280px; height:100%; background:linear-gradient(160deg,var(--parchment),var(--smoke)); display:flex; align-items:center; justify-content:center; }
.team-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.team-role { font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--brand); margin-bottom:0.5rem; }
.team-name { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--terra); line-height:1.1; margin-bottom:1.5rem; }
.team-bio p { font-size:0.85rem; line-height:1.95; color:var(--ink); opacity:0.75; margin-bottom:1rem; }

/* ──────────────────────────────
   PAGE 6: CONTACT
─────────────────────────────── */
.contact-page { min-height:100vh; display:grid; grid-template-columns:1fr 1fr; padding-top:64px; }
.contact-left { background:radial-gradient(ellipse at 30% 60%,#7A2808,#1E0A04 70%); display:flex; flex-direction:column; justify-content:center; padding:7rem 5rem; }
.contact-left-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,4vw,4rem); font-weight:300; color:var(--cream); line-height:1.1; margin-bottom:1.5rem; }
.contact-left-title em { font-style:italic; color:var(--sand); }
.contact-left-desc { font-size:0.95rem; line-height:1.9; color:rgba(247,240,230,0.6); margin-bottom:3rem; }
.contact-info-item { display:flex; gap:1rem; align-items:center; font-size:0.85rem; color:rgba(247,240,230,0.5); margin-bottom:1rem; }
.contact-info-item a { color:rgba(247,240,230,0.5); text-decoration:none; transition:color 0.3s; }
.contact-info-item a:hover { color:var(--sand); }
.contact-right { background:var(--parchment); display:flex; flex-direction:column; justify-content:center; padding:7rem 5rem; }
.contact-form-title { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:300; color:var(--terra); margin-bottom:2.5rem; }
.contact-form { display:flex; flex-direction:column; gap:1rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-input,.form-select,.form-textarea { width:100%; padding:1rem 1.4rem; background:var(--cream); border:1px solid var(--smoke); font-family:'Jost',sans-serif; font-size:0.85rem; color:var(--ink); outline:none; transition:border-color 0.3s; -webkit-appearance:none; border-radius:0; }
.form-input::placeholder,.form-textarea::placeholder { color:var(--smoke); }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--brand); }
.form-select { cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C05830' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1.2rem center; background-color:var(--cream); padding-right:3rem; }
.form-select option { background:var(--cream); color:var(--ink); }
.form-select optgroup { font-weight:500; color:var(--terra); }
.form-textarea { resize:vertical; min-height:120px; }
.form-submit { padding:1.1rem; background:var(--terra); color:var(--cream); border:none; font-family:'Jost',sans-serif; font-size:0.72rem; letter-spacing:0.25em; text-transform:uppercase; cursor:pointer; transition:background 0.3s; width:100%; }
.form-submit:hover { background:var(--brand); }

/* ── FOOTER ── */
footer { background:var(--ink); padding:5rem 6rem 2.5rem; }
.footer-top { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:4rem; padding-bottom:3.5rem; border-bottom:1px solid rgba(247,240,230,0.08); }
.footer-logo-img { width:72px; border-radius:50%; margin-bottom:1.2rem; opacity:0.85; }
.footer-brand { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--sand); letter-spacing:0.15em; text-transform:uppercase; margin-bottom:0.6rem; }
.footer-tagline { font-size:0.8rem; line-height:1.75; color:rgba(247,240,230,0.32); max-width:210px; }
.footer-col-title { font-size:0.58rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--amber); margin-bottom:1.4rem; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:0.65rem; }
.footer-links a { font-size:0.82rem; color:rgba(247,240,230,0.42); text-decoration:none; transition:color 0.3s; cursor:pointer; }
.footer-links a:hover { color:var(--sand); }
.footer-contact { font-size:0.82rem; color:rgba(247,240,230,0.42); line-height:1.9; }
.footer-contact a { color:rgba(247,240,230,0.42); text-decoration:none; transition:color 0.3s; }
.footer-contact a:hover { color:var(--sand); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:2rem; font-size:0.68rem; color:rgba(247,240,230,0.18); letter-spacing:0.06em; flex-wrap:wrap; gap:1rem; }
.footer-begin-cta { font-size:0.65rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--brand); text-decoration:none; transition:color 0.3s, letter-spacing 0.3s; }
.footer-begin-cta:hover { color:var(--sand); letter-spacing:0.35em; }
.footer-socials { display:flex; gap:1.5rem; }
.footer-socials a { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(247,240,230,0.28); text-decoration:none; transition:color 0.3s; }
.footer-socials a:hover { color:var(--amber); }

/* ── LUXURY / SHARED SECTIONS ── */
.luxury-section { padding:7rem 6rem; display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
.luxury-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,4vw,3.8rem); font-weight:300; color:var(--terra); line-height:1.1; margin-bottom:1.5rem; }
.luxury-title em { font-style:italic; color:var(--brand); }
.luxury-body p { font-size:0.95rem; line-height:2; color:var(--ink); opacity:0.75; margin-bottom:1.2rem; }
.luxury-features { list-style:none; margin-top:2rem; }
.luxury-features li { display:flex; align-items:flex-start; gap:1rem; font-size:0.88rem; line-height:1.7; color:var(--ink); opacity:0.8; padding:0.75rem 0; border-bottom:1px solid var(--smoke); }
.luxury-features li:last-child { border-bottom:none; }
.feat-icon { color:var(--brand); font-size:0.8rem; margin-top:0.2rem; flex-shrink:0; }
.photo-placeholder { width:100%; min-height:480px; background:linear-gradient(135deg,#3D1206 0%,#7A2808 50%,#A04020 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; }
.photo-placeholder-text { font-size:0.68rem; letter-spacing:0.3em; text-transform:uppercase; color:rgba(247,240,230,0.25); }

/* ── ANIMATIONS ── */
@keyframes riseIn { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes floatIn { from{opacity:0;transform:scale(0.88)} to{opacity:1;transform:scale(1)} }
@keyframes pulsate { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.025)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── NEWSLETTER STRIP ── */
.newsletter-strip {
  background: var(--parchment);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  border-top: 1px solid var(--smoke);
}
.nl-left {}
.nl-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1rem;
}
.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300;
  color: var(--terra); line-height: 1.15; margin-bottom: 1rem;
}
.nl-title em { font-style: italic; color: var(--brand); }
.nl-desc {
  font-size: 0.88rem; line-height: 1.9; color: var(--ink); opacity: 0.68;
}
.nl-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.nl-pill {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand); border: 1px solid rgba(199,118,84,0.35);
  padding: 0.35rem 0.9rem;
}
.nl-right {}
.nl-form { display: flex; flex-direction: column; gap: 0.85rem; }
.nl-row { display: flex; gap: 2px; }
.nl-input {
  flex: 1; padding: 1rem 1.4rem;
  background: var(--cream); border: 1px solid var(--smoke);
  font-family: 'Jost', sans-serif; font-size: 0.85rem; color: var(--ink);
  outline: none; transition: border-color 0.3s; -webkit-appearance: none;
}
.nl-input::placeholder { color: var(--smoke); }
.nl-input:focus { border-color: var(--brand); }
.nl-btn {
  padding: 1rem 1.6rem; background: var(--terra); color: var(--cream);
  border: none; font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s; white-space: nowrap;
}
.nl-btn:hover { background: var(--brand); }
.nl-note {
  font-size: 0.68rem; color: var(--ink); opacity: 0.38; letter-spacing: 0.04em;
}

/* ── EVENTS & BOOKING PAGE ── */
.events-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem 6rem 5rem;
  background: radial-gradient(ellipse at 60% 30%, #6B2005 0%, #1E0A04 70%);
  position: relative;
  overflow: hidden;
}
.events-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(240,192,112,0.07);
  top: -100px; right: -100px;
  pointer-events: none;
}
.events-hero-super { font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(247,240,230,0.4); margin-bottom: 1rem; }
.events-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 1.5rem; }
.events-hero-title em { font-style: italic; color: var(--sand); }
.events-hero-desc { font-size: 0.95rem; line-height: 1.9; color: rgba(247,240,230,0.6); max-width: 520px; }

/* Filter bar */
.events-filter-bar {
  background: var(--parchment);
  padding: 1.5rem 6rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  border-bottom: 1px solid var(--smoke);
  flex-wrap: wrap;
}
.filter-label { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand); margin-right: 0.5rem; }
.filter-btn {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  background: transparent;
  border: 1px solid var(--smoke);
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--terra); color: var(--cream); border-color: var(--terra); }

/* Timeline */
.events-timeline { padding: 5rem 6rem; background: var(--cream); }

.timeline-month-group { margin-bottom: 4rem; }
.timeline-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--smoke);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.timeline-month-label::after { content: ''; flex: 1; height: 1px; background: var(--smoke); }

.timeline-event {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--parchment);
  align-items: start;
  transition: background 0.3s;
}
.timeline-event:last-child { border-bottom: none; }
.timeline-event:hover { background: var(--parchment); margin: 0 -2rem; padding: 2.5rem 2rem; border-radius: 0; }

.timeline-date-block {
  text-align: center;
  padding-top: 0.25rem;
}
.tl-day { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--terra); line-height: 1; }
.tl-weekday { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--smoke); margin-top: 0.2rem; }

.timeline-event-body { }
.tl-category {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--brand);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.8rem;
}
.tl-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: var(--terra); line-height: 1.15; margin-bottom: 0.5rem; }
.tl-meta { font-size: 0.78rem; color: var(--smoke); letter-spacing: 0.08em; margin-bottom: 0.85rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.tl-meta span { display: flex; align-items: center; gap: 0.4rem; }
.tl-desc { font-size: 0.88rem; line-height: 1.85; color: var(--ink); opacity: 0.72; max-width: 580px; margin-bottom: 1.5rem; }
.tl-footer { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.tl-spots {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.spots-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); display: inline-block; }
.spots-dot.low { background: #c0392b; }
.btn-book {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--terra);
  padding: 0.75rem 1.8rem;
  border: none;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-book:hover { background: var(--brand); transform: translateY(-2px); }
.btn-book-ghost {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  background: transparent;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--smoke);
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-book-ghost:hover { border-color: var(--terra); }

.tl-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--terra);
  font-weight: 300;
}
.tl-price small { font-size: 0.65rem; font-family: 'Jost', sans-serif; color: var(--smoke); letter-spacing: 0.1em; display: block; line-height: 1.2; }

/* Empty state */
.events-empty {
  text-align: center;
  padding: 5rem 2rem;
  display: none;
}
.events-empty.visible { display: block; }
.events-empty-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--terra); margin-bottom: 0.75rem; }
.events-empty-desc { font-size: 0.9rem; color: var(--smoke); }

/* ── BOOKING MODAL ── */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,10,4,0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 1.5rem;
}
.booking-overlay.open { opacity: 1; pointer-events: all; }

.booking-modal {
  background: var(--cream);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease;
}
.booking-overlay.open .booking-modal { transform: translateY(0) scale(1); }

.booking-modal-header {
  background: var(--terra);
  padding: 2.5rem 3rem 2rem;
  position: relative;
}
.booking-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  background: rgba(247,240,230,0.15);
  border: none;
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-family: 'Jost', sans-serif;
}
.booking-close:hover { background: rgba(247,240,230,0.25); }
.booking-event-tag { font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(247,240,230,0.55); margin-bottom: 0.5rem; }
.booking-event-name { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 0.5rem; }
.booking-event-meta { font-size: 0.78rem; color: rgba(247,240,230,0.6); letter-spacing: 0.08em; }

.booking-modal-body { padding: 2.5rem 3rem 3rem; }

.booking-steps { display: flex; gap: 0; margin-bottom: 2.5rem; }
.booking-step-tab {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem;
  color: var(--smoke);
  border-bottom: 2px solid var(--smoke);
  cursor: default;
  transition: all 0.3s;
}
.booking-step-tab.active { color: var(--terra); border-color: var(--terra); }
.booking-step-tab.done { color: var(--brand); border-color: var(--brand); }

.booking-step { display: none; }
.booking-step.active { display: block; }

.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.booking-input, .booking-select, .booking-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--parchment);
  border: 1px solid var(--smoke);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.booking-input::placeholder, .booking-textarea::placeholder { color: var(--smoke); }
.booking-input:focus, .booking-select:focus, .booking-textarea:focus { border-color: var(--brand); }
.booking-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C05830' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-color: var(--parchment); padding-right: 2.5rem; }
.booking-textarea { resize: vertical; min-height: 90px; }
.booking-full { grid-column: 1 / -1; }

.booking-tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.booking-tier-card {
  border: 2px solid var(--smoke);
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.booking-tier-card:hover { border-color: var(--brand); }
.booking-tier-card.selected { border-color: var(--terra); background: rgba(160,64,32,0.05); }
.booking-tier-card.selected::after { content: '✓'; position: absolute; top: 0.6rem; right: 0.8rem; font-size: 0.8rem; color: var(--terra); }
.bk-tier-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--terra); margin-bottom: 0.2rem; }
.bk-tier-price { font-size: 0.78rem; color: var(--brand); font-weight: 400; margin-bottom: 0.3rem; }
.bk-tier-desc { font-size: 0.72rem; color: var(--smoke); line-height: 1.5; }

.booking-summary {
  background: var(--parchment);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--smoke);
}
.booking-summary-row:last-child { border-bottom: none; font-weight: 500; font-size: 0.9rem; }
.booking-summary-row span:last-child { color: var(--terra); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

.booking-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.btn-booking-next {
  flex: 1;
  padding: 1rem;
  background: var(--terra);
  color: var(--cream);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-booking-next:hover { background: var(--brand); }
.btn-booking-back {
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--terra);
  border: 1px solid var(--smoke);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-booking-back:hover { border-color: var(--terra); }

/* Success state */
.booking-success {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.booking-success.visible { display: block; }
.booking-success-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--brand); }
.booking-success-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--terra); margin-bottom: 0.75rem; }
.booking-success-desc { font-size: 0.88rem; line-height: 1.85; color: var(--ink); opacity: 0.72; margin-bottom: 2rem; }

/* ── PHOTO SECTION ── */
.luxury-photo-wrap {
  position: relative;
  overflow: hidden;
}
.luxury-photo-wrap img { transition: transform 0.8s ease; }
.luxury-photo-wrap:hover img { transform: scale(1.03); }
.luxury-photo-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,240,230,0.6);
  background: rgba(30,10,4,0.45);
  padding: 0.4rem 0.9rem;
  backdrop-filter: blur(4px);
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 380px 280px;
  gap: 3px;
  background: var(--ink);
}
.photo-gallery-item {
  overflow: hidden;
  position: relative;
  cursor: default;
}
.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.92);
}
.photo-gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.photo-gallery-item.tall { grid-row: 1 / 3; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,4,0.55) 0%, transparent 50%);
  pointer-events: none;
}
.gallery-label {
  position: absolute;
  bottom: 1.5rem; left: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(247,240,230,0.85);
  line-height: 1.4;
  pointer-events: none;
}
.gallery-label small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247,240,230,0.5);
  margin-bottom: 0.3rem;
}
.gallery-caption-bar {
  background: var(--ink);
  padding: 2rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-caption-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(247,240,230,0.55);
  line-height: 1.5;
  max-width: 500px;
}
.gallery-caption-cta {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.gallery-caption-cta:hover { gap: 1rem; }

/* ── PAST EXPERIENCES CAROUSEL ── */
.past-carousel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  margin-top: 2rem;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9);
}
.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,4,0.65) 0%, transparent 55%);
  pointer-events: none;
}
.carousel-slide-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 5rem;
}
.carousel-slide-tag {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}
.carousel-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
}

/* Nav arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(247,240,230,0.12);
  border: 1px solid rgba(247,240,230,0.2);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  z-index: 10;
  backdrop-filter: blur(4px);
  font-family: 'Jost', sans-serif;
}
.carousel-btn:hover { background: rgba(199,118,84,0.4); border-color: var(--brand); }
.carousel-btn.prev { left: 1.2rem; }
.carousel-btn.next { right: 1.2rem; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 0;
  background: var(--ink);
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(247,240,230,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--brand);
  transform: scale(1.4);
}

/* Thumbnails strip */
.carousel-thumbs {
  display: flex;
  gap: 3px;
  background: var(--ink);
  padding: 0 0 3px;
}
.carousel-thumb {
  flex: 1;
  height: 80px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s;
  border: 2px solid transparent;
}
.carousel-thumb.active { opacity: 1; border-color: var(--brand); }
.carousel-thumb:hover { opacity: 0.8; }
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* Counter */
.carousel-counter {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(247,240,230,0.45);
  font-family: 'Jost', sans-serif;
  z-index: 10;
}

/* ── MINI PHOTO GALLERY (2-up) ── */
.mini-photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 1.5rem;
  overflow: hidden;
}
.mini-photo-item {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.mini-photo-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.88);
}
.mini-photo-item:hover img { transform: scale(1.04); filter: brightness(1); }
.mini-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,4,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.mini-photo-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
}
.mini-photo-tag {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.25rem;
}
.mini-photo-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(247,240,230,0.9);
  line-height: 1.3;
}

/* ══════════════════════════════════════
   MOMENTS WITHIN PAGE
══════════════════════════════════════ */
.moments-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem 6rem 5rem;
  background: radial-gradient(ellipse at 50% 40%, #4A1808 0%, #1E0A04 75%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.moments-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(240,192,112,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.moments-hero::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(240,192,112,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.moments-hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(247,240,230,0.4); margin-bottom: 1rem; position: relative; z-index: 1; }
.moments-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 1rem; position: relative; z-index: 1; }
.moments-hero-title em { font-style: italic; color: var(--sand); }
.moments-hero-desc { font-size: 0.95rem; line-height: 1.9; color: rgba(247,240,230,0.55); max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }

/* Section nav tabs */
.moments-tabs {
  background: var(--ink);
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(247,240,230,0.08);
  position: sticky;
  top: 64px;
  z-index: 200;
}
.moments-tab {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,240,230,0.4);
  padding: 1.1rem 1.8rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  background: none;
  border-left: none; border-right: none; border-top: none;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
}
.moments-tab:hover { color: rgba(247,240,230,0.75); }
.moments-tab.active { color: var(--brand); border-bottom-color: var(--brand); }

/* Section wrapper */
.moments-section {
  padding: 6rem 6rem 4rem;
}
.moments-section:nth-child(even) { background: var(--parchment); }
.moments-section:nth-child(odd) { background: var(--cream); }

.moments-section-header { margin-bottom: 3.5rem; }
.moments-section-number { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 300; color: var(--smoke); line-height: 0.85; margin-bottom: 0.5rem; user-select: none; }
.moments-section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: var(--terra); line-height: 1.1; }
.moments-section-title em { font-style: italic; color: var(--brand); }
.moments-section-desc { font-size: 0.92rem; line-height: 1.95; color: var(--ink); opacity: 0.68; max-width: 540px; margin-top: 1rem; }

/* Grid layouts */
.moments-grid-main { display: grid; gap: 3px; }
.moments-grid-3 { grid-template-columns: repeat(3,1fr); }
.moments-grid-2 { grid-template-columns: 1.3fr 1fr; }
.moments-grid-4 { grid-template-columns: repeat(4,1fr); }
.moments-grid-featured { grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; }
.moments-grid-wide { grid-template-columns: 1fr 1fr 1fr; }

/* Photo items */
.moments-photo {
  position: relative;
  overflow: hidden;
  cursor: default;
  background: var(--ink);
}
.moments-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.4s ease;
  filter: brightness(0.88);
}
.moments-photo:hover img { transform: scale(1.05); filter: brightness(1); }
.moments-photo.tall img { min-height: 460px; }
.moments-photo.short img { min-height: 200px; }
.moments-photo.wide { grid-column: span 2; }
.moments-photo.wide img { min-height: 340px; }
.moments-photo.full { grid-column: 1 / -1; }
.moments-photo.full img { min-height: 420px; object-position: center 30%; }

.moments-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,10,4,0.6) 0%, transparent 55%);
  pointer-events: none;
  transition: opacity 0.4s;
}
.moments-photo:hover .moments-overlay { opacity: 0.5; }

.moments-caption {
  position: absolute; bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}
.moments-photo:hover .moments-caption { opacity: 1; transform: translateY(0); }
.moments-caption-tag { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.2rem; }
.moments-caption-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: rgba(247,240,230,0.9); line-height: 1.3; }

/* Placeholder tile for empty slots */
.moments-placeholder {
  min-height: 280px;
  background: var(--parchment);
  border: 1px dashed var(--smoke);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.moments-placeholder-icon { font-size: 1.5rem; color: var(--smoke); }
.moments-placeholder-text { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--smoke); }

/* Upload CTA */
.moments-upload-note {
  text-align: center;
  padding: 2rem 6rem;
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,240,230,0.3);
}

/* ── WHATSAPP BUTTON ── */
.wa-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff !important;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  margin-top: 0.5rem;
}
.wa-btn-large:hover { background: #1ebe5d; transform: translateY(-2px); }
.wa-icon { font-size: 1.1rem; }

.wa-footer-link {
  color: rgba(247,240,230,0.42) !important;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.wa-footer-link:hover { color: #25D366 !important; }

/* Floating WhatsApp bubble */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
.wa-float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ══════════════════════════════════════
   SACRED PATH TRANSITION
══════════════════════════════════════ */
.path-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}

/* Dark veil */
.path-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1E0A04 0%, #0A0402 100%);
  opacity: 0;
  transition: none;
}

/* Concentric rings */
.path-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.path-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199,118,84,0.15);
}
.path-ring:nth-child(1) { width: 500px; height: 500px; }
.path-ring:nth-child(2) { width: 380px; height: 380px; border-color: rgba(199,118,84,0.2); }
.path-ring:nth-child(3) { width: 260px; height: 260px; border-color: rgba(199,118,84,0.25); }
.path-ring:nth-child(4) { width: 160px; height: 160px; border-color: rgba(199,118,84,0.3); }

/* Logo container */
.path-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transform: scale(0.85);
}
.path-logo-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 40px rgba(199,118,84,0.5));
}
.path-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(232,200,154,0.6);
}
.path-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(232,200,154,0.35);
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 300px;
  line-height: 1.6;
  position: absolute;
  top: calc(100% + 2rem);
  opacity: 0;
  white-space: nowrap;
}

/* Particle dots */
.path-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.path-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brand, #c77654);
  opacity: 0;
}

/* Horizontal light line sweep */
.path-sweep {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(199,118,84,0.4), transparent);
  top: 50%;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
}

/* ── FEATURED EVENT CARD ── */
.featured-event-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(199,118,84,0.2);
}

/* Background layer */
.fec-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1E0A04 0%, #3D1206 50%, #1E0A04 100%);
  z-index: 0;
}
.fec-bg-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.fec-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199,118,84,0.08);
}
.fec-ring:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -200px; }
.fec-ring:nth-child(2) { width: 400px; height: 400px; top: -100px; right: -100px; }
.fec-ring:nth-child(3) { width: 250px; height: 250px; top: -20px; right: -20px; border-color: rgba(199,118,84,0.12); }
.fec-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,118,84,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

/* Card inner layout */
.fec-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  min-height: 520px;
}

/* Left: content */
.fec-content {
  padding: 4rem 4rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid rgba(199,118,84,0.3);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  width: fit-content;
  background: rgba(199,118,84,0.06);
}
.fec-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.fec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.fec-title em { font-style: italic; color: var(--sand); }

.fec-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(247,240,230,0.45);
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
}

.fec-desc {
  font-size: 0.9rem;
  line-height: 2;
  color: rgba(247,240,230,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* Meta grid */
.fec-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.fec-meta-item {
  padding: 1rem 1.2rem;
  background: rgba(247,240,230,0.04);
  border: 1px solid rgba(247,240,230,0.08);
  border-left: 2px solid var(--brand);
}
.fec-meta-label {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.3rem;
}
.fec-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.3;
}

/* Experience offerings */
.fec-offerings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.fec-offering {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(247,240,230,0.65);
  background: rgba(247,240,230,0.05);
  border: 1px solid rgba(247,240,230,0.1);
  padding: 0.45rem 0.9rem;
  transition: border-color 0.3s, background 0.3s;
}
.fec-offering:hover { border-color: var(--brand); background: rgba(199,118,84,0.08); }
.fec-offering-icon { font-size: 1rem; }
.fec-offering-label { text-transform: uppercase; font-size: 0.6rem; letter-spacing: 0.18em; }

/* CTA row */
.fec-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fec-guest-note {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(247,240,230,0.35);
  font-style: italic;
}

/* Right: date panel */
.fec-date-panel {
  background: rgba(199,118,84,0.08);
  border-left: 1px solid rgba(199,118,84,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  gap: 1.5rem;
  text-align: center;
  position: relative;
}
.fec-date-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brand) 30%, var(--brand) 70%, transparent);
  opacity: 0.4;
}
.fec-month {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--brand);
}
.fec-day-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.fec-day-name {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,240,230,0.4);
}
.fec-time-block {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(199,118,84,0.2);
  text-align: center;
  width: 100%;
}
.fec-time-label { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.3rem; }
.fec-time-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); }
.fec-location-block { text-align: center; }
.fec-location-label { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247,240,230,0.35); margin-bottom: 0.4rem; }
.fec-location-value { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: rgba(247,240,230,0.7); line-height: 1.4; }

.fec-divider {
  width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, var(--brand), transparent);
  margin: 0 auto;
}

.fec-spots-panel {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,240,230,0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fec-spots-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* Mothers Day tag ribbon */
.fec-ribbon {
  position: absolute;
  top: 2rem; left: -1px;
  background: var(--brand);
  color: var(--cream);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  z-index: 2;
}

@media (max-width:960px) {
  .fec-inner { grid-template-columns: 1fr; }
  .fec-content { padding: 3rem 2rem; }
  .fec-date-panel { border-left: none; border-top: 1px solid rgba(199,118,84,0.15); flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; padding: 2rem; }
  .fec-day-number { font-size: 4rem; }
  .fec-meta-grid { grid-template-columns: 1fr; }
}

/* ── SQUARE PAYMENT ── */
.sq-payment-section {
  background: var(--parchment);
  border: 1px solid var(--smoke);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sq-payment-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sq-payment-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--smoke);
}
.sq-amount-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sq-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--terra);
  font-weight: 300;
  line-height: 1;
}
.sq-amount-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: white;
  border: 1px solid var(--smoke);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--terra);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.sq-amount-input:focus { border-color: var(--brand); }
.sq-amount-input::placeholder { color: var(--smoke); font-size: 1.4rem; }
.sq-suggested {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.sq-suggested-btn {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--terra);
  background: white;
  border: 1px solid var(--smoke);
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all 0.2s;
}
.sq-suggested-btn:hover { background: var(--terra); color: var(--cream); border-color: var(--terra); }
.sq-note {
  font-size: 0.72rem;
  color: var(--smoke);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sq-pay-btn {
  width: 100%;
  padding: 1.1rem;
  background: #006AFF;
  color: white;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.sq-pay-btn:hover { background: #0052CC; transform: translateY(-1px); }
.sq-pay-btn:disabled { background: var(--smoke); cursor: not-allowed; transform: none; }
.sq-pay-btn svg { width: 18px; height: 18px; fill: white; }
.sq-skip-link {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.sq-skip-link:hover { color: var(--terra); }
.sq-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  color: var(--smoke);
  letter-spacing: 0.1em;
  margin-top: 0.6rem;
}

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  nav { padding:1.2rem 2rem; }
  .nav-links { display:none; }
  .hero,.contact-page { grid-template-columns:1fr; }
  .hero-right { min-height:55vw; }
  .hero-left { padding:6rem 2rem 3rem; }
  .hero-left::after { display:none; }
  .intro-prose,.luxury-section,.tiers-page-intro,.team-grid,.exec-inner,.exec-outcomes { grid-template-columns:1fr; gap:3rem; }
  .team-card { grid-template-columns:1fr; }
  .tiers-page-grid { grid-template-columns:1fr; }
  .exec-steps { grid-template-columns:1fr; }
  .path-steps-full,.tiers-page-intro,.tiers-page-grid,.about-page,.exec-framework,.exec-closing,.exec-outcomes,.exec-inner,.contact-left,.contact-right,.luxury-section { padding-left:2rem; padding-right:2rem; }
  .intro-prose { padding:5rem 2rem; }
  .brand-band,.path-cta-band,.testimonial { padding:4rem 2rem; }
  .page-hero { padding:7rem 2rem 4rem; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  footer { padding:4rem 2rem 2rem; }
  .tier-iv { grid-column:1; }
  .newsletter-strip { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .photo-gallery { grid-template-columns: 1fr; grid-template-rows: 280px 220px 220px; }
  .photo-gallery-item.tall { grid-row: 1; }
  .gallery-caption-bar { padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; align-items: flex-start; }
  .carousel-slide img { height: 320px; }
  .moments-hero { padding: 7rem 2rem 4rem; }
  .moments-tabs { overflow-x: auto; justify-content: flex-start; padding: 0 1rem; top: 60px; }
  .moments-tab { padding: 1rem 1.2rem; font-size: 0.58rem; }
  .moments-section { padding: 4rem 2rem 3rem; }
  .moments-grid-featured, .moments-grid-2 { grid-template-columns: 1fr; }
  .moments-grid-3, .moments-grid-4, .moments-grid-wide { grid-template-columns: 1fr 1fr; }
  .moments-photo.wide { grid-column: span 1; }
  .moments-upload-note { padding: 1.5rem 2rem; }
  .mini-photo-gallery { grid-template-columns: 1fr; }
  .mini-photo-item img { height: 260px; }
  .carousel-thumb { height: 60px; }
  .events-filter-bar { padding: 1.2rem 2rem; }
  .events-timeline { padding: 4rem 2rem; }
  .events-hero { padding: 7rem 2rem 4rem; }
  .timeline-event { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .timeline-event:hover { margin: 0; padding: 2.5rem 0; }
  .tl-day { font-size: 2.2rem; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-tier-grid { grid-template-columns: 1fr; }
  .booking-modal-header, .booking-modal-body { padding-left: 1.5rem; padding-right: 1.5rem; }
}