/* ============================================
   CABO Cool Scoops & Coffee — Styles
   Palette: Emerald Green (#047857) + Cream (#F5F0E8)
   Fonts: Playfair Display + Inter
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald-900: #042e23;
  --emerald-800: #064e3b;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-100: #FDF8F0;
  --cream-200: #F5F0E8;
  --cream-300: #EDE5D8;
  --neutral-50: #FAFAF8;
  --neutral-100: #F4F4F0;
  --neutral-200: #E8E8E2;
  --neutral-400: #9A9A94;
  --neutral-600: #5A5A56;
  --neutral-800: #2A2A26;
  --neutral-900: #1A1A16;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(4,46,35,0.06), 0 1px 2px rgba(4,46,35,0.04);
  --shadow-md: 0 4px 16px rgba(4,46,35,0.08), 0 2px 6px rgba(4,46,35,0.04);
  --shadow-lg: 0 12px 40px rgba(4,46,35,0.12), 0 4px 12px rgba(4,46,35,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--cream-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--emerald-900); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: rgba(4,120,87,0.08);
  border: 1px solid rgba(4,120,87,0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--emerald-900);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--neutral-600);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-700);
  color: #fff;
  border-color: var(--emerald-700);
}
.btn-primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--emerald-700);
  border-color: var(--emerald-700);
}
.btn-outline:hover {
  background: var(--emerald-700);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--emerald-900);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,240,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(4,120,87,0.08);
  transition: var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--emerald-900);
}

.logo-accent { color: var(--emerald-700); }

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

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-600);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--emerald-700); background: rgba(4,120,87,0.06); }

.btn-nav {
  display: none;
  font-size: 0.875rem;
  padding: 0.5rem 1.125rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Overlay ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4,46,35,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-nav-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream-100);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.active .mobile-nav-inner { transform: translateX(0); }

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald-900);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-200);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--emerald-700); padding-left: 0.5rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--emerald-700);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(16,185,129,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(4,46,35,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
}

.hero-content { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 50%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-visual {
  position: relative;
  height: 640px;
}

.hero-image-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 85%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-image-float {
  position: absolute;
  left: -10%;
  bottom: 8%;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.2);
}
.hero-image-float img { width: 100%; height: 100%; object-fit: cover; }

.float-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(4,46,35,0.85), transparent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Features Strip ── */
.features-strip {
  background: var(--emerald-700);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
}

.feature-item strong {
  display: block;
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.feature-item span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── Menu Section ── */
.menu-section {
  padding: 6rem 0;
  background: var(--cream-100);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc { margin: 0 auto; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  transition: var(--transition);
}
.menu-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(4,120,87,0.2);
}

.menu-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }

.menu-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--emerald-700);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.menu-card-body { padding: 1.75rem; }

.menu-card-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-700);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu-card-title {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--emerald-900);
}

.menu-card-desc {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.menu-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-card-list li {
  font-size: 0.875rem;
  color: var(--neutral-800);
  padding-left: 1.25rem;
  position: relative;
}
.menu-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--emerald-500);
  border-radius: 50%;
}

.menu-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(4,120,87,0.06);
  border: 1px solid rgba(4,120,87,0.12);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--neutral-600);
  text-align: center;
  justify-content: center;
}
.menu-note svg { flex-shrink: 0; color: var(--emerald-700); }

/* ── About Section ── */
.about-section {
  padding: 6rem 0;
  background: var(--cream-200);
}

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

.about-visual {
  position: relative;
  height: 700px;
}

.about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-200);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-content { max-width: 520px; }

.about-lead {
  font-size: 1.125rem;
  color: var(--neutral-800);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.about-content > p {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--emerald-700);
  color: #fff;
}

.value-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--emerald-900);
  margin-bottom: 0.125rem;
}

.value-item span {
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

/* ── Visit Section ── */
.visit-section {
  padding: 6rem 0;
  background: var(--cream-100);
}

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

.visit-content { max-width: 520px; }

.visit-desc {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(4,120,87,0.08);
  color: var(--emerald-700);
}

.visit-detail strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--emerald-900);
  margin-bottom: 0.125rem;
}

.visit-detail span,
.visit-detail a {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.6;
}
.visit-detail a:hover { color: var(--emerald-700); text-decoration: underline; }

.visit-visual { }

.visit-map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-map-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.map-link {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--emerald-700);
  padding: 0.625rem 1.125rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.map-link:hover { background: var(--emerald-800); transform: translateY(-2px); }

/* ── Contact Section ── */
.contact-section {
  padding: 6rem 0;
  background: var(--emerald-900);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-header { margin-bottom: 3rem; }

.contact-header .section-tag { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.contact-header .section-title { color: #fff; }
.contact-header .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; }

.contact-form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--emerald-900); color: #fff; }

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

.contact-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-success h3 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.contact-success p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

/* ── Footer ── */
.footer {
  background: var(--neutral-900);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-light .logo-text { color: #fff; }

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--emerald-500); }
.footer-links span { font-size: 0.9375rem; line-height: 1.6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ── Reveal Animation ── */
.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);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 2rem; }
  .hero-visual { height: 520px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 3rem 0 4rem;
    text-align: center;
  }

  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-visual {
    display: none;
  }

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

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

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual { height: 420px; }

  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero-headline { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .section-title { font-size: 1.75rem; }
}
