/* ===================== VARIABLES ===================== */
:root{
  --red: #9B111E;
  --red-dark: #700c15;
  --red-light: #c31d2c;
  --gold: #D4AF37;
  --green: #0F6B3F;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --ink: #241211;
  --ink-soft: #5b4442;
  --shadow-soft: 0 10px 30px rgba(155,17,30,.12);
  --shadow-lift: 0 20px 45px rgba(36,18,17,.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: 'Mitr', 'Kanit', sans-serif;
  --font-body: 'Kanit', sans-serif;
  --container: 1180px;
  --nav-h: 76px;
}

/* ===================== RESET ===================== */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--nav-h); }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
ul{ list-style:none; }
input, textarea{ font-family:inherit; }

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

h1,h2,h3,h4{ font-family: var(--font-display); }

/* ===================== ICONS (SVG) ===================== */
.icon{
  width: 1.15em; height: 1.15em; display:inline-block; vertical-align:-0.2em;
  fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round;
  flex-shrink:0;
}
.icon--fill{ fill: currentColor; stroke:none; }

/* ===================== SCROLL ANIMATION ===================== */
[data-animate]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-right"]{ transform: translateX(-32px); }
[data-animate="fade-left"]{ transform: translateX(32px); }
[data-animate].is-visible{ opacity:1; transform: translate(0,0); }

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding: 12px 22px; border-radius: 999px;
  font-weight:600; font-size:.95rem; white-space:nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--primary{ background: var(--red); color:var(--white); box-shadow: var(--shadow-soft); }
.btn--primary:hover{ background: var(--red-light); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--gold{ background: linear-gradient(135deg,var(--gold),#f0cf6b); color:#3a2a05; box-shadow: 0 10px 25px rgba(212,175,55,.35); }
.btn--gold:hover{ transform: translateY(-2px); }
.btn--outline{ border:2px solid var(--white); color:var(--white); }
.btn--outline:hover{ background: var(--white); color: var(--red); }
.btn--ghost{ color: var(--white); }
.btn--ghost:hover{ color: var(--gold); }
.navbar.is-scrolled .btn--ghost{ color: var(--ink); }
.navbar.is-scrolled .btn--ghost:hover{ color: var(--red); }
.btn--lg{ padding:14px 28px; font-size:1.02rem; }
.btn--block{ width:100%; }
.btn--facebook{ background: var(--white); color:#1877F2; box-shadow: 0 10px 25px rgba(24,119,242,.25); }
.btn--facebook:hover{ background:#eaf2ff; color:#0d5dc4; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(24,119,242,.32); }
.btn__fb-icon{ color:#1877F2; width:1.2em; height:1.2em; }

/* ===================== NAVBAR ===================== */
.navbar{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  height: var(--nav-h);
  background: rgba(255,248,240,0);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.navbar.is-scrolled{
  background: rgba(255,248,240,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(36,18,17,.08);
  height: 66px;
}
.navbar__inner{
  height:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.navbar__brand{ display:flex; align-items:center; gap:10px; }
.navbar__brand img{
  border-radius:50%; box-shadow: var(--shadow-soft); background: var(--white);
  padding:3px; border:2px solid var(--white); transition: border-color .3s ease;
}
.navbar__brand-text{
  font-family: var(--font-display); font-weight:700; font-size:1.05rem; color: var(--white);
  line-height:1.1; display:flex; flex-direction:column; text-shadow: 0 1px 6px rgba(0,0,0,.35);
  transition: color .3s ease;
}
.navbar__brand-text small{
  font-family: var(--font-body); font-weight:400; font-size:.7rem; color: rgba(255,255,255,.85);
  letter-spacing:.5px; transition: color .3s ease;
}
.navbar.is-scrolled .navbar__brand-text{ color: var(--red); text-shadow:none; }
.navbar.is-scrolled .navbar__brand-text small{ color: var(--ink-soft); }
.navbar.is-scrolled .navbar__brand img{ border-color: var(--cream); }

.navbar__links{ display:flex; gap: 26px; }
.navbar__links a{
  font-weight:600; font-size:.95rem; position:relative; padding:6px 0; color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,.35); transition: color .3s ease, text-shadow .3s ease;
}
.navbar__links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--gold);
  transition: width .3s ease;
}
.navbar__links a:hover::after{ width:100%; }
.navbar.is-scrolled .navbar__links a{ color: var(--ink); text-shadow:none; }
.navbar.is-scrolled .navbar__links a::after{ background: var(--red); }

.navbar__actions{ display:flex; align-items:center; gap:10px; }
.navbar__toggle{ display:none; flex-direction:column; gap:5px; width:32px; }
.navbar__toggle span{ height:2px; background: var(--white); border-radius:2px; transition: transform .3s ease, opacity .3s ease, background .3s ease; }
.navbar.is-scrolled .navbar__toggle span{ background: var(--red); }

/* ===================== HERO ===================== */
.hero{
  position:relative; min-height: 100svh; display:flex; align-items:center;
  color: var(--white); overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0; background-size:cover; background-position: top center;
  transform: scale(1.08);
  filter: blur(5px) saturate(1.2) brightness(1.08);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(60% 55% at 50% 26%, rgba(255,214,150,.4), transparent 70%),
    linear-gradient(180deg, rgba(90,10,17,.55) 0%, rgba(90,10,17,.75) 55%, rgba(20,5,7,.92) 100%);
  background-blend-mode: screen, normal;
}
.hero__content{ position:relative; z-index:2; padding-top: 90px; padding-bottom: 60px; }
.hero__grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:56px; align-items:center; }
.hero__eyebrow{
  display:inline-block; padding:6px 16px; border:1px solid rgba(255,255,255,.5);
  border-radius:999px; font-size:.8rem; letter-spacing:1px; margin-bottom:18px;
  background: rgba(255,255,255,.08);
}
.hero__title{
  font-size: clamp(2.4rem, 6vw, 4.2rem); line-height:1.1; font-weight:700; margin-bottom:18px;
}
.hero__title span{ display:block; color: var(--gold); font-size: clamp(1.4rem, 3.2vw, 2.2rem); margin-top:8px; }
.hero__desc{ max-width:560px; font-size: clamp(1rem,1.6vw,1.15rem); opacity:.92; margin-bottom:30px; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom: 34px; }
.hero__badges{ display:flex; flex-wrap:wrap; gap:14px 26px; font-size:.9rem; opacity:.9; }
.hero__badges li{ display:flex; align-items:center; gap:8px; }
.hero__badges .icon{ color: var(--gold); }
.hero__scroll{
  position:absolute; bottom: 26px; left:50%; transform: translateX(-50%);
  color: var(--white); z-index:2; animation: bounce 2s infinite;
}
.hero__scroll .icon{ width:1.8rem; height:1.8rem; }
@keyframes bounce{ 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ===== Hero location / map card ===== */
.hero__location{
  background: rgba(255,248,240,.97); color: var(--ink);
  border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(212,175,55,.35);
}
.hero__map{ position:relative; width:100%; height:220px; background: var(--cream); }
.hero__map iframe{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.hero__location-body{ padding:22px 24px 26px; }
.hero__location-eyebrow{
  display:flex; align-items:center; gap:8px; color: var(--red);
  font-weight:700; font-size:.95rem; margin-bottom:10px;
}
.hero__location-eyebrow .icon{ width:1.1rem; height:1.1rem; }
.hero__location-address{ font-size:.95rem; line-height:1.6; margin-bottom:10px; color: var(--ink); }
.hero__location-hours{
  display:flex; align-items:center; gap:8px; font-size:.85rem; color: var(--ink-soft);
  margin-bottom:20px;
}
.hero__location-hours .icon{ width:1rem; height:1rem; color: var(--red); flex-shrink:0; }
.hero__location-cta{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.hero__location-more{ color: var(--red); padding:12px 4px; }
.hero__location-more:hover{ color: var(--red-light); }

/* ===================== SECTION GENERIC ===================== */
section{ padding: 90px 0; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 46px; }
.section-eyebrow{
  color: var(--red); font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  font-size:.78rem; margin-bottom:10px;
}
.section-title{ font-size: clamp(1.8rem,3.4vw,2.6rem); color: var(--ink); font-weight:700; }
.section-title span{ color: var(--red); display:inline-block; margin-inline-start:8px; }
.section-desc{ margin-top:14px; color: var(--ink-soft); }

/* ===================== PROMO STRIP ===================== */
.promo-strip{ padding: 70px 0 20px; }
.promo-strip__grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
.promo-card{
  position:relative; border-radius: var(--radius-lg); overflow:hidden; background: var(--white);
  box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease;
}
.promo-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.promo-card img{ width:100%; height: 220px; object-fit: contain; object-position:center; background: var(--cream); }
.promo-card__tag{
  position:absolute; top:16px; left:16px; background: var(--red); color:var(--white);
  padding:6px 14px; border-radius:999px; font-size:.75rem; font-weight:600; box-shadow: var(--shadow-soft);
}
.promo-card__tag--gold{ background: var(--gold); color:#3a2a05; }
.promo-card__tag--green{ background: var(--green); }
.promo-card__body{ padding:22px; }
.promo-card__body h3{ font-size:1.1rem; margin-bottom:8px; }
.promo-card__body p{ font-size:.9rem; color: var(--ink-soft); margin-bottom:14px; min-height:44px; }
.promo-card__price{ display:inline-block; font-weight:700; color: var(--red); font-size:1.15rem; }

/* ===================== BANNER SLIDER ===================== */
.banner-slider{ padding: 64px 0 90px; background: var(--white); }
.banner-slider__viewport{ overflow:hidden; border-radius: var(--radius-lg); }
.banner-slider__track{
  display:flex; gap:20px; will-change: transform;
  transition: transform .7s cubic-bezier(.65,.05,.36,1);
}
.banner-slide{
  flex: 0 0 calc((100% - 60px)/4);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.banner-slide:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.banner-slide img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; }

@media (max-width: 600px){
  .banner-slider__track{ gap:14px; }
  .banner-slide{ flex: 0 0 calc((100% - 14px)/2); }
}

/* ===================== ABOUT ===================== */
.about{ background: var(--white); }
.about__grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:60px; align-items:center; }
.about__images{ position:relative; }
.about__img--main{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); width:100%; height:auto; display:block; }
.about__img--sub{
  position:absolute; bottom:-40px; right:-30px; width: 48%; border-radius: var(--radius-md);
  border: 6px solid var(--white); box-shadow: var(--shadow-lift);
}
.about__content p{ color: var(--ink-soft); margin-bottom:16px; }
.about__points{ margin: 24px 0; display:grid; gap:12px; }
.about__points li{ background: var(--cream); border-radius: var(--radius-sm); padding:12px 16px; font-size:.92rem; display:flex; align-items:center; flex-wrap:wrap; gap:4px; }
.about__points strong{ color: var(--red); margin-inline-end:4px; display:inline-flex; align-items:center; gap:6px; }
.about__cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:10px; }

/* ===================== MENU ===================== */
.menu{ background: linear-gradient(180deg, var(--cream), #fdece2); }
.gallery__filters{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:40px;
}
.filter-btn{
  padding: 9px 18px; border-radius:999px; border:1px solid #e6cdbe; background: var(--white);
  font-size:.88rem; font-weight:500; color: var(--ink-soft); transition: all .25s ease;
}
.filter-btn:hover{ border-color: var(--red); color: var(--red); }
.filter-btn.is-active{ background: var(--red); color: var(--white); border-color: var(--red); }

.menu__showcase{ display:grid; grid-template-columns: repeat(2, 1fr); gap:36px; }
.menu__showcase-item{
  position:relative; display:block; width:100%; padding:0;
  aspect-ratio: 990 / 1400; border-radius: var(--radius-lg); overflow:hidden;
  background: var(--white); box-shadow: var(--shadow-soft);
  border:1px solid rgba(155,17,30,.08); cursor: zoom-in;
  transition: transform .4s ease, box-shadow .4s ease;
}
.menu__showcase-item img{
  width:100%; height:100%; object-fit: cover; display:block;
  transition: transform .5s ease;
}
.menu__showcase-item::after{
  content:''; position:absolute; inset:0; border-radius:inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); pointer-events:none;
}
.menu__showcase-item:hover{ transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.menu__showcase-item:hover img{ transform: scale(1.05); }

.menu-full{ margin-top: 70px; text-align:center; }
.menu-full h3{ font-size:1.3rem; margin-bottom:26px; }
.menu-full__grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.menu-full__item{
  border-radius: var(--radius-lg); overflow:hidden; background: var(--white);
  box-shadow: var(--shadow-soft); text-align:left;
  transition: transform .35s ease, box-shadow .35s ease;
}
.menu-full__item:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.menu-full__frame{
  display:block; width:100%; aspect-ratio: 990 / 1400; overflow:hidden; cursor:zoom-in;
}
.menu-full__frame img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; transition: transform .45s ease; }
.menu-full__item:hover .menu-full__frame img{ transform: scale(1.06); }
.menu-full__item figcaption{
  padding:16px 18px; font-size:1.02rem; font-weight:600; color: var(--red);
}

/* ===================== PROMO DETAIL (spotlight bento) ===================== */
.promo-detail{ background: var(--white); }
.promo-detail__grid{
  display:grid; grid-template-columns: 1.15fr 1fr; gap:22px;
  aspect-ratio: 4/3;
}
.promo-detail__feature{
  position:relative; display:block; width:100%; height:100%; padding:0;
  border-radius: var(--radius-lg); overflow:hidden; cursor:zoom-in;
  box-shadow: var(--shadow-lift); border:1px solid rgba(212,175,55,.4);
  transition: box-shadow .3s ease;
}
.promo-detail__feature img{
  width:100%; height:100%; object-fit:cover; object-position: top center;
  display:block; transition: transform .5s ease;
}
.promo-detail__feature:hover img{ transform: scale(1.05); }
.promo-detail__badge{
  position:absolute; top:18px; left:18px; padding:9px 20px; border-radius:999px;
  background: linear-gradient(135deg,var(--gold),#f0cf6b); color:#3a2a05;
  font-weight:700; font-size:.9rem; box-shadow: 0 10px 22px rgba(0,0,0,.28);
}

.promo-detail__side{ height:100%; display:flex; flex-direction:column; gap:22px; min-height:0; }
.promo-detail__item{
  position:relative; display:block; width:100%; flex:1; min-height:0; padding:0;
  border-radius: var(--radius-lg); overflow:hidden; cursor:zoom-in;
  box-shadow: var(--shadow-soft); border:1px solid rgba(155,17,30,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.promo-detail__item:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.promo-detail__item img{
  width:100%; height:100%; object-fit:cover; object-position: top center;
  display:block; transition: transform .5s ease;
}
.promo-detail__item:hover img{ transform: scale(1.08); }

/* ===================== REVIEWS ===================== */
.reviews{ background: linear-gradient(160deg, var(--red), var(--red-dark)); color: var(--white); }
.reviews .section-eyebrow{ color: var(--gold); }
.reviews .section-title{ color: var(--white); }
.reviews .section-title span{ color: var(--gold); }
.reviews__grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.review-card{
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding:28px; backdrop-filter: blur(6px);
}
.review-card__stars{ color: var(--gold); display:flex; gap:3px; margin-bottom:14px; }
.review-card__stars .icon{ width:1.1rem; height:1.1rem; }
.review-card p{ margin-bottom:16px; font-size:.95rem; }
.review-card cite{ font-style:normal; font-size:.85rem; opacity:.8; }

/* ===================== GALLERY (true-ratio masonry) ===================== */
.gallery__grid{ columns: 4 220px; column-gap:16px; }
.gallery__item{
  display:block; width:100%; margin:0 0 16px; break-inside:avoid; -webkit-column-break-inside:avoid;
  border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-soft);
  background: var(--cream); cursor:zoom-in; transition: transform .3s ease, box-shadow .3s ease;
}
.gallery__item:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gallery__item img{ width:100%; height:auto; display:block; object-fit:cover; transition: transform .4s ease; }
.gallery__item:hover img{ transform: scale(1.06); }
.gallery__item.is-hidden, .gallery__item.is-collapsed{ display:none; }
.gallery__more{ text-align:center; margin-top:34px; }
.gallery__more .icon{ width:1.1rem; height:1.1rem; transition: transform .25s ease; }
.gallery__more .btn.is-open .icon{ transform: rotate(180deg); }

/* ===================== FAQ ===================== */
.faq{ background: var(--white); }
.faq__list{ max-width:760px; margin:0 auto; display:grid; gap:14px; }
.faq__item{ border:1px solid #eee0d6; border-radius: var(--radius-md); overflow:hidden; background: var(--cream); }
.faq__q{
  width:100%; text-align:left; padding:18px 22px; font-weight:600; display:flex;
  justify-content:space-between; align-items:center; font-size:.98rem;
}
.faq__icon{ display:inline-flex; color: var(--red); transition: transform .3s ease; flex-shrink:0; }
.faq__icon .icon{ width:1.2rem; height:1.2rem; }
.faq__item.is-open .faq__icon{ transform: rotate(45deg); }
.faq__a{ max-height:0; overflow:hidden; transition: max-height .35s ease; padding:0 22px; }
.faq__a p{ padding-bottom:18px; color: var(--ink-soft); font-size:.92rem; }
.faq__item.is-open .faq__a{ max-height:200px; }

/* ===================== MAP ===================== */
.map{ background: linear-gradient(180deg, var(--cream), #fdece2); }
.map__wrap{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lift); line-height:0; }

/* ===================== CONTACT ===================== */
.contact{ background: var(--white); }
.contact__grid{ display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:start; }
.contact__list{ margin:28px 0; display:grid; gap:18px; }
.contact__list li{ display:flex; gap:14px; align-items:flex-start; }
.contact__icon{ display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background: var(--cream); color: var(--red); flex-shrink:0; }
.contact__icon .icon{ width:1.15rem; height:1.15rem; }
.contact__list strong{ color: var(--red); }
.contact__cta{ display:flex; gap:14px; flex-wrap:wrap; }

.contact__form{
  background: var(--cream); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-soft);
}
.contact__form h3{ margin: 6px 0 20px; font-size:1.3rem; }
.contact__form label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:14px; color: var(--ink-soft); }
.contact__form input, .contact__form textarea{
  width:100%; margin-top:6px; padding:12px 14px; border-radius: var(--radius-sm); border:1px solid #e6cdbe;
  background: var(--white); font-size:.92rem;
}
.contact__form input:focus, .contact__form textarea:focus{ outline:2px solid var(--red); }
.contact__form-note{ margin-top:14px; font-size:.8rem; color: var(--ink-soft); text-align:center; }

/* ===================== FOOTER ===================== */
.footer{ background: var(--ink); color: rgba(255,255,255,.85); padding-top:60px; }
.footer__grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer__brand{ display:flex; gap:14px; align-items:flex-start; }
.footer__brand img{ border-radius:50%; }
.footer__brand p{ font-size:.88rem; opacity:.8; margin-top:4px; }
.footer__links h4, .footer__contact h4{ color: var(--gold); font-family: var(--font-display); margin-bottom:16px; font-size:1rem; }
.footer__links{ display:flex; flex-direction:column; gap:10px; }
.footer__links a{ font-size:.9rem; opacity:.85; }
.footer__links a:hover{ color: var(--gold); }
.footer__contact p{ font-size:.88rem; margin-bottom:10px; opacity:.85; }
.footer__contact a:hover{ color: var(--gold); }
.footer__bottom{ text-align:center; padding: 22px 0; font-size:.8rem; opacity:.6; }

/* ===================== BACK TO TOP ===================== */
.back-to-top{
  position:fixed; bottom:26px; right:26px; width:48px; height:48px; border-radius:50%;
  background: var(--red); color:var(--white); box-shadow: var(--shadow-lift);
  z-index: 400; opacity:0; pointer-events:none; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  display:flex; align-items:center; justify-content:center;
}
.back-to-top .icon{ width:1.3rem; height:1.3rem; }
.back-to-top.is-visible{ opacity:1; pointer-events:auto; transform: translateY(0); }
.back-to-top:hover{ background: var(--red-light); }

/* ===================== LIGHTBOX ===================== */
.lightbox{
  position:fixed; inset:0; background: rgba(15,5,5,.92); z-index:900;
  display:flex; align-items:center; justify-content:center; padding: 40px;
  opacity:0; pointer-events:none; transition: opacity .3s ease;
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:100%; max-height:88vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lift); }
.lightbox__close{
  position:absolute; top:24px; right:28px; color:var(--white);
  width:44px; height:44px; border-radius:50%; background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
}
.lightbox__close .icon{ width:1.3rem; height:1.3rem; }
.lightbox__close:hover{ background: rgba(255,255,255,.2); }

/* ===================== RESPONSIVE ===================== */
/* Navbar collapses earlier than the content grids below, since 8 nav
   links + brand + the Facebook button need more breathing room before
   they start wrapping onto multiple lines. */
@media (max-width: 1130px){
  .navbar__links{
    position:fixed; top: var(--nav-h); left:0; right:0; background: var(--white);
    flex-direction:column; padding: 20px 24px; gap:0; box-shadow: var(--shadow-soft);
    transform: translateY(-130%); transition: transform .35s ease; max-height: 80vh; overflow:auto;
  }
  .navbar__links.is-open{ transform: translateY(0); }
  .navbar__links a,
  .navbar.is-scrolled .navbar__links a{
    padding:14px 0; border-bottom:1px solid #f0e4dc; color: var(--ink); text-shadow:none;
  }
  .navbar__links a::after,
  .navbar.is-scrolled .navbar__links a::after{ background: var(--red); }
  .navbar__toggle{ display:flex; }
  .navbar__actions .btn--ghost{ display:none; }
  .navbar__actions .btn--facebook{ padding:11px; gap:0; }
  .navbar__actions .btn--facebook .btn__label{ display:none; }
  .navbar__actions .btn__fb-icon{ width:1.3em; height:1.3em; }
  .navbar__inner{ justify-content:flex-start; gap:10px; }
  .navbar__brand{ margin-right:auto; }
}

@media (max-width: 980px){
  .about__grid, .contact__grid{ grid-template-columns: 1fr; }
  .about__images{ margin-bottom:60px; }
  .hero{ min-height:auto; }
  .hero__content{ padding-top:120px; }
  .hero__grid{ grid-template-columns: 1fr; gap:36px; }
  .hero__location{ max-width:520px; }
  .promo-strip__grid{ grid-template-columns: 1fr 1fr; }
  .menu__showcase{ gap:24px; }
  .menu-full__grid{ grid-template-columns: repeat(3,1fr); gap:20px; }
  .reviews__grid{ grid-template-columns: 1fr; }
  .gallery__grid{ columns: 3 200px; }
  .footer__grid{ grid-template-columns: 1fr; gap:26px; }
}

@media (max-width: 760px){
  .promo-strip__grid{ grid-template-columns: 1fr 1fr; }
  .gallery__grid{ columns: 2 160px; column-gap:14px; }
  .gallery__item{ margin-bottom:14px; }
  .promo-detail__grid{ grid-template-columns: 1fr; aspect-ratio: auto; gap:16px; }
  .promo-detail__feature{ aspect-ratio: 16/10; height:auto; }
  .promo-detail__side{ height:auto; flex-direction:row; gap:16px; }
  .promo-detail__item{ aspect-ratio: 3/4; flex:1; }
  .menu__showcase{ grid-template-columns: repeat(2,1fr); gap:14px; }
  .menu-full__grid{ grid-template-columns: repeat(2,1fr); gap:16px; }
  .about__img--sub{ width:55%; right:0; bottom:-30px; }
  section{ padding: 60px 0; }
  .hero__content{ padding-top:110px; }
  .hero__grid{ gap:28px; }
  .hero__location{ max-width:none; }
  .hero__map{ height:190px; }
  .hero__location-body{ padding:20px 20px 22px; }
  .hero__location-cta{ gap:10px; }
}

@media (max-width: 480px){
  .promo-strip__grid{ grid-template-columns: 1fr; }
  .hero__cta{ flex-direction:column; align-items:stretch; }
  .hero__cta .btn{ width:100%; }
  .hero__location-cta{ flex-direction:column; align-items:stretch; }
  .hero__location-cta .btn{ width:100%; text-align:center; }
  .hero__location-more{ text-align:center; }
}
