/* =============================================================
   VINASIA RESTAURANT – MAIN STYLESHEET
   Colors: Wine #8B1A2B | Gold #C9923F | Dark #1A1A1A | Cream #FAF7F2
   Fonts:  Josefin Sans
   ============================================================= */

/* ── 01. CSS VARIABLES ────────────────────────────────────── */
:root {
  --va-red: #8b1a2b;
  --va-red-dark: #6b1220;
  --va-red-light: #a8203a;
  --va-red-pale: #fdf0f3;
  --va-gold: #c9923f;
  --va-gold-light: #e5b96a;
  --va-gold-pale: #fdf5e8;
  --va-dark: #1a1a1a;
  --va-dark-alt: #242424;
  --va-charcoal: #333333;
  --va-gray: #6b6b6b;
  --va-light-gray: #c8c8c8;
  --va-cream: #faf7f2;
  --va-cream-dark: #f0ebe3;
  --va-white: #ffffff;
  --va-text: #2d2d2d;

  --font-heading: "Josefin Sans", sans-serif;
  --font-body: "Josefin Sans", sans-serif;
  --font-script: "Josefin Sans", sans-serif;

  --container: 1280px;
  --container-sm: 960px;
  --gutter: clamp(16px, 4vw, 40px);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.22);
  --shadow-red: 0 8px 32px rgba(196, 18, 48, 0.3);
  --shadow-gold: 0 8px 32px rgba(201, 146, 63, 0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 82px;
  --header-top: 40px;
}

/* ── 02. RESET & BASE ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--va-text);
  background: var(--va-white);
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--va-red);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
address {
  font-style: normal;
}

/* ── 03. TYPOGRAPHY ───────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--va-dark);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
}
h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
h5 {
  font-size: 1.2rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.2em;
}
p:last-child {
  margin-bottom: 0;
}

.va-script {
  font-family: var(--font-script);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.va-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--va-gold);
  margin-bottom: 16px;
}
.va-section-label::before,
.va-section-label::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--va-gold);
  display: block;
}

.va-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--va-dark);
  margin-bottom: 20px;
}

.va-section-title span {
  color: var(--va-red);
}

.va-section-subtitle {
  font-size: 1.05rem;
  color: var(--va-gray);
  line-height: 1.8;
  max-width: 600px;
}

/* ── 04. LAYOUT ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--sm {
  max-width: var(--container-sm);
}
.container--xs {
  max-width: 720px;
}

.va-section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.va-section--dark {
  background: var(--va-dark);
  color: var(--va-white);
}
.va-section--dark .va-section-title {
  color: var(--va-white);
}
.va-section--dark .va-section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.va-section--cream {
  background: var(--va-cream);
}

.va-section--charcoal {
  background: var(--va-dark-alt);
  color: var(--va-white);
}

.va-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.va-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.va-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.va-flex {
  display: flex;
  align-items: center;
}
.va-flex--gap {
  gap: 20px;
}
.va-flex--center {
  justify-content: center;
}
.va-flex--between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* ── 05. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-red {
  background: var(--va-red);
  color: var(--va-white);
  border-color: var(--va-red);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: var(--va-red-dark);
  border-color: var(--va-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 18, 48, 0.4);
  color: var(--va-white);
}

.btn-gold {
  background: var(--va-gold);
  color: var(--va-white);
  border-color: var(--va-gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: #b07e32;
  border-color: #b07e32;
  transform: translateY(-2px);
  color: var(--va-white);
}

.btn-outline {
  background: transparent;
  color: var(--va-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: var(--va-white);
  color: var(--va-dark);
  border-color: var(--va-white);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--va-red);
  border-color: var(--va-red);
}
.btn-outline-red:hover {
  background: var(--va-red);
  color: var(--va-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 18px 52px;
  font-size: 1rem;
}
.btn-xl {
  padding: 20px 60px;
  font-size: 1.05rem;
}

/* ── 06. HEADER ───────────────────────────────────────────── */
.va-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

/* Top Info Bar */
.va-header__bar {
  background: var(--va-dark);
  padding: 8px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.va-header__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.va-header__bar-left,
.va-header__bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.va-header__bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  transition: color var(--transition);
}
.va-header__bar-link:hover {
  color: var(--va-gold);
}
.va-header__bar-link svg {
  flex-shrink: 0;
}

.va-header__social {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  display: flex;
}
.va-header__social:hover {
  color: var(--va-gold);
}

.va-header__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: block;
}

.va-header__hours-quick {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

/* Main Header */
.va-header__main {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.va-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.va-header__logo {
  flex-shrink: 0;
}

.va-header__logo img,
.va-header__logo a img {
  height: 60px;
  width: auto;
}

.va-logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.va-logo-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--va-white);
  line-height: 1;
}

.va-logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--va-gold);
  margin-top: 3px;
}

/* Navigation */
.va-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.va-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.va-nav__list li > a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.va-nav__list li > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--va-red);
  border-radius: var(--radius-full);
  transition: transform var(--transition);
}

.va-nav__list li > a:hover,
.va-nav__list li.current-menu-item > a,
.va-nav__list li.current_page_item > a {
  color: var(--va-white);
}

.va-nav__list li > a:hover::after,
.va-nav__list li.current-menu-item > a::after,
.va-nav__list li.current_page_item > a::after {
  transform: translateX(-50%) scaleX(1);
}

.va-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.va-header__reserve-btn {
  display: flex;
  align-items: center;
  gap: 7px;
}

.va-header__online-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid var(--va-gold);
  background: var(--va-gold);
  color: #071415;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.va-header__online-order:hover {
  background: var(--va-gold-light);
  border-color: var(--va-gold-light);
  color: #071415;
}

/* Hamburger */
.va-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.va-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--va-white);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  transform-origin: center;
}

.va-hamburger.is-active .va-hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.va-hamburger.is-active .va-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.va-hamburger.is-active .va-hamburger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Scrolled state */
.va-header--scrolled .va-header__bar {
  display: none;
}
.va-header--scrolled .va-header__main {
  background: rgba(17, 17, 17, 0.98);
  box-shadow: var(--shadow-lg);
}

/* Transparent mode (for hero pages) */
.va-is-home .va-header:not(.va-header--scrolled) .va-header__main {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

/* ── 07. MOBILE NAV ───────────────────────────────────────── */
.va-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--va-dark);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.va-mobile-nav.is-open {
  transform: translateX(0);
}

.va-mobile-nav__inner {
  padding: 32px 28px 60px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.va-mobile-nav__close {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.va-mobile-nav__close:hover {
  color: var(--va-white);
}

.va-mobile-nav__logo {
  display: flex;
  flex-direction: column;
  margin: 28px 0 40px;
}
.va-mobile-nav__logo .va-logo-name {
  font-size: 2rem;
}
.va-mobile-nav__logo img,
.va-mobile-logo-link img {
  width: auto;
  max-width: 220px;
  max-height: 84px;
  object-fit: contain;
}

.va-mobile-nav__list {
  flex: 1;
}

.va-mobile-nav__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.va-mobile-nav__list li > a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}
.va-mobile-nav__list li > a:hover,
.va-mobile-nav__list li.current-menu-item > a {
  color: var(--va-gold);
}

.va-mobile-nav__info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.va-mobile-nav__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.va-mobile-nav__contact:hover {
  color: var(--va-gold);
}

.va-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.va-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── 08. HERO SECTION ─────────────────────────────────────── */
.va-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--va-dark);
}

.va-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.va-hero.is-loaded .va-hero__bg {
  transform: scale(1);
}

.va-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 11, 0.85) 0%,
    rgba(11, 11, 11, 0.65) 50%,
    rgba(11, 11, 11, 0.8) 100%
  );
}

.va-hero__overlay-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(196, 18, 48, 0.15) 0%,
    transparent 60%
  );
}

.va-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + var(--header-top) + 60px) 0 80px;
  width: 100%;
}

.va-hero__inner {
  max-width: 720px;
}

.va-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.va-hero__eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--va-gold);
}

.va-hero__eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--va-gold);
}

.va-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--va-white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.va-hero__title em {
  font-style: italic;
  color: var(--va-gold);
}

.va-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.va-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.va-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.va-hero__scroll-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Stats Strip */
.va-hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  z-index: 2;
}

.va-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.va-hero__stat {
  padding: 8px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.va-hero__stat:last-child {
  border-right: none;
}

.va-hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--va-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.va-hero__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ── 09. WELCOME SECTION ──────────────────────────────────── */
.va-welcome {
  padding: clamp(80px, 12vw, 140px) 0;
}

.va-welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.va-welcome__image-wrap {
  position: relative;
}

.va-welcome__image-wrap::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--va-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.va-welcome__image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.va-welcome__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  width: 120px;
  height: 120px;
  background: var(--va-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  color: var(--va-white);
  text-align: center;
  font-family: var(--font-heading);
}

.va-welcome__badge-year {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.va-welcome__badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
}

.va-welcome__text .va-section-subtitle {
  max-width: 100%;
  margin-bottom: 32px;
}

/* ── 10. HIGHLIGHTS / FEATURES ───────────────────────────── */
.va-features {
  background: var(--va-dark);
  padding: clamp(60px, 8vw, 100px) 0;
}

.va-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.va-feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 40px);
  text-align: center;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.va-feature-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 48px;
  height: 2px;
  background: var(--va-red);
  transition: transform var(--transition);
}

.va-feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
}
.va-feature-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.va-feature-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(196, 18, 48, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--va-red);
  transition: all var(--transition);
}

.va-feature-card:hover .va-feature-card__icon {
  background: var(--va-red);
  color: var(--va-white);
  transform: scale(1.05);
}

.va-feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.va-feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--va-white);
  margin-bottom: 12px;
}

.va-feature-card__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── 11. MENU PREVIEW CARDS ───────────────────────────────── */
.va-menu-preview {
  background: var(--va-cream);
  padding: clamp(80px, 10vw, 120px) 0;
}

.va-menu-preview__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.va-menu-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.va-menu-card {
  background: var(--va-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.va-menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.va-menu-card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.va-menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.va-menu-card:hover .va-menu-card__image {
  transform: scale(1.08);
}

.va-menu-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 11, 0.7) 0%,
    transparent 60%
  );
}

.va-menu-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--va-gold);
  color: var(--va-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.va-menu-card__body {
  padding: 24px;
}

.va-menu-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--va-gold);
  margin-bottom: 8px;
}

.va-menu-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--va-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.va-menu-card__desc {
  font-size: 0.85rem;
  color: var(--va-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.va-menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--va-cream-dark);
}

.va-menu-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--va-red);
}

.va-menu-card__count {
  font-size: 0.78rem;
  color: var(--va-gray);
}

/* ── 12. RESERVATION CTA ──────────────────────────────────── */
.va-reservation-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--va-dark);
}

.va-reservation-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.va-reservation-cta__accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 18, 48, 0.2), transparent 70%);
}

.va-reservation-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.va-reservation-cta__content .va-section-title {
  color: var(--va-white);
}

.va-reservation-cta__content .va-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}

/* Inline Mini Form in CTA */
.va-cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
}

.va-cta-form__field {
  flex: 1;
  min-width: 140px;
}

.va-cta-form__field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.va-cta-form__field input,
.va-cta-form__field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--va-white);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.va-cta-form__field input:focus,
.va-cta-form__field select:focus {
  outline: none;
  border-color: var(--va-gold);
  background: rgba(255, 255, 255, 0.12);
}

.va-cta-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.va-cta-form__field select option {
  background: var(--va-dark);
  color: var(--va-white);
}

/* ── 13. OPENING HOURS ────────────────────────────────────── */
.va-hours-section {
  background: var(--va-white);
  padding: clamp(80px, 10vw, 120px) 0;
}

.va-hours-card {
  background: var(--va-dark);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.va-hours-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 18, 48, 0.15), transparent 70%);
  pointer-events: none;
}

.va-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.va-hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}
.va-hours-table tr:last-child {
  border-bottom: none;
}
.va-hours-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.va-hours-table td {
  padding: 14px 0;
  font-size: 0.95rem;
}

.va-hours-table .va-hours-day {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  width: 50%;
}

.va-hours-table .va-hours-time {
  color: var(--va-white);
  font-weight: 600;
  text-align: right;
}

.va-hours-table .va-hours-time--closed {
  color: var(--va-red);
}

/* ── 14. GOOGLE REVIEWS ───────────────────────────────────── */
.va-reviews {
  background: var(--va-cream);
  padding: clamp(80px, 10vw, 120px) 0;
}

.va-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.va-reviews__summary {
  display: flex;
  align-items: center;
  gap: 20px;
}

.va-reviews__score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--va-dark);
  line-height: 1;
}

.va-reviews__stars {
  color: #fbbf24;
  font-size: 1.4rem;
  letter-spacing: 2px;
  display: flex;
  gap: 3px;
}

.va-reviews__count {
  font-size: 0.85rem;
  color: var(--va-gray);
  margin-top: 4px;
}

.va-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.va-review-card {
  background: var(--va-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.va-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.va-review-card__quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: var(--va-cream-dark);
  font-family: var(--font-heading);
  line-height: 1;
  user-select: none;
}

.va-review-card__stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.va-review-card__text {
  font-size: 0.9rem;
  color: var(--va-charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.va-review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--va-cream-dark);
  padding-top: 16px;
}

.va-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--va-red);
  color: var(--va-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.va-review-card__name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--va-dark);
  margin-bottom: 2px;
}

.va-review-card__date {
  font-size: 0.75rem;
  color: var(--va-gray);
}

.va-reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--va-light-gray);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--va-charcoal);
  transition: all var(--transition);
  text-decoration: none;
}
.va-reviews__google-badge:hover {
  border-color: var(--va-gold);
  color: var(--va-dark);
}

/* ── 15. GOOGLE MAPS SECTION ──────────────────────────────── */
.va-map-section {
  background: var(--va-dark);
  padding: clamp(80px, 10vw, 120px) 0;
}

.va-map-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.va-map-section__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.va-map-section__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.va-map-section__info .va-section-title {
  color: var(--va-white);
}
.va-map-section__info .va-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 100%;
}

.va-map-section__details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.va-map-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.va-map-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(196, 18, 48, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--va-red);
  flex-shrink: 0;
}

.va-map-detail__icon svg {
  width: 20px;
  height: 20px;
}

.va-map-detail__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--va-gold);
  margin-bottom: 4px;
}

.va-map-detail__value {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 0;
}

.va-map-detail__value a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.va-map-detail__value a:hover {
  color: var(--va-gold);
}

/* ── 16. SPEISEKARTE PAGE ─────────────────────────────────── */
.va-page-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--va-text);
}

.va-page-body h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--va-dark);
  margin: 40px 0 16px;
}

.va-page-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--va-dark);
  margin: 32px 0 12px;
}

.va-page-body p {
  margin-bottom: 16px;
}

.va-page-body ul,
.va-page-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.va-page-body li {
  margin-bottom: 8px;
}

.va-page-body a {
  color: var(--va-red);
  text-decoration: underline;
}

.va-page-body a:hover {
  color: var(--va-red-dark);
}

.va-page-hero {
  position: relative;
  height: clamp(300px, 40vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--va-dark);
}

.va-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.va-page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.va-page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--va-white);
  margin-bottom: 12px;
}

.va-page-hero__subtitle {
  color: var(--va-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Menu Categories Nav */
.va-menu-nav {
  background: var(--va-white);
  position: sticky;
  top: calc(var(--header-height) + var(--header-top));
  z-index: 100;
  border-bottom: 1px solid var(--va-cream-dark);
  box-shadow: var(--shadow-sm);
}

.va-menu-nav__list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.va-menu-nav__list::-webkit-scrollbar {
  display: none;
}

.va-menu-nav__item a {
  display: block;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--va-gray);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.va-menu-nav__item a:hover,
.va-menu-nav__item.is-active a {
  color: var(--va-red);
  border-bottom-color: var(--va-red);
}

/* Menu Section */
.va-menu-section {
  padding: 80px 0;
}

.va-menu-section + .va-menu-section {
  border-top: 1px solid var(--va-cream-dark);
}

.va-menu-section--alt {
  background: var(--va-cream);
}

.va-menu-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.va-menu-section__title {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--va-dark);
  margin-bottom: 8px;
}

.va-menu-section__desc {
  font-size: 0.9rem;
  color: var(--va-gray);
  max-width: 480px;
  line-height: 1.7;
}

/* Menu Items Grid */
.va-menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.va-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--va-cream-dark);
  border-right: 1px solid var(--va-cream-dark);
  transition: background var(--transition);
  position: relative;
}

.va-menu-item:nth-child(2n) {
  border-right: none;
}

.va-menu-item:hover {
  background: var(--va-cream);
}

.va-menu-item__num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--va-gold);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: right;
}

.va-menu-item__content {
  flex: 1;
}

.va-menu-item__name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--va-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.va-menu-item__name .va-badge-veg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #22c55e;
  border-radius: 3px;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--va-white);
}

.va-menu-item__name .va-badge-spicy {
  color: var(--va-red);
  font-size: 0.75rem;
}

.va-menu-item__desc {
  font-size: 0.82rem;
  color: var(--va-gray);
  line-height: 1.6;
  margin-bottom: 4px;
}

.va-menu-item__translation {
  font-size: 0.78rem;
  color: var(--va-gold);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0;
}

.va-menu-item__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--va-dark);
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 16px;
}

/* Menu Download Bar */
.va-menu-download-bar {
  background: var(--va-dark);
  padding: 32px 0;
  text-align: center;
}

/* ── 17. RESERVATION FORM ─────────────────────────────────── */
.va-reservation-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--va-cream);
}

.va-reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.va-reservation-form-wrap {
  background: var(--va-white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-md);
}

.va-form__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--va-dark);
  margin-bottom: 8px;
}

.va-form__subtitle {
  font-size: 0.88rem;
  color: var(--va-gray);
  margin-bottom: 32px;
}

.va-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.va-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}

.va-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.va-form__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--va-charcoal);
  display: flex;
  align-items: center;
  gap: 2px;
}

.va-form__label .required,
.va-form__source-note .required {
  color: #ef4444;
  margin-left: 2px;
}

.va-form__input,
.va-form__select,
.va-form__textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 14px 18px;
  background: var(--va-white);
  border: 1px solid #b9b1a8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--va-text);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.va-form__input:focus,
.va-form__select:focus,
.va-form__textarea:focus {
  border-color: var(--va-red);
  background: var(--va-white);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.04),
    0 0 0 3px rgba(139, 26, 43, 0.12);
}

.va-form__input::placeholder,
.va-form__textarea::placeholder {
  color: var(--va-light-gray);
}

.va-form__input--error,
.va-form__select--error,
.va-form__textarea--error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.va-form__select-wrap {
  position: relative;
}

.va-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--va-gray);
  border-bottom: 2px solid var(--va-gray);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.va-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.va-form__info-text {
  background: var(--va-cream);
  border-left: 3px solid var(--va-gold);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--va-gray);
  line-height: 1.6;
}

.va-form__submit-wrap {
  margin-top: 8px;
}

.va-form__submit {
  width: 100%;
}

/* Form Messages */
.va-form-message {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}

.va-form-message--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.va-form-message--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Reservation Info Panel */
.va-reservation-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.va-reservation-info-card {
  background: var(--va-dark);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--va-white);
}

.va-reservation-info-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--va-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.va-reservation-info-card__title svg {
  color: var(--va-gold);
  flex-shrink: 0;
}

/* ── 18. PARTYSERVICE PAGE ────────────────────────────────── */
.va-party-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.va-party-feature {
  background: var(--va-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}

.va-party-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--va-red);
}

.va-party-feature__icon {
  width: 72px;
  height: 72px;
  background: var(--va-red-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--va-red);
}

.va-party-feature__icon svg {
  width: 36px;
  height: 36px;
}

.va-party-feature__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.va-party-feature__text {
  font-size: 0.88rem;
  color: var(--va-gray);
  line-height: 1.7;
}

/* ── 19. FOOTER ───────────────────────────────────────────── */
.va-footer {
  background: var(--va-dark);
  color: rgba(255, 255, 255, 0.65);
  position: relative;
}

.va-footer__wave {
  position: relative;
  height: 60px;
  overflow: hidden;
  background: var(--va-cream);
}

.va-footer__wave svg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}

.va-footer__body {
  padding: clamp(60px, 8vw, 100px) 0 60px;
}

.va-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: clamp(32px, 4vw, 60px);
}

.va-footer__logo img,
.va-footer__logo a img {
  height: 64px;
  width: auto;
  margin-bottom: 20px;
}

.va-footer__logo-text .va-logo-name {
  color: var(--va-white);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.va-footer__logo-text .va-logo-sub {
  margin-top: 0;
}

.va-footer__tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin: 16px 0 28px;
}

.va-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.va-footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.va-footer__social-link:hover {
  background: var(--va-red);
  border-color: var(--va-red);
  color: var(--va-white);
  transform: translateY(-2px);
}

.va-footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--va-gold);
  margin-bottom: 20px;
}

.va-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.va-footer__nav li a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.va-footer__nav li a:hover {
  color: var(--va-white);
  padding-left: 8px;
}

.va-footer__hours {
  width: 100%;
  border-collapse: collapse;
}

.va-footer__hours td {
  padding: 6px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.va-footer__hours tr:last-child td {
  border-bottom: none;
}

.va-footer__hours-day {
  color: rgba(255, 255, 255, 0.5);
}

.va-footer__hours-time {
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.va-footer__hours-time--closed {
  color: var(--va-gold);
}

.va-footer__hours-row--closed .va-footer__hours-day {
  color: rgba(255, 255, 255, 0.3);
}

.va-footer__address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.va-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.va-footer__contact-item svg {
  color: var(--va-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.va-footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
}
.va-footer__contact-item a:hover {
  color: var(--va-gold);
}

.va-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.va-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.va-footer__copy,
.va-footer__legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

.va-footer__legal {
  display: flex;
  gap: 16px;
  align-items: center;
}

.va-footer__legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.va-footer__legal a:hover {
  color: var(--va-gold);
}

.va-footer__legal span {
  color: rgba(255, 255, 255, 0.2);
}

/* ── 20. POPUP ────────────────────────────────────────────── */
.va-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.va-popup-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.va-popup {
  background: var(--va-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px) scale(0.96);
  transition: all var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: column;
}

.va-popup-overlay.is-visible .va-popup {
  transform: translateY(0) scale(1);
}

.va-popup__header {
  background: var(--va-dark);
  padding: 32px 36px 28px;
  position: relative;
  overflow: hidden;
}

.va-popup__header-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
}

.va-popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--va-red);
  color: var(--va-white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.va-popup__title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--va-white);
  line-height: 1.2;
  position: relative;
}

.va-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.va-popup__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--va-white);
}

.va-popup__body {
  padding: 28px 36px;
  overflow-y: auto;
  flex: 1 1 auto;
}

.va-popup__intro {
  font-size: 1.05rem;
  color: var(--va-charcoal);
  margin-bottom: 24px;
  line-height: 1.7;
}

.va-popup__events {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.va-popup__event {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--va-cream);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  border-left: 3px solid var(--va-red);
}

.va-popup__event-date {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--va-red);
  flex-shrink: 0;
  min-width: 64px;
}

.va-popup__event-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--va-dark);
  margin-bottom: 2px;
}

.va-popup__event-time {
  font-size: 0.8rem;
  color: var(--va-gray);
}

.va-popup__footer {
  padding: 20px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.va-popup__dismiss {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--va-light-gray);
  text-align: center;
  padding: 4px;
  transition: color var(--transition);
}

.va-popup__dismiss:hover {
  color: var(--va-gray);
}

.va-reviews-shortcode__summary {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--va-gray);
}

.va-reviews-shortcode__summary strong {
  color: var(--va-red);
  font-size: 1.8rem;
  line-height: 1;
}

/* ── 21. KONTAKT PAGE ─────────────────────────────────────── */
.va-kontakt-card {
  background: var(--va-white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  border-bottom: 3px solid transparent;
}

.va-kontakt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--va-red);
}

.va-kontakt-card__icon {
  width: 64px;
  height: 64px;
  background: var(--va-red-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--va-red);
}

.va-kontakt-card__icon svg {
  width: 28px;
  height: 28px;
}

.va-kontakt-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--va-dark);
  margin-bottom: 8px;
}

.va-kontakt-card__value {
  color: var(--va-red);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.va-kontakt-card__address {
  color: var(--va-charcoal);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.va-kontakt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.va-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.va-kontakt-form-wrap {
  background: var(--va-white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-md);
}

/* ── 22. ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.va-animate {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.va-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.va-animate--delay-1 {
  transition-delay: 0.1s;
}
.va-animate--delay-2 {
  transition-delay: 0.2s;
}
.va-animate--delay-3 {
  transition-delay: 0.3s;
}
.va-animate--delay-4 {
  transition-delay: 0.4s;
}

/* ── 23. ELEMENTOR OVERRIDES ──────────────────────────────── */
.elementor-section.elementor-section-full_width {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-heading);
}

.elementor-widget-button .elementor-button {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ── 24. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .va-menu-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .va-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-top: 0px;
  }
  .va-header__bar {
    display: none;
  }

  .va-nav {
    display: none;
  }
  .va-hamburger {
    display: flex;
  }

  .va-welcome__grid {
    grid-template-columns: 1fr;
  }
  .va-welcome__image-wrap {
    max-width: 480px;
  }

  .va-features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .va-reviews__grid {
    grid-template-columns: 1fr 1fr;
  }

  .va-map-section__grid {
    grid-template-columns: 1fr;
  }

  .va-reservation-grid {
    grid-template-columns: 1fr;
  }

  .va-menu-items {
    grid-template-columns: 1fr;
  }
  .va-menu-item {
    border-right: none;
  }

  .va-kontakt-grid {
    grid-template-columns: 1fr;
  }

  .va-kontakt-cards {
    grid-template-columns: 1fr;
  }

  .va-party-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .va-hero__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .va-hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .va-hero__stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .va-hero__stat:last-child,
  .va-hero__stat:nth-last-child(2) {
    border-bottom: none;
  }

  .va-features__grid {
    grid-template-columns: 1fr;
  }

  .va-menu-preview__grid {
    grid-template-columns: 1fr 1fr;
  }

  .va-reviews__grid {
    grid-template-columns: 1fr;
  }

  .va-footer__grid {
    grid-template-columns: 1fr;
  }

  .va-form__row {
    grid-template-columns: 1fr;
  }

  .va-cta-form {
    flex-direction: column;
  }

  .va-welcome__image-wrap::before {
    display: none;
  }

  .va-party-features {
    grid-template-columns: 1fr;
  }

  .va-header__main-inner {
    gap: 12px;
  }
  .va-header__logo img,
  .va-header__logo a img {
    max-width: 180px;
    height: auto;
    max-height: 52px;
  }
  .va-logo-name {
    font-size: 1.35rem;
  }
  .va-logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
  .va-header__reserve-btn {
    display: none;
  }
  .va-mobile-nav {
    width: min(330px, 92vw);
  }
  .va-mobile-nav__inner {
    padding: 24px 22px 44px;
  }
  .va-popup-overlay {
    align-items: flex-start;
    padding: 12px;
    overflow-y: auto;
  }
  .va-popup {
    margin-top: 10px;
    max-height: calc(100vh - 24px);
    border-radius: var(--radius-md);
  }
  .va-popup__header {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .va-popup__title {
    font-size: 1.35rem;
    padding-right: 30px;
  }
  .va-popup__intro {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .va-popup__event {
    padding: 11px 12px;
  }
}

@media (max-width: 480px) {
  .va-menu-preview__grid {
    grid-template-columns: 1fr;
  }

  .va-hero__actions {
    flex-direction: column;
  }
  .va-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .va-popup {
    border-radius: var(--radius-lg);
  }
  .va-popup__header,
  .va-popup__body,
  .va-popup__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .va-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .va-footer__legal {
    justify-content: center;
  }
}

/* ── 25. PAGE OFFSET (below fixed header) ─────────────────── */
.va-page-content {
  padding-top: calc(var(--header-height) + var(--header-top));
}

.va-is-home .va-page-content {
  padding-top: 0;
}

/* ── 26. LAURENT-INSPIRED HOME IMPORT ─────────────────────── */
.va-laurent-home {
  --lau-ink: #071415;
  --lau-panel: #0c2022;
  --lau-gold: #c9923f;
  --lau-cream: #f3ead6;
  --lau-muted: rgba(245, 238, 222, 0.72);
  --lau-line: rgba(201, 146, 63, 0.22);
  color: var(--lau-muted);
  position: relative;
}

.va-laurent-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(255, 255, 255, 0.035) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.035) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(255, 255, 255, 0.035) 75%, transparent calc(75% + 1px));
  z-index: 0;
}

.va-laurent-home > .elementor-container,
.va-laurent-home > .elementor-container > .elementor-column,
.va-laurent-home .elementor-widget-wrap {
  position: relative;
  z-index: 1;
}

.va-lau-eyebrow,
.va-lau-heading .va-lau-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  color: var(--lau-gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1;
  margin-bottom: 11px;
}

/* Eyebrow decorative dashes are hidden by default for a cleaner hero look.
   Enable in Customizer → Hero Texte → "Goldene Striche im Hero anzeigen". */
.va-lau-eyebrow span {
  display: none;
  width: 28px;
  height: 1px;
  background: var(--lau-gold);
  opacity: 0.74;
}

body.va-show-eyebrow-dashes .va-lau-eyebrow span {
  display: inline-block;
}

.va-lau-eyebrow {
  gap: 0;
}

body.va-show-eyebrow-dashes .va-lau-eyebrow {
  gap: 13px;
}

.va-lau-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.va-lau-heading h2,
.va-lau-hero__content h1 {
  color: var(--lau-cream);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.va-lau-heading h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.15;
}

.va-lau-heading p,
.va-lau-hero__content p {
  color: var(--lau-muted);
  max-width: 620px;
  margin: 17px auto 0;
  font-size: 0.96rem;
  line-height: 1.85;
}

.va-lau-hero__content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 32px;
}

.va-lau-hero__content h1 {
  font-family: var(--font-body);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
  margin: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.46);
}

.va-lau-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.va-lau-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  padding: 13px 28px;
  border: 1px solid var(--lau-gold);
  color: var(--lau-cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.va-lau-button:hover {
  background: var(--lau-gold);
  color: var(--lau-ink);
}

.va-laurent-home .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 44px;
  line-height: 1;
  text-align: center;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.va-laurent-home .elementor-button:hover {
  transform: none !important;
}

.va-lau-reservation {
  margin-top: -52px;
  z-index: 4;
}

.va-lau-reservation .elementor-container {
  max-width: 1220px;
}

.va-lau-reservation .elementor-widget-wrap {
  background: var(--lau-panel);
  border: 1px solid rgba(201, 146, 63, 0.18);
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.va-lau-reservation__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--lau-muted);
  text-align: center;
}

.va-lau-reservation__intro strong {
  color: var(--lau-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-style: italic;
  font-weight: 600;
}

.va-lau-reservation__intro span {
  font-size: 0.82rem;
  text-align: right;
}

.va-lau-reservation .va-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.va-lau-reservation .va-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.va-lau-reservation .va-form__group {
  gap: 6px;
}

.va-lau-reservation .va-form__label {
  color: rgba(245, 238, 222, 0.68);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.va-lau-reservation .va-form__input,
.va-lau-reservation .va-form__select,
.va-lau-reservation .va-form__textarea {
  min-height: 45px;
  background: #071415 !important;
  border: 1px solid rgba(201, 146, 63, 0.38) !important;
  border-radius: 0 !important;
  color: var(--lau-cream);
  box-shadow: none !important;
}

.va-lau-reservation .va-form__textarea {
  min-height: 45px;
  max-height: 92px;
}

.va-lau-reservation .btn {
  align-self: end;
  min-height: 45px;
  background: transparent;
  border: 1px solid var(--lau-gold);
  border-radius: 0;
  color: var(--lau-cream);
  box-shadow: none;
  letter-spacing: 0.12em;
}

.va-lau-reservation .btn:hover {
  background: var(--lau-gold);
  color: var(--lau-ink);
  transform: none;
}

.va-lau-menu {
  max-width: 1180px;
  margin: 0 auto 32px;
}

.va-lau-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

.va-lau-menu article {
  color: var(--lau-muted);
  text-align: center;
}

.va-lau-menu h3 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 7px;
  color: var(--lau-gold);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  justify-content: center;
}

.va-lau-menu h3 span {
  display: none;
}

.va-lau-menu p {
  margin: 0;
  color: var(--lau-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.va-lau-split-media {
  min-height: 540px;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.va-lau-split-copy {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 96px);
  background: var(--lau-panel);
}

.va-lau-split-copy .va-lau-heading {
  margin-left: 0;
  text-align: left;
}

.va-lau-split-copy .va-lau-eyebrow {
  justify-content: flex-start;
}

.va-lau-split-copy ul {
  display: grid;
  gap: 12px;
  max-width: 430px;
  color: var(--lau-muted);
}

.va-lau-split-copy li {
  border-bottom: 1px solid var(--lau-line);
  padding-bottom: 12px;
}

.va-lau-reviews .va-reviews-shortcode__summary {
  color: var(--lau-muted);
}

.va-lau-reviews .va-reviews-shortcode__summary strong {
  color: var(--lau-gold);
}

.va-lau-reviews .va-review-card {
  background: #0a1819;
  border: 1px solid rgba(201, 146, 63, 0.18);
  border-radius: 0;
  box-shadow: none;
}

.va-lau-reviews .va-review-card__text,
.va-lau-reviews .va-review-card__date {
  color: var(--lau-muted);
}

.va-lau-reviews .va-review-card__name {
  color: var(--lau-cream);
}

.va-lau-contact__inner {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.va-lau-contact__inner p {
  color: var(--lau-muted);
  margin: 8px 0;
}

.va-lau-contact__inner a {
  color: var(--lau-cream);
}

.va-laurent-home,
.va-lau-page {
  overflow-x: hidden;
}

.va-lau-page-hero {
  overflow: hidden;
}

.va-lau-page-hero .va-lau-hero__content h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

.va-lau-page {
  background-color: var(--lau-ink);
}

.va-lau-heading--left,
.va-lau-heading--left .va-lau-heading {
  margin-left: 0;
  text-align: left;
}

.va-lau-heading--left .va-lau-eyebrow {
  justify-content: flex-start;
}

.va-lau-mini-card {
  min-height: 170px;
  padding: 34px 28px;
  border: 1px solid var(--lau-line);
  background: rgba(7, 20, 21, 0.6);
  color: var(--lau-muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.va-lau-mini-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--lau-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.va-lau-mini-card span,
.va-lau-mini-card a {
  color: var(--lau-cream);
  font-size: 1.03rem;
  line-height: 1.65;
}

.va-lau-menu-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 78px);
  margin-bottom: 46px;
}

.va-lau-menu-cats section {
  min-width: 0;
}

.va-lau-menu-cats h3 {
  margin: 0 0 24px;
  color: var(--lau-cream);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.va-lau-menu-cats article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--lau-line);
}

.va-lau-menu-cats strong {
  color: var(--lau-gold);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.va-lau-menu-cats p {
  margin: 5px 0 0;
  color: var(--lau-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.va-lau-menu-cats article > span::before {
  content: "";
  display: block;
  height: 1px;
  margin-top: 13px;
  background: var(--lau-line);
}

.va-menu-book {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.va-menu-book::before,
.va-menu-book::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(201, 146, 63, 0.22);
}

.va-menu-book::before {
  top: -18px;
  right: 14px;
  width: 108px;
  height: 108px;
  border-left: 0;
  border-bottom: 0;
}

.va-menu-book::after {
  left: 12px;
  bottom: -18px;
  width: 88px;
  height: 88px;
  border-right: 0;
  border-top: 0;
}

.va-menu-book__intro {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.va-menu-book__intro h2 {
  margin: 14px 0 12px;
  color: var(--lau-cream);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-style: italic;
  font-weight: 500;
}

.va-menu-book__intro p {
  margin: 0;
  color: var(--lau-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.va-menu-book__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.va-menu-section-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 146, 63, 0.22);
  background:
    linear-gradient(135deg, rgba(201, 146, 63, 0.11), rgba(201, 146, 63, 0) 34%),
    linear-gradient(180deg, rgba(245, 238, 222, 0.035), rgba(245, 238, 222, 0.01)),
    #071415;
  padding: clamp(24px, 3vw, 34px);
}

.va-menu-section-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(201, 146, 63, 0.08);
}

.va-menu-section-card__head {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 146, 63, 0.2);
}

.va-menu-section-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 146, 63, 0.55);
  color: var(--lau-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.va-menu-section-card h3 {
  margin: 0;
  color: var(--lau-cream);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
}

.va-menu-section-card__head p {
  margin: 8px 0 0;
  color: rgba(245, 238, 222, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
}

.va-menu-section-card__items {
  position: relative;
  display: grid;
  gap: 2px;
}

.va-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 238, 222, 0.075);
}

.va-menu-book .va-menu-item:hover {
  background: rgba(201, 146, 63, 0.08);
}

.va-menu-item:last-child {
  border-bottom: 0;
}

.va-menu-item__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
}

.va-menu-item__no {
  min-width: 28px;
  color: var(--lau-gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.va-menu-item__copy {
  min-width: 0;
}

.va-menu-item h4 {
  margin: 0;
  color: var(--lau-cream);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.va-menu-item p {
  margin: 5px 0 0;
  color: rgba(245, 238, 222, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

.va-menu-item__price {
  color: var(--lau-gold);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.va-lau-center-note {
  max-width: 760px;
  margin: 0 auto;
  color: var(--lau-muted);
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.8;
}

.va-lau-hours-panel,
.va-form--contact,
.va-lau-reservation-page .elementor-shortcode {
  background: var(--lau-panel);
  border: 1px solid rgba(201, 146, 63, 0.2);
  padding: clamp(28px, 4vw, 42px);
}

.va-lau-hours-panel h3 {
  margin: 0 0 26px;
  color: var(--lau-cream);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.va-lau-hours-panel table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.va-lau-hours-panel td {
  padding: 14px 0;
  border-bottom: 1px solid var(--lau-line);
  color: var(--lau-muted);
}

.va-lau-hours-panel td:last-child {
  color: var(--lau-gold);
  text-align: right;
}

.va-lau-hours-panel a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  min-height: 45px;
  align-items: center;
  border: 1px solid var(--lau-gold);
  color: var(--lau-cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.va-form--booking .va-form__booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(170px, 0.75fr);
  gap: 22px;
  align-items: end;
}

.va-form--booking .va-form__booking-submit {
  width: 100%;
  min-height: 58px;
  margin: 0;
}

.va-form--booking .va-form__source-note {
  margin-top: -6px;
  color: rgba(245, 238, 222, 0.58);
  font-size: 0.95rem;
}

.va-form__source-note {
  color: rgba(245, 238, 222, 0.58);
  font-size: 0.95rem;
  text-align: center;
}

.va-form--booking > .va-form__row,
.va-form--booking > .va-form__group--wide {
  margin-top: 8px;
}

.va-form--contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.va-laurent-home .va-form__input,
.va-laurent-home .va-form__select,
.va-laurent-home .va-form__textarea {
  min-height: 56px;
  max-width: 100%;
  min-width: 0;
  background: #071415 !important;
  border: 1px solid rgba(201, 146, 63, 0.48) !important;
  border-radius: 0 !important;
  color: var(--lau-cream) !important;
  box-shadow: none !important;
}

.va-laurent-home .va-form__select:invalid,
.va-laurent-home .va-form__input[type="date"]::-webkit-datetime-edit {
  color: rgba(245, 238, 222, 0.42);
}

.va-laurent-home .va-form__input[type="date"]:required:invalid {
  color: transparent !important;
}

.va-laurent-home .va-form__input[type="date"]:required:invalid::-webkit-datetime-edit {
  color: transparent !important;
}

.va-laurent-home .va-form__input[type="date"]:required:invalid::before {
  content: attr(data-placeholder);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 238, 222, 0.42);
  pointer-events: none;
}

.va-laurent-home .va-form__input[type="date"]:valid::-webkit-datetime-edit,
.va-laurent-home .va-form__input[type="date"]:focus::-webkit-datetime-edit {
  color: var(--lau-cream);
}

.va-laurent-home .va-form__input::placeholder,
.va-laurent-home .va-form__textarea::placeholder {
  color: rgba(245, 238, 222, 0.42);
}

.va-laurent-home .va-form__select-wrap::after {
  border-color: var(--lau-gold);
}

.va-laurent-home .va-form__label {
  color: rgba(245, 238, 222, 0.62);
}

.va-laurent-home .va-form-message {
  text-align: center;
}

.va-laurent-home .btn,
.va-laurent-home .va-form__booking-submit {
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid var(--lau-gold) !important;
  color: var(--lau-cream) !important;
  box-shadow: none !important;
  letter-spacing: 0.18em;
}

.va-laurent-home .btn:hover,
.va-laurent-home .va-form__booking-submit:hover {
  background: var(--lau-gold) !important;
  color: var(--lau-ink) !important;
  transform: none !important;
}

body {
  background: #071415;
}

.va-header__bar {
  display: none;
}

:root {
  --header-top: 0px;
  --header-height: 120px;
}

.va-header__main {
  background: #071415;
  border-bottom: 1px solid rgba(201, 146, 63, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.va-header__main-inner {
  height: 120px;
}

.va-is-home .va-header:not(.va-header--scrolled) .va-header__main {
  background: #071415;
  border-bottom-color: rgba(201, 146, 63, 0.16);
}

.va-header--scrolled .va-header__main {
  background: rgba(7, 20, 21, 0.98);
}

.va-nav__list {
  gap: clamp(18px, 4vw, 62px);
}

.va-nav__list li > a,
.va-mobile-nav__list li > a {
  color: rgba(245, 238, 222, 0.68);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  border-radius: 0;
}

.va-nav__list li > a::after {
  bottom: 0;
  height: 1px;
  background: var(--va-gold);
}

.va-nav__list li > a:hover,
.va-nav__list li.current-menu-item > a,
.va-nav__list li.current_page_item > a {
  color: var(--va-gold);
}

.va-header__reserve-btn {
  display: none;
}

.va-logo-link {
  min-width: 54px;
  min-height: 54px;
  align-items: flex-start;
  justify-content: center;
}

.va-logo-mark {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
}

.va-logo-mark::before,
.va-logo-mark::after,
.va-logo-mark span {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-left: 1px solid var(--va-gold);
  border-bottom: 1px solid var(--va-gold);
}

.va-logo-mark::before {
  width: 42px;
  height: 42px;
}

.va-logo-mark::after {
  left: 8px;
  bottom: -6px;
  width: 42px;
  height: 42px;
}

.va-logo-mark span:nth-child(1) {
  left: 16px;
  bottom: -12px;
  width: 42px;
  height: 42px;
}

.va-logo-mark span:nth-child(2),
.va-logo-mark span:nth-child(3),
.va-logo-name,
.va-logo-sub {
  display: none;
}

.va-hamburger {
  display: flex;
  width: 42px;
  height: 28px;
}

.va-hamburger__line {
  height: 1px;
  background: var(--va-gold);
}

.va-mobile-nav {
  background: #071415;
  border-left: 1px solid rgba(201, 146, 63, 0.18);
}

.va-footer {
  background: #071415;
  color: rgba(245, 238, 222, 0.72);
}

.va-footer__wave {
  display: none;
}

.va-footer__body {
  background: #071415;
  border-top: 1px solid rgba(201, 146, 63, 0.16);
  padding: 76px 0 58px;
}

.va-footer__grid {
  border-left: 1px solid rgba(255, 255, 255, 0.035);
  border-right: 1px solid rgba(255, 255, 255, 0.035);
}

.va-footer__heading {
  color: var(--va-gold);
  font-weight: 500;
  letter-spacing: 0.28em;
}

.va-footer__social-link {
  border-radius: 0;
  color: var(--va-gold);
  background: transparent;
  border-color: rgba(201, 146, 63, 0.28);
}

.va-footer__social-link:hover {
  background: var(--va-gold);
  border-color: var(--va-gold);
  color: #071415;
}

.va-footer__nav li a,
.va-footer__tagline,
.va-footer__hours-day,
.va-footer__contact-item,
.va-footer__contact-item a {
  color: rgba(245, 238, 222, 0.58);
}

.va-footer__bottom {
  background: #071415;
  border-top: 1px solid rgba(201, 146, 63, 0.12);
}

@media (max-width: 1024px) {
  .va-form--booking .va-form__booking-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .va-lau-menu__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
  .va-menu-book__grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 78px;
  }
  .va-header__main-inner {
    height: 78px;
    gap: 12px;
  }
  .va-header__actions {
    gap: 12px;
  }
  .va-header__online-order {
    min-height: 38px;
    max-width: 190px;
    padding: 8px 18px;
    font-size: 0.76rem;
    white-space: normal;
    line-height: 1.15;
  }
  .va-logo-mark {
    transform: scale(0.72);
    transform-origin: left center;
  }
  .va-hamburger {
    width: 34px;
    height: 22px;
  }
  .va-lau-hero {
    min-height: 72vh !important;
  }
  .va-lau-page-hero .elementor-container,
  .va-lau-page-hero .va-lau-hero__content {
    width: 100%;
    max-width: calc(100vw - 32px);
  }
  .va-lau-page-hero .va-lau-hero__content h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }
  .va-lau-page-hero .va-lau-hero__content p {
    max-width: 100%;
    font-size: 0.95rem;
  }
  .va-lau-reservation {
    margin-top: 0;
  }
  .va-lau-reservation__intro {
    display: block;
    text-align: center;
  }
  .va-lau-reservation__intro span {
    display: block;
    margin-top: 8px;
    text-align: center;
  }
  .va-lau-reservation .va-form {
    display: flex;
  }
  .va-lau-reservation-page .elementor-container,
  .va-lau-reservation .elementor-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
  }
  .va-lau-reservation-page .elementor-shortcode,
  .va-lau-reservation-page .elementor-widget-container,
  .va-lau-reservation .elementor-widget-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 24px 16px;
    overflow: hidden;
  }
  .va-form--booking.va-form--vertical,
  .va-shortcode-wrap,
  .va-form--booking .va-form__row,
  .va-form--booking .va-form__group,
  .va-form--booking .va-form__select-wrap {
    width: 100%;
    min-width: 0;
  }
  .va-form--booking .va-form__input,
  .va-form--booking .va-form__select,
  .va-form--booking .va-form__textarea,
  .va-form--booking .va-form__booking-submit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .va-form--booking .va-form__label {
    text-align: left;
  }
  .va-form--booking .va-form__booking-row,
  .va-lau-reservation .va-form__row {
    grid-template-columns: 1fr;
  }
  .va-lau-menu-cats,
  .va-form--contact .va-form__row {
    grid-template-columns: 1fr;
  }
  .va-menu-book::before,
  .va-menu-book::after {
    display: none;
  }
  .va-menu-section-card {
    padding: 24px 18px;
  }
  .va-menu-section-card__head {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }
  .va-menu-section-card__label {
    width: 38px;
    height: 38px;
  }
  .va-menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px 0;
  }
  .va-menu-item__price {
    justify-self: start;
  }
  .va-lau-heading--left,
  .va-lau-heading--left .va-lau-eyebrow {
    text-align: center;
    justify-content: center;
  }
  .va-lau-split-media {
    min-height: 330px;
  }
  .va-lau-split-copy {
    min-height: auto;
    padding: 54px 24px 116px;
  }
  .va-lau-split-copy .va-lau-heading {
    text-align: center;
  }
  .va-lau-split-copy .va-lau-eyebrow {
    justify-content: center;
  }
  .va-lau-catering .elementor-button-wrapper {
    text-align: center;
  }
  .va-lau-catering .elementor-widget-button {
    margin: -88px 0 58px !important;
  }
}

/* ── 27. UTILITY ──────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--va-gold), var(--va-gold-light));
  border-radius: var(--radius-full);
  margin: 20px 0;
}

.divider-gold--center {
  margin: 20px auto;
}

.va-ornament {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--va-gold);
  letter-spacing: 0.1em;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--va-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Footer review pill (single-row banner) ───────────────── */
.va-footer--modern .va-footer__review-bar {
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 146, 63, 0.14);
}

.va-footer--modern .va-footer__review-bar .container {
  display: flex;
  justify-content: center;
}

.va-footer--modern .va-footer__grid--2 {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  justify-content: start;
  justify-items: start;
  column-gap: clamp(72px, 9vw, 150px);
  row-gap: 40px;
}

.va-footer--modern .va-footer__grid--2 .va-footer__col {
  width: 100%;
  max-width: 440px;
  text-align: left;
}

.va-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border: 1px solid rgba(201, 146, 63, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: #f3ead6;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  font-size: 13px;
}

.va-review-pill:hover {
  border-color: var(--va-gold);
  background: rgba(201, 146, 63, 0.06);
  transform: translateY(-1px);
}

.va-review-pill__google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: rgba(243, 234, 214, 0.85);
}

.va-review-pill__google span {
  letter-spacing: 0.04em;
}

.va-review-pill__score {
  font-size: 18px;
  font-weight: 700;
  color: #f3ead6;
  white-space: nowrap;
}

.va-review-pill__score small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(243, 234, 214, 0.55);
  margin-left: 2px;
}

.va-review-pill__stars {
  display: inline-flex;
  gap: 1px;
}

.va-review-pill__count {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 234, 214, 0.55);
  white-space: nowrap;
}

.va-footer__hours-row--today {
  background: rgba(201, 146, 63, 0.08);
  position: relative;
}

.va-footer__hours-row--today td {
  color: #f3ead6;
  font-weight: 600;
}

.va-footer__hours-row--today .va-footer__hours-day {
  color: var(--va-gold);
}

.va-footer__hours-badge {
  display: inline-block;
  margin-left: 14px;
  padding: 1px 7px;
  background: var(--va-gold);
  color: #071415;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
}

.va-footer__hours-row--today .va-footer__hours-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 16px;
}

.va-mobile-nav__reserve-btn {
  margin-top: 24px;
  width: 100%;
  min-height: 56px;
  color: #071415;
  text-align: center;
}

.va-mobile-nav__order-btn {
  width: 100%;
  min-height: 56px;
  color: #071415;
  text-align: center;
}

.va-form__label .required,
.va-form__source-note .required {
  color: #e54848;
}

.va-form__label .required,
.va-form__source-note .required {
  margin-left: 0;
}

.va-form__source-note .required {
  margin-right: 0;
}

.va-form__source-note {
  text-align: center;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.va-lau-menu-page .va-form__label,
.va-lau-menu-page .va-form__input,
.va-lau-menu-page .va-form__select,
.va-lau-menu-page .va-form__textarea,
.va-lau-menu-page .va-form-message,
.va-lau-menu-page .va-form__notice {
  text-align: center !important;
}

@media (max-width: 768px) {
  .va-header__actions {
    gap: 12px;
  }
  .va-header__online-order {
    min-height: 32px;
    max-width: 124px;
    padding: 7px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }
  .va-lau-menu-page .va-menu-section-card {
    padding: 18px 14px;
  }
  .va-lau-menu-page .va-menu-section-card__head {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .va-lau-menu-page .va-menu-section-card h3 {
    font-size: 1.72rem;
  }
  .va-lau-menu-page .va-menu-section-card__head p {
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .va-lau-menu-page .va-menu-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    padding: 10px 0;
  }
  .va-lau-menu-page .va-menu-item__main {
    gap: 8px;
  }
  .va-lau-menu-page .va-menu-item__no {
    min-width: 18px;
    font-size: 0.7rem;
  }
  .va-lau-menu-page .va-menu-item h4 {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }
  .va-lau-menu-page .va-menu-item p {
    margin-top: 4px;
    font-size: 0.76rem;
    line-height: 1.4;
  }
  .va-lau-menu-page .va-menu-item__price {
    justify-self: end;
    padding-top: 1px;
    font-size: 0.76rem;
    line-height: 1.3;
  }
  .va-form__source-note {
    font-size: 0.76rem;
    line-height: 1.35;
  }
}

@media (max-width: 900px) {
  .va-footer--modern .va-footer__grid--2 {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .va-footer--modern .va-footer__grid--2 {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .va-review-pill {
    flex-wrap: wrap;
    gap: 10px 12px;
    justify-content: center;
    padding: 12px 16px;
    text-align: center;
    border-radius: 16px;
  }
  .va-review-pill__count {
    width: 100%;
    text-align: center;
  }
}

/* ── Home page rating-only review badge ──────────────────── */
.va-home-reviews { text-align: center; }

.va-home-reviews__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 36px;
  border: 1px solid rgba(201, 146, 63, 0.32);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(201, 146, 63, 0.04), rgba(255, 255, 255, 0.01));
  color: #f3ead6;
  text-decoration: none;
  margin-top: 16px;
  min-width: 280px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.va-home-reviews__badge:hover {
  border-color: var(--va-gold);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(201, 146, 63, 0.08), rgba(201, 146, 63, 0.02));
}

.va-home-reviews__google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(243, 234, 214, 0.8);
}

.va-home-reviews__rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.va-home-reviews__score {
  font-family: var(--font-heading, 'Josefin Sans', sans-serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #f3ead6;
}

.va-home-reviews__sep {
  font-size: 18px;
  color: rgba(243, 234, 214, 0.55);
}

.va-home-reviews__stars {
  display: inline-flex;
  gap: 3px;
  margin-top: 2px;
}

.va-home-reviews__count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 214, 0.55);
}

.va-home-reviews__cta {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--va-gold);
  font-weight: 700;
}

@media (max-width: 640px) {
  .va-home-reviews__badge { padding: 22px 24px; min-width: 240px; }
  .va-home-reviews__score { font-size: 44px; }
}

/* ── Home contact form ───────────────────────────────────── */
.va-home-contact {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.va-home-contact .va-lau-heading { margin-bottom: 28px; }

.va-home-contact .va-form--contact {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.va-home-contact .va-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.va-home-contact .va-form__submit-row {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .va-home-contact .va-form__row { grid-template-columns: 1fr; }
}
