/* ===== CRYSTAL JUNGLE VILLA - STYLES ===== */

:root {
  /* Warm, elegant color palette */
  --bg: #fdfbf7;
  --bg-warm: #f8f4ed;
  --bg-dark: #1a1a1a;
  --card: #ffffff;
  --ink: #2c2c2c;
  --ink-light: #5a5a5a;
  --muted: #8a8a8a;
  --accent: #5c8a6e;
  --accent-dark: #4a7259;
  --accent-light: #e8f0eb;
  --gold: #c9a66b;
  --gold-light: #f5f0e3;
  --line: #e8e4dc;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 16px;
  --max: 1200px;
  --pad: 24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Touch-friendly tap targets */
@media (pointer: coarse) {
  .btn { min-height: 48px; }
  .nav__link { min-height: 44px; display: flex; align-items: center; }
  .lang-btn { min-height: 44px; min-width: 44px; }
  .amenity-tag { min-height: 44px; }
  .footer__links a { display: block; padding: 8px 0; }
  .social-links a { min-width: 48px; min-height: 48px; }
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 0 var(--line), var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav__link:hover {
  color: var(--ink);
  background: var(--accent-light);
}

.nav__cta {
  background: var(--accent);
  color: white !important;
  margin-left: 8px;
}

.nav__cta:hover {
  background: var(--accent-dark);
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.lang-btn {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: var(--ink);
  background: var(--accent-light);
}

.lang-btn.active {
  color: var(--accent);
  background: var(--accent-light);
  border-color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--accent);
  color: white;
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn--dark {
  background: var(--bg-dark);
  color: white;
}

.btn--dark:hover {
  background: #2a2a2a;
}

.airbnb-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ===== HERO - IMMERSIVE FULL SCREEN ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(45, 90, 71, 0.3) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px var(--pad) 100px;
  text-align: center;
  color: white;
  animation: heroContentFadeIn 1.2s ease-out 0.5s forwards;
  opacity: 0;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 500;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hero__cta .btn--primary {
  background: white;
  color: var(--accent);
  padding: 18px 40px;
  font-size: 14px;
}

.hero__cta .btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  padding: 18px 40px;
  font-size: 14px;
}

.hero__cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDown {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.5; top: 18px; }
}

/* Legacy hero grid - keeping for fallback */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: heroFadeIn 1.2s ease-out forwards;
}

.hero__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero__media:hover .hero__image {
  transform: scale(1.05);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section--warm {
  background: var(--bg-warm);
}

.section--dark {
  background: var(--bg-dark);
  color: white;
}

.section--dark .section__title {
  color: white;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.7);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section__desc {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ===== FEATURES GRID ===== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.feature__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== EXPERIENCE GRID ===== */
.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.experience-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(45, 90, 71, 0.9) 0%,
    rgba(45, 90, 71, 0.4) 50%,
    transparent 100%
  );
}

.experience-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-card:hover img {
  transform: scale(1.1);
}

.experience-card--large {
  grid-row: span 2;
}

.experience-card--large img {
  height: 100%;
  min-height: 400px;
}

.experience-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.experience-card:hover .experience-card__content {
  transform: translateY(0);
}

.experience-card__content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.experience-card__content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.experience-card:hover .experience-card__content p {
  opacity: 0.9;
  transform: translateY(0);
}

/* ===== DREAMY QUOTE SECTION ===== */
.quote-section {
  position: relative;
  padding: 120px 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.quote-section__content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad);
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: white;
  line-height: 1.5;
  margin-bottom: 32px;
}

.quote-section__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.quote-section__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.quote-section__info {
  text-align: left;
}

.quote-section__name {
  font-weight: 600;
  color: white;
  font-size: 15px;
}

.quote-section__role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ===== FLOATING DECORATIVE ELEMENTS ===== */
.floating-leaf {
  position: absolute;
  font-size: 40px;
  opacity: 0.1;
  animation: floatLeaf 15s ease-in-out infinite;
  pointer-events: none;
}

.floating-leaf:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-leaf:nth-child(2) { top: 60%; right: 15%; animation-delay: -5s; }
.floating-leaf:nth-child(3) { bottom: 20%; left: 20%; animation-delay: -10s; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===== AMENITY STRIP ===== */
.amenity-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 48px 0;
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s ease;
}

.amenity-tag:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 64px;
}

.cta-banner__content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
}

.cta-banner__content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.cta-banner .btn {
  background: white;
  color: var(--accent);
  flex-shrink: 0;
}

.cta-banner .btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

/* ===== GALLERY ===== */
.gallery-zone {
  margin-bottom: 56px;
}

.gallery-zone:last-child {
  margin-bottom: 0;
}

.gallery-zone__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shot:hover img {
  transform: scale(1.05);
}

.shot--a { grid-column: span 7; min-height: 380px; }
.shot--b { grid-column: span 5; min-height: 380px; }
.shot--c { grid-column: span 4; min-height: 280px; }
.shot--d { grid-column: span 4; min-height: 280px; }
.shot--e { grid-column: span 4; min-height: 280px; }

/* ===== LOCATION ===== */
.location-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.map-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.footer__logo span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.footer__text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.4);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 14px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title { font-size: clamp(40px, 7vw, 70px); }
  .hero__stats { gap: 32px; }
  .hero__stat-value { font-size: 40px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card--large { grid-row: span 1; }
  .experience-card--large img { min-height: 280px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --pad: 20px; }

  /* Navigation */
  .nav__link:not(.nav__cta) { display: none; }
  .nav__inner { padding: 12px var(--pad); }
  .logo__text { font-size: 18px; }
  .logo__img { width: 40px; height: 40px; }
  .nav__cta { padding: 8px 16px; font-size: 12px; }
  .lang-selector {
    margin-left: 12px;
    padding-left: 12px;
  }
  .lang-btn {
    padding: 5px 8px;
    font-size: 11px;
  }

  /* Hero */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero__content { padding: 100px var(--pad) 80px; }
  .hero__eyebrow { font-size: 10px; padding: 10px 16px; }
  .hero__title { font-size: clamp(32px, 10vw, 48px); margin-bottom: 16px; }
  .hero__subtitle { font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stat { min-width: 80px; }
  .hero__stat-value { font-size: 32px; }
  .hero__stat-label { font-size: 10px; }
  .hero__scroll { display: none; }

  /* Buttons */
  .btn { padding: 14px 24px; font-size: 12px; }
  .hero__cta .btn { padding: 16px 28px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 48px; }
  .section__title { font-size: clamp(28px, 6vw, 36px); }
  .section__desc { font-size: 15px; }
  .section__eyebrow { font-size: 10px; }

  /* Quote */
  .quote-section { padding: 64px 0; }
  .quote-section__text { font-size: clamp(20px, 5vw, 28px); }

  /* Experience Grid */
  .experience-grid { grid-template-columns: 1fr; gap: 16px; }
  .experience-card img { height: 220px; }
  .experience-card--large img { min-height: 220px; }
  .experience-card__content { padding: 24px; }
  .experience-card__content h3 { font-size: 22px; }
  .experience-card__content p { font-size: 13px; }

  /* Amenities */
  .amenity-strip { padding: 20px 16px; gap: 10px; margin: 32px 0; }
  .amenity-tag { padding: 8px 14px; font-size: 12px; }

  /* CTA Banner */
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 24px; margin-top: 48px; }
  .cta-banner__content h3 { font-size: 26px; }
  .cta-banner__content p { font-size: 14px; }

  /* Gallery */
  .gallery-zone { margin-bottom: 40px; }
  .gallery-zone__title { font-size: 22px; margin-bottom: 16px; }
  .gallery { gap: 12px; }
  .shot--a, .shot--b { grid-column: span 12; min-height: 240px; }
  .shot--c, .shot--d, .shot--e { grid-column: span 6; min-height: 180px; }

  /* Location */
  .location-features { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .feature { padding: 24px 20px; }
  .feature__icon { font-size: 28px; margin-bottom: 12px; }
  .feature__title { font-size: 18px; }
  .feature__text { font-size: 13px; }
  .location-map iframe { height: 300px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { max-width: 100%; }
  .footer__logo span { font-size: 20px; }
  .footer__text { font-size: 13px; }
  .footer__col h4 { margin-bottom: 16px; }
  .footer__links a { font-size: 13px; }
  .footer__bottom { flex-direction: column; gap: 20px; text-align: center; }
  .footer__copy { font-size: 12px; }
  .social-links a { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  :root { --pad: 16px; }

  .hero__cta { flex-direction: column; width: 100%; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 280px; }
  .hero__stats { justify-content: center; gap: 16px; }
  .hero__stat { min-width: 60px; }
  .hero__stat-value { font-size: 28px; }

  .amenity-strip { gap: 8px; }
  .amenity-tag { padding: 6px 12px; font-size: 11px; }

  .shot--a, .shot--b { min-height: 200px; }
  .shot--c, .shot--d, .shot--e { grid-column: span 12; min-height: 180px; }

  .cta-banner { padding: 32px 20px; }
  .cta-banner__content h3 { font-size: 22px; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  .hero__background img {
    animation: none;
  }
  .experience-card:hover img,
  .shot:hover img {
    transform: none;
  }
}
