/* ============================================================
   SISTERLOCKS CRIB — Precision Meets Elegance
   Palette: ink #16110D · parchment #F3E9DA · honey #C68F41
            copper #A6551F · burgundy #4A1E1A · bone #FBF6EC
   Display: Fraunces · Body: Manrope
   ============================================================ */

:root{
  --ink:        #16110D;
  --ink-soft:   #241B14;
  --parchment:  #F3E9DA;
  --bone:       #FBF6EC;
  --honey:      #C68F41;
  --honey-lt:   #E0B876;
  --copper:     #A6551F;
  --burgundy:   #4A1E1A;
  --line:       rgba(22,17,13,0.12);
  --line-lt:    rgba(251,246,236,0.16);

  --display: "Fraunces", "Georgia", serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}

body{
  font-family:var(--body);
  background:var(--parchment);
  color:var(--ink);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

.eyebrow{
  font-family:var(--body);
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--copper);
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--copper);
  display:inline-block;
}

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:600;
  line-height:1.08;
  letter-spacing:-0.01em;
  color:var(--ink);
}

.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head h2{
  font-size:clamp(30px, 4vw, 46px);
  margin-bottom:14px;
}
.section-head p{
  color:var(--ink-soft);
  opacity:0.72;
  font-size:16.5px;
  max-width:520px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }
.section-head.center p{ margin-left:auto; margin-right:auto; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  font-family:var(--body);
  font-weight:700;
  font-size:13.5px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  border-radius:var(--radius);
  transition:transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--ink);
  color:var(--bone);
}
.btn-primary:hover{ background:var(--copper); transform:translateY(-2px); }
.btn-whatsapp{
  background:#25D366;
  color:#0b3d1f;
}
.btn-whatsapp:hover{ background:#1ebe5b; transform:translateY(-2px); }
.btn-outline{
  border:1px solid var(--line);
  color:var(--ink);
}
.btn-outline:hover{ border-color:var(--ink); background:var(--ink); color:var(--bone); }
.btn-outline-light{
  border:1px solid var(--line-lt);
  color:var(--bone);
}
.btn-outline-light:hover{ border-color:var(--honey); background:var(--honey); color:var(--ink); }
.btn svg{ width:16px; height:16px; flex-shrink:0; }

/* ---------- NAV ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(243,233,218,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:background 0.3s ease;
}
.nav .container{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.nav-logo{ display:flex; align-items:center; gap:12px; }
.nav-logo img{ height:42px; width:42px; border-radius:50%; object-fit:cover; }
.nav-logo-text{ font-family:var(--display); font-size:18px; font-weight:600; line-height:1.1; }
.nav-logo-text span{ display:block; font-family:var(--body); font-size:9.5px; letter-spacing:0.18em; text-transform:uppercase; color:var(--copper); font-weight:700; margin-top:2px; }

.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{
  font-size:13.5px; font-weight:600; letter-spacing:0.02em;
  position:relative; padding:4px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--copper); transition:width 0.3s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-burger{ display:none; flex-direction:column; gap:5px; width:26px; }
.nav-burger span{ height:2px; background:var(--ink); border-radius:2px; transition:all 0.3s ease; }

@media (max-width:900px){
  .nav-links{
    position:fixed; top:76px; left:0; right:0;
    background:var(--bone); flex-direction:column; align-items:flex-start;
    padding:28px; gap:22px; border-bottom:1px solid var(--line);
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:all 0.3s var(--ease);
  }
  .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:all; }
  .nav-burger{ display:flex; }
  .nav-cta .btn-outline{ display:none; }
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  background:var(--ink);
  color:var(--bone);
  overflow:hidden;
  padding-top:76px;
}
.hero-parting{
  position:absolute; inset:0;
  opacity:0.5;
  pointer-events:none;
}
.hero-grid{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.05fr 0.95fr;
  gap:60px; align-items:center;
  width:100%;
  padding:70px 0;
}
.hero-copy .eyebrow{ color:var(--honey-lt); }
.hero-copy .eyebrow::before{ background:var(--honey-lt); }
.hero-copy h1{
  font-size:clamp(40px, 5.4vw, 74px);
  color:var(--bone);
  margin-bottom:22px;
}
.hero-copy h1 em{
  font-style:italic;
  color:var(--honey-lt);
  font-weight:500;
}
.hero-copy p{
  font-size:17.5px;
  color:rgba(251,246,236,0.72);
  max-width:460px;
  margin-bottom:36px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-stats{ display:flex; gap:40px; flex-wrap:wrap; }
.hero-stats div strong{
  display:block; font-family:var(--display); font-size:28px; color:var(--honey-lt);
}
.hero-stats div span{ font-size:12px; letter-spacing:0.05em; color:rgba(251,246,236,0.55); }

.hero-visual{ position:relative; }
.hero-visual-frame{
  position:relative;
  border-radius:4px;
  overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.6);
}
.hero-visual-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; bottom:-26px; left:-26px;
  background:var(--honey); color:var(--ink);
  padding:18px 22px; border-radius:4px;
  box-shadow:0 20px 40px -10px rgba(0,0,0,0.4);
  max-width:220px;
}
.hero-badge strong{ display:block; font-family:var(--display); font-size:20px; margin-bottom:2px; }
.hero-badge span{ font-size:12px; opacity:0.8; }

@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; padding:40px 0 70px; }
  .hero-visual{ order:-1; max-width:380px; margin:0 auto; }
  .hero-badge{ left:12px; bottom:-20px; }
}

/* ---------- MARQUEE ---------- */
.marquee{
  background:var(--honey); color:var(--ink);
  overflow:hidden; white-space:nowrap;
  border-top:1px solid rgba(22,17,13,0.15);
  border-bottom:1px solid rgba(22,17,13,0.15);
}
.marquee-track{
  display:inline-flex; align-items:center;
  animation:marquee 32s linear infinite;
}
.marquee-track span{
  font-family:var(--display); font-style:italic;
  font-size:16px; padding:14px 34px;
  display:inline-flex; align-items:center; gap:34px;
}
.marquee-track span::after{ content:"✦"; font-style:normal; opacity:0.5; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- ABOUT ---------- */
.about{ padding:120px 0 100px; background:var(--parchment); }
.about-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; align-items:start; }
.about-photos{ position:relative; }
.about-photo-a{ border-radius:4px; overflow:hidden; aspect-ratio:3/3.6; }
.about-photo-a img{ width:100%; height:100%; object-fit:cover; }
.about-photo-b{
  position:absolute; width:52%; aspect-ratio:1/1.1;
  border-radius:4px; overflow:hidden;
  bottom:-40px; right:-40px;
  border:6px solid var(--parchment);
  box-shadow:0 30px 60px -20px rgba(22,17,13,0.35);
}
.about-photo-b img{ width:100%; height:100%; object-fit:cover; }
.about-text p{ color:var(--ink-soft); opacity:0.78; margin-bottom:20px; max-width:540px; }
.about-list{ margin-top:34px; display:grid; grid-template-columns:1fr 1fr; gap:20px 30px; }
.about-list li{ display:flex; gap:12px; align-items:flex-start; font-size:14.5px; font-weight:600; }
.about-list li svg{ flex-shrink:0; width:18px; height:18px; margin-top:2px; color:var(--copper); }

@media (max-width:900px){
  .about-grid{ grid-template-columns:1fr; }
  .about-photos{ margin-bottom:70px; max-width:420px; }
  .about-list{ grid-template-columns:1fr; }
}

/* ---------- SERVICES / PRICING ---------- */
.services{ padding:100px 0; background:var(--ink); color:var(--bone); position:relative; }
.services .section-head h2{ color:var(--bone); }
.services .section-head p{ color:rgba(251,246,236,0.65); }
.services .eyebrow{ color:var(--honey-lt); }
.services .eyebrow::before{ background:var(--honey-lt); }

.price-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:46px; }
.price-tab{
  padding:11px 20px; border:1px solid var(--line-lt); border-radius:30px;
  font-size:13px; font-weight:700; letter-spacing:0.02em;
  transition:all 0.3s ease;
}
.price-tab.active, .price-tab:hover{ background:var(--honey); color:var(--ink); border-color:var(--honey); }

.price-panels{ position:relative; }
.price-panel{ display:none; }
.price-panel.active{ display:block; animation:fadein 0.5s ease; }
@keyframes fadein{ from{ opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }

.price-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:1px; background:var(--line-lt); border:1px solid var(--line-lt); border-radius:4px; overflow:hidden; }
.price-card{ background:var(--ink); padding:26px 28px; }
.price-card-full{ grid-column:1/-1; }
.price-row{
  display:flex; justify-content:space-between; align-items:baseline;
  padding:13px 0; border-bottom:1px solid var(--line-lt);
  gap:20px;
}
.price-row:last-child{ border-bottom:none; }
.price-row .len{ font-size:14.5px; font-weight:600; color:rgba(251,246,236,0.88); }
.price-row .amt{ font-family:var(--display); font-size:19px; color:var(--honey-lt); white-space:nowrap; }
.price-card h4{ color:var(--bone); font-size:16px; margin-bottom:4px; }
.price-card .price-note{ font-size:12.5px; color:rgba(251,246,236,0.5); margin-bottom:14px; }

.price-addons{
  margin-top:26px; display:flex; flex-wrap:wrap; gap:12px;
}
.price-addons span{
  font-size:12.5px; padding:9px 16px; border:1px dashed var(--line-lt);
  border-radius:30px; color:rgba(251,246,236,0.75);
}
.price-addons strong{ color:var(--honey-lt); }

@media (max-width:700px){
  .price-grid{ grid-template-columns:1fr; }
}

/* ---------- GALLERY ---------- */
.gallery{ padding:110px 0 100px; background:var(--parchment); }
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(var(--gallery-cols-desktop, 4), 1fr);
  gap:16px;
}
.gallery-grid figure{
  aspect-ratio:1/1.05;
  border-radius:3px; overflow:hidden; position:relative;
  cursor:zoom-in;
}
.gallery-grid img{
  width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.6s var(--ease);
}
.gallery-grid figure:hover img{ transform:scale(1.06); }
.gallery-grid figcaption{
  position:absolute; left:0; right:0; bottom:0;
  padding:16px 14px 12px;
  background:linear-gradient(0deg, rgba(22,17,13,0.85), transparent);
  color:var(--bone); font-size:12px; font-weight:600; letter-spacing:0.02em;
  opacity:0; transform:translateY(6px);
  transition:all 0.35s ease;
}
.gallery-grid figure:hover figcaption{ opacity:1; transform:translateY(0); }

@media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(var(--gallery-cols-tablet, 2), 1fr); } }
@media (max-width:620px){ .gallery-grid{ grid-template-columns:repeat(var(--gallery-cols-mobile, 2), 1fr); gap:10px; } }

.lightbox{
  position:fixed; inset:0; z-index:400; background:rgba(22,17,13,0.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity 0.3s ease;
  padding:40px;
}
.lightbox.open{ opacity:1; pointer-events:all; }
.lightbox img{ max-width:min(88vw, 720px); max-height:82vh; border-radius:4px; object-fit:contain; }
.lightbox-close{
  position:absolute; top:26px; right:32px; color:var(--bone);
  font-size:14px; letter-spacing:0.1em; display:flex; align-items:center; gap:8px;
}
.lightbox-close svg{ width:22px; height:22px; }

/* ---------- VIDEO GALLERY ---------- */
.videos{ padding:100px 0 110px; background:var(--ink); color:var(--bone); }
.videos .eyebrow{ color:var(--honey-lt); }
.videos .eyebrow::before{ background:var(--honey-lt); }
.videos .section-head h2{ color:var(--bone); }
.videos .section-head p{ color:rgba(251,246,236,0.65); }

.video-grid{
  display:grid; grid-template-columns:repeat(var(--video-cols-desktop, 3), 1fr); gap:26px;
}
.video-empty{
  grid-column:1/-1; text-align:center; padding:50px 20px;
  border:1px dashed var(--line-lt); border-radius:6px;
  color:rgba(251,246,236,0.55); font-size:14.5px;
}

/* Category cover card — one per category, click opens the lightbox to
   browse every video in that category. */
.video-cat-card{
  background:var(--ink-soft); border-radius:6px; overflow:hidden; cursor:pointer;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.video-cat-card:hover{ transform:translateY(-4px); box-shadow:0 24px 46px -20px rgba(0,0,0,0.5); }
.video-cat-thumb{ position:relative; aspect-ratio:16/9; background:#000; overflow:hidden; }
.video-cat-thumb img{ width:100%; height:100%; object-fit:cover; opacity:0.85; }
.video-cat-thumb.no-thumb{ display:flex; align-items:center; justify-content:center; color:var(--honey-lt); opacity:0.5; }
.video-cat-thumb.no-thumb svg{ width:36px; height:36px; }
.video-cat-play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
}
.video-cat-play span{
  width:52px; height:52px; border-radius:50%; background:rgba(22,17,13,0.65);
  backdrop-filter:blur(2px); display:flex; align-items:center; justify-content:center;
  color:var(--bone); transition:background 0.25s ease, transform 0.25s ease;
}
.video-cat-card:hover .video-cat-play span{ background:var(--honey); color:var(--ink); transform:scale(1.08); }
.video-cat-play svg{ width:18px; height:18px; margin-left:2px; }
.video-cat-count{
  position:absolute; top:12px; right:12px; background:rgba(22,17,13,0.75);
  color:var(--bone); font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px;
}
.video-cat-body{ padding:16px 18px 20px; }
.video-cat-body h4{ color:var(--bone); font-size:15.5px; margin-bottom:4px; }
.video-cat-body p{ font-size:12.5px; color:rgba(251,246,236,0.55); }

@media (max-width:900px){ .video-grid{ grid-template-columns:repeat(var(--video-cols-tablet, 2), 1fr); } }
@media (max-width:620px){ .video-grid{ grid-template-columns:repeat(var(--video-cols-mobile, 1), 1fr); gap:16px; } }

/* ---------- VIDEO LIGHTBOX (browse a category, one video at a time) ---------- */
.video-lightbox{
  position:fixed; inset:0; z-index:410; background:rgba(10,8,6,0.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity 0.3s ease; padding:24px;
}
.video-lightbox.open{ opacity:1; pointer-events:all; }
.video-lightbox-inner{ width:100%; max-width:720px; max-height:92vh; overflow-y:auto; }
.video-lightbox-category{
  font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--honey-lt); margin-bottom:12px;
}
.video-lightbox-stage{ position:relative; aspect-ratio:16/9; background:#000; border-radius:6px; overflow:hidden; }
.video-lightbox-stage.is-short{ aspect-ratio:9/16; max-height:70vh; margin:0 auto; }
.video-lightbox-stage iframe{ width:100%; height:100%; border:0; display:block; }
/* Fallback link shown only when a video couldn't be resolved to an embeddable
   ID, or when a platform's widget script doesn't load — styled as an
   obvious button rather than a bare link. */
.video-fallback-link{
  display:flex; align-items:center; justify-content:center; gap:8px; height:100%;
  color:var(--honey-lt); font-weight:700; font-size:13.5px; text-align:center;
  padding:20px; text-decoration:none;
}
.video-fallback-link::before{ content:"▶"; font-size:11px; }
.video-lightbox-stage.platform-tiktok, .video-lightbox-stage.platform-instagram{
  height:auto; min-height:300px; display:flex; align-items:center; justify-content:center;
}
.video-lightbox-stage.platform-tiktok blockquote, .video-lightbox-stage.platform-instagram blockquote{ margin:0; width:100%; }
.video-lightbox-stage.platform-tiktok blockquote a, .video-lightbox-stage.platform-instagram blockquote a{
  display:flex; align-items:center; justify-content:center; gap:8px;
  height:100%; min-height:200px; padding:20px;
  color:var(--honey-lt); font-weight:700; font-size:13.5px; text-align:center;
  text-decoration:none; background:var(--ink-soft);
}
.video-lightbox-stage.platform-tiktok blockquote a::before, .video-lightbox-stage.platform-instagram blockquote a::before{
  content:"▶"; font-size:11px;
}
.video-lightbox-info{ padding:16px 4px; }
.video-lightbox-info h4{ color:var(--bone); font-size:17px; margin-bottom:6px; }
.video-lightbox-info p{ color:rgba(251,246,236,0.65); font-size:13.5px; line-height:1.6; }
.video-lightbox-strip{
  display:flex; gap:10px; overflow-x:auto; padding:6px 4px 4px;
  scrollbar-width:thin;
}
.video-lightbox-thumb{
  flex-shrink:0; width:96px; height:64px; border-radius:4px; overflow:hidden;
  cursor:pointer; border:2px solid transparent; opacity:0.6; transition:all 0.2s ease;
  background:#000; position:relative;
}
.video-lightbox-thumb img{ width:100%; height:100%; object-fit:cover; }
.video-lightbox-thumb.no-thumb{ display:flex; align-items:center; justify-content:center; color:var(--honey-lt); }
.video-lightbox-thumb.active{ opacity:1; border-color:var(--honey); }
.video-lightbox-thumb:hover{ opacity:1; }

@media (max-width:600px){
  .video-lightbox{ padding:12px; }
  .video-lightbox-thumb{ width:76px; height:52px; }
}

/* ---------- SOCIAL ROW ---------- */
.social-row{ display:flex; gap:14px; margin-top:8px; }
.social-row a{
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); color:var(--ink);
  transition:all 0.3s ease;
}
.social-row a svg{ width:18px; height:18px; }
.social-row a:hover{ background:var(--ink); color:var(--honey-lt); border-color:var(--ink); transform:translateY(-2px); }
footer .social-row a{ border-color:var(--line-lt); color:var(--bone); }
footer .social-row a:hover{ background:var(--honey); color:var(--ink); border-color:var(--honey); }
.footer-social{ margin-top:20px; }

/* ---------- VISIT / LOCATION ---------- */
.visit{ padding:110px 0; background:var(--parchment); }
.visit-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px; align-items:center; }
.visit-info h2{ font-size:clamp(28px,3.6vw,40px); margin-bottom:20px; }
.visit-address{ font-size:18px; font-weight:700; margin-bottom:4px; }
.visit-city{ font-size:14.5px; opacity:0.6; margin-bottom:20px; }
.visit-hours{
  display:flex; gap:12px; align-items:flex-start;
  margin-bottom:26px; padding:16px 18px; background:var(--bone);
  border:1px solid var(--line); border-radius:6px; max-width:340px;
}
.visit-hours svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color:var(--copper); }
.visit-hours p{ font-size:13.5px; font-weight:600; white-space:pre-line; line-height:1.6; margin:0; }
.visit-contact{ margin-bottom:28px; }
.visit-map{
  border-radius:6px; overflow:hidden; aspect-ratio:4/3.2;
  box-shadow:0 30px 60px -24px rgba(22,17,13,0.35);
}
.visit-map iframe{ width:100%; height:100%; border:0; }

.arrival-card{
  margin-top:56px;
  display:grid; grid-template-columns:1.1fr 0.9fr;
  border-radius:6px; overflow:hidden;
  box-shadow:0 30px 60px -24px rgba(22,17,13,0.3);
}
.arrival-photo{ aspect-ratio:4/5; overflow:hidden; }
.arrival-photo img{ width:100%; height:100%; object-fit:cover; object-position:center 25%; }
.arrival-note{
  background:var(--ink); color:var(--bone);
  padding:36px 40px; display:flex; flex-direction:column; justify-content:center; gap:16px;
}
.arrival-note svg{ width:26px; height:26px; color:var(--honey-lt); }
.arrival-note p{ font-size:16px; line-height:1.6; white-space:pre-line; color:rgba(251,246,236,0.9); }

@media (max-width:800px){
  .arrival-card{ grid-template-columns:1fr; }
  .arrival-photo{ aspect-ratio:4/5; }
  .arrival-note{ padding:28px 26px; }
}

@media (max-width:900px){
  .visit-grid{ grid-template-columns:1fr; }
}

/* ---------- BOOKING ---------- */
.booking{ padding:110px 0; background:var(--ink-soft); color:var(--bone); position:relative; overflow:hidden; }
.booking-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; }
.booking-info .eyebrow{ color:var(--honey-lt); }
.booking-info .eyebrow::before{ background:var(--honey-lt); }
.booking-info h2{ color:var(--bone); font-size:clamp(28px,3.6vw,40px); margin-bottom:18px; }
.booking-info p{ color:rgba(251,246,236,0.68); margin-bottom:32px; max-width:420px; }
.booking-steps{ display:flex; flex-direction:column; gap:22px; }
.booking-step{ display:flex; gap:16px; }
.booking-step .num{
  font-family:var(--display); font-size:15px; color:var(--ink);
  background:var(--honey); width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.booking-step h4{ color:var(--bone); font-size:15px; margin-bottom:3px; }
.booking-step p{ font-size:13.5px; color:rgba(251,246,236,0.6); margin:0; }

.booking-form{
  background:var(--parchment); color:var(--ink);
  border-radius:6px; padding:40px;
  box-shadow:0 40px 80px -30px rgba(0,0,0,0.5);
}
.booking-form h3{ font-size:22px; margin-bottom:6px; }
.booking-form > p{ font-size:13.5px; opacity:0.65; margin-bottom:28px; }
.field{ margin-bottom:20px; }
.field label{
  display:block; font-size:12px; font-weight:700; letter-spacing:0.05em;
  text-transform:uppercase; margin-bottom:8px; color:var(--copper);
}
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border:1px solid var(--line);
  background:var(--bone); border-radius:3px; font-family:var(--body);
  font-size:14.5px; color:var(--ink); transition:border-color 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--copper);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field textarea{ resize:vertical; min-height:80px; }
.form-note{ font-size:12px; opacity:0.6; margin-top:14px; line-height:1.5; }
.booking-form .btn-whatsapp{ width:100%; padding:16px; font-size:14px; }

@media (max-width:900px){
  .booking-grid{ grid-template-columns:1fr; }
  .field-row{ grid-template-columns:1fr; }
  .booking-form{ padding:28px; }
}

/* ---------- FAQ ---------- */
.faq{ padding:100px 0; background:var(--parchment); }
.faq-list{ max-width:760px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:24px 0; text-align:left; font-family:var(--display); font-size:18px; font-weight:600;
}
.faq-q svg{ width:18px; height:18px; flex-shrink:0; transition:transform 0.3s ease; color:var(--copper); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height 0.4s var(--ease); }
.faq-a p{ padding-bottom:24px; color:var(--ink-soft); opacity:0.75; max-width:600px; font-size:14.5px; }

/* ---------- FOOTER / CONTACT ---------- */
.footer-cta{
  background:var(--honey); color:var(--ink);
  padding:80px 0; text-align:center;
}
.footer-cta h2{ font-size:clamp(28px,4vw,42px); margin-bottom:16px; }
.footer-cta p{ opacity:0.75; max-width:480px; margin:0 auto 32px; }
.footer-cta .btn-primary{ background:var(--ink); color:var(--bone); }
.footer-cta .btn-primary:hover{ background:var(--burgundy); }

footer{ background:var(--ink); color:rgba(251,246,236,0.6); padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px; }
.footer-brand{ display:flex; gap:12px; align-items:center; margin-bottom:16px; }
.footer-brand img{ height:40px; width:40px; border-radius:50%; object-fit:cover; }
.footer-brand-text{ font-family:var(--display); color:var(--bone); font-size:17px; }
.footer-brand-text span{ display:block; font-family:var(--body); font-size:9px; letter-spacing:0.16em; text-transform:uppercase; color:var(--honey-lt); margin-top:2px; }
footer p.tag{ font-size:13.5px; max-width:260px; }
footer h5{ color:var(--bone); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:18px; }
footer ul li{ margin-bottom:11px; font-size:13.5px; }
footer ul li a:hover{ color:var(--honey-lt); }
.footer-bottom{
  border-top:1px solid var(--line-lt); padding-top:26px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:12.5px;
}

@media (max-width:800px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

/* ---------- SHOP ---------- */
.shop{ padding:100px 0 40px; background:var(--parchment); }

.shop-section{ margin-bottom:64px; }
.shop-section:last-child{ margin-bottom:0; }
.shop-section-head{ margin-bottom:28px; }
.shop-section-head h3{ font-size:24px; margin-bottom:6px; }
.shop-section-head p{ font-size:14px; opacity:0.65; max-width:520px; }

.shop-grid{
  display:grid; grid-template-columns:repeat(var(--shop-cols-desktop, 4), 1fr); gap:24px;
}
@media (max-width:900px){ .shop-grid{ grid-template-columns:repeat(var(--shop-cols-tablet, 2), 1fr); } }
@media (max-width:620px){ .shop-grid{ grid-template-columns:repeat(var(--shop-cols-mobile, 2), 1fr); gap:14px; } }
.shop-card{
  background:var(--bone); border:1px solid var(--line); border-radius:6px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -20px rgba(22,17,13,0.25); }
.shop-card-photo{ aspect-ratio:1/1; background:var(--parchment); overflow:hidden; }
.shop-card-photo img{ width:100%; height:100%; object-fit:cover; }
.shop-card-photo.no-photo{ display:flex; align-items:center; justify-content:center; color:var(--copper); opacity:0.4; }
.shop-card-photo.no-photo svg{ width:40px; height:40px; }
.shop-card-body{ padding:18px 18px 20px; display:flex; flex-direction:column; gap:6px; flex:1; }
.shop-card-body h4{ font-size:15.5px; font-family:var(--body); font-weight:700; }
.shop-card-price{ font-family:var(--display); font-size:19px; color:var(--copper); }
.shop-card-desc{ font-size:12.5px; opacity:0.65; line-height:1.5; flex:1; }
.shop-card-add{
  margin-top:10px; padding:11px; border-radius:4px; background:var(--ink); color:var(--bone);
  font-size:12.5px; font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
  transition:background 0.25s ease;
}
.shop-card-add:hover{ background:var(--copper); }
.shop-card-add.added{ background:#2c7a3f; }

/* ---------- FLOATING CART ---------- */
.float-cart{
  position:fixed; bottom:26px; left:26px; z-index:300;
  background:var(--ink); color:var(--bone);
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px -6px rgba(0,0,0,0.4);
}
.float-cart svg{ width:24px; height:24px; }
.float-cart-badge{
  position:absolute; top:-4px; right:-4px; background:var(--honey); color:var(--ink);
  font-size:11px; font-weight:800; width:22px; height:22px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; border:2px solid var(--parchment);
}

/* ---------- CART DRAWER ---------- */
.cart-overlay{
  position:fixed; inset:0; z-index:450; background:rgba(22,17,13,0.5);
  opacity:0; pointer-events:none; transition:opacity 0.3s ease;
}
.cart-overlay.open{ opacity:1; pointer-events:all; }
.cart-drawer{
  position:absolute; top:0; right:0; height:100%; width:100%; max-width:420px;
  background:var(--parchment); box-shadow:-20px 0 50px -20px rgba(0,0,0,0.4);
  padding:28px; overflow-y:auto;
  transform:translateX(100%); transition:transform 0.35s var(--ease);
}
.cart-overlay.open .cart-drawer{ transform:translateX(0); }
.cart-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.cart-head h3{ font-size:22px; }
.cart-close{ width:34px; height:34px; display:flex; align-items:center; justify-content:center; border-radius:50%; }
.cart-close:hover{ background:var(--bone); }
.cart-close svg{ width:18px; height:18px; }

.cart-items{ display:flex; flex-direction:column; gap:16px; margin-bottom:20px; }
.cart-item{ display:flex; gap:12px; align-items:center; }
.cart-item-thumb{ width:56px; height:56px; border-radius:4px; object-fit:cover; background:var(--bone); flex-shrink:0; }
.cart-item-thumb.no-photo{ display:flex; align-items:center; justify-content:center; color:var(--copper); opacity:0.4; }
.cart-item-info{ flex:1; min-width:0; }
.cart-item-info h5{ font-size:13.5px; font-weight:700; margin-bottom:2px; }
.cart-item-info span{ font-size:12px; opacity:0.6; }
.cart-qty{ display:flex; align-items:center; gap:8px; }
.cart-qty button{ width:24px; height:24px; border:1px solid var(--line); border-radius:4px; font-size:13px; font-weight:700; }
.cart-qty button:hover{ background:var(--ink); color:var(--bone); border-color:var(--ink); }
.cart-item-remove{ font-size:11px; color:#a13d3d; font-weight:700; margin-left:6px; }

.cart-empty{ text-align:center; padding:40px 10px; opacity:0.55; font-size:13.5px; }
.cart-summary{ border-top:1px solid var(--line); padding-top:18px; }
.cart-subtotal{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:16px; font-size:14px; }
.cart-subtotal strong{ font-family:var(--display); font-size:20px; color:var(--copper); }

#checkoutForm .field{ margin-bottom:16px; }
#checkoutForm .field label{
  display:block; font-size:11.5px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase;
  margin-bottom:7px; color:var(--copper);
}
#checkoutForm .field input, #checkoutForm .field textarea{
  width:100%; padding:11px 13px; border:1px solid var(--line); border-radius:4px;
  background:var(--bone); font-family:var(--body); font-size:13.5px;
}
#checkoutForm .field textarea{ min-height:70px; resize:vertical; }
.cart-back{ font-size:12.5px; font-weight:700; color:var(--copper); margin-bottom:18px; display:inline-block; }
#checkoutForm h4{ font-size:17px; margin-bottom:18px; }

@media (max-width:480px){
  .cart-drawer{ max-width:100%; padding:22px; }
}

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa{
  position:fixed; bottom:26px; right:26px; z-index:300;
  background:#25D366; color:#fff;
  width:60px; height:60px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px -6px rgba(0,0,0,0.45);
  animation:pulse-wa 2.6s ease-in-out infinite;
}
.float-wa svg{ width:28px; height:28px; }
@keyframes pulse-wa{
  0%,100%{ box-shadow:0 12px 30px -6px rgba(37,211,102,0.5); }
  50%{ box-shadow:0 12px 30px -6px rgba(37,211,102,0.9), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---------- REVEAL ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- TOAST ---------- */
.toast{
  position:fixed; bottom:28px; left:50%; transform:translate(-50%, 20px);
  background:var(--ink); color:var(--bone); padding:16px 24px; border-radius:4px;
  font-size:13.5px; font-weight:600; z-index:500; opacity:0; pointer-events:none;
  transition:all 0.35s ease; box-shadow:0 20px 40px -10px rgba(0,0,0,0.4);
  display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform:translate(-50%, 0); }
.toast svg{ width:18px; height:18px; color:var(--honey); }

/* ---------- WHATSAPP FALLBACK BANNER ---------- */
.wa-fallback-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:520;
  background:var(--ink); color:var(--bone);
  padding:20px 24px; padding-bottom:calc(20px + env(safe-area-inset-bottom));
  box-shadow:0 -12px 40px -10px rgba(0,0,0,0.5);
  display:flex; align-items:flex-start; gap:16px;
  transform:translateY(100%); transition:transform 0.35s var(--ease);
}
.wa-fallback-banner.show{ transform:translateY(0); }
.wa-fallback-content{ flex:1; max-width:560px; margin:0 auto; }
.wa-fallback-content strong{ font-family:var(--display); font-size:16px; display:block; margin-bottom:4px; }
.wa-fallback-content p{ font-size:13px; color:rgba(251,246,236,0.7); margin-bottom:14px; }
.wa-fallback-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.wa-fallback-actions .btn{ padding:11px 20px; font-size:12.5px; }
#waFallbackClose{
  width:30px; height:30px; flex-shrink:0; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:rgba(251,246,236,0.6);
}
#waFallbackClose:hover{ background:rgba(251,246,236,0.1); color:var(--bone); }
#waFallbackClose svg{ width:16px; height:16px; }

@media (max-width:600px){
  .wa-fallback-banner{ flex-direction:row; padding:18px 18px calc(18px + env(safe-area-inset-bottom)); }
  .wa-fallback-actions .btn{ flex:1; }
}
