@import url('https://fonts.googleapis.com/css2?family=Sanchez:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Modern Harvest Palette */
  --color-red: #E8533B;
  --color-dark: #2D2416;
  --color-gold: #F5D89C;
  --color-cream: #FFF8E7;
  --color-espresso: #5D3D2E;

  /* Fonts */
  --font-heading: 'Sanchez', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-cream);
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover {
  color: var(--color-dark);
}

button, .btn-primary, .btn-outline {
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  line-height: 1.8;
}

/* ==================== NAVIGATION ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-espresso);
  padding: var(--spacing-md) var(--spacing-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav.scrolled {
  background-color: rgba(93, 61, 46, 0.95);
  backdrop-filter: blur(10px);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  display: flex;
  align-items: center;
}
.nav-brand img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
  align-items: center;
}

.nav-menu a {
  color: var(--color-cream);
  font-weight: 500;
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--color-gold);
}

.nav-cta {
  background-color: var(--color-red);
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: #d14431;
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  animation: kenburns 8s ease-out;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 36, 22, 0.6) 0%, rgba(93, 61, 46, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: var(--spacing-xl);
}

.hero-badge {
  display: inline-block;
  background-color: rgba(232, 83, 59, 0.9);
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  color: white;
  font-size: clamp(2.5rem, 10vw, 5rem);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-subtitle {
  color: var(--color-gold);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-content .hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 36, 22, 0.7) 0%, rgba(93, 61, 46, 0.5) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.page-hero-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

.page-hero-content .page-hero-subtitle {
  color: var(--color-gold);
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

/* ==================== SECTIONS & CONTAINERS ==================== */
section {
  padding: var(--spacing-2xl) var(--spacing-xl);
}

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

.container-full {
  width: 100%;
  padding: 0;
}

/* ==================== GRID LAYOUTS ==================== */
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ==================== FEATURES SECTION ==================== */
.features {
  background-color: var(--color-cream);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-red), var(--color-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: 2.5rem;
}

.feature-card h3 {
  margin-bottom: var(--spacing-md);
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ==================== STORY/ABOUT SECTION ==================== */
.story {
  padding: var(--spacing-2xl) var(--spacing-xl);
  background-color: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.story-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: auto;
}

.story-content h2 {
  color: var(--color-dark);
}

.story-content p {
  color: #555;
  margin-bottom: var(--spacing-md);
}

.story-link {
  display: inline-block;
  color: var(--color-red);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.story-link::after {
  content: '→';
  margin-left: var(--spacing-xs);
}

/* ==================== MENU CAROUSEL ==================== */
.menu-section {
  background-color: var(--color-cream);
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
}

.menu-section .container { padding: 0 var(--spacing-xl); }

.menu-carousel-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.menu-carousel {
  overflow: hidden;
  border-radius: 12px;
}

.menu-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.menu-card {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
}

.menu-card-header {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF8E7;
  background: linear-gradient(135deg, var(--color-red) 0%, #C14430 100%);
  padding: 16px 24px;
  border-radius: 12px 12px 0 0;
  letter-spacing: 0.5px;
}

.menu-card-body {
  background: white;
  padding: 20px 24px;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(93,61,46,0.1);
  border-top: none;
  box-shadow: 0 4px 20px rgba(45,36,22,0.06);
}

.menu-item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(245,216,156,0.4);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--color-espresso);
  line-height: 1.5;
  opacity: 0.7;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-gold);
  border: 1.5px solid rgba(245,216,156,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(45,36,22,0.2);
}

.carousel-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }

/* Responsive carousel */
@media (max-width: 1024px) {
  .menu-card {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  .menu-card {
    flex: 0 0 85%;
    min-width: 85%;
  }
  .menu-carousel-wrap { padding: 0 48px; }
  .carousel-btn { width: 40px; height: 40px; }
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-espresso) 0%, var(--color-dark) 100%);
  background-attachment: fixed;
  color: white;
  padding: var(--spacing-2xl) var(--spacing-xl);
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== GALLERY GRID ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(232, 83, 59, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

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

.gallery-overlay-icon {
  color: white;
  font-size: 2.5rem;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  border: none;
  font-size: 2.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2001;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.35);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==================== FORM RESULT ==================== */
.form-result {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}
.form-result.success {
  background: #eafbe7;
  color: #2a6e1e;
  border: 1px solid #7bc96b;
}
.form-result.error {
  background: #fff0ef;
  color: #c0392b;
  border: 1px solid #e8867a;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

.contact-info {
  padding: var(--spacing-lg);
}

.contact-info h3 {
  margin-bottom: var(--spacing-lg);
  color: var(--color-red);
}

.contact-item {
  margin-bottom: var(--spacing-lg);
}

.contact-item-label {
  font-weight: 600;
  color: var(--color-dark);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.contact-item-value {
  color: #666;
  line-height: 1.8;
}

.contact-item-value a {
  color: var(--color-red);
  font-weight: 500;
}

.social-links {
  margin-top: var(--spacing-lg);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--color-red);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: var(--spacing-md);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-dark);
  color: white;
}

/* ==================== FORM STYLES ==================== */
.contact-form {
  padding: var(--spacing-lg);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 5px rgba(232, 83, 59, 0.2);
}

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

/* ==================== BUTTONS ==================== */
.btn-primary {
  background-color: var(--color-red);
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #d14431;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-red);
  color: var(--color-red);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--color-red);
  color: white;
}

/* ==================== FOOTER ==================== */
footer {
  background-color: var(--color-espresso);
  color: var(--color-cream);
  padding: var(--spacing-2xl) var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  font-family: var(--font-heading);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: var(--color-cream);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 216, 156, 0.2);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 216, 156, 0.7);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

/* ==================== VALUES/CARDS SECTION ==================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.value-card {
  background-color: var(--color-cream);
  padding: var(--spacing-xl);
  border-radius: 8px;
  border-top: 4px solid var(--color-red);
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
  color: var(--color-red);
  margin-bottom: var(--spacing-md);
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
}

/* ==================== FACILITIES SECTION ==================== */
.facilities {
  background-color: white;
  padding: var(--spacing-2xl) var(--spacing-xl);
}

.facilities h2 {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.facility-item {
  padding: var(--spacing-lg);
  background-color: var(--color-cream);
  border-radius: 8px;
  border-left: 4px solid var(--color-gold);
}

.facility-item h3 {
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.facility-item p {
  color: #666;
  font-size: 0.95rem;
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
  background: linear-gradient(135deg, var(--color-espresso) 0%, var(--color-dark) 100%);
  color: white;
  padding: var(--spacing-2xl) var(--spacing-xl);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.events-content h2 {
  color: white;
  margin-bottom: var(--spacing-lg);
}

.events-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.event-hall {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--color-gold);
}

.event-hall h4 {
  color: var(--color-gold);
  margin-bottom: var(--spacing-sm);
}

.event-hall p {
  font-size: 0.95rem;
}

/* ==================== GOOGLE MAPS ==================== */
.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: var(--spacing-2xl);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  section {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .story-grid,
  .contact-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  nav {
    padding: var(--spacing-md) var(--spacing-lg);
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background-color: var(--color-espresso);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(245, 216, 156, 0.1);
    padding: var(--spacing-md) var(--spacing-lg);
  }

  .nav-menu a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    margin-top: 0;
    height: 60vh;
  }

  .page-hero {
    margin-top: 0;
    height: 300px;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--spacing-md);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .nav-menu {
    top: 60px;
  }

  section {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .hero-content {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .hero {
    height: 50vh;
  }

  .page-hero {
    height: 250px;
  }

  .page-hero-content h1,
  .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}
