/**
 * main.css
 * Full CSS converted from original HTML template.
 * Structure, spacing, typography and animations preserved exactly.
 *
 * @package HuongViet
 * @version 1.0.0
 */

/* ════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Barlow', sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

/* ════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES (Design Tokens)
   These are also overridden dynamically by
   Customizer via inc/customizer.php inline styles.
════════════════════════════════════════════════ */
:root {
  --blue:    #3B5BDB;
  --blue-dk: #2F4AC7;
  --blue-li: #4C6EF5;
  --black:   #111111;
  --black2:  #1a1a1a;
  --white:   #ffffff;
  --cream:   #f5f0e8;
  --gold:    #E8C547;
  --grey:    #888;
}

/* ════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════ */
.sr  { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.sr.in  { opacity: 1; transform: translateY(0); }
.sr-l  { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s ease; }
.sr-l.in  { opacity: 1; transform: translateX(0); }
.sr-r  { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s ease; }
.sr-r.in  { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  transition: background .35s, backdrop-filter .35s;
}
#nav.solid {
  background: rgba(17,17,17,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: #fff;
  text-decoration: none;
}
.nav-brand span { color: var(--blue-li); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}
.nav-reserve {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: .55rem 1.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.nav-reserve:hover { background: var(--blue-li); }

/* ── Burger ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}

/* ── Mobile Nav Overlay ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(17,17,17,.98);
  z-index: 850;
  flex-direction: column;
  padding: 2rem 2.5rem;
}
.mobile-nav-overlay.open {
  display: flex;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.mobile-nav-links a:hover { color: #fff; }

/* ── Prevent body scroll when mobile nav open ── */
body.nav-open { overflow: hidden; }

/* ════════════════════════════════════════════════
   FLOATING CTA
════════════════════════════════════════════════ */
.fcta {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85rem 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(59,91,219,.5);
  animation: fctaPulse 3s infinite;
  transition: transform .2s, opacity .3s;
}
.fcta:hover { transform: translateY(-2px); }
@keyframes fctaPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(59,91,219,.5); }
  50%       { box-shadow: 0 6px 40px rgba(59,91,219,.8), 0 0 0 8px rgba(59,91,219,.1); }
}

/* ════════════════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.55) 100%
  );
}
.hero-eyebrow {
  position: relative;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
  animation: fadeUp .9s .2s both;
}
.hero-title {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 14vw, 11rem);
  letter-spacing: .08em;
  line-height: .92;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
  animation: fadeUp .9s .4s both;
}
.hero-title .line2 {
  display: block;
  color: #fff;
}
.hero-menu-btn {
  position: relative;
  margin-top: 2rem;
  display: inline-block;
  background: rgba(255,255,255,.92);
  color: #111;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .65rem 2.4rem;
  text-decoration: none;
  border-radius: 50px;
  animation: fadeUp .9s .6s both;
  transition: background .2s, transform .2s;
}
.hero-menu-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: fadeUp 1s 1s both;
}
.hero-scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50%       { transform: translateY(8px); opacity: 1; }
}
.hero-rating {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fadeUp 1s 1.2s both;
}
.hero-rating-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .05em;
}
.hero-rating-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════
   SECTION 2 — HOURS (Blue Band)
════════════════════════════════════════════════ */
.hours-band {
  background: var(--blue);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hours-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.hours-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.hours-ornament {
  font-size: 1.6rem;
  opacity: .6;
  margin-bottom: 1.2rem;
  display: block;
  letter-spacing: .2em;
}
.hours-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .8rem;
}
.hours-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: .06em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: .6rem;
}
.hours-main span { display: block; }
.hours-closed {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
}
.hours-address {
  margin-top: 1.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  font-style: normal;
}
.hours-phone {
  display: block;
  margin-top: .4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}
.hours-phone:hover { opacity: .8; }
.hours-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 800px;
  margin: 2.5rem auto 0;
  border: 1px solid rgba(255,255,255,.15);
}
.hours-detail-cell {
  padding: 1.2rem .8rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hours-detail-cell:last-child { border-right: none; }
.hdc-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .5rem;
}
.hdc-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════
   SECTION 3 — SIGNATURE DISHES CAROUSEL
════════════════════════════════════════════════ */
.menu-band {
  background: var(--black);
  padding: 4rem 2.5rem 5rem;
}
.menu-band-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.menu-band-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .08em;
  color: #fff;
  line-height: 1;
}
.menu-band-title small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .4rem;
}
.menu-view-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  padding: .55rem 1.4rem;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.menu-view-btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.menu-track-wrap {
  position: relative;
  overflow: hidden;
}
.menu-track {
  display: flex;
  gap: 1rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.menu-card {
  flex: 0 0 calc(33.333% - .67rem);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #222;
}
.menu-card::before {
  content: '';
  display: block;
  padding-top: 72%;
}
.menu-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.1) 55%,
    transparent 100%
  );
}
.menu-card-label {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
}
.menu-card-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .35rem;
}
.menu-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: #fff;
  line-height: 1.05;
}
.menu-card-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: .25rem;
  line-height: 1.4;
}
.menu-card-price {
  margin-top: .4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
}
.carousel-arrows {
  display: flex;
  gap: .6rem;
  margin-top: 1.4rem;
  justify-content: flex-end;
}
.car-btn {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.car-btn:hover  { background: var(--blue); border-color: var(--blue); }
.car-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}
.car-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ════════════════════════════════════════════════
   SECTION 4 — ABOUT
════════════════════════════════════════════════ */
.about-band {
  background: var(--cream);
  padding: 6rem 2.5rem;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .8rem;
}
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: .05em;
  line-height: 1;
  color: #111;
  margin-bottom: 1.5rem;
}
.about-body {
  font-size: .92rem;
  color: #555;
  line-height: 1.85;
}
.about-body p + p { margin-top: 1rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-top: 2rem;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #333;
}
.about-feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.about-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .8rem 2rem;
  text-decoration: none;
  transition: background .2s;
}
.about-cta:hover { background: var(--blue-dk); }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--blue);
  color: #fff;
  padding: 1.4rem 1.6rem;
  text-align: center;
}
.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: .04em;
  line-height: 1;
}
.about-badge-star {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .08em;
}
.about-badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: .3rem;
}

/* ════════════════════════════════════════════════
   SECTION 5 — FULL MENU (Tabbed)
════════════════════════════════════════════════ */
.fullmenu-band {
  background: var(--black2);
  padding: 6rem 2.5rem;
}
.fullmenu-header {
  text-align: center;
  margin-bottom: 3rem;
}
.fullmenu-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .6rem;
}
.fullmenu-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .06em;
  color: #fff;
}
.menu-tabs {
  display: flex;
  gap: .4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.mtab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem 1.3rem;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: all .2s;
}
.mtab.active,
.mtab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.mtab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.mcat { display: none; }
.mcat.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  max-width: 1100px;
  margin: 0 auto;
}
.mi {
  background: #1a1a1a;
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background .2s;
}
.mi:hover { background: #222; }
.mi-left { flex: 1; }
.mi-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .15rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.mi-star { color: var(--gold); font-size: .7rem; }
.mi-viet {
  font-size: .72rem;
  color: var(--blue-li);
  font-style: italic;
  margin-bottom: .2rem;
}
.mi-desc { font-size: .72rem; color: #666; line-height: 1.4; }
.mi-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: var(--gold);
  flex-shrink: 0;
}
.menu-notice {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: .9rem 1.4rem;
  border-left: 3px solid var(--blue);
  background: rgba(59,91,219,.07);
  font-size: .75rem;
  color: #666;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   SECTION 6 — CHEF PICKS
════════════════════════════════════════════════ */
.chef-band {
  background: var(--black);
  padding: 6rem 2.5rem;
}
.chef-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.chef-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .6rem;
}
.chef-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .06em;
  color: #fff;
}
.chef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.dish-card {
  position: relative;
  overflow: hidden;
  background: #222;
  cursor: pointer;
}
.dish-card::before {
  content: '';
  display: block;
  padding-top: 80%;
}
.dish-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}
.dish-card:hover .dish-img,
.dish-card.hovered .dish-img {
  transform: scale(1.07);
}
.dish-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.1) 55%,
    transparent 100%
  );
}
.dish-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem;
  transform: translateY(6px);
  transition: transform .3s;
}
.dish-card:hover .dish-content,
.dish-card.hovered .dish-content {
  transform: translateY(0);
}
.dish-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .3rem;
}
.dish-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: #fff;
  line-height: 1.05;
}
.dish-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: .3rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s .05s;
}
.dish-card:hover .dish-desc,
.dish-card.hovered .dish-desc {
  opacity: 1;
  transform: translateY(0);
}
.dish-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: .4rem;
}

/* ════════════════════════════════════════════════
   SECTION 7 — GALLERY
════════════════════════════════════════════════ */
.gallery-band {
  background: var(--black);
  padding: 5rem 2.5rem;
}
.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .6rem;
}
.gallery-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .06em;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.gi {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #222;
  border-radius: 8px;
}
.gi::before {
  content: '';
  display: block;
  padding-top: 100%;
}
/* First image is the hero feature — spans 2x2 for visual rhythm */
.gi:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gi-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}
.gi:hover .gi-img { transform: scale(1.08); }
.gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,91,219,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.gi:hover .gi-overlay { background: rgba(59,91,219,.3); }
.gi-plus {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(.6);
  transition: all .3s;
}
.gi:hover .gi-plus { opacity: 1; transform: scale(1); }
.gi:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ── Lightbox ── */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lb-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}
.lb-close:hover  { opacity: 1; }
.lb-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ════════════════════════════════════════════════
   SECTION 8 — REVIEWS (Blue Band)
════════════════════════════════════════════════ */
.reviews-band {
  background: var(--blue);
  padding: 6rem 2.5rem;
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.reviews-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .6rem;
}
.reviews-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: .06em;
  color: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.rv {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 1.8rem;
  transition: background .2s, transform .2s;
}
.rv:hover { background: rgba(255,255,255,.17); transform: translateY(-3px); }
.rv-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .08em;
  margin-bottom: .9rem;
}
.rv-text {
  font-size: .86rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.1rem;
}
.rv-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.rv-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.rv-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.rv-place {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}
.reviews-aggregate {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.ra-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1;
}
.ra-detail { text-align: left; }
.ra-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: .08em;
}
.ra-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
}
.ra-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  padding: .8rem 1.8rem;
  text-decoration: none;
  transition: background .2s;
}
.ra-btn:hover { background: rgba(255,255,255,.25); }

/* ════════════════════════════════════════════════
   SECTION 9 — CONTACT
════════════════════════════════════════════════ */
.contact-band {
  background: var(--black);
  padding: 6rem 2.5rem;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .6rem;
}
.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ci {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-li);
  margin-bottom: .2rem;
}
.ci-val {
  font-size: .88rem;
  color: #aaa;
  line-height: 1.65;
}
.ci-val a {
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}
.ci-val a:hover { color: var(--blue-li); }
.contact-btns {
  display: flex;
  gap: .8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.btn-blue {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: .8rem 1.8rem;
  text-decoration: none;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-blue:hover { background: var(--blue-li); }
.btn-outline-w {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .8rem 1.8rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn-outline-w:hover { background: rgba(255,255,255,.08); }
.contact-form {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.07);
  padding: 2.2rem;
}
.cf-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: .3rem;
}
.cf-sub {
  font-size: .8rem;
  color: #666;
  margin-bottom: 1.6rem;
}
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .4rem;
}
.fg input,
.fg textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: #111;
  border: 1.5px solid rgba(255,255,255,.08);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--blue);
}
.fg input:focus-visible,
.fg textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.fg textarea {
  height: 110px;
  resize: vertical;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  padding: 1rem;
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
}
.cf-submit:hover { background: var(--blue-li); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: .2rem;
}
.footer-brand-name span { color: var(--blue-li); }
.footer-tagline {
  font-size: .82rem;
  color: #555;
  line-height: 1.75;
  margin: .8rem 0 1.2rem;
}
.footer-socials {
  display: flex;
  gap: .6rem;
}
.fs-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: .85rem;
  transition: all .2s;
}
.fs-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.fs-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.ft-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.ft-links a {
  color: #555;
  font-size: .82rem;
  text-decoration: none;
  transition: color .2s;
}
.ft-links a:hover { color: var(--blue-li); }
.ft-hours {
  font-size: .78rem;
  color: #555;
  line-height: 1.95;
}
.ft-hours strong { color: #aaa; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #333;
}

/* ════════════════════════════════════════════════
   WOOCOMMERCE WRAPPER
════════════════════════════════════════════════ */
.hv-wc-main {
  background: var(--black2);
  padding: 6rem 2.5rem;
  min-height: 60vh;
}
.hv-wc-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hv-wc-inner .woocommerce-notices-wrapper {
  margin-bottom: 1.5rem;
}
.hv-thankyou-msg {
  background: rgba(59,91,219,.1);
  border-left: 3px solid var(--blue);
  padding: 1.2rem 1.6rem;
  margin-top: 2rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   FOCUS VISIBLE — WCAG 2.2 Global
════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════
   RESPONSIVE — Tablet (max-width: 900px)
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-inner             { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge             { display: none; }
  .chef-grid               { grid-template-columns: 1fr 1fr; }
  .reviews-grid            { grid-template-columns: 1fr 1fr; }
  .contact-inner           { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top              { grid-template-columns: 1fr 1fr; }
  .hours-detail-grid       { grid-template-columns: 1fr 1fr; }
  .menu-card               { flex: 0 0 calc(50% - .5rem); }
  .gallery-grid            { grid-template-columns: 1fr 1fr; }
  .gi:nth-child(1)         { grid-column: span 2; grid-row: span 1; }
  .gi:nth-child(5)         { grid-column: span 1; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — Mobile (max-width: 600px)
════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .nav-links               { display: none; }
  .nav-reserve             { display: none; }
  .burger                  { display: flex; }
  .hero-title              { font-size: clamp(3.5rem, 18vw, 6rem); }
  .chef-grid               { grid-template-columns: 1fr; }
  .reviews-grid            { grid-template-columns: 1fr; }
  .menu-card               { flex: 0 0 calc(85% - .5rem); }
  .footer-top              { grid-template-columns: 1fr; }
  .fg-row                  { grid-template-columns: 1fr; }
  .hours-detail-grid       { grid-template-columns: 1fr 1fr; }
  .fcta                    { bottom: 1rem; right: 1rem; padding: .7rem 1.2rem; font-size: .75rem; }
  #nav                     { padding: 0 1.2rem; }
  .menu-band,
  .about-band,
  .chef-band,
  .gallery-band,
  .reviews-band,
  .contact-band,
  .fullmenu-band           { padding-left: 1.2rem; padding-right: 1.2rem; }
}

/* ════════════════════════════════════════════════
   PRINT STYLES
════════════════════════════════════════════════ */
@media print {
  .fcta,
  #nav,
  .burger,
  .hero-scroll,
  .carousel-arrows,
  .contact-form { display: none !important; }
  body { background: #fff; color: #000; }
  .hours-band,
  .reviews-band { background: #f0f0f0 !important; }
}

/* ── Contact Mini Map ─────────────────────────── */
.contact-map {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}
.contact-map iframe {
	width: 100%;
	height: 420px;
	border: 0;
	border-radius: 8px;
	display: block;
}
.contact-map-hint {
	margin-top: .75rem;
	text-align: center;
	font-size: .8rem;
}
.contact-map-hint a {
	color: var(--gold);
	text-decoration: none;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.contact-map-hint a:hover { text-decoration: underline; }

@media (max-width: 767px) {
	.contact-map iframe { height: 280px; }
}

/* ═══════════════════════════════════════════════════════
   v9 ADDITIONS — Kubio compatibility + Contact Map
═══════════════════════════════════════════════════════ */

/* Contact map wrapper */
.contact-map-wrap {
	width: 100%;
}
/* Map-only contact layout (left column removed) */
.contact-inner--map-only {
	display: block;
	max-width: 1200px;
}
.contact-map-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.contact-map-wrap--full iframe {
	width: 100%;
	height: 520px;
	border: none;
	border-radius: 6px;
	display: block;
	box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.contact-map-wrap iframe {
	width: 100%;
	height: 420px;
	border: none;
	border-radius: 4px;
	display: block;
	box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

/* Kubio full-width page: remove padding conflicts */
.hv-kubio-page .hv-page-wrap,
.hv-kubio-canvas #kubio-canvas-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* Kubio editor: ensure our CSS vars are available */
.kubio-editor-root {
	--blue: #3B5BDB;
	--blue-dk: #2F4AC7;
	--blue-li: #4C6EF5;
	--black: #111111;
	--black2: #1a1a1a;
	--white: #ffffff;
	--cream: #f5f0e8;
	--gold: #E8C547;
}

/* Admin notice bar (shown to logged-in admins on PHP fallback) */
.hv-admin-notice-bar {
	background: #3B5BDB;
	color: #fff;
	text-align: center;
	padding: .75rem 1rem;
	font-family: sans-serif;
	font-size: .82rem;
	letter-spacing: .05em;
	position: relative;
	z-index: 9999;
}
.hv-admin-notice-bar a {
	color: #E8C547;
	text-decoration: underline;
}

@media (max-width: 900px) {
	.contact-map-wrap iframe {
		height: 280px;
	}
}

