/* ===== ROOT VARIABLES ===== */
:root {
  --teal: #1a6b5a;
  --teal-dark: #0d3d30;
  --teal-light: #2d8a72;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07828;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --text-dark: #0d1f1a;
  --text-mid: #2d4a40;
  --text-muted: #6b8a7a;
  --card-bg: rgba(255,255,255,0.06);
  --border: rgba(201,168,76,0.2);
  --shadow: 0 20px 60px rgba(13,61,48,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--teal-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 6%;
  background: rgba(13,61,48,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 10px 6%;
  background: rgba(13,61,48,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.logo-img { height: 52px; width: auto; border-radius: 8px; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none; background: none; border: none;
  color: white; font-size: 1.5rem; cursor: pointer;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

/* ===== SECTION LABEL ===== */
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.centered { text-align: center; }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #1a4a3a 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
  animation: float 6s ease-in-out infinite;
}
.shape1 { width: 500px; height: 500px; top: -150px; right: -100px; animation-delay: 0s; }
.shape2 { width: 300px; height: 300px; bottom: -80px; left: -60px; animation-delay: 2s; }
.shape3 { width: 200px; height: 200px; top: 50%; right: 30%; animation-delay: 4s; }

.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 650px;
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* 3D Hero Card */
.hero-3d-card {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  perspective: 1000px;
  animation: fadeInRight 1.2s ease forwards;
}

.card-inner {
  width: 320px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.1s ease;
  box-shadow: 0 25px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
  top: -50px; left: 50%; transform: translateX(-50%);
  border-radius: 50%;
}

.card-logo { width: 140px; margin: 0 auto 20px; border-radius: 12px; }
.card-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.card-destinations {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.card-destinations span {
  padding: 6px 14px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 6%;
  background: var(--off-white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual { position: relative; }

.about-card-3d {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(13,61,48,0.3);
  transform: perspective(800px) rotateY(-8deg);
  transition: transform 0.3s ease;
}
.about-card-3d:hover { transform: perspective(800px) rotateY(0deg); }

.about-icon-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.icon-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 24px;
  font-size: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.icon-box:hover {
  background: rgba(201,168,76,0.15);
  transform: translateY(-4px);
}

.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}

.about-text { padding-left: 20px; }
.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(13,61,48,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.feature-item:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-item strong { color: var(--teal-dark); font-size: 1rem; display: block; margin-bottom: 4px; }
.feature-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ===== PACKAGES ===== */
.packages {
  padding: 100px 6%;
  background: linear-gradient(180deg, #f0ede5 0%, var(--off-white) 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.pkg-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(13,61,48,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(13,61,48,0.15);
}
.pkg-card.featured {
  background: linear-gradient(145deg, var(--teal-dark), var(--teal));
  color: white;
  border-color: transparent;
}
.pkg-card.featured h3,
.pkg-card.featured .pkg-dest,
.pkg-card.featured p { color: rgba(255,255,255,0.9); }
.pkg-card.featured .pkg-details li { color: rgba(255,255,255,0.75); }
.pkg-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.pkg-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 14px;
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.pkg-badge.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--teal-dark); }
.pkg-badge.blue { background: #2563eb; }

.pkg-icon { font-size: 2.5rem; margin-bottom: 8px; }
.pkg-dest { font-size: 0.8rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.pkg-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 12px; }
.pkg-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }

.pkg-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.pkg-details li { font-size: 0.88rem; color: var(--text-mid); }

.pkg-price { margin-bottom: 24px; }
.price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--teal); }
.pkg-card.featured .price { color: var(--gold-light); }
.per { font-size: 0.85rem; color: var(--text-muted); margin-left: 4px; }
.pkg-card.featured .per { color: rgba(255,255,255,0.5); }

.pkg-btn { width: 100%; text-align: center; }

.custom-pkg {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a2e22 100%);
  color: white; min-height: 300px;
}
.custom-pkg h3, .custom-pkg p { color: rgba(255,255,255,0.9); }
.custom-pkg .btn-outline { border-color: var(--gold); color: var(--gold); }
.custom-pkg .btn-outline:hover { background: var(--gold); color: var(--teal-dark); }

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 6%;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 24px;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.placeholder-icon { font-size: 4rem; }
.gallery-placeholder p { color: rgba(255,255,255,0.7); font-size: 1rem; font-weight: 600; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,61,48,0.7);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-overlay span { color: white; font-weight: 600; font-size: 1rem; }

.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== WHY US ===== */
.whyus {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--teal-dark), #0a2e22);
}
.whyus-inner { max-width: 1100px; margin: 0 auto; }

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.why-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 6%;
  background: var(--off-white);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testi-card {
  min-width: 320px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(13,61,48,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.testi-card:hover { transform: translateY(-4px); }

.testi-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; }
.testi-card p { color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--teal-dark); font-size: 0.95rem; }
.testi-author span { color: var(--text-muted); font-size: 0.82rem; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 6%;
  background: linear-gradient(180deg, var(--off-white), #e8e4dc);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-bottom: 32px;
}

.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--teal-dark); font-weight: 600; margin-bottom: 4px; }
.contact-item a, .contact-item p { color: var(--text-muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--teal); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: #25d366;
  color: white;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  background: #128c50;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(13,61,48,0.08);
}

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

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(13,61,48,0.15);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fafaf8;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,107,90,0.1);
  background: white;
}
.form-group textarea { height: 120px; resize: vertical; }

.submit-btn { width: 100%; font-size: 1rem; padding: 16px; }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--teal-dark);
  padding: 70px 6% 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { width: 100px; border-radius: 10px; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.social-links a:hover { background: var(--gold); transform: translateY(-3px); }

.footer-links h4 { color: var(--gold-light); font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.05em; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateY(-50%) translateX(60px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-3d-card { display: none; }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-text { padding-left: 0; }
  .contact-container { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--teal-dark); flex-direction: column; padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide { grid-column: span 1; }
  .hero { padding: 100px 5% 60px; }
}
