/* ========================================
   Tea LaLa Boba & Che — Styles
   Teal + Slate Grey | Warm & Friendly
   ======================================== */

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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --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;

  --warm-50: #fefce8;
  --warm-100: #fef9c3;
  --warm-200: #fef08a;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
  --shadow-teal: 0 8px 24px rgba(13, 148, 136, 0.2);

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-700);
  background: var(--slate-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--teal-600);
  border-color: var(--teal-600);
}

.btn-outline:hover {
  background: var(--teal-600);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* SECTION HEADERS */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-100);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* SCROLL REVEAL */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  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 var(--slate-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--slate-800);
  text-decoration: none;
}

.logo:hover { color: var(--slate-800); }

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

.logo-text { white-space: nowrap; }
.logo-text .accent { color: var(--teal-600); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate-600);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--teal-600);
  background: var(--teal-50);
}

.main-nav .btn-primary {
  margin-left: 8px;
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger { position: relative; }
.hamburger::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
}
.hamburger::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--teal-50) 50%, var(--slate-100) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--teal-200);
  top: -100px;
  right: -100px;
  animation: float-blob 8s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--warm-200);
  bottom: -50px;
  left: -50px;
  animation: float-blob 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--teal-300);
  top: 40%;
  left: 45%;
  animation: float-blob 6s ease-in-out infinite;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--teal-700);
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--teal-600); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

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

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-card-main {
  width: 340px;
  height: 400px;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--teal-700);
  box-shadow: var(--shadow-md);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* FLOATING CARDS */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  color: #fff;
}

.float-card-icon svg {
  width: 20px;
  height: 20px;
}

.float-card-icon--cheese {
  background: linear-gradient(135deg, var(--warm-200), var(--warm-100));
  color: var(--slate-700);
}

.float-card-icon--heart {
  background: linear-gradient(135deg, #fda4af, #fb7185);
}

.float-card-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-800);
}

.float-card-sub {
  font-size: 0.78rem;
  color: var(--slate-400);
  line-height: 1.3;
}

.float-card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.float-card-2 {
  top: 50%;
  left: -40px;
  animation-delay: 1s;
}

.float-card-3 {
  bottom: 30px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========================================
   FEATURES STRIP
   ======================================== */
.features-strip {
  background: #fff;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  padding: 40px 0;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  color: var(--teal-600);
  flex-shrink: 0;
}

.feature-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.feature-item span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-700);
}

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

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 48px;
}

.menu-cat-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--slate-600);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-cat-btn:hover {
  border-color: var(--teal-300);
  color: var(--teal-600);
}

.menu-cat-btn.active {
  background: var(--teal-600);
  border-color: var(--teal-600);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 320/220;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--slate-800);
  margin-bottom: 8px;
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #fff;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-600);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-teal);
  white-space: nowrap;
}

.about-experience-badge .exp-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.about-experience-badge .exp-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--slate-100);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat .stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--teal-600);
}

.about-stat .stat-label {
  font-size: 0.85rem;
  color: var(--slate-400);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--slate-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item--large {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item--large img { aspect-ratio: 600/400; }
.gallery-item:not(.gallery-item--tall) img { aspect-ratio: 400/300; }
.gallery-item--tall img { aspect-ratio: 400/500; }

/* ========================================
   VISIT SECTION
   ======================================== */
.visit-section {
  padding: 100px 0;
  background: #fff;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-info .section-tag { margin-bottom: 16px; }
.visit-info .section-title { margin-bottom: 16px; }

.visit-desc {
  font-size: 1.05rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--teal-200);
  background: var(--teal-50);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-600);
  border-radius: var(--radius-md);
  color: #fff;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.hours-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  border-radius: var(--radius-lg);
  color: #fff;
}

.hours-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.hours-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.hours-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.95rem;
}

.hours-list .day { color: rgba(255, 255, 255, 0.8); }
.hours-list .time { font-weight: 600; }

.hours-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

/* FORM */
.form-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--slate-800);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--slate-500);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-700);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-700);
  background: #fff;
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder {
  color: var(--slate-300);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.form-success .success-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-600);
  border-radius: var(--radius-full);
  color: #fff;
  flex-shrink: 0;
}

.form-success .success-icon svg {
  width: 20px;
  height: 20px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--teal-800);
  font-weight: 500;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--slate-700);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-400);
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

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

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

.footer-bottom a { color: var(--slate-400); }

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

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .hero-visual { min-height: 400px; }

  .float-card-1 { right: 10px; }
  .float-card-2 { left: 10px; }
  .float-card-3 { right: 10px; }

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

  .about-images { max-width: 500px; margin: 0 auto; }

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

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

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

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .main-nav .btn-primary { margin-left: 0; }

  .hero { padding: 100px 0 60px; min-height: auto; }

  .hero-card-main {
    width: 280px;
    height: 340px;
  }

  .float-card { display: none; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-item { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }

  .menu-section, .about-section, .gallery-section, .visit-section { padding: 72px 0; }

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

  .gallery-item--large { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  .form-card { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

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

  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

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

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }

  .about-stats { flex-direction: column; gap: 20px; }
  .about-img-secondary { right: -10px; bottom: -20px; }

  .hours-card { flex-direction: column; gap: 12px; }
}
