/* ========================================
   McGraw Cabin Rentals — Custom Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --cream: #faf8f5;
  --cream-dark: #f0ece4;
  --dark-green: #1a2e26;
  --gold: #d4a853;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark-green);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

/* --- Section Helpers --- */
.section-padding { padding: 100px 0; }
.section-header {}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-600);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--emerald-900);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.1rem;
  color: #4a6357;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-600);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--emerald-600);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--emerald-900);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--emerald-900);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--emerald-900);
  color: white;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--emerald-800);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--emerald-600);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--emerald-600);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--emerald-900);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid white;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-white:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.w-full { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
}
.nav-logo-text { color: var(--emerald-900); }
.nav-logo-icon { color: var(--emerald-600); }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-green);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-600);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--emerald-600); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--emerald-600);
  color: white;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--emerald-800);
  color: white;
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active .nav-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  background: var(--cream);
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-green);
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: color 0.3s ease;
}
.mobile-link:hover { color: var(--emerald-600); }

/* ========================================
   HERO
   ======================================== */
.hero {
  background: var(--cream);
  position: relative;
}

/* Geometric Background */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
}
.geo-circle-1 {
  width: 500px;
  height: 500px;
  background: rgba(5, 150, 105, 0.06);
  top: -100px;
  right: -100px;
}
.geo-circle-2 {
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.05);
  bottom: 10%;
  right: 35%;
}
.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(5, 150, 105, 0.07);
  top: 15%;
  left: 5%;
  transform: rotate(-15deg);
}
.geo-square {
  position: absolute;
  border-radius: var(--radius-lg);
}
.geo-square-1 {
  width: 120px;
  height: 120px;
  background: rgba(212, 168, 83, 0.12);
  top: 20%;
  left: 2%;
  transform: rotate(25deg);
}
.geo-square-2 {
  width: 80px;
  height: 80px;
  background: rgba(5, 150, 105, 0.1);
  bottom: 15%;
  left: 8%;
  transform: rotate(40deg);
}
.geo-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(5, 150, 105, 0.15) 2px, transparent 2px);
  background-size: 16px 16px;
  bottom: 25%;
  right: 5%;
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--emerald-800);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--emerald-900);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #4a6357;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Cards */
.hero-cards { position: relative; }
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 78, 59, 0.12);
}
.hero-card-main {
  width: 420px;
  height: 500px;
  position: absolute;
  top: 0;
  right: 0;
}
.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(6, 78, 59, 0.8));
}
.hero-card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-card-float {
  position: absolute;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(6, 78, 59, 0.12);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card-stats-1 {
  top: 60px;
  left: -30px;
  animation-delay: 0s;
}
.hero-card-stats-2 {
  bottom: 140px;
  left: -20px;
  animation-delay: 1.3s;
}
.hero-card-stats-3 {
  bottom: 40px;
  right: -20px;
  animation-delay: 2.6s;
}
.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
  flex-shrink: 0;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--emerald-900);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: #6b8f7e;
  font-weight: 500;
}
.hero-card-photo {
  position: absolute;
  bottom: 80px;
  right: -40px;
  width: 260px;
  height: 170px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.8s;
}
.hero-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--emerald-800);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emerald-600), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 24px; }
}

/* ========================================
   CABINS
   ======================================== */
.cabins { background: var(--cream); }
.cabins-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.cabin-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 78, 59, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(6, 78, 59, 0.06);
}
.cabin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
}
.cabin-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.cabin-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cabin-card:hover .cabin-card-img img { transform: scale(1.05); }
.cabin-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--emerald-600);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.cabin-badge-alt { background: var(--gold); color: var(--dark-green); }
.cabin-card-body { padding: 28px; }
.cabin-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--emerald-900);
  margin-bottom: 10px;
}
.cabin-card-desc {
  font-size: 0.95rem;
  color: #4a6357;
  line-height: 1.7;
  margin-bottom: 20px;
}
.cabin-card-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.cabin-card-amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark-green);
  font-weight: 500;
}
.cabin-card-amenities li svg { color: var(--emerald-600); flex-shrink: 0; }

/* ========================================
   EXPERIENCE
   ======================================== */
.experience { background: var(--emerald-900); position: relative; overflow: hidden; }
.exp-bg-block {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--emerald-900) 0%, #0a3d2e 50%, var(--emerald-900) 100%);
  pointer-events: none;
}
.experience-desc {
  font-size: 1.1rem;
  color: rgba(250, 248, 245, 0.75);
  line-height: 1.8;
  margin-bottom: 0;
}
.exp-features {}
.exp-feature {}
.exp-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
  margin-bottom: 14px;
}
.exp-feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.exp-feature-desc {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.6;
}
.experience-images { position: relative; }
.exp-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.exp-img-main img { width: 100%; height: 100%; object-fit: cover; }
.exp-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--emerald-900);
}
.exp-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.exp-geo-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: var(--radius-md);
  transform: rotate(15deg);
  opacity: 0.6;
  z-index: -1;
}

/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--cream-dark); position: relative; overflow: hidden; }
.about-geo-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  pointer-events: none;
}
.about-geo-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-lg);
  bottom: 10%;
  left: 5%;
  transform: rotate(30deg);
  pointer-events: none;
}
.about-content {}
.about-text {
  font-size: 1.05rem;
  color: #4a6357;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--emerald-600);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.85rem;
  color: #6b8f7e;
  font-weight: 500;
  margin-top: 4px;
}
.about-images { position: relative; }
.about-img-stack { position: relative; }
.about-img-stack > img {
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(6, 78, 59, 0.12);
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.about-img-accent-2 {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.15);
  border: 4px solid var(--cream-dark);
}
.about-img-accent-2 img { width: 100%; height: 200px; object-fit: cover; }

/* ========================================
   GALLERY
   ======================================== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(6, 78, 59, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.gallery-item-1 img, .gallery-item-4 img, .gallery-item-6 img { height: 280px; }
.gallery-item-2 { grid-column: 3; grid-row: 1 / 2; }
.gallery-item-2 img { height: 130px; }
.gallery-item-3 { grid-column: 1; grid-row: 2 / 3; }
.gallery-item-3 img { height: 280px; }
.gallery-item-4 { grid-column: 2 / 4; grid-row: 2 / 3; }
.gallery-item-5 { grid-column: 1; grid-row: 3; }
.gallery-item-5 img { height: 200px; }
.gallery-item-6 { grid-column: 2 / 4; grid-row: 3; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--emerald-600);
  position: relative;
  overflow: hidden;
}
.cta-geo-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -200px;
  left: -100px;
  pointer-events: none;
}
.cta-geo-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  bottom: -80px;
  right: 10%;
  transform: rotate(20deg);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(250, 248, 245, 0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--cream); position: relative; overflow: hidden; }
.contact-bg-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(5, 150, 105, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  bottom: 10%;
  right: 5%;
  pointer-events: none;
}
.contact-desc {
  font-size: 1.05rem;
  color: #4a6357;
  line-height: 1.7;
}
.contact-info {}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-600);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b8f7e;
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 1rem;
  color: var(--dark-green);
  font-weight: 500;
}
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08);
  border: 1px solid rgba(6, 78, 59, 0.06);
}
.contact-form {}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(6, 78, 59, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark-green);
  background: var(--cream);
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  background: white;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--emerald-600);
}
.success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--emerald-900);
  margin-bottom: 10px;
}
.success-desc {
  font-size: 1rem;
  color: #4a6357;
  line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--emerald-900); color: white; }
.footer-logo { color: var(--cream); }
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-about { line-height: 1.7; }
.footer-links {}
.footer-link {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.6);
  transition: color 0.3s ease;
  line-height: 1.6;
}
.footer-link:hover { color: var(--emerald-400); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-card-main { width: 340px; height: 420px; }
  .hero-cards { height: 420px; }
  .gallery-item-1 img, .gallery-item-4 img, .gallery-item-6 img { height: 220px; }
  .gallery-item-3 img, .gallery-item-5 img { height: 220px; }
  .gallery-item-2 img { height: 200px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }
  .hero-cards { display: none; }
  .hero { min-height: 100vh; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-1 { grid-column: 1 / 3; }
  .gallery-item-1 img, .gallery-item-4 img, .gallery-item-6 img { height: 200px; }
  .gallery-item-2 { grid-column: 1 / 3; }
  .gallery-item-2 img { height: 200px; }
  .gallery-item-3 { grid-column: 1 / 3; }
  .gallery-item-3 img { height: 240px; }
  .gallery-item-5 { grid-column: 1 / 2; }
  .gallery-item-6 { grid-column: 2 / 3; }
  .gallery-item-5 img, .gallery-item-6 img { height: 180px; }
  .about-img-stack > img { height: 400px; }
  .about-img-accent-2 { right: -10px; bottom: -20px; }
  .exp-img-accent { right: -10px; bottom: -15px; }
  .contact-form-wrapper { padding: 28px; }
}

@media (max-width: 480px) {
  .nav { padding: 0 4px; }
  .max-w-7xl { padding-left: 16px; padding-right: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-1, .gallery-item-2, .gallery-item-3, .gallery-item-5, .gallery-item-6 { grid-column: 1; }
  .gallery-item-4 { grid-column: 1; }
  .gallery-item img { height: 200px !important; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary, .cta-buttons .btn-white { width: 100%; justify-content: center; }
}
