/* ===================================================================
   Martini on Jackson — stylesheet
   =================================================================== */

:root {
  --black: #000000;
  --panel: #0d0d0d;
  --gold: #c9a24b;
  --gold-light: #e8d6a6;
  --cream: #efe7d2;
  --red: #ec1c24;
  --red-dark: #b3141a;
  --white: #ffffff;
  --grey: #d8d8d8;
  --font-display: 'Anton', 'Oswald', sans-serif;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Barlow', 'Segoe UI', sans-serif;
  --maxw: 1240px;
  --nav-h: 74px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--strip-height, 0px)); overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 15px 34px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); }

.btn-outline {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,.9);
  min-width: 230px;
}
.btn-outline:hover { background: var(--white); color: #111; }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(236,28,36,.32);
}
.btn-red:hover { background: var(--red-dark); box-shadow: 0 12px 26px rgba(236,28,36,.42); }

.btn-lg { padding: 18px 46px; font-size: 1.05rem; }

/* -------------------- Navbar -------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.6); background: rgba(0,0,0,.96); }

.nav-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 28px; height: 3px; background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000 url('../images/bar-shelf.jpg') center 58% / cover no-repeat;
  padding: calc(var(--nav-h) + var(--strip-height, 0px)) 20px 60px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.32) 40%, rgba(0,0,0,.55) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 760px; }
.hero-logo {
  width: min(560px, 82%);
  margin: 0 auto 44px;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.6));
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-menu { min-width: 250px; letter-spacing: 2px; }

.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) rotate(90deg);
  z-index: 2;
  font-size: 2.4rem;
  color: rgba(255,255,255,.75);
  line-height: 1;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) rotate(90deg) translateX(0); } 50% { transform: translateX(-50%) rotate(90deg) translateX(10px); } }

/* -------------------- Section shared -------------------- */
.eyebrow {
  font-family: var(--font-head);
  color: var(--gold);
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* -------------------- Welcome / About -------------------- */
.welcome {
  position: relative;
  background: #000 url('../images/bar-blur.jpg') center center / cover no-repeat fixed;
  padding: 90px 24px 0;
}
.welcome::before { content:''; position:absolute; inset:0; background: rgba(0,0,0,.68); }
.welcome-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.welcome-media { position: relative; }
.welcome-photo {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,.55);
}
.welcome-drink {
  position: absolute;
  right: -20px; bottom: -30px;
  width: 40%;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.6));
}
.welcome-title {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: 1px;
  margin: 4px 0 10px;
}
.welcome-sub {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  letter-spacing: .5px;
  margin-bottom: 22px;
}
.welcome-text p { color: #e9e9e9; margin-bottom: 14px; font-size: 1.04rem; }
.welcome-text a { color: var(--gold-light); text-decoration: underline; }

.whatson-strip {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 60px auto 0;
  padding: 40px 0 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.whatson-label {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--cream);
  letter-spacing: 1px;
}

/* -------------------- Order Online -------------------- */
.order {
  background: #f2f2f2 url('../images/red-geo-bg.jpg') center center / cover no-repeat;
  color: #111;
  padding: 90px 24px;
}
.order-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.order-collage {
  position: relative;
  min-height: 470px;
}
.order-collage img {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
  object-fit: cover;
}
.collage-a { width: 47%; height: 300px; left: 4%; top: 90px; z-index: 3; }
.collage-b { width: 42%; height: 340px; left: 33%; top: 0;  z-index: 2; }
.collage-c { width: 40%; height: 320px; right: 2%; top: 120px; z-index: 1; }

.split-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
  display: inline-flex;
  margin-bottom: 18px;
}
.split-title .brown { color: #7a4a1e; }
.split-title .onred { color: #fff; background: #c0392b; padding: 0 12px; }
.order-lead {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* -------------------- Reservation -------------------- */
.reservation {
  position: relative;
  background: #000 url('../images/interior-1.jpg') center center / cover no-repeat;
  padding: 100px 24px;
}
.reservation::before { content:''; position:absolute; inset:0; background: rgba(0,0,0,.8); }
.reservation-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.reservation-text p {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.15rem;
  margin: 20px 0 30px;
  max-width: 460px;
}
.reservation-media { position: relative; min-height: 460px; }
.reservation-media img { position: absolute; border-radius: 3px; box-shadow: 0 18px 40px rgba(0,0,0,.6); object-fit: cover; }
.res-a { width: 62%; height: 430px; left: 0; top: 0; z-index: 1; }
.res-b { width: 55%; height: 360px; right: 0; top: 90px; z-index: 2; border: 4px solid #111; }
.res-coffee { width: 26%; height: auto; left: 44%; bottom: -18px; z-index: 3; box-shadow: none; filter: drop-shadow(0 14px 22px rgba(0,0,0,.6)); }

/* -------------------- Foods & Beverages -------------------- */
.foods {
  position: relative;
  background: #000 url('../images/food-oysters.jpg') center center / cover no-repeat;
  padding: 100px 24px;
}
.foods::before { content:''; position:absolute; inset:0; background: rgba(0,0,0,.72); }
.foods-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.foods-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.foods-collage img { height: 340px; width: 100%; object-fit: cover; border-radius: 4px; box-shadow: 0 16px 34px rgba(0,0,0,.5); }
.foods-collage img:nth-child(2) { transform: translateY(-22px); }
.foods-text .display-title { margin-bottom: 18px; }
.foods-text p {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.foods-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* -------------------- Follow / Footer -------------------- */
.footer {
  background: #050505 url('../images/footer-texture.jpg') center center / cover no-repeat;
}
.follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 54px 24px;
  flex-wrap: wrap;
}
.follow-label {
  font-family: var(--font-head);
  font-weight: 400;
  letter-spacing: 3px;
  font-size: 1.8rem;
  color: var(--white);
}
.social { display: flex; gap: 16px; }
.social a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: #111;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social a svg { width: 24px; height: 24px; }
.social a:hover { transform: translateY(-4px); background: var(--red); color: #fff; }

.footer-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px 24px 50px;
  text-align: center;
}
.footer-logo { width: min(320px, 70%); margin: 0 auto 40px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 40px;
}
.footer-col h4 {
  font-family: var(--font-head);
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--gold-light);
}
.footer-col p {
  color: #ffffff;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1.08rem;
  line-height: 1.5;
}
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 24px 34px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  color: #cfcfcf;
}
.footer-bottom .copyright {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .95rem;
  margin-bottom: 8px;
}
.footer-bottom .credits {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .82rem;
  color: #9a9a9a;
}
.footer-bottom .credits a { color: var(--gold-light); transition: color .2s ease; }
.footer-bottom .credits a:hover { color: #fff; }

/* -------------------- Sheesha modal -------------------- */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-inner { max-width: 640px; width: 100%; margin: auto; }
.modal-inner img {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.7);
}
.modal-close {
  position: absolute;
  top: 22px; right: 30px;
  font-size: 2.6rem;
  line-height: 1;
  background: none; border: none; color: #fff; cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}
.modal-close:hover { transform: rotate(90deg); color: var(--red); }
.modal-inner a { display: block; }
.modal-cta {
  margin: 14px auto 0;
  width: max-content;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .95rem;
  color: #fff;
  background: var(--red);
  padding: 11px 26px;
  border-radius: 2px;
  transition: background .25s ease, transform .2s ease;
}
.modal-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

/* -------------------- Coming Soon Card -------------------- */
.coming-soon-modal-inner {
  max-width: 900px !important;
}

.coming-soon-card {
  background: var(--panel);
  border: 2px solid var(--gold);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.8);
  width: 100%;
  margin: 0 auto;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.coming-soon-image-wrapper {
  flex: 1.1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(201, 162, 75, 0.2);
  padding: 15px;
}

.coming-soon-img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
}

.coming-soon-details-wrapper {
  flex: 1;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coming-soon-logo {
  width: 100px;
  height: auto;
  margin: 0 auto 20px;
}

.coming-soon-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.coming-soon-subtitle {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.coming-soon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  width: 100%;
}

.coming-soon-divider::before,
.coming-soon-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 15px;
}

.coming-soon-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 300;
}

.coming-soon-details-wrapper .btn {
  padding: 12px 36px;
  font-size: 0.95rem;
  min-width: 180px;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .coming-soon-card {
    flex-direction: column;
    max-width: 340px;
    margin: 10px auto;
  }
  .coming-soon-image-wrapper {
    order: 2;
    border-right: none;
    border-top: 1px solid rgba(201, 162, 75, 0.15);
    border-bottom: none;
    padding: 10px;
  }
  .coming-soon-img {
    max-height: 220px;
    max-width: 100%;
    margin: 0 auto;
  }
  .coming-soon-details-wrapper {
    order: 1;
    padding: 18px 15px;
  }
  .coming-soon-logo,
  .coming-soon-title,
  .coming-soon-divider,
  .coming-soon-text,
  .coming-soon-details-wrapper .btn {
    display: none !important;
  }
  .coming-soon-subtitle {
    display: block !important;
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--gold);
    letter-spacing: 2px;
    text-align: center;
  }
}

/* -------------------- Back to top -------------------- */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }

/* -------------------- What's On page -------------------- */
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { width: 100%; }

.whatson-hero {
  position: relative;
  background: #000 url('../images/bar-blur.jpg') center center / cover no-repeat;
  padding: calc(var(--nav-h) + var(--strip-height, 0px) + 70px) 24px 70px;
  text-align: center;
}
.whatson-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.66); }
.whatson-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.whatson-hero .display-title { color: var(--white); margin: 6px 0 14px; }
.whatson-intro { color: #d9d9d9; font-size: 1.1rem; }

.whatson-menus {
  background: #050505 url('../images/footer-texture.jpg') center center / cover no-repeat;
  padding: 70px 24px 90px;
}
.menu-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}
.menu-card { text-align: center; }
.menu-card a {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0,0,0,.55);
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card a:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,.7); }
.menu-card img { width: 100%; height: auto; display: block; }
.menu-zoom {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .82rem;
  padding: 8px 16px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.menu-card a:hover .menu-zoom { opacity: 1; transform: translateY(0); }
.menu-card figcaption {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--gold-light);
}

/* -------------------- Weekly Rituals / Deals Board -------------------- */
.wr-section {
  background: #0d0d0d url('../images/footer-texture.jpg') center center / cover no-repeat;
  padding: 64px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weekly-deals-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.art-deco-board {
  background: radial-gradient(circle, #fdfbf7 0%, #f5ebd3 100%);
  color: #1a1a1a;
  padding: 24px;
  border: 12px solid #1a1a1a;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), inset 0 0 40px rgba(0,0,0,0.06);
  position: relative;
  border-radius: 4px;
}

.inner-board {
  border: 3px double #c9a24b;
  padding: 60px 40px;
  position: relative;
  text-align: center;
}

/* Art deco corners */
.inner-board::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(201, 162, 75, 0.45);
  pointer-events: none;
}

.deco-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid #c9a24b;
  pointer-events: none;
}

.deco-top-left {
  top: 14px; left: 14px;
  border-right: none; border-bottom: none;
}
.deco-top-right {
  top: 14px; right: 14px;
  border-left: none; border-bottom: none;
}
.deco-bottom-left {
  bottom: 14px; left: 14px;
  border-right: none; border-top: none;
}
.deco-bottom-right {
  bottom: 14px; right: 14px;
  border-left: none; border-top: none;
}

/* Title */
.deals-main-title {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.deals-divider {
  width: 80px;
  height: 3px;
  background-color: #c9a24b;
  margin: 0 auto 48px;
  position: relative;
}
.deals-divider::before, .deals-divider::after {
  content: '♦';
  position: absolute;
  top: 50%;
  color: #c9a24b;
  font-size: 0.8rem;
  transform: translateY(-50%);
}
.deals-divider::before { left: -14px; }
.deals-divider::after { right: -14px; }

/* Deal Items */
.deals-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.deal-item {
  position: relative;
  transition: transform 0.3s ease;
}

.deal-item:hover {
  transform: scale(1.02);
}

.deal-day {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 500;
  color: #c9a24b;
  letter-spacing: 4px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.deal-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1.25;
}

.deal-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 90%;
}

/* Spacer ornament between deals */
.deal-item:not(:last-child)::after {
  content: '•••';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(201, 162, 75, 0.5);
  font-size: 1.2rem;
  letter-spacing: 8px;
}

.wr-menus-cta {
  text-align: center;
  margin-top: 46px;
  padding: 0 24px;
}
.wr-menus-cta p {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 18px;
}
.wr-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .inner-board {
    padding: 40px 20px;
  }
  .deals-main-title {
    font-size: 2.2rem;
    letter-spacing: 4px;
  }
  .deal-title {
    font-size: 1.45rem;
  }
  .deal-day {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}

/* -------------------- Scroll animations -------------------- */
/* single element entrances */
[data-anim] {
  opacity: 0;
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-anim="up"]    { transform: translateY(50px); }
[data-anim="down"]  { transform: translateY(-50px); }
[data-anim="left"]  { transform: translateX(-70px); }
[data-anim="right"] { transform: translateX(70px); }
[data-anim="zoom"]  { transform: scale(.85); }
[data-anim="fade"]  { transform: none; }
[data-anim].in      { opacity: 1; transform: none; }

/* grouped children reveal in a staggered cascade */
[data-anim-group] > * {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-anim-group].in > * { opacity: 1; transform: none; }
[data-anim-group].in > *:nth-child(1) { transition-delay: .06s; }
[data-anim-group].in > *:nth-child(2) { transition-delay: .16s; }
[data-anim-group].in > *:nth-child(3) { transition-delay: .26s; }
[data-anim-group].in > *:nth-child(4) { transition-delay: .36s; }
[data-anim-group].in > *:nth-child(5) { transition-delay: .46s; }
[data-anim-group].in > *:nth-child(6) { transition-delay: .56s; }
[data-anim-group].in > *:nth-child(7) { transition-delay: .66s; }
[data-anim-group].in > *:nth-child(n+8) { transition-delay: .76s; }

/* legacy fallback */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* hero entrance on load */
@keyframes heroPop  { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: none; } }
@keyframes heroRise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.hero-logo     { animation: heroPop 1.1s .15s both cubic-bezier(.2,.7,.2,1); }
.hero-buttons  { animation: heroRise 1s .5s both cubic-bezier(.2,.7,.2,1); }
.hero-menu  { animation: heroRise 1s .72s both cubic-bezier(.2,.7,.2,1); }

/* floating accents */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.welcome-drink { animation: floaty 4.5s ease-in-out 1.2s infinite; }
.res-coffee    { animation: floaty 5s ease-in-out 1s infinite; }

@media (prefers-reduced-motion: reduce) {
  [data-anim],
  [data-anim-group] > *,
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-logo, .hero-buttons, .hero-menu,
  .welcome-drink, .res-coffee, .hero-scroll { animation: none !important; }
}

/* -------------------- Responsive -------------------- */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); right: 0;
    height: calc(100vh - var(--nav-h));
    width: min(300px, 80vw);
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 26px;
    transform: translateX(105%);
    transition: transform .35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a::after { display: none; }

  .welcome-inner,
  .order-inner,
  .reservation-inner,
  .foods-inner { grid-template-columns: 1fr; gap: 40px; }

  .welcome { background-attachment: scroll; }
  .welcome-drink { width: 32%; right: 0; bottom: -18px; }
  .whatson-strip { justify-content: center; flex-wrap: wrap; text-align: center; }

  .order-collage { min-height: 420px; max-width: 520px; margin: 0 auto; width: 100%; }
  .reservation-media { min-height: 420px; max-width: 560px; margin: 0 auto; width: 100%; }
  .reservation-text { text-align: center; }
  .reservation-text p { margin-left: auto; margin-right: auto; }
  .reservation-text .display-title { text-align: center; }

  .foods-text { text-align: center; }
  .foods-buttons { justify-content: center; }

  .menu-grid { grid-template-columns: 1fr; gap: 40px; max-width: 620px; }
  .menu-zoom { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  :root { --nav-h: 64px; }
  .nav-logo img { height: 38px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 14px; }
  .btn-outline { min-width: 220px; }
  .foods-collage { grid-template-columns: 1fr; }
  .foods-collage img { height: 240px; transform: none !important; }
  .footer-cols { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .eyebrow { font-size: 1.2rem; }
  .follow-label { font-size: 1.4rem; }
  .collage-a { height: 220px; top: 70px; }
  .collage-b { height: 250px; }
  .collage-c { height: 230px; top: 90px; }
  .order-collage { min-height: 330px; }
}

/* ==================================================================
   SIPO API — status strip + live footer hours
   ================================================================== */
/* reserved strip height drives the navbar/hero offset (CSS-controlled, not JS-measured) */
body.has-status-strip { --strip-height: 42px; }
html:has(.has-status-strip) { scroll-padding-top: calc(var(--nav-h) + 42px); }

.status-strip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  min-height: var(--strip-height, 42px);
  display: flex;
  align-items: center;
  background: #141414;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease;
}
.status-strip-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 24px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.status-strip-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #888;
  flex: 0 0 auto;
}
.status-strip.open { background: linear-gradient(90deg, #0e2c1a, #143d24); }
.status-strip.open .status-strip-dot { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.22); animation: dotPulse 2s ease-in-out infinite; }
.status-strip.closed { background: linear-gradient(90deg, #2a1012, #3a1418); }
.status-strip.closed .status-strip-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(236,28,36,.2); }
.status-strip.error { background: #241f12; }
.status-strip.error .status-strip-dot { background: var(--gold); }
.status-strip-text .countdown-timer { color: var(--gold-light); font-weight: 700; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

/* push the fixed navbar (and mobile menu) below the strip */
body.has-status-strip .navbar { top: var(--strip-height, 0px); }

/* live opening-hours list in the footer */
.hours-list {
  list-style: none;
  max-width: 300px;
  margin: 0 auto;
  text-align: left;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 4px 0;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .98rem;
  color: #ffffff;
}
.hours-list li .day { color: var(--gold-light); flex: 0 0 auto; }
.hours-list li .time { text-align: right; }
.hours-list li .time.closed-day { color: #9a9a9a; }
.hours-list li.today {
  color: #fff;
  border-bottom: 1px solid rgba(201,162,75,.4);
  padding-bottom: 6px;
  margin-bottom: 2px;
}
.hours-list li.today .day { color: #fff; }
.hours-list li.today .time { color: var(--gold-light); }

@media (max-width: 980px) {
  body.has-status-strip .nav-links {
    top: calc(var(--nav-h) + var(--strip-height, 0px));
    height: calc(100vh - var(--nav-h) - var(--strip-height, 0px));
  }
}
@media (max-width: 560px) {
  body.has-status-strip { --strip-height: 54px; }
  html:has(.has-status-strip) { scroll-padding-top: calc(var(--nav-h) + 54px); }
  .status-strip-inner { font-size: .72rem; letter-spacing: .6px; padding: 8px 14px; }
  .hours-list { max-width: 260px; }
}
