/* ========================================
   Monarcas Tacos — Custom Styles
   Bold Editorial · Plum + Amber Palette
======================================== */

/* ── CSS Variables ── */
:root {
  --color-plum-50: #faf5ff;
  --color-plum-100: #f3e8ff;
  --color-plum-200: #e9d5ff;
  --color-plum-300: #d8b4fe;
  --color-plum-400: #c084fc;
  --color-plum-500: #a855f7;
  --color-plum-600: #7B2D8E;
  --color-plum-700: #6b21a8;
  --color-plum-800: #4c1d95;
  --color-plum-900: #2e1065;
  --color-plum-950: #1a0533;
  
  --color-amber-50: #fffbeb;
  --color-amber-100: #fef3c7;
  --color-amber-200: #fde68a;
  --color-amber-300: #fcd34d;
  --color-amber-400: #F5A623;
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  --color-amber-700: #b45309;
  --color-amber-800: #92400e;
  --color-amber-900: #78350f;
  
  --color-dark: #0f0a1a;
  --color-dark-soft: #1a1028;
  --color-light: #fefcf8;
  --color-light-soft: #f8f4ef;
  --color-text: #1a1028;
  --color-text-muted: #6b5f7a;
  --color-text-light: #f5f0ff;
  
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-sm: 0 1px 3px rgba(15, 10, 26, 0.08);
  --shadow-md: 0 4px 20px rgba(15, 10, 26, 0.1);
  --shadow-lg: 0 8px 40px rgba(15, 10, 26, 0.12);
  --shadow-xl: 0 16px 60px rgba(15, 10, 26, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-amber-600);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  transition: transform 0.3s ease;
}

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

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

.nav-logo-icon {
  color: var(--color-amber-400);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-plum-200);
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--color-amber-400);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-amber-400);
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--color-amber-300);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--color-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-plum-200);
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--color-amber-400);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--color-dark) !important;
  background: var(--color-amber-400);
  padding: 14px 28px;
  border-radius: 50px;
  margin-top: var(--space-sm);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--color-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px var(--space-lg) var(--space-3xl);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(123, 45, 142, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left {
  padding-right: var(--space-xl);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--color-amber-400);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-light);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-plum-200);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(245, 166, 35, 0.2);
}

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

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-amber-400);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--color-plum-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 166, 35, 0.3);
}

/* Hero Image Stack */
.hero-right {
  position: relative;
}

.hero-image-stack {
  position: relative;
  height: 650px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-main {
  width: 340px;
  height: 440px;
  top: 0;
  right: 0;
}

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

.hero-img-accent {
  width: 240px;
  height: 160px;
  bottom: 60px;
  left: -20px;
  border: 4px solid var(--color-dark);
}

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

.hero-badge {
  position: absolute;
  bottom: 0;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-amber-400);
  color: var(--color-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-plum-300);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 1;
}

/* ── Section Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 0;
  background: var(--color-light);
}

/* ── Menu Section ── */
.menu-section {
  padding: var(--space-4xl) 0;
  background: var(--color-light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.menu-card {
  background: var(--color-light-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.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.05);
}

.menu-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-amber-400);
  color: var(--color-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}

.menu-card-content {
  padding: var(--space-md);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.menu-card-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.menu-cta {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-plum-950);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.menu-cta p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-light);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-amber-400);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: var(--color-amber-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border: 1.5px solid rgba(245, 166, 35, 0.5);
}

.btn-secondary:hover {
  border-color: var(--color-amber-400);
  background: rgba(245, 166, 35, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-plum-700);
  border: 1.5px solid var(--color-plum-600);
}

.btn-outline:hover {
  background: var(--color-plum-600);
  color: var(--color-light);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-light);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  border-color: var(--color-amber-400);
  color: var(--color-amber-400);
  transform: translateY(-2px);
}

.btn-cta-primary {
  background: var(--color-amber-400);
  color: var(--color-dark);
}

.btn-cta-primary:hover {
  background: var(--color-amber-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ── About Section ── */
.about-section {
  padding: var(--space-4xl) 0;
  background: var(--color-light-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
  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;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-light-soft);
}

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

.about-quote {
  position: absolute;
  bottom: 35%;
  left: -10px;
  background: var(--color-dark);
  color: var(--color-light);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  z-index: 2;
}

.about-quote svg {
  margin-bottom: var(--space-xs);
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-plum-200);
  margin-bottom: var(--space-xs);
}

.about-quote span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: normal;
  color: var(--color-amber-400);
  font-weight: 600;
}

.about-content {
  padding: var(--space-sm) 0;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-plum-200);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-plum-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--color-plum-950);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(123, 45, 142, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(245, 166, 35, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  color: var(--color-amber-400);
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--color-light);
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-plum-200);
  margin-bottom: var(--space-xl);
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Location Section ── */
.location-section {
  padding: var(--space-4xl) 0;
  background: var(--color-light);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.location-info {
  padding: var(--space-xl);
  background: var(--color-plum-950);
  border-radius: var(--radius-xl);
  color: var(--color-light);
}

.location-info .section-title {
  color: var(--color-light);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.location-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(123, 45, 142, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-item h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: 6px;
}

.location-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-plum-100);
}

.location-item a {
  color: var(--color-amber-400);
  transition: color 0.2s ease;
}

.location-item a:hover {
  color: var(--color-amber-300);
  text-decoration: underline;
}

.location-info .btn-outline-light {
  margin-top: var(--space-md);
  width: 100%;
  justify-content: center;
}

.location-map {
  height: 450px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ── Footer ── */
.footer {
  background: var(--color-dark);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-plum-300);
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-light);
}

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

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-plum-200);
  transition: color 0.2s ease;
}

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

.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: var(--space-sm);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--color-plum-200);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--color-amber-400);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--color-amber-300);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-plum-400);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .hero-left {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-eyebrow {
    justify-content: center;
  }
  
  .hero-sub {
    margin: 0 auto var(--space-xl);
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-right {
    display: none;
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .about-images {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .location-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .location-map {
    height: 350px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 100px var(--space-md) var(--space-2xl);
    min-height: auto;
  }
  
  .hero-headline {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto var(--space-3xl);
  }
  
  .about-images {
    height: 380px;
  }
  
  .about-quote {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: var(--space-md);
  }
  
  .about-images {
    height: auto;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero {
    padding: 90px var(--space-sm) var(--space-xl);
  }
  
  .hero-headline {
    font-size: 1.75rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .reveal {
    transition: none;
  }
  
  .menu-card:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
}
