/* ───────────────────────────────────────────
   OWLS NEST — Custom Styles
   Fresh · Airy · Pastel · Charcoal + Coral
   ─────────────────────────────────────────── */

/* ── 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 {
  overflow-x: hidden;
}

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

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

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

/* ── Custom Properties ── */
:root {
  --nav-height: 72px;
  --nav-bg: rgba(254, 253, 251, 0.85);
  --nav-bg-scrolled: rgba(254, 253, 251, 0.95);
  --nav-shadow: 0 1px 0 rgba(0,0,0,0.06);
  --coral: #f76e4c;
  --coral-light: #ffe8df;
  --charcoal: #23262b;
  --cream: #fefdfb;
  --cream-light: #fdf8f2;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.section {
  padding: 100px 0;
}

/* ── Section Labels & Titles ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--coral);
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.938rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 20px rgba(247, 110, 76, 0.3);
}

.btn-primary:hover {
  background: #e85532;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247, 110, 76, 0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

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

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

/* ───────────────────────────────────────────
   NAVIGATION
   ─────────────────────────────────────────── */
.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.nav-scrolled.nav-solid {
  background: var(--nav-bg-scrolled);
  box-shadow: var(--nav-shadow);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--charcoal);
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.7; }

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

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

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

.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-links a:hover {
  background: var(--cream-light);
  color: var(--coral);
}

.nav-cta {
  background: var(--coral) !important;
  color: #fff !important;
}

.nav-cta:hover {
  background: #e85532 !important;
  color: #fff !important;
}

/* Mobile menu button */
.nav-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  transition: background var(--transition);
}

.nav-menu-btn:hover { background: var(--cream-light); }

/* ── Mobile Overlay ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(23, 25, 29, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream);
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  transition: background var(--transition);
}

.mobile-close:hover { background: var(--cream-light); }

.mobile-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.mobile-link:hover { background: var(--cream-light); color: var(--coral); }

.mobile-cta {
  margin-top: 16px;
  background: var(--coral);
  color: #fff !important;
  text-align: center;
  border-radius: 100px;
}

.mobile-cta:hover { background: #e85532; }

/* ───────────────────────────────────────────
   HERO
   ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255, 180, 150, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(247, 110, 76, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 50% 80%, rgba(255, 211, 192, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(231, 111, 76, 0.25) 0%, transparent 50%),
    linear-gradient(160deg, #fff4f0 0%, #ffe8df 30%, #ffd3c0 55%, #ffb496 75%, #ff8a66 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 100px;
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-accent {
  font-style: italic;
  color: var(--coral);
}

.hero-subtitle {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: rgba(35, 38, 43, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}

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

.hero-stat-number {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.813rem;
  color: rgba(35, 38, 43, 0.55);
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(35, 38, 43, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--charcoal);
  opacity: 0.4;
  animation: bounce 2s ease infinite;
}

/* ───────────────────────────────────────────
   ABOUT
   ─────────────────────────────────────────── */
.about {
  background: var(--cream);
}

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

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

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 6px solid var(--cream);
}

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

.about-img-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(247, 110, 76, 0.4);
}

.about-img-accent svg {
  width: 36;
  height: 36;
  color: #fff;
}

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

.about-lead {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(35, 38, 43, 0.75);
  margin-bottom: 20px;
}

.about-body {
  font-size: 0.938rem;
  line-height: 1.75;
  color: rgba(35, 38, 43, 0.6);
  margin-bottom: 36px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.about-feature-title {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.about-feature-text {
  font-size: 0.875rem;
  color: rgba(35, 38, 43, 0.6);
  line-height: 1.6;
}

/* ───────────────────────────────────────────
   MENU
   ─────────────────────────────────────────── */
.menu {
  background: var(--cream-light);
}

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

.menu-intro {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(35, 38, 43, 0.6);
}

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

.menu-tab {
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 100px;
  border: 1.5px solid transparent;
  background: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.menu-tab:hover {
  background: #fff;
  color: var(--coral);
}

.menu-tab.active {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 16px rgba(247, 110, 76, 0.3);
}

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

.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.menu-item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.menu-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.menu-item-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.menu-item-tag {
  font-size: 0.688rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-light);
  padding: 4px 10px;
  border-radius: 100px;
}

.menu-item-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(35, 38, 43, 0.6);
}

/* ───────────────────────────────────────────
   GALLERY
   ─────────────────────────────────────────── */
.gallery {
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,38,43,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item:nth-child(1) { grid-column: span 4; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }

/* ───────────────────────────────────────────
   VISIT
   ─────────────────────────────────────────── */
.visit {
  background: var(--cream-light);
}

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

.visit-info { padding: 8px 0; }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

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

.visit-detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--coral-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.visit-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}

.visit-detail p {
  font-size: 0.938rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.visit-detail a {
  color: var(--charcoal);
  transition: color var(--transition);
}

.visit-detail a:hover { color: var(--coral); }

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* ───────────────────────────────────────────
   CONTACT
   ─────────────────────────────────────────── */
.contact {
  background: var(--cream);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text { max-width: 440px; }

.contact-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(35, 38, 43, 0.6);
}

.contact-form {
  background: var(--cream-light);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

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

.form-label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.938rem;
  color: var(--charcoal);
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(247, 110, 76, 0.1);
}

.form-input::placeholder { color: rgba(35,38,43,0.3); }

.form-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='%235c6068' 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 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #e8efe6;
  border-radius: var(--radius-md);
  margin-top: 16px;
  color: #435a39;
  font-size: 0.9rem;
  animation: fadeIn 0.4s ease;
}

.form-success svg { flex-shrink: 0; color: #70905e; }

/* ───────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo svg { color: var(--coral); }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--coral); }

.footer-info, .footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-info a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-info a:hover { color: var(--coral); }

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

/* ───────────────────────────────────────────
   ANIMATIONS
   ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

/* ───────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .about-images { height: 480px; }
  .gallery-grid { grid-template-rows: repeat(2, 220px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  
  /* Nav */
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  
  /* Hero */
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    height: 360px;
    order: -1;
  }
  .about-text { max-width: 100%; }
  
  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(2) { grid-column: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  
  /* Visit */
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  
  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 8px 16px; font-size: 0.813rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item, .gallery-item:nth-child(1) { grid-column: span 1; }
  .gallery-item img { height: 240px; }
}
