/* ============================================
   HAPPY BODY — Café & Bar, Indio CA
   Bold editorial style · Teal + Slate Grey
   ============================================ */

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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(2, 6, 23, 0.08), 0 1px 2px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 4px 16px rgba(2, 6, 23, 0.1), 0 2px 6px rgba(2, 6, 23, 0.06);
  --shadow-lg: 0 12px 40px rgba(2, 6, 23, 0.12), 0 4px 12px rgba(2, 6, 23, 0.08);
  --shadow-xl: 0 24px 60px rgba(2, 6, 23, 0.15), 0 8px 20px rgba(2, 6, 23, 0.1);

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--teal-600);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-logo-text {
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-600);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--teal-700);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--teal-600);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, var(--slate-950) 0%, var(--slate-900) 50%, var(--teal-900) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13, 148, 136, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 56px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-card--main {
  background: rgba(255, 255, 255, 0.07);
}

.hero-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600), var(--teal-400));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-300);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-sub em {
  color: var(--slate-100);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--teal-600);
  color: white;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
  background: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-200);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal-400);
  color: var(--teal-300);
}

.btn--full {
  width: 100%;
}

/* Stat cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(6px);
  border-color: rgba(45, 212, 191, 0.3);
}

.stat-card--1 { animation: float1 3.5s ease-in-out infinite; }
.stat-card--2 { animation: float2 4s ease-in-out infinite; }
.stat-card--3 { animation: float3 3.8s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: var(--teal-400);
  flex-shrink: 0;
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 2px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--slate-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 16px;
  height: 16px;
}

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

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-headline em {
  font-style: italic;
  color: var(--teal-700);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--teal-600);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about-content .section-headline {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.025rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p em {
  font-family: var(--font-serif);
  color: var(--teal-800);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
  font-size: 0.9rem;
  color: var(--slate-500);
}

.about-signature .sig-icon {
  width: 20px;
  height: 20px;
  color: var(--teal-600);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 120px 0;
  background: var(--slate-50);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.menu-header .section-headline {
  margin-bottom: 16px;
}

.menu-intro {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  background: white;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--teal-400);
  color: var(--teal-700);
}

.menu-tab.active {
  background: var(--teal-600);
  border-color: var(--teal-600);
  color: white;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.menu-item {
  background: white;
  padding: 28px 32px;
  transition: background var(--transition);
}

.menu-item:hover {
  background: var(--teal-50);
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 32px;
  font-style: italic;
}

/* ============================================
   VIBE / GALLERY
   ============================================ */
.vibe {
  padding: 120px 0;
  background: white;
}

.vibe-header {
  text-align: center;
  margin-bottom: 56px;
}

.vibe-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.vibe-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.vibe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vibe-card:hover img {
  transform: scale(1.06);
}

.vibe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.vibe-card:hover .vibe-card-overlay {
  opacity: 1;
}

.vibe-card-overlay span {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}

.vibe-card--tall {
  grid-column: span 3;
  grid-row: span 2;
}

.vibe-card--wide {
  grid-column: span 5;
}

.vibe-card--short {
  grid-column: span 4;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .section-eyebrow {
  color: var(--teal-400);
  text-align: center;
}

.testimonials .section-headline {
  text-align: center;
  color: white;
  margin-bottom: 56px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.quote-mark {
  width: 32px;
  height: 32px;
  color: var(--teal-500);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate-300);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-400);
  letter-spacing: 0.04em;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
  padding: 120px 0 0;
  background: var(--slate-50);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.visit-details {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.visit-icon {
  width: 24px;
  height: 24px;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
  font-size: 1rem;
  color: var(--slate-800);
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--teal-700);
  text-decoration: underline;
  text-decoration-color: var(--teal-300);
  text-underline-offset: 4px;
}

.visit-hours {
  margin-top: 40px;
  padding: 24px 28px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.visit-hours h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.visit-hours p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* Form */
.visit-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
}

.visit-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success svg {
  width: 20px;
  height: 20px;
  color: var(--teal-600);
  flex-shrink: 0;
}

/* Map */
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 80px;
}

.visit-map iframe {
  display: block;
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-900);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
  background: var(--teal-600);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--slate-400);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  font-size: 0.9rem;
  color: var(--slate-400);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--teal-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--slate-600);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .stat-card {
    flex: 1;
    min-width: 140px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-width: 500px;
  }

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

  .vibe-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .vibe-card--tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 280px;
  }

  .vibe-card--wide,
  .vibe-card--short {
    grid-column: span 1;
    min-height: 240px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--slate-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 80px;
    min-height: auto;
  }

  .hero-card {
    padding: 36px 28px;
  }

  .hero-card--main {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-card-accent {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-card:hover {
    transform: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .about,
  .menu,
  .vibe,
  .testimonials,
  .visit {
    padding: 80px 0;
  }

  .section-headline {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .vibe-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .vibe-card--tall,
  .vibe-card--wide,
  .vibe-card--short {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }

  .visit-form-wrap {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-card {
    padding: 28px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .menu-item {
    padding: 20px 22px;
  }
}
