:root{
  --sage:#697D61;
  --sage-dark:#516048;
  --card:#ffffff;
  --ink:#1a1a1a;
  --ink-2:#3a3a3a;
  --line:#dcd9d2;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',system-ui,sans-serif;
  color:var(--ink);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  background-color:#1a1a1a;
}
body::before{
  content:"";position:fixed;inset:0;
  background-image:url('img/interior-bw.jpg');
  background-size:cover;background-position:center;
  z-index:-1;
}

h1,h2,h3{font-family:'Merriweather',Georgia,serif;font-weight:700;line-height:1.2;letter-spacing:-.005em;color:var(--ink)}
h1{font-size:clamp(2rem,4.6vw,4rem)}
h2{font-size:clamp(1.85rem,3.4vw,2.75rem);margin-bottom:1rem}
h3{font-size:1.4rem;margin-bottom:.5rem;font-weight:600}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.stage{max-width:1180px;margin:0 auto;padding:1.5rem}

.header-card{
  background:var(--sage);
  border-radius:0;
  padding:1rem 3rem;
  display:grid;grid-template-columns:auto 1fr;gap:2rem;align-items:center;
  color:#fff;
  margin-bottom:0;
}
.logo{
  width:180px;height:180px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.logo img,.logo svg{width:100%;height:100%;display:block}
nav.top{
  display:flex;justify-content:flex-end;align-items:center;
  gap:2.5rem;
  font-family:'Poppins',sans-serif;
}
nav.top a{
  font-size:28px;font-weight:400;color:#fff;
  padding:.3rem .9rem;
  border-radius:6px;
  transition:background .18s, color .18s;
  white-space:nowrap;
}
nav.top a:hover{background:#fff;color:var(--sage)}
nav.top a.active{font-weight:400}

/* Hamburger button — hidden on desktop */
.nav-toggle{
  display:none;
  background:transparent;border:0;cursor:pointer;
  width:44px;height:44px;
  padding:0;margin-left:auto;
  flex-direction:column;justify-content:center;align-items:center;
  gap:6px;
}
.nav-toggle span{
  display:block;width:28px;height:3px;background:#fff;border-radius:2px;
  transition:transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}

.tagline-card{
  background:var(--sage);
  border-radius:0;
  padding:3rem 2rem;
  color:#fff;text-align:center;
  margin-top:0;
  margin-bottom:2.5rem;
}
.tagline-card h1{color:#fff;font-weight:700;font-size:clamp(1.6rem,5.2vw,50px);line-height:1.2}

.panel{
  background:var(--card);
  border-radius:24px;
  padding:4rem 3rem;
  margin-bottom:2.5rem;
  border:1px solid #1a1a1a;
}
.panel .center{text-align:center;max-width:820px;margin:0 auto}

.photo{
  margin:2.5rem auto 0;
  max-width:920px;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 6px 22px rgba(0,0,0,.18);
}
.photo.placeholder{
  height:clamp(280px,42vw,460px);
  background-size:cover;background-position:center;
}

/* Storefront hero — wide banner crop */
.storefront-photo{
  display:block;
  margin:2.5rem auto 0;
  width:100%;
  max-width:1000px;
  height:clamp(340px,42vw,520px);
  object-fit:cover;
  object-position:center 58%;
  border-radius:8px;
  box-shadow:0 6px 22px rgba(0,0,0,.18);
}
@media (max-width:880px){
  .storefront-photo{height:clamp(360px,72vw,460px);}
}

.btn{
  display:inline-block;background:#1a1a1a;color:#fff;
  padding:.85rem 2.25rem;border-radius:999px;
  font-family:'Poppins',sans-serif;
  font-size:1.1rem;font-weight:700;
  letter-spacing:.01em;
  transition:transform .2s, background .25s, color .25s, box-shadow .25s;
  border:2px solid #1a1a1a;
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{
  background:#fff;
  color:#1a1a1a;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}
.btn-row{text-align:center;margin-top:2.5rem}

.hours{
  text-align:center;
  font-family:'Merriweather',serif;
  font-size:clamp(1.5rem,2.4vw,2rem);
  margin-top:1.75rem;
  font-weight:500;
}

.body-copy{
  max-width:920px;margin:0 auto;
  font-size:1.05rem;
  color:var(--ink-2);
  text-align:justify;
  margin-bottom:2rem;
}

/* drink section — full-bleed, transparent so B&W body bg shows through */
.drinks-section{
  margin-left:calc(-50vw + 50%);
  margin-right:calc(-50vw + 50%);
  padding:5rem 1.5rem;
  background:transparent;
}
/* drink card carousel — sized to match the live site */
.drink-carousel{
  position:relative;max-width:480px;margin:0 auto;
}
.drink-track{
  position:relative;aspect-ratio:3/4.4;
  border-radius:6px;overflow:hidden;
}
.drink-card{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .4s ease;
  background:transparent;
}
.drink-card.active{opacity:1;z-index:2}
.drink-card img{
  width:100%;height:100%;
  object-fit:contain;
  display:block;
}
.drink-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:none;border:none;
  color:#fff;
  font-size:3rem;cursor:pointer;padding:.4rem 1rem;
  text-shadow:0 2px 8px rgba(0,0,0,.7);
  z-index:3;line-height:1;
  font-weight:300;
}
.drink-arrow:hover{color:#f3f1ec}
.drink-arrow.prev{left:.5rem}
.drink-arrow.next{right:.5rem}

.carousel{position:relative;max-width:920px;margin:2.5rem auto 0}
.carousel-track{
  border-radius:8px;overflow:hidden;
  aspect-ratio:16/10;
  background:#222 center/cover;
}
.carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(0,0,0,.35);border:none;color:transparent;
  width:42px;height:42px;border-radius:50%;
  cursor:pointer;padding:0;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
  font-size:0;
  z-index:3;
}
.carousel-arrow:hover{background:rgba(0,0,0,.55)}
.carousel-arrow::before{
  content:"";
  width:10px;height:10px;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
}
.carousel-arrow.prev{left:1rem}
.carousel-arrow.prev::before{transform:rotate(-135deg);margin-left:4px}
.carousel-arrow.next{right:1rem}
.carousel-arrow.next::before{transform:rotate(45deg);margin-right:4px}
.carousel-dots{
  position:absolute;bottom:1rem;left:50%;transform:translateX(-50%);
  display:flex;gap:.5rem;
}
.carousel-dots span{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.5)}
.carousel-dots span.active{background:#fff}

details{border-bottom:1px solid var(--line);padding:1.25rem .5rem;cursor:pointer}
details summary{
  list-style:none;font-weight:600;font-size:1.1rem;
  display:flex;justify-content:space-between;align-items:center;
  font-family:'Merriweather',serif;
}
details summary::-webkit-details-marker{display:none}
details summary::after{content:'+';font-size:1.6rem;color:var(--ink);font-weight:300}
details[open] summary::after{content:'−'}
details p{color:var(--ink-2);margin-top:.75rem}

.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.review{background:#fff;border:1px solid var(--line);padding:1.75rem;border-radius:12px}
.stars{color:#e0a93b;margin-bottom:.75rem;font-size:1.1rem}
.review p{font-size:.98rem;margin-bottom:1rem;line-height:1.7;font-style:italic}
.review .who{font-weight:600;font-size:.9rem;font-family:'Merriweather',serif;font-style:normal}

.visit-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-top:2rem;align-items:start}
.info-block{margin-bottom:1.75rem}
.info-block h3{
  font-family:'Merriweather',serif;font-size:1.05rem;
  text-transform:uppercase;letter-spacing:.12em;
  margin-bottom:.5rem;font-weight:600;
}
.map{height:380px;border-radius:12px;overflow:hidden}
.map iframe{width:100%;height:100%;border:0;filter:grayscale(40%)}

/* menu page */
.menu-page{
  background:#000;color:#fff;
  margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);
  padding:5rem 1.5rem;
}
.menu-page h1.menu-title{
  text-align:center;color:#fff;
  font-family:'Poppins',sans-serif;font-weight:800;
  font-size:clamp(2.5rem,5vw,4rem);
}
.menu-page .menu-rule{
  max-width:880px;margin:1.5rem auto 3rem;
  border:0;border-top:1px solid #fff;opacity:.4;
}
.menu-cards{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;
  max-width:1280px;margin:0 auto;
}
.mc{
  background:#e8e0cc;
  border-radius:6px;
  padding:2.5rem 2rem 1.5rem;
  color:#1a1a1a;
  font-family:'Poppins',sans-serif;
  position:relative;
  overflow:hidden;
}
.mc-watermark{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  opacity:.07;pointer-events:none;font-size:9rem;font-weight:800;
  color:#000;
}
.mc-logo{
  width:180px;height:180px;margin:0 auto 1rem;
  position:relative;z-index:1;
}
.mc-logo svg{width:100%;height:100%}
.mc-section{
  color:#5d6e3e;font-weight:800;font-size:2rem;
  margin:1.5rem 0 .75rem;letter-spacing:.01em;
  position:relative;z-index:1;
}
.mc-section.brand{font-size:2.4rem}
.mc-sub{
  background:#5d6e3e;color:#fff;
  display:inline-block;padding:.4rem 1rem;
  font-weight:700;font-size:1.4rem;letter-spacing:.05em;
  margin:1rem 0 .75rem;
  border-radius:2px;position:relative;z-index:1;
}
.mc-h{
  color:#1a1a1a;font-weight:800;font-size:1.4rem;
  margin:1rem 0 .25rem;text-transform:uppercase;
  position:relative;z-index:1;
}
.mc-h-note{font-size:.9rem;font-weight:400;font-style:italic;display:block;color:#444;text-transform:none;margin-top:.1rem}
.mc-rule{border:0;border-top:1px solid #5d6e3e;opacity:.45;margin:.4rem 0 .75rem}
.mc ul{list-style:none;padding:0;margin:0;position:relative;z-index:1}
.mc ul li{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:.18rem 0;font-size:1.05rem;
}
.mc ul li.italic{font-style:italic;font-weight:600}
.mc ul li .nm{flex:1}
.mc ul li .pr{font-weight:600;white-space:nowrap;margin-left:1rem}
.mc-note{font-size:.92rem;color:#3a3a3a;margin:.5rem 0;position:relative;z-index:1}
.mc-new{
  display:inline-block;
  font-family:'Caveat','Brush Script MT',cursive;
  color:#c8342f;font-size:1.5rem;font-weight:700;
  transform:rotate(-3deg);
  margin:.25rem 0;
  position:relative;z-index:1;
}
.mc-key{font-size:.88rem;color:#222;margin-top:1rem;position:relative;z-index:1;line-height:1.5}
.mc-foot{
  border-top:1px solid #5d6e3e;
  margin-top:1.5rem;padding-top:1rem;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:.75rem;
  font-size:.92rem;position:relative;z-index:1;
}
.mc-foot .socials-mini{display:flex;gap:.6rem}
.mc-foot .socials-mini a{
  width:24px;height:24px;display:flex;align-items:center;justify-content:center;
  color:#1a1a1a;
}
.mc-foot .socials-mini svg{width:20px;height:20px}
.mc-foot-vat{
  text-align:center;width:100%;
  font-weight:600;font-size:.95rem;letter-spacing:.05em;
  margin-top:.25rem;
}

@media (max-width:780px){
  .menu-cards{grid-template-columns:1fr}
  .mc{padding:2rem 1.25rem 1.25rem}
}

/* dark sections (full-width, no max-width) */
.dark-section{
  background:#000;color:#fff;
  margin-left:calc(-50vw + 50%);
  margin-right:calc(-50vw + 50%);
  padding:20px 1.5rem;
}
.dark-section h2{color:#fff;font-weight:800;font-size:clamp(2.25rem,4.5vw,3.75rem);text-align:center;margin:1rem auto 0}
/* Eyebrow text — matches live site exactly (color #C9D8E0, uppercase, 2px letter-spacing) */
.dark-section .eyebrow{
  text-align:center;letter-spacing:2px;font-size:.95rem;
  text-transform:uppercase;font-family:'Poppins',sans-serif;
  font-weight:400;line-height:2em;
  color:#C9D8E0;
  padding:20px 0 10px;
  margin:0;
}

/* FAQ section — matches live site exactly:
   - section is full-bleed background-transparent (B&W body image shows on sides)
   - inner container max-width 1170px with #2E2E2E bg
   - "FAQs" h2 + intro share a #1a1a1a dark band background (one continuous block)
   - accordion items cream #f0ede9 with rounded corners */
.faq-dark{
  margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);
  padding:0;
  background:transparent;
  color:#fff;
}
.faq-dark .faq-container{
  max-width:1170px;
  margin:0 auto;
  background:transparent;
  padding:65px 30px 115px;
}
/* Dark band — only the heading area has a solid background */
.faq-dark .faq-header{
  background:#1a1a1a;
  text-align:center;
  padding:60px 20px 50px;
  margin:0 auto 35px;
  max-width:1080px;
}
.faq-dark .faq-header h2{
  color:#fff;
  font-family:'Playfair Display',Georgia,serif;
  font-style:normal;
  font-weight:700;
  font-size:38px;
  line-height:1.3em;
  text-transform:capitalize;
  margin:0 0 22px;
}
.faq-dark .faq-intro{
  color:#fff;
  font-family:'Poppins',sans-serif;
  font-weight:400;
  font-size:1.05rem;
  line-height:1.3em;
  margin:0;
  padding:0 20px;
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}
.faq-dark .faq-list{
  max-width:1080px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-dark details{
  background:#f0ede9;
  border-radius:8px;
  border:none;
  padding:1.5rem 1.75rem;
  color:#262626;
}
.faq-dark details summary{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:1.05rem;
  color:#262626;
}
.faq-dark details summary::after{
  content:"";
  width:12px;height:12px;
  border-right:2px solid #262626;
  border-bottom:2px solid #262626;
  transform:rotate(45deg);
  margin-right:.25rem;margin-top:-6px;
  transition:transform .25s;
}
.faq-dark details[open] summary::after{
  transform:rotate(-135deg);
  margin-top:6px;
}
.faq-dark details p{
  color:#262626;
  margin-top:1rem;
  font-family:'Poppins',sans-serif;
  font-size:1rem;
  line-height:1.5;
}
@media (max-width:880px){
  .faq-dark .faq-container{padding:40px 20px 60px}
  .faq-dark .faq-header{padding:40px 20px 30px;margin-bottom:25px}
  .faq-dark .faq-list{padding:0}
}

/* Dark reviews */
.reviews-dark{
  padding:60px 1.5rem 80px;
}
.reviews-dark h2{margin-top:.5rem;margin-bottom:0}

/* Review carousel */
.reviews-carousel-wrap{
  position:relative;
  max-width:1170px;
  margin:3rem auto 0;
  padding:0 3.5rem;
}
.reviews-carousel{
  display:flex;
  gap:1.25rem;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  cursor:grab;
  user-select:none;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.reviews-carousel::-webkit-scrollbar{display:none}
.reviews-carousel.dragging{cursor:grabbing}
.rev-card{
  background:#1e1e1e;
  border:1px solid #2e2e2e;
  border-radius:16px;
  padding:1.5rem;
  min-width:300px;
  flex:0 0 300px;
  display:flex;
  flex-direction:column;
  gap:.75rem;
  transition:border-color .2s;
}
.rev-card:hover{border-color:#444}
.rev-top{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.rev-avatar{
  width:44px;height:44px;border-radius:50%;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-family:'Poppins',sans-serif;font-weight:700;
  font-size:.9rem;color:#fff;
  letter-spacing:.03em;
}
.rev-meta{flex:1;min-width:0}
.rev-name{
  font-family:'Poppins',sans-serif;font-weight:600;
  font-size:.95rem;color:#fff;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.rev-date{
  font-family:'Poppins',sans-serif;font-size:.8rem;
  color:#8893A8;margin-top:.1rem;
}
.rev-google{width:22px;height:22px;flex-shrink:0}
.rev-stars{color:#e6b94a;font-size:1rem;letter-spacing:.1em}
.rev-text{
  font-family:'Poppins',sans-serif;font-size:.93rem;
  color:#8893A8;line-height:1.6;
  font-style:italic;
  flex:1;
}
.rev-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:#1e1e1e;border:1px solid #2e2e2e;
  color:#fff;font-size:1.25rem;
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background .2s, border-color .2s;
  z-index:2;
}
.rev-arrow:hover{background:#2e2e2e;border-color:#555}
.rev-arrow.prev{left:0}
.rev-arrow.next{right:0}

/* Review carousel — mobile: cards fit the screen, swipe to scroll */
@media (max-width:780px){
  .reviews-carousel-wrap{padding:0 1rem;}
  .reviews-carousel{gap:.85rem;scroll-snap-type:x mandatory;}
  .rev-card{
    flex:0 0 85%;
    min-width:0;
    scroll-snap-align:center;
    padding:1.4rem;
  }
  .rev-arrow{display:none;}
}

.reviews-dark .all-reviews{
  display:block;width:fit-content;margin:3rem auto 0;
  background:#8893A8;color:#fff;
  padding:20px 30px;border-radius:0;
  font-family:'Poppins',sans-serif;font-weight:700;letter-spacing:2px;
  text-transform:uppercase;font-size:.95rem;
  text-decoration:none;
  border:2px solid transparent;
}
.reviews-dark .all-reviews:hover{background:#75808f}

/* Map banner section */
.map-banner{
  margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);
  padding:1.5rem 0 5rem;
  text-align:center;
}
.map-banner-title{
  background:#000;color:#fff;
  display:block;text-align:center;
  padding:1.5rem 2rem;
  font-family:'Merriweather',serif;
  font-size:clamp(1.4rem,2.4vw,2rem);
  font-weight:700;
  margin:0 auto 2rem;
  max-width:1180px;border-radius:0;
}
.map-banner .big-map{
  max-width:1280px;margin:0 auto;
  height:520px;border-radius:0;overflow:hidden;
}
.map-banner .big-map iframe{width:100%;height:100%;border:0}

/* Instagram section — heading, 3x2 image grid, follow button */
.instagram-panel{
  text-align:center;
}
.instagram-panel h2{
  font-family:'Merriweather',serif;
  font-weight:700;
  font-size:clamp(1.8rem,3vw,2.5rem);
  margin-bottom:.75rem;
}
.instagram-panel .ig-intro{
  font-family:'Poppins',sans-serif;
  font-size:1.05rem;
  color:var(--ink-2);
  margin-bottom:2rem;
}
.ig-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:6px;
  max-width:1080px;
  margin:0 auto 2rem;
}
.ig-tile{
  position:relative;
  display:block;
  aspect-ratio:9/16;
  background:#222 center/cover no-repeat;
  overflow:hidden;
  transition:transform .25s, filter .25s;
}
.ig-tile:hover{transform:scale(1.02);filter:brightness(1.05)}
/* play-button corner indicator (small triangle) */
.ig-tile .ig-play{
  position:absolute;top:14px;right:14px;
  width:22px;height:22px;
  background:rgba(0,0,0,.55);
  border-radius:4px;
  display:flex;align-items:center;justify-content:center;
}
.ig-tile .ig-play::after{
  content:"";
  width:0;height:0;
  border-left:7px solid #fff;
  border-top:5px solid transparent;
  border-bottom:5px solid transparent;
  margin-left:2px;
}
@media (max-width:780px){
  .ig-grid{grid-template-columns:repeat(2,1fr)}
}

/* "More than just a coffee shop" panel — centered with button, cream bg */
.coffee-shop-panel{
  background:#f3f1ec;
  text-align:center;
  padding:3rem 2rem;
}
.coffee-shop-panel h2{
  font-family:'Merriweather',serif;
  font-weight:700;
  font-size:clamp(1.6rem,2.6vw,2.2rem);
  line-height:1.3;
  margin-bottom:2rem;
}
.coffee-shop-panel .btn-row{margin-top:1rem}

/* Split section: image on left, white outlined panel on right */
.split-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:stretch;
  margin-bottom:2.5rem;
}
.split-section .split-image{
  background:#222 center/cover no-repeat;
  border-radius:24px;
  min-height:480px;
  border:1px solid #1a1a1a;
}
.split-section .split-copy{
  background:#f3f1ec;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:4rem 3rem;
  margin-bottom:0;
}
.split-section .split-copy h2{
  font-family:'Merriweather',serif;
  font-weight:700;
  font-size:clamp(1.8rem,3vw,2.5rem);
  margin-bottom:1.5rem;
  text-align:center;
}
.split-section .split-copy p{
  font-family:'Poppins',sans-serif;
  font-size:1.05rem;
  line-height:1.7;
  color:var(--ink-2);
  text-align:justify;
}
@media (max-width:880px){
  .split-section{
    grid-template-columns:1fr;
  }
  .split-section .split-image{min-height:340px}
  .split-section .split-copy{padding:2.5rem 1.5rem}
  .split-section .split-copy p{text-align:left}
}

/* Hidden gem / step inside */
.step-inside .si-grid{
  display:grid;grid-template-columns:1fr 1.6fr 1fr;gap:1.5rem;align-items:center;
  margin-top:2rem;
}
.step-inside .si-copy h3{
  font-family:'Merriweather',serif;
  font-size:1.75rem;font-weight:700;line-height:1.2;
  text-align:center;margin-bottom:1rem;
}
.step-inside .si-copy p{font-size:.95rem;color:var(--ink-2);text-align:center}
.step-inside .si-main{aspect-ratio:1/1;border-radius:8px;background:#222 center/cover;overflow:hidden}
.step-inside .si-main iframe{width:100%;height:100%;border:0}
.step-inside .si-side{aspect-ratio:3/4;border-radius:8px;background:#222 center/cover;position:relative;overflow:hidden}
.step-inside .si-title{
  text-align:center;font-family:'Merriweather',serif;
  font-size:clamp(1.6rem,2.6vw,2.25rem);font-weight:700;
  margin-bottom:1.5rem;
}
/* Map-only layout — single full-width interactive map */
.step-inside .si-map-only{
  margin-top:1.5rem;
  height:clamp(360px,55vw,560px);
  border-radius:12px;
  overflow:hidden;
  background:#222;
}
.step-inside .si-map-only iframe{
  width:100%;height:100%;border:0;display:block;
}

/* Dark footer — matches live site (#1a1a1a bg, 51px/52px padding, 1170px inner) */
footer.dark{
  background:#1a1a1a;color:#fff;
  padding:51px 1.5rem 52px;
  margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);
  text-align:center;
}
footer.dark .social-circles{
  display:flex;justify-content:space-between;
  max-width:600px;margin:0 auto 30px;
  padding:0 80px;
}
footer.dark .social-circles a{
  width:54px;height:54px;border-radius:50%;
  background:#fff;color:#000;
  display:flex;align-items:center;justify-content:center;
  transition:transform .2s;
}
footer.dark .social-circles a:hover{transform:scale(1.05)}
footer.dark .social-circles svg{width:24px;height:24px}
footer.dark .copyright{
  font-size:.95rem;
  font-family:'Poppins',sans-serif;
  font-weight:400;
  line-height:1.5em;
  color:#fff;
  margin:0;
}
footer.dark .copyright a{text-decoration:underline;color:#7eb6ff}

@media (max-width:880px){
  .stage{padding:1rem}
  .header-card{
    grid-template-columns:auto 1fr;
    align-items:center;
    text-align:left;
    gap:1rem;
    padding:1.25rem 1.25rem 0;
    margin-bottom:0;
  }
  .nav-toggle{display:flex}
  nav.top{
    grid-column:1 / -1;
    flex-direction:column;
    align-items:stretch;
    gap:.4rem;
    max-height:0;overflow:hidden;
    transition:max-height .3s ease;
    padding:0;
  }
  nav.top.open{max-height:300px;padding:.75rem 0 1rem}
  nav.top a{
    font-size:1rem;text-align:center;padding:.55rem 1.25rem;
    background:#f3f1ec;
    color:#1a1a1a;
    border:none;
    border-radius:999px;
    font-weight:600;
    letter-spacing:.02em;
    transition:background .2s, transform .15s;
    width:100%;
    box-sizing:border-box;
  }
  nav.top a:hover,nav.top a.active{
    background:#e8e4dc;
    color:#1a1a1a;
    transform:scale(1.02);
  }
  .logo{width:110px;height:110px;margin:0}
  .tagline-card{
    padding:0 1.25rem 2rem;
    margin-top:0;margin-bottom:1.5rem;
  }
  .tagline-card h1{text-align:left;padding-top:.5rem}
  .panel{padding:2rem 1.25rem;border-radius:16px}
  .review-grid,.visit-grid{grid-template-columns:1fr;gap:2rem}
  .body-copy{text-align:left;font-size:1rem}
  .reviews-dark .review-cols{grid-template-columns:1fr;gap:2.5rem;margin-top:2rem}
  .reviews-dark{padding:40px 1.25rem 60px}
  .reviews-dark h2{font-size:clamp(1.75rem,6.5vw,2.25rem);line-height:1.2}
  .reviews-dark .rcol{padding:0 .5rem}
  .reviews-dark .rcol h3{font-size:1.25rem;margin-bottom:.85rem}
  .reviews-dark .rcol p.q{font-size:.95rem}
  .reviews-dark .all-reviews{
    width:calc(100% - 2rem);max-width:420px;
    padding:16px 18px;font-size:.85rem;letter-spacing:1.5px;
    margin:2rem auto 0;
    text-align:center;
    box-sizing:border-box;
    word-spacing:.05em;
  }
  .map-banner{padding:1rem 0 3rem}
  .map-banner-title{font-size:1.15rem;padding:1.25rem 1rem}
  .map-banner .big-map{height:340px}
  .step-inside .si-title{font-size:1.4rem}
  .step-inside .si-map-only{height:320px}
  footer.dark{padding:40px 1.25rem 42px}
  footer.dark .social-circles{padding:0;gap:3rem;justify-content:center;max-width:none;margin-bottom:24px}
  footer.dark .social-circles a{width:48px;height:48px}
  footer.dark .copyright{font-size:.9rem;line-height:1.5}
  .drink-carousel{max-width:88vw}
  .carousel-track{aspect-ratio:4/3}
  h2{font-size:clamp(1.5rem,5vw,2rem)}
}
@media (max-width:480px){
  .panel{padding:1.75rem 1rem}
  nav.top{gap:.5rem}
  nav.top a{font-size:1rem;padding:.25rem .6rem}
  .btn{padding:.7rem 1.5rem;font-size:1rem}
  .hours{font-size:1.15rem}
}
