/* =====================================================================
   House of Bungalow — Home Page styles
   Palette:
     cream      #F2E8DE
     ink        #545355
     ink-soft   #7d7873
     ink-mute   #928d88
     maroon     #620E15
     dark card  #0d0b0a
   Fonts:
     Fraunces        — headings (free Google Fonts stand-in for Canela)
     Hanken Grotesk  — paragraphs & buttons (free Google Fonts stand-in for Aktiv Grotesk)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500&family=Hanken+Grotesk:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root{
  --cream:#F2E8DE;
  --ink:#403f41;
  --ink-soft:#645f5a;
  --ink-mute:#79746f;
  --maroon:#620E15;
  --dark:#0d0b0a;
  --serif:'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --content:1400px;
  --text-col:1000px;
}

*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-size:23px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}

.container{
  width:100%;
  max-width:var(--content);
  margin:0 auto;
  padding:0 24px;
}

/* ------------------------------------------------------------------ */
/* Section reveal (fade + slight rise as each section scrolls in)     */
/* ------------------------------------------------------------------ */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none;}
}

/* ------------------------------------------------------------------ */
/* Header                                                             */
/* ------------------------------------------------------------------ */
.site-header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:20;
  padding:34px 0;
}
.site-header .container{
  max-width:none;
  padding:0 48px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
}
.brand-logo{
  grid-column:2;
  display:flex;
  justify-content:center;
}
.brand-logo img{height:72px;width:auto;}
.header-nav{
  grid-column:3;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:44px;
}
.header-nav a{
  display:inline-block;
  color:#fff;
  background:transparent;
  font-family:var(--sans);
  font-size:17px;
  letter-spacing:2px;
  font-weight:400;
  padding:12px 22px 10px;
  border-bottom:1px solid rgba(255,255,255,.7);
  white-space:nowrap;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease;
}
.header-nav a:hover{
  background:#fff;
  color:var(--ink);
  font-weight:600;
  border-bottom-color:var(--ink);
}
.nav-toggle{
  width:38px;height:22px;
  display:flex;flex-direction:column;justify-content:space-between;
  background:none;border:0;cursor:pointer;padding:0;margin-left:10px;
  position:relative;z-index:21;
}
.nav-toggle span{display:block;height:1.5px;background:#fff;width:100%;transition:transform .25s ease, opacity .25s ease, background-color .25s ease;}

/* ---- Hamburger -> X, and header re-colouring while the menu is open ---- */
.site-header.menu-open .header-nav a{color:var(--maroon);border-bottom-color:var(--maroon);}
.site-header.menu-open .header-nav a:hover{background:var(--maroon);color:#fff;border-bottom-color:#fff;}
.site-header.menu-open .nav-toggle span{background:var(--maroon);}
.site-header.menu-open .nav-toggle span:nth-child(1){transform:translateY(10px) rotate(45deg);}
.site-header.menu-open .nav-toggle span:nth-child(2){opacity:0;}
.site-header.menu-open .nav-toggle span:nth-child(3){transform:translateY(-10px) rotate(-45deg);}

/* ---- Full-screen slide-in menu ---- */
.mobile-menu{
  position:fixed;
  top:0;right:0;bottom:0;
  width:35%;
  min-width:300px;
  max-width:480px;
  z-index:15;
  background:var(--cream);
  transform:translateX(100%);
  transition:transform .45s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow-y:auto;
  box-shadow:-10px 0 40px rgba(0,0,0,.18);
}
.mobile-menu.is-open{transform:translateX(0);}
.mobile-menu-links{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:48px;
  padding:140px 24px 60px;
}
@media (max-width:640px){
  .mobile-menu{width:80%;min-width:0;}
  .mobile-menu-links{gap:26px;}
}
.mobile-menu-links a{
  font-family:var(--sans);
  font-size:16px;
  font-weight:400;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--ink);
}
.mobile-menu-links a:hover{color:var(--maroon);}

body.menu-open-lock{overflow:hidden;}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */
.hero{
  position:relative;
  height:920px;
  overflow:hidden;
  background-color:var(--dark);
  background-position:center 30%;
  background-size:cover;
  background-repeat:no-repeat;
}
.hero-video{
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center 30%;
  z-index:0;
}
.hero::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:320px;
  z-index:1;
  background:linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,0));
  pointer-events:none;
}

/* ------------------------------------------------------------------ */
/* Intro (left aligned column)                                        */
/* ------------------------------------------------------------------ */
.intro{padding:70px 0 20px;}
.intro-inner{max-width:var(--content);}
.intro h1{
  font-family:var(--serif);
  font-weight:300;
  font-size:49px;
  line-height:1.1;
  color:var(--ink);
  margin:0 0 40px;
  letter-spacing:.2px;
}
.intro .subheading{
  font-family:var(--serif);
  font-weight:300;
  font-size:31px;
  color:var(--ink);
  margin:0 0 4px;
}
.intro .address{
  font-family:var(--serif);
  font-weight:300;
  font-size:27px;
  color:var(--ink);
  margin:0 0 42px;
}
.intro p{
  font-family:var(--serif);
  font-style:italic;
  font-weight:200;
  font-size:28px;
  line-height:1.45;
  color:var(--ink-soft);
  margin:0 0 26px;
  max-width:1400px;
}
.intro p.tight{margin-bottom:2px;}
.intro p.gap-top{margin-top:34px;}

.intro-actions{
  display:flex;
  gap:60px;
  margin-top:44px;
}
.link-underline{
  font-family:var(--sans);
  font-size:17px;
  letter-spacing:1.5px;
  color:var(--maroon);
  padding:10px 20px;
  border-bottom:1px solid var(--maroon);
  display:inline-block;
  transition:background-color .2s ease, color .2s ease;
}
.link-underline:hover{
  background:#620E15;
  color:#fff;
}

/* ------------------------------------------------------------------ */
/* Building illustration                                              */
/* ------------------------------------------------------------------ */
.building{
  padding:40px 0 10px;
  text-align:center;
}
.building img{
  margin:0 0 0 auto;
  max-width:1000px;
  width:100%;
}

/* ------------------------------------------------------------------ */
/* Centered section shell (used by several blocks)                    */
/* ------------------------------------------------------------------ */
.section{padding:60px 0;text-align:center;}
.section h2{
  font-family:var(--serif);
  font-weight:500;
  font-size:40px;
  color:var(--ink);
  margin:0 0 20px;
  letter-spacing:.3px;
}
.section .lede,
.section p{
  font-family:var(--sans);
  font-weight:300;
  font-size:19px;
  line-height:1.5;
  color:var(--ink-soft);
  margin:0 auto 8px;
  max-width:1200px;
}
.section .btn-wrap{margin-top:40px;}

/* ------------------------------------------------------------------ */
/* Three Spaces cards                                                 */
/* ------------------------------------------------------------------ */
.spaces{padding:56px 0 40px;text-align:center;}
.spaces h2,
.textblock h2{
  font-family:var(--serif);
  font-weight:300;
  font-size:40px;
  color:var(--ink);
  letter-spacing:.3px;
}
.spaces h2{margin:0 0 18px;}
.spaces .subheading{
  font-family:var(--sans);font-weight:300;font-size:19px;
  color:var(--ink-soft);margin:0 auto 44px;max-width:1200px;line-height:1.5;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  position:relative;
  aspect-ratio:1/1.06;
  overflow:hidden;
  display:block;
}
.card img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.card .card-label{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-family:var(--serif);
  font-weight:500;
  font-size:35px;
  letter-spacing:1px;
  text-shadow:0 1px 12px rgba(0,0,0,.35);
}

/* ------------------------------------------------------------------ */
/* Door / Mood / What's On / Events — centered text blocks            */
/* ------------------------------------------------------------------ */
.textblock{padding:66px 0;text-align:center;}
.textblock h2{margin:0 0 26px;}
.textblock p{
  font-family:var(--sans);font-weight:300;font-size:19px;line-height:1.5;
  color:var(--ink-soft);margin:0 auto 10px;max-width:1200px;
}
.textblock .btn-wrap{margin-top:40px;}

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.site-footer{padding:40px 0 30px;text-align:center;}
.footer-rule{
  width:64px;height:1px;background:var(--maroon);
  margin:30px auto 26px;border:0;
}
.social{
  display:flex;justify-content:center;gap:26px;margin-bottom:40px;
}
.social a{color:var(--maroon);display:inline-flex;}
.social svg{width:22px;height:22px;}

.footer-nav{
  font-family:var(--sans);
  font-weight:300;
  font-size:15px;
  letter-spacing:.6px;
  color:var(--ink);
  margin:0 auto 26px;
  max-width:1200px;
  line-height:2;
}
.footer-nav a{padding:0 9px;position:relative;white-space:nowrap;}
.footer-nav a:not(:last-child)::after{
  content:"|";position:absolute;right:-3px;color:var(--ink-mute);
}
.footer-address{
  font-family:var(--sans);font-weight:300;font-size:15px;
  letter-spacing:.8px;color:var(--ink);margin:0 0 40px;
}
.brands{
  display:flex;justify-content:center;align-items:center;
  gap:52px;flex-wrap:wrap;margin:0 auto 60px;max-width:1200px;
}
.brands .brand{
  font-family:var(--serif);
  color:#9a938c;
  font-size:34px;
  letter-spacing:1px;
  opacity:.85;
  filter:grayscale(1);
}
.brands img{max-height:100px;width:auto;opacity:.6;filter:grayscale(1);}

.footer-logo{margin:0 auto 26px;}
.footer-logo img{height:66px;width:auto;margin:0 auto;}
.footer-logo .mark{
  color:var(--maroon);font-family:var(--serif);font-weight:600;
  font-size:41px;line-height:.85;
}
.footer-logo .mark small{
  display:block;font-family:var(--sans);font-size:10px;letter-spacing:3px;
  font-weight:400;margin-top:5px;
}
.newsletter-heading{
  font-family:var(--serif);font-weight:500;font-size:27px;
  color:var(--ink);margin:0 0 10px;
}
.newsletter-sub{
  font-family:var(--sans);font-weight:300;font-size:16px;
  letter-spacing:.6px;color:var(--ink-soft);margin:0 0 26px;
}
.newsletter-form{
  max-width:320px;margin:0 auto;
}
.newsletter-form .row{display:flex;flex-direction:column;gap:10px;}
.newsletter-form input[type=email]{
  font-family:var(--sans);font-size:14px;padding:10px 14px;
  border:1px solid #d8cabb;background:#fbf6f0;color:var(--ink);
  border-radius:2px;
}
.newsletter-form input[type=email]:focus{outline:1px solid var(--maroon);}
.btn-maroon{
  font-family:var(--sans);
  font-weight:500;
  font-size:14px;
  letter-spacing:.5px;
  color:#f3ece4;
  background:var(--maroon);
  border:0;
  padding:11px 16px;
  width:100%;
  cursor:pointer;
  letter-spacing:.3px;
}
.form-msg{font-family:var(--sans);font-size:19px;margin-top:10px;}
.form-msg.ok{color:#2e6b34;}
.form-msg.err{color:var(--maroon);}

.footer-divider{width:100%;height:1px;background:#e0d3c4;border:0;margin:22px 0 24px;}
.copyright{
  font-family:var(--sans);font-weight:300;font-size:13px;
  letter-spacing:1px;color:var(--ink-mute);text-align:center;margin:0;
}
.footer-disclaimer{
  font-family:var(--sans);font-weight:300;font-size:11px;
  letter-spacing:.3px;color:var(--ink-mute);text-align:center;
  max-width:640px;margin:12px auto 0;line-height:1.6;
}

/* ------------------------------------------------------------------ */
/* Sub-page hero intro (centered heading + lede, used by Restaurant   */
/* and future inner pages) — narrow centered column, not full width   */
/* ------------------------------------------------------------------ */
.page-hero-intro{padding:70px 0 46px;text-align:center;}
.page-hero-intro .container{max-width:1000px;margin:0 auto;}
.page-hero-intro h1{
  font-family:var(--serif);font-weight:300;font-size:49px;
  line-height:1.1;color:var(--ink);margin:0 0 20px;letter-spacing:.2px;
}
.page-hero-intro .subheading{
  font-family:var(--serif);font-weight:300;font-size:31px;
  color:var(--ink);margin:0 0 20px;
}
.page-hero-intro .lede{
  font-family:var(--serif);font-style:italic;font-weight:200;font-size:28px;
  line-height:1.45;color:var(--ink-soft);margin:0 0 20px;
}
.page-hero-intro p{
  font-family:var(--sans);font-weight:400;font-size:15px;
  line-height:1.65;color:var(--ink-soft);margin:0 0 10px;
}
.page-hero-intro .btn-wrap{margin-top:26px;}

/* ------------------------------------------------------------------ */
/* Split section (alternating image / text blocks)                    */
/* ------------------------------------------------------------------ */
.split-section{padding:0;margin-bottom:80px;}
.guest-section{margin-top:150px;}
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:28px;
}
.split-copy{
  background:#ede1d2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-self:stretch;
  padding:70px 65px;
}
.split-media{aspect-ratio:3/2;overflow:hidden;}
.split-media img{width:100%;height:100%;object-fit:cover;display:block;}
.split-copy .eyebrow{
  font-family:var(--serif);font-weight:400;font-style:normal;font-size:27px;
  color:var(--ink);margin:0 0 8px;letter-spacing:.2px;
}
.split-copy h2{
  font-family:var(--sans);font-weight:700;font-size:15px;letter-spacing:.5px;
  text-transform:uppercase;color:var(--ink);margin:0 0 20px;
}
.split-copy p{
  font-family:var(--sans);font-weight:400;font-size:15px;
  line-height:1.65;color:var(--ink-soft);margin:0 0 16px;
}
.split-copy p:last-of-type{margin-bottom:0;}
.split-copy .hours-line{font-family:var(--sans);font-weight:500;font-size:14px;color:var(--ink);margin:0 0 4px;}
.split-copy .btn-wrap{margin-top:20px;}

/* The Chef — reversed hierarchy: small bold label, then a large        */
/* highlighted name, right-aligned                                     */
.chef-copy{text-align:right;}
.chef-copy .eyebrow{
  font-family:var(--sans);font-weight:700;font-size:14px;letter-spacing:1px;
  text-transform:uppercase;color:var(--ink);margin:0 0 8px;
}
.chef-copy .chef-name{
  font-family:var(--serif);font-weight:400;font-size:46px;letter-spacing:.5px;
  text-transform:uppercase;color:var(--ink);margin:0 0 24px;
}
.chef-copy p{text-align:right;}

/* ------------------------------------------------------------------ */
/* Menu (tabs + item list)                                            */
/* ------------------------------------------------------------------ */
.menu-section{padding:60px 0;text-align:center;}
.menu-section h2{
  font-family:var(--serif);font-weight:300;font-size:40px;
  color:var(--ink);margin:0 0 20px;
}
.menu-section .menu-lede{
  font-family:var(--serif);font-style:italic;font-weight:200;font-size:18px;line-height:1.5;
  color:var(--ink-soft);max-width:1000px;margin:0 auto;
}
.menu-active-label{
  font-family:var(--serif);font-weight:400;font-size:26px;letter-spacing:.3px;
  color:var(--ink);margin:30px 0 0;
}
.menu-tabs{
  display:flex;justify-content:center;flex-wrap:wrap;gap:28px;
  margin:14px 0 40px;border-bottom:1px solid #e0d3c4;
}
.menu-tab-btn{
  background:none;border:0;cursor:pointer;
  font-family:var(--sans);font-weight:500;font-size:11px;letter-spacing:1.5px;
  text-transform:uppercase;color:var(--ink-mute);
  padding:0 0 14px;border-bottom:2px solid transparent;
}
.menu-tab-btn:hover{color:var(--ink);}
.menu-tab-btn.active{color:var(--maroon);border-bottom-color:var(--maroon);}
.menu-panel{display:none;max-width:640px;margin:0 auto;}
.menu-panel.active{display:block;}
.menu-item{padding:16px 0;border-bottom:1px solid #e5dbcd;}
.menu-item:last-child{border-bottom:0;}
.menu-item-title{
  display:flex;align-items:baseline;justify-content:center;gap:10px;
  font-family:var(--serif);font-weight:500;font-size:15px;color:var(--ink);
}
.menu-item-title .price{color:var(--maroon);font-size:13px;}
.menu-item-desc{
  font-family:var(--sans);font-weight:300;font-size:11px;letter-spacing:.3px;
  color:var(--ink-mute);margin-top:4px;
}
.menu-empty{font-family:var(--sans);font-size:13px;color:var(--ink-mute);padding:24px 0;}

/* ------------------------------------------------------------------ */
/* Restaurant hours block                                             */
/* ------------------------------------------------------------------ */
.hours-block{padding:60px 0;text-align:center;}
.hours-block h2{
  font-family:var(--serif);font-weight:300;font-size:40px;
  color:var(--ink);margin:0 0 20px;
}
.hours-block .hours-line{
  font-family:var(--sans);font-weight:400;font-size:19px;
  color:var(--ink-soft);margin:0 0 8px;
}
.hours-block .hours-line strong{font-weight:700;color:var(--ink);}
.hours-block .hours-divider{
  width:70px;height:2px;background:var(--maroon);border:0;
  margin:34px auto;
}
.hours-block .hours-note{
  font-family:var(--sans);font-weight:300;font-size:19px;
  color:var(--ink-soft);margin:8px 0 22px;
}
.hours-block .btn-wrap{margin-bottom:14px;}
.hours-block .hours-footnote{
  font-family:var(--sans);font-weight:300;font-size:13px;letter-spacing:.4px;
  color:var(--ink-mute);
}

/* ------------------------------------------------------------------ */
/* Gallery grid (mixed-width masonry rows: 3-then-2, repeating)       */
/* ------------------------------------------------------------------ */
.rest-gallery{padding:16px 0 70px;}
.rest-gallery .container{max-width:900px;}
.gallery-grid{display:flex;flex-direction:column;gap:18px;}
.gallery-row{display:grid;gap:18px;grid-auto-rows:260px;}
.gallery-row-3{grid-template-columns:1fr 1.6fr 1fr;}
.gallery-row-2{grid-template-columns:1fr 1fr;}
.gallery-item{overflow:hidden;}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;}

/* ------------------------------------------------------------------ */
/* Maroon band (Below page — Intro / Music sections)                  */
/* ------------------------------------------------------------------ */
.maroon-band{background:var(--maroon);padding:70px 0;text-align:center;}
.maroon-band h1,.maroon-band h2{
  font-family:var(--serif);font-weight:300;font-size:40px;
  color:#fff;margin:0 0 18px;
}
.maroon-band .subheading{
  font-family:var(--serif);font-weight:300;font-size:24px;
  color:#fff;margin:0 0 18px;text-align:center;
}
.maroon-band .lede{
  font-family:var(--serif);font-style:italic;font-weight:200;font-size:19px;line-height:1.5;
  color:rgba(255,255,255,.85);max-width:700px;margin:0 auto 14px;
}
.maroon-band p{
  font-family:var(--sans);font-weight:300;font-size:15px;line-height:1.65;
  color:rgba(255,255,255,.75);max-width:700px;margin:0 auto 8px;
}
.maroon-band .btn-wrap-row{display:flex;justify-content:center;gap:24px;flex-wrap:wrap;margin-top:24px;}
.maroon-band .link-underline{color:#fff;border-bottom-color:rgba(255,255,255,.6);}
.maroon-band .link-underline:hover{background:#fff;color:var(--maroon);}

.cocktails-copy p{margin:0 auto 26px;}
.cocktails-copy p.tight{margin-bottom:8px;}
.cocktails-copy p strong{font-weight:700;color:var(--ink);}
.section-hours{
  font-family:var(--sans);font-weight:400;font-size:15px;
  color:var(--ink-soft);margin:0 auto;
}
.section-hours strong{font-weight:700;color:var(--ink);}

/* Three equal square images (Below — Cocktails section) */
.trio-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  max-width:1200px;margin:40px auto 0;
}
.trio-item{aspect-ratio:1/1;overflow:hidden;}
.trio-item img{width:100%;height:100%;object-fit:cover;display:block;}

/* Night grid (Music section) */
.night-grid{display:flex;flex-direction:column;gap:26px;margin:40px 0;}
.night-row{display:grid;gap:26px;}
.night-row-3{grid-template-columns:repeat(3,1fr);}
.night-row-2{grid-template-columns:repeat(2,1fr);max-width:640px;margin:0 auto;}
.night-item-title{
  font-family:var(--serif);font-weight:500;font-size:16px;letter-spacing:.3px;
  color:#fff;margin-bottom:8px;
}
.night-item-desc{
  font-family:var(--sans);font-weight:300;font-size:15px;line-height:1.5;
  color:rgba(255,255,255,.65);
}

/* ------------------------------------------------------------------ */
/* Lineup section (full-bleed image + DJ cards)                       */
/* ------------------------------------------------------------------ */
.lineup-section{
  position:relative;background-position:center;background-size:cover;background-repeat:no-repeat;
}
.lineup-overlay{
  background:rgba(13,11,10,.72);padding:70px 0;text-align:center;
}
.lineup-section h2{
  font-family:var(--serif);font-weight:300;font-size:36px;color:#fff;margin:0 0 14px;
}
.lineup-section p{
  font-family:var(--sans);font-weight:300;font-size:15px;line-height:1.6;
  color:rgba(255,255,255,.75);max-width:1100px;margin:0 auto 40px;
  white-space:nowrap;
}

/* Full-width horizontal scroller of DJ cards, navigated by arrows */
.dj-carousel{position:relative;padding:0 56px;}
.dj-carousel::before,
.dj-carousel::after{
  content:'';
  position:absolute;
  top:0;bottom:0;
  width:120px;
  z-index:1;
  pointer-events:none;
}
.dj-carousel::before{
  left:0;
  background:linear-gradient(to right, rgba(13,11,10,.9), rgba(13,11,10,0));
}
.dj-carousel::after{
  right:0;
  background:linear-gradient(to left, rgba(13,11,10,.9), rgba(13,11,10,0));
}
.dj-scroller{
  width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;
  scroll-snap-type:x proximity;
  scrollbar-width:none;-ms-overflow-style:none;
}
.dj-scroller::-webkit-scrollbar{display:none;}
.dj-row{
  display:flex;gap:22px;padding:6px 0 16px;
}
.dj-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:2;
  width:46px;height:46px;
  background:var(--maroon);border:1px solid var(--maroon);color:#fff;
  font-size:22px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background-color .2s ease, color .2s ease;
}
.dj-arrow:hover{background:#fff;color:var(--maroon);}
.dj-arrow-prev{left:0;}
.dj-arrow-next{right:0;}
.dj-card{
  flex:0 0 340px;
  scroll-snap-align:start;
  text-align:left;
  border:4px solid var(--maroon);
  border-radius:26px;
  overflow:hidden;
  background:#0d0b0a;
}
.dj-card-media{position:relative;aspect-ratio:3/4;overflow:hidden;}
.dj-card-media img{width:100%;height:100%;object-fit:cover;display:block;}
.dj-card-tint{
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(98,14,21,.25) 0%, rgba(98,14,21,0) 40%, rgba(13,11,10,.95) 100%);
}
.dj-card-info{background:#0d0b0a;padding:20px 22px 26px;}
.dj-card-name{
  font-family:var(--serif);font-weight:500;font-size:21px;letter-spacing:.3px;
  text-transform:uppercase;color:#fff;margin-bottom:10px;line-height:1.15;
}
.dj-card-day,.dj-card-time{
  font-family:var(--sans);font-weight:300;font-size:15px;color:rgba(255,255,255,.85);line-height:1.5;
}
.dj-card-link.link-underline{
  display:inline-block;margin-top:16px;font-size:13px;letter-spacing:.5px;
  color:#fff;border-bottom-color:rgba(255,255,255,.7);padding:6px 0;
}
.dj-card-link.link-underline:hover{background:#fff;color:var(--maroon);}

/* ------------------------------------------------------------------ */
/* FAQ accordion (Below page)                                         */
/* ------------------------------------------------------------------ */
.faq-section{padding:60px 0 80px;text-align:center;}
.faq-section h2{
  font-family:var(--serif);font-weight:300;font-size:36px;color:var(--ink);margin:0 0 30px;
}
.faq-list{max-width:800px;margin:0 auto;text-align:left;}
.faq-item{border-bottom:1px solid #e0d3c4;}
.faq-question{
  width:100%;display:flex;align-items:center;gap:14px;
  background:none;border:0;cursor:pointer;text-align:left;
  font-family:var(--sans);font-weight:400;font-size:15px;color:var(--ink);
  padding:18px 0;
}
.faq-chevron{color:var(--maroon);transition:transform .2s ease;flex-shrink:0;}
.faq-item.open .faq-chevron{transform:rotate(180deg);}
.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .3s ease;
}
.faq-item.open .faq-answer{max-height:200px;}
.faq-answer p{
  font-family:var(--sans);font-weight:300;font-size:14px;line-height:1.6;
  color:var(--ink-soft);margin:0 0 20px;padding-left:28px;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                         */
/* ------------------------------------------------------------------ */
@media (max-width:1450px){
  .container{padding:0 40px;}
}
@media (max-width:900px){
  .hero{height:520px;}
  .intro h1{font-size:41px;}
  .intro p{font-size:25px;}
  .cards{grid-template-columns:1fr;gap:18px;}
  .card{aspect-ratio:16/11;}
  .header-nav{gap:22px;}
  .brands{gap:34px;}
  .split-grid{grid-template-columns:1fr;min-height:0;}
  .split-media{aspect-ratio:16/10;}
  .split-copy{padding:44px 36px;}
  .page-hero-intro .container{max-width:88%;}
  .gallery-row{grid-auto-rows:200px;}
  .gallery-row-3{grid-template-columns:1fr 1.3fr 1fr;}
  .chef-copy,.chef-copy p{text-align:center;}
  .chef-copy .chef-name{font-size:32px;}
  .night-row-3,.night-row-2{grid-template-columns:1fr 1fr;max-width:none;}
  .dj-carousel{padding:0 44px;}
  .dj-carousel::before,.dj-carousel::after{width:70px;}
  .dj-card{flex-basis:260px;}
  .maroon-band h1,.maroon-band h2{font-size:32px;}
  .lineup-section p{white-space:normal;max-width:600px;}
}
@media (max-width:640px){
  body{font-size:21px;}
  .site-header{padding:22px 0;}
  .site-header .container{padding:0 20px;}
  .brand-logo img{height:52px;}
  .header-nav a{font-size:15px;letter-spacing:1.5px;}
  .nav-toggle{width:30px;height:18px;}
  .hero{height:420px;}
  .intro{padding:44px 0 10px;}
  .intro h1{font-size:35px;margin-bottom:26px;}
  .intro .subheading{font-size:27px;}
  .intro .address{font-size:23px;margin-bottom:30px;}
  .intro p{font-size:22px;margin-bottom:20px;}
  .intro-actions{gap:34px;flex-wrap:wrap;}
  .section h2,.spaces h2,.textblock h2{font-size:33px;}
  .building img{max-width:100%;}
  .footer-nav{font-size:13px;}
  .footer-nav a{padding:0 6px;}
  .brands{gap:24px;}
  .brands .brand{font-size:21px;}
  .page-hero-intro h1{font-size:26px;}
  .page-hero-intro .subheading,.page-hero-intro .lede{font-size:16px;}
  .split-copy{padding:34px 24px;}
  .split-copy .eyebrow{font-size:22px;}
  .split-copy h2{font-size:13px;}
  .split-copy p{font-size:14px;}
  .menu-tabs{gap:16px;}
  .gallery-grid{gap:10px;}
  .gallery-row,.gallery-row-3,.gallery-row-2{grid-template-columns:1fr;grid-auto-rows:220px;gap:10px;}
  .trio-grid{grid-template-columns:1fr;gap:12px;}
  .night-row-3,.night-row-2{grid-template-columns:1fr;}
  .dj-carousel{padding:0 34px;}
  .dj-carousel::before,.dj-carousel::after{width:44px;}
  .dj-row{gap:14px;}
  .dj-card{flex-basis:220px;}
  .dj-arrow{width:36px;height:36px;font-size:19px;}
  .maroon-band{padding:50px 0;}
  .maroon-band h1,.maroon-band h2{font-size:28px;}
  .maroon-band .subheading{font-size:19px;}
  .lineup-section h2{font-size:26px;}
}

/* Hide desktop-only nav labels on very small screens if needed */
@media (max-width:480px){
  .header-nav{gap:16px;}
}
