/* ═══════════════════════════════════════════════════════════════
   THE VELVET TABLE — style.css
   Palette: Deep burgundy, warm cream, muted gold, charcoal
   Fonts : Playfair Display (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* colours */
  --vt-bg: #0f0a0c;
  --vt-surface: #1a1015;
  --vt-card: #231820;
  --vt-burgundy: #7a1b3e;
  --vt-burgundy-light: #a32858;
  --vt-gold: #c9a87c;
  --vt-gold-dim: rgba(201, 168, 124, 0.15);
  --vt-cream: #f2ece4;
  --vt-cream-dim: rgba(242, 236, 228, 0.7);
  --vt-text: #ddd5cc;
  --vt-text-muted: #998f85;
  --vt-border: rgba(201, 168, 124, 0.12);

  /* type */
  --ff-heading: "Playfair Display", Georgia, serif;
  --ff-body: "Inter", system-ui, sans-serif;

  /* spacing */
  --section-y: clamp(4.5rem, 10vw, 8rem);
  --gutter: clamp(1rem, 3vw, 2rem);

  /* misc */
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--vt-text);
  background: var(--vt-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--vt-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--vt-cream);
}

::selection {
  background: var(--vt-burgundy);
  color: var(--vt-cream);
}

/* ── UTILITIES ───────────────────────────────────────────────── */
.vt-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.center {
  text-align: center;
}

/* ── SECTION TYPOGRAPHY ──────────────────────────────────────── */
.vt-section {
  padding: var(--section-y) 0;
}

.vt-section__eyebrow {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vt-gold);
  margin-bottom: 0.75rem;
}

.vt-section__heading {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--vt-cream);
  margin-bottom: 1rem;
}

.vt-section__lead {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--vt-text-muted);
  font-size: 1.05rem;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.vt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.vt-btn--primary {
  background: var(--vt-burgundy);
  color: var(--vt-cream);
}
.vt-btn--primary:hover {
  background: var(--vt-burgundy-light);
  color: #fff;
}

.vt-btn--ghost {
  background: transparent;
  color: var(--vt-cream);
  border: 1.5px solid rgba(242, 236, 228, 0.35);
}
.vt-btn--ghost:hover {
  border-color: var(--vt-cream);
  background: rgba(242, 236, 228, 0.07);
  color: #fff;
}

.vt-btn--block {
  width: 100%;
}

.vt-link {
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── HEADER ──────────────────────────────────────────────────── */
.vt-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
}
.vt-header.scrolled {
  background: rgba(15, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--vt-border);
}

.vt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem var(--gutter);
}

/* logo */
.vt-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--vt-cream);
  text-decoration: none;
}
.vt-logo__icon {
  color: var(--vt-gold);
}
.vt-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.vt-logo__the {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vt-gold);
}
.vt-logo__name {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 500;
}

/* burger */
.vt-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1000;
}
.vt-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--vt-cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.vt-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vt-burger.open span:nth-child(2) {
  opacity: 0;
}
.vt-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* nav */
.vt-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.vt-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--vt-cream-dim);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.vt-nav a:hover {
  color: var(--vt-gold);
}
.vt-nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1.5px solid var(--vt-burgundy) !important;
  border-radius: 50px !important;
  color: var(--vt-cream) !important;
  background: var(--vt-burgundy);
}
.vt-nav__cta:hover {
  background: var(--vt-burgundy-light) !important;
  border-color: var(--vt-burgundy-light) !important;
  color: #fff !important;
}

/* backdrop for mobile */
.vt-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 800;
  opacity: 0;
  transition: opacity var(--transition);
}
.vt-backdrop.visible {
  display: block;
  opacity: 1;
}

/* ── HERO ────────────────────────────────────────────────────── */
.vt-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(122, 27, 62, 0.35), transparent 70%),
    var(--vt-bg);
}

.vt-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(201, 168, 124, 0.015) 2px,
      rgba(201, 168, 124, 0.015) 4px
    );
  pointer-events: none;
}

.vt-hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem var(--gutter) 4rem;
  max-width: 720px;
}

.vt-hero__tagline {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vt-gold);
  margin-bottom: 1.2rem;
}

.vt-hero__title {
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--vt-cream);
  margin-bottom: 1.2rem;
}
.vt-hero__title em {
  font-style: italic;
  color: var(--vt-gold);
}

.vt-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--vt-text-muted);
  margin-bottom: 2rem;
}

.vt-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.vt-hero__arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--vt-gold);
  animation: vt-bounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes vt-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE STRIP ───────────────────────────────────────────── */
.vt-marquee {
  background: var(--vt-burgundy);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
}

.vt-marquee__track {
  display: inline-flex;
  gap: 2.5rem;
  animation: vt-scroll 28s linear infinite;
}

.vt-marquee__track span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--vt-cream);
  flex-shrink: 0;
}

@keyframes vt-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── OUR STORY ───────────────────────────────────────────────── */
.vt-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vt-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vt-story__img {
  position: relative;
}

.vt-story__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--vt-burgundy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--vt-bg);
}
.vt-story__badge strong {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--vt-gold);
  line-height: 1;
}
.vt-story__badge span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vt-cream);
  line-height: 1.3;
}

.vt-story__text p {
  margin-bottom: 1rem;
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.vt-stats {
  background: var(--vt-surface);
  border-top: 1px solid var(--vt-border);
  border-bottom: 1px solid var(--vt-border);
  padding: 2.5rem 0;
}

.vt-stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.vt-stats__number {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--vt-gold);
  line-height: 1;
}

.vt-stats__label {
  display: block;
  font-size: 0.78rem;
  color: var(--vt-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ── MENU ────────────────────────────────────────────────────── */
.vt-menu {
  background: var(--vt-surface);
}

.vt-menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.vt-menu__tab {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--vt-text-muted);
  background: none;
  border: 1.5px solid var(--vt-border);
  border-radius: 50px;
  padding: 0.55rem 1.6rem;
  cursor: pointer;
  transition: all var(--transition);
}
.vt-menu__tab:hover {
  color: var(--vt-cream);
  border-color: var(--vt-gold);
}
.vt-menu__tab.active {
  background: var(--vt-burgundy);
  border-color: var(--vt-burgundy);
  color: var(--vt-cream);
}

.vt-menu__panel {
  display: none;
}
.vt-menu__panel.active {
  display: block;
  animation: vt-fadeUp 0.45s ease;
}

@keyframes vt-fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vt-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* dish card */
.vt-dish {
  background: var(--vt-card);
  border: 1px solid var(--vt-border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.vt-dish:hover {
  border-color: var(--vt-gold);
  transform: translateY(-3px);
}

.vt-dish__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.vt-dish__name {
  font-family: var(--ff-heading);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--vt-cream);
}

.vt-dish__price {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vt-gold);
  white-space: nowrap;
}

.vt-dish__desc {
  font-size: 0.88rem;
  color: var(--vt-text-muted);
  line-height: 1.55;
}

.vt-dish__tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  background: var(--vt-gold-dim);
  color: var(--vt-gold);
}

/* ── COCKTAILS ───────────────────────────────────────────────── */
.vt-cocktails__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vt-cocktail {
  background: var(--vt-card);
  border: 1px solid var(--vt-border);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.vt-cocktail:hover {
  border-color: var(--vt-burgundy-light);
  transform: translateY(-4px);
}

.vt-cocktail__icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.vt-cocktail h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--vt-cream);
  margin-bottom: 0.5rem;
}

.vt-cocktail p {
  font-size: 0.86rem;
  color: var(--vt-text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.vt-cocktail__price {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vt-gold);
}

/* ── PARALLAX QUOTE ──────────────────────────────────────────── */
.vt-parallax {
  position: relative;
  padding: 6rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(122, 27, 62, 0.3), transparent 80%),
    var(--vt-bg);
  overflow: hidden;
}

.vt-parallax__overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(201, 168, 124, 0.03) 60px,
    rgba(201, 168, 124, 0.03) 61px
  );
  pointer-events: none;
}

.vt-parallax__quote {
  position: relative;
  max-width: 700px;
}

.vt-parallax__quote p {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.55;
  color: var(--vt-cream);
  margin-bottom: 1rem;
}

.vt-parallax__quote footer {
  font-size: 0.85rem;
  color: var(--vt-gold);
  letter-spacing: 0.05em;
}

/* ── TEAM (Flip Cards) ───────────────────────────────────────── */
.vt-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vt-member {
  text-align: center;
}

.vt-member__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: transform var(--transition);
}
.vt-member:hover .vt-member__photo {
  transform: scale(1.03);
}

.vt-member h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--vt-cream);
  margin-bottom: 0.15rem;
}

.vt-member__role {
  font-size: 0.8rem;
  color: var(--vt-gold);
  letter-spacing: 0.04em;
}

/* ── REVIEWS CAROUSEL ────────────────────────────────────────── */
.vt-reviews {
  background: var(--vt-surface);
}

.vt-reviews__carousel {
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.vt-reviews__track {
  display: flex;
  transition: transform 0.5s ease;
}

.vt-review {
  flex: 0 0 100%;
  padding: 2rem 1.5rem;
  text-align: center;
}

.vt-review__stars {
  font-size: 1.1rem;
  color: var(--vt-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.vt-review p {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--vt-cream);
  margin-bottom: 1.2rem;
}

.vt-review footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vt-review footer strong {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--vt-cream);
}

.vt-review footer span {
  font-size: 0.78rem;
  color: var(--vt-text-muted);
}

.vt-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.vt-reviews__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--vt-border);
  background: none;
  color: var(--vt-cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.vt-reviews__btn:hover {
  border-color: var(--vt-gold);
  color: var(--vt-gold);
}

.vt-reviews__dots {
  display: flex;
  gap: 0.5rem;
}

.vt-reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vt-border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.vt-reviews__dot.active {
  background: var(--vt-gold);
  transform: scale(1.3);
}

/* ── RESERVATION ─────────────────────────────────────────────── */
.vt-reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.vt-reserve__info p {
  margin-bottom: 1.5rem;
}

.vt-reserve__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vt-reserve__details li {
  display: flex;
  gap: 1rem;
}

.vt-reserve__details strong {
  min-width: 80px;
  font-weight: 600;
  color: var(--vt-gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.vt-reserve__details span {
  font-size: 0.92rem;
  line-height: 1.5;
}

.vt-reserve__details a {
  color: var(--vt-cream);
}

/* form */
.vt-reserve__form {
  background: var(--vt-card);
  border: 1px solid var(--vt-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.vt-field {
  margin-bottom: 1.1rem;
}

.vt-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vt-gold);
  margin-bottom: 0.35rem;
}

.vt-field input,
.vt-field select,
.vt-field textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--vt-border);
  border-radius: var(--radius);
  background: var(--vt-surface);
  color: var(--vt-cream);
  transition: border-color var(--transition);
}

.vt-field input:focus,
.vt-field select:focus,
.vt-field textarea:focus {
  outline: none;
  border-color: var(--vt-gold);
}

.vt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vt-reserve__disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--vt-text-muted);
  margin-top: 0.8rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.vt-footer {
  border-top: 1px solid var(--vt-border);
  padding-top: 3rem;
}

.vt-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}

.vt-footer__brand .vt-logo__name {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  color: var(--vt-cream);
}

.vt-footer__brand p {
  font-size: 0.85rem;
  color: var(--vt-text-muted);
  margin-top: 0.3rem;
}

.vt-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.vt-footer__links a {
  font-size: 0.85rem;
  color: var(--vt-text-muted);
}
.vt-footer__links a:hover {
  color: var(--vt-gold);
}

.vt-footer__social {
  display: flex;
  gap: 1rem;
}

.vt-footer__social a {
  color: var(--vt-text-muted);
  transition: color var(--transition);
}
.vt-footer__social a:hover {
  color: var(--vt-gold);
}

.vt-footer__copy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--vt-text-muted);
  padding: 1.2rem 0;
  border-top: 1px solid var(--vt-border);
}

.vt-footer__copy a {
  color: var(--vt-gold);
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal      { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right{ transform: translateX(40px);  }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vt-cocktails__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vt-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* nav becomes drawer */
  .vt-burger {
    display: flex;
  }

  .vt-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--vt-surface);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 850;
  }
  .vt-nav.open {
    transform: translateX(0);
  }

  .vt-nav ul {
    flex-direction: column;
    gap: 1.4rem;
    align-items: flex-start;
  }

  .vt-nav a {
    font-size: 1rem;
  }

  /* story */
  .vt-story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* stats */
  .vt-stats__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* menu */
  .vt-menu__grid {
    grid-template-columns: 1fr;
  }

  /* cocktails */
  .vt-cocktails__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* reserve */
  .vt-reserve__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vt-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vt-footer__links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vt-cocktails__grid {
    grid-template-columns: 1fr;
  }

  .vt-team__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .vt-field-row {
    grid-template-columns: 1fr;
  }

  .vt-hero__title {
    font-size: 2.2rem;
  }

  .vt-stats__row {
    grid-template-columns: 1fr 1fr;
  }
}
