/* ═══════════════════════════════════════════════════════
   MARIA BONITA — Premium Landing Page Stylesheet
   Dark Luxury · Gold Accents · Cinematic
   ═══════════════════════════════════════════════════════ */

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #A07D3F;
  --gold-glow: rgba(201, 169, 110, 0.15);
  --black: #060606;
  --black-rich: #0A0A0A;
  --black-card: #0F0F0F;
  --black-surface: #141414;
  --black-elevated: #1A1A1A;
  --white: #F5F0E8;
  --white-dim: #A89F90;
  --white-muted: #6B6560;
  --pink: #E91E8C;
  --border: rgba(201, 169, 110, 0.1);
  --border-hover: rgba(201, 169, 110, 0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══════ PRELOADER ═══════ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  height: 60px; margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.3));
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar { width: 120px; height: 1px; background: rgba(201, 169, 110, 0.15); margin: 0 auto; overflow: hidden; }
.preloader-fill { height: 100%; width: 0; background: var(--gold); animation: preload 1.5s var(--ease-smooth) forwards; }
@keyframes preload { to { width: 100%; } }
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ═══════ NAVBAR ═══════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all 0.4s var(--ease-smooth);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 42px; filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.2)); transition: transform 0.3s ease; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white-dim); position: relative; transition: color 0.3s ease; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-smooth);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }
.nav-menu-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border: 1px solid var(--border-hover); border-radius: 24px;
  color: var(--gold); transition: all 0.3s ease;
}
.nav-menu-btn::after { display: none; }
.nav-menu-btn:hover { background: rgba(201, 169, 110, 0.08); border-color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 20px;
  font-size: 10px; letter-spacing: 1.5px; font-weight: 500; transition: all 0.3s ease;
}
.lang-toggle:hover { border-color: var(--border-hover); }
.lang-active { color: var(--gold); }
.lang-divider { color: var(--white-muted); }
.lang-inactive { color: var(--white-muted); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav-hamburger span { display: block; height: 1px; background: var(--gold); transition: all 0.3s var(--ease-smooth); transform-origin: center; }
.nav-hamburger span:nth-child(1) { width: 100%; }
.nav-hamburger span:nth-child(2) { width: 70%; margin-left: auto; }
.nav-hamburger span:nth-child(3) { width: 40%; margin-left: auto; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { width: 100%; transform: rotate(-45deg) translateY(-6px); }

/* ═══════ MOBILE MENU ═══════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6, 6, 6, 0.97); backdrop-filter: blur(30px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-smooth);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { text-align: center; }
.mobile-link {
  display: block; font-family: var(--font-display); font-size: 32px; font-weight: 400;
  letter-spacing: 3px; color: var(--white-dim); padding: 14px 0;
  transition: all 0.3s ease; transform: translateY(20px); opacity: 0;
}
.mobile-menu.open .mobile-link { transform: translateY(0); opacity: 1; }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-link:hover { color: var(--gold); }
.mobile-menu-btn {
  font-size: 18px; color: var(--gold); border: 1px solid var(--border-hover);
  border-radius: 40px; padding: 14px 36px; margin-top: 16px; display: inline-block;
}
.mobile-menu-footer { margin-top: 40px; opacity: 0; transition: opacity 0.4s ease 0.4s; }
.mobile-menu.open .mobile-menu-footer { opacity: 1; }
.mobile-menu-footer a { display: block; color: var(--gold); font-family: var(--font-elegant); font-size: 18px; letter-spacing: 1px; margin-bottom: 8px; }
.mobile-menu-footer p { color: var(--white-muted); font-size: 12px; letter-spacing: 2px; }

/* ═══════ HERO ═══════ */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,6,0.6) 0%, rgba(6,6,6,0.3) 30%, rgba(6,6,6,0.25) 50%, rgba(6,6,6,0.5) 70%, rgba(6,6,6,0.95) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(201,169,110,0.06) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0; animation: float linear infinite; }
@keyframes float { 0% { opacity: 0; transform: translateY(0) scale(0); } 10% { opacity: 0.6; transform: scale(1); } 90% { opacity: 0.2; } 100% { opacity: 0; transform: translateY(-100vh) scale(0); } }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-badge { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 28px; }
.hero-badge span:not(.hero-badge-line) { font-size: 11px; font-weight: 400; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); }
.hero-badge-line { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-title { font-family: var(--font-display); line-height: 0.9; margin-bottom: 8px; }
.hero-title-line { display: block; font-size: clamp(60px, 12vw, 140px); font-weight: 400; letter-spacing: 8px; color: var(--white); text-shadow: 0 0 80px rgba(201, 169, 110, 0.1); }
.hero-title-accent { font-style: italic; color: var(--gold); text-shadow: 0 0 60px rgba(201, 169, 110, 0.2); }
.hero-tagline { font-family: var(--font-elegant); font-size: clamp(15px, 2.5vw, 20px); font-weight: 300; letter-spacing: 3px; color: var(--white-dim); margin-top: 16px; }
.hero-ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 28px 0 36px; }
.ornament-line { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.ornament-diamond { width: 6px; height: 6px; border: 1px solid var(--gold); transform: rotate(45deg); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1px; height: 50px; position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; width: 100%; height: 100%; background: linear-gradient(180deg, transparent, var(--gold)); animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { to { top: 100%; } }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border-radius: 2px; transition: all 0.4s var(--ease-smooth); position: relative; overflow: hidden;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--black); }
.btn-gold:hover { box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--border-hover); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(201, 169, 110, 0.06); border-color: var(--gold); }

/* ═══════ MARQUEE ═══════ */
.marquee { padding: 18px 0; background: var(--black-rich); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marqueeScroll 30s linear infinite; white-space: nowrap; }
.marquee-track span { font-size: 11px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase; color: var(--white-muted); flex-shrink: 0; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ═══════ SECTION LABELS ═══════ */
.section-label { font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-heading { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 400; line-height: 1.15; letter-spacing: 2px; margin-bottom: 24px; }
.section-heading span { display: block; }
.section-heading .accent { font-style: italic; color: var(--gold); }

/* ═══════ ABOUT ═══════ */
.about { padding: 120px 0; position: relative; }
.about::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.03) 0%, transparent 60%); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text { font-family: var(--font-elegant); font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--white-dim); letter-spacing: 0.3px; margin-bottom: 40px; }
.about-stats { display: flex; gap: 40px; }
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--gold); margin-bottom: 6px; }
.stat-label { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--white-muted); }
.about-image-stack { position: relative; height: 500px; }
.about-img { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.about-img:hover img { transform: scale(1.05); }
.about-img-1 { width: 65%; height: 75%; top: 0; left: 0; z-index: 2; }
.about-img-2 { width: 55%; height: 60%; bottom: 0; right: 0; z-index: 3; }
.about-frame { position: absolute; width: 50%; height: 50%; top: 20%; right: 10%; border: 1px solid var(--border-hover); border-radius: 4px; z-index: 1; }

/* ═══════ SERVICES ═══════ */
.services { padding: 120px 0; position: relative; overflow: hidden; }
.services-bg { position: absolute; inset: 0; z-index: 0; }
.services-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; filter: blur(2px); }
.services-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--black) 0%, rgba(6,6,6,0.7) 50%, var(--black) 100%); }
.services .container { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  padding: 40px 28px; background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 4px;
  transition: all 0.4s var(--ease-smooth); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent); opacity: 0; transition: opacity 0.4s ease; }
.service-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; margin-bottom: 24px; filter: brightness(0) saturate(100%) invert(72%) sepia(18%) saturate(780%) hue-rotate(6deg) brightness(92%) contrast(87%); }
.service-icon img { width: 100%; height: 100%; }
.service-icon-inline { filter: none; }
.service-icon-inline svg { width: 48px; height: 48px; }
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--white); letter-spacing: 1px; margin-bottom: 12px; }
.service-card p { font-family: var(--font-elegant); font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--white-dim); }

/* ═══════ QUOTE ═══════ */
.quote-section { padding: 100px 0; text-align: center; position: relative; }
.quote-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.04) 0%, transparent 50%); }
.quote-ornament { margin-bottom: 32px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote { font-family: var(--font-display); font-size: clamp(24px, 4vw, 42px); font-weight: 400; font-style: italic; color: var(--white-dim); letter-spacing: 1px; line-height: 1.5; }
.quote em { color: var(--gold); font-style: italic; }

/* ═══════ GALLERY ═══════ */
.gallery { padding: 120px 0; background: var(--black-rich); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 8px; margin-top: 48px; }
.gallery-item { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; }
.gallery-item-wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 6, 6, 0.8) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.gallery-3d { text-align: center; margin-top: 40px; }

/* ═══════ RESERVE ═══════ */
.reserve { padding: 120px 0; position: relative; overflow: hidden; }
.reserve-bg { position: absolute; inset: 0; z-index: 0; }
.reserve-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.reserve-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 40%, rgba(6,6,6,0.6) 100%); }
.reserve .container { position: relative; z-index: 1; }
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.reserve-text { font-family: var(--font-elegant); font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--white-dim); margin-bottom: 36px; }
.reserve-contacts { display: flex; flex-direction: column; gap: 16px; }
.reserve-contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: rgba(15, 15, 15, 0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 4px; transition: all 0.3s ease;
}
.reserve-contact-item:hover { border-color: var(--border-hover); transform: translateX(4px); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201, 169, 110, 0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold);
}
.contact-label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); margin-bottom: 2px; }
.contact-value { font-family: var(--font-elegant); font-size: 16px; font-weight: 400; color: var(--white); }

/* Hours Card */
.reserve-hours-card {
  padding: 40px 32px; background: rgba(15, 15, 15, 0.8); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 8px; text-align: center;
}
.reserve-hours-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  color: var(--gold); margin-bottom: 28px; letter-spacing: 2px;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.hours-row span:first-child { font-family: var(--font-elegant); font-size: 16px; color: var(--white-dim); }
.hours-row span:last-child { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--white); letter-spacing: 1px; }
.hours-divider { height: 1px; background: var(--border); margin: 16px 0; }
.hours-note { font-family: var(--font-elegant); font-size: 14px; font-style: italic; color: var(--white-muted); margin-bottom: 24px; }
.hours-btn { width: 100%; justify-content: center; }

/* ═══════ FOOTER ═══════ */
.footer { padding: 80px 0 0; background: var(--black-rich); border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-logo { height: 50px; margin-bottom: 16px; filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.15)); }
.footer-tagline { font-family: var(--font-elegant); font-size: 16px; font-weight: 300; font-style: italic; color: var(--gold); letter-spacing: 1px; margin-bottom: 12px; }
.footer-address { font-family: var(--font-elegant); font-size: 15px; font-weight: 300; color: var(--white-muted); line-height: 1.6; }
.footer-nav h4 { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-nav a { display: block; font-family: var(--font-elegant); font-size: 15px; font-weight: 300; color: var(--white-muted); padding: 6px 0; transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 11px; font-weight: 300; color: var(--white-muted); letter-spacing: 1px; }

/* ═══════ FAB ═══════ */
.fab-menu {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 900;
  padding: 14px 22px; background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 30px; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3); transition: all 0.3s ease;
}
.fab-menu:active { transform: scale(0.95); }

/* ═══════ REVEALS ═══════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-stack { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .fab-menu { display: flex; }
  .hero-title-line { letter-spacing: 4px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about-image-stack { height: 320px; }
  .about-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item-wide { grid-column: span 2; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-top .footer-brand { grid-column: span 1; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about, .services, .gallery, .reserve { padding: 80px 0; }
  .quote-section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item-wide { grid-column: span 1; }
  .about-image-stack { height: 280px; }
  .about-img-1 { width: 70%; height: 80%; }
  .about-img-2 { width: 50%; height: 55%; }
}
