/* ========================================
   1. CSS Custom Properties
   ======================================== */
:root {
  --color-primary: #5A3E28;
  --color-primary-light: #8B7355;
  --color-primary-dark: #3D2A1A;

  --color-secondary: #4A6741;
  --color-secondary-light: #6B8F5E;
  --color-secondary-dark: #2D4A2E;

  --color-accent: #D4A853;
  --color-accent-light: #E8C97A;
  --color-accent-dark: #B8872E;

  --color-cream: #F5E6D3;
  --color-cream-light: #FDF8F0;
  --color-cream-dark: #E8D5BF;
  --color-text: #2C241C;
  --color-text-light: #6B5D4F;
  --color-white: #FFFFFF;
  --color-dark: #1A1510;

  --color-whatsapp: #25D366;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Segoe UI', Tahoma, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease;
}

/* ========================================
   2. Reset & Base
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.8;
  background-color: var(--color-cream-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ========================================
   3. Typography
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.125rem, 1.5vw + 0.25rem, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1vw + 0.25rem, 1.125rem);
}

.text-light {
  color: var(--color-cream-light);
}

/* ========================================
   4. Layout
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
  position: relative;
  overflow-x: clip;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
}

.section-tag-light {
  color: var(--color-accent-light);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  margin: 20px auto;
}

.divider-light {
  background: linear-gradient(90deg, var(--color-accent-light), rgba(232, 201, 122, 0.3));
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* ========================================
   5. Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-cream-light);
  box-shadow: 0 4px 15px rgba(90, 62, 40, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-dark);
  box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

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

/* ========================================
   6. Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(44, 36, 28, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-cream-light);
  letter-spacing: 2px;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--color-accent-light);
  background: rgba(255, 255, 255, 0.08);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-cream-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.nav-hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   7. Hero
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 21, 16, 0.5) 0%,
    rgba(26, 21, 16, 0.45) 50%,
    rgba(26, 21, 16, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-title {
  color: var(--color-cream-light);
  font-size: clamp(3rem, 8vw + 1rem, 6rem);
  letter-spacing: 8px;
  margin-bottom: 8px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 0, 0, 0.3);
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--color-accent);
  margin: 16px auto;
}

.hero-subtitle {
  color: var(--color-cream-light);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  color: var(--color-cream-light);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 40px;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  animation: heroCTAPulse 2s ease-in-out 2s infinite;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-cta-wa {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.hero-cta-wa:hover {
  background: #1ebe5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

.hero-cta-wa svg {
  flex-shrink: 0;
}

.hero-trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(26, 21, 16, 0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212, 168, 83, 0.2);
  padding: 14px 0;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-cream-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  justify-content: center;
}

.trust-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trust-item {
    font-size: 0.78rem;
    justify-content: flex-start;
  }
  .hero-trust-strip {
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
}

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

@keyframes heroCTAPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(90, 62, 40, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(212, 168, 83, 0.5); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-scroll-indicator {
    display: none;
  }
}

.hero-scroll-indicator span {
  display: block;
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  margin: 0 auto;
}

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

/* ========================================
   8. About / Nosotros
   ======================================== */
.section-nosotros {
  background-color: var(--color-cream-light);
}

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

.about-lead {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  color: var(--color-primary-dark);
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-primary);
}

.about-feature svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-img-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 0;
  bottom: -20px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  z-index: 0;
}

/* ========================================
   9. Experiences
   ======================================== */
.section-experiencias {
  background-color: var(--color-cream);
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.experience-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.experience-img {
  height: 220px;
  overflow: hidden;
}

.experience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover .experience-img img {
  transform: scale(1.08);
}

.experience-content {
  padding: 24px;
  position: relative;
}

.experience-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -22px;
  right: 24px;
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

.experience-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

.experience-content h3 {
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.experience-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========================================
   10. Gallery
   ======================================== */
.section-galeria {
  background-color: var(--color-cream-light);
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 16, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(26, 21, 16, 0.2);
}

.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-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-cream-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 16px;
  transition: all var(--transition);
  z-index: 2001;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 2.5rem;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-accent);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ========================================
   11. Location
   ======================================== */
.section-ubicacion {
  background-color: var(--color-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.location-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  padding-left: 4px;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-white);
}

.location-detail h3 {
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.location-detail p {
  color: var(--color-text-light);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.location-phone {
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* ========================================
   12. Reservas
   ======================================== */
.section-reservas {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.reservas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reservas-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 42, 26, 0.92) 0%,
    rgba(45, 74, 46, 0.88) 100%
  );
  z-index: 1;
}

.section-reservas .container {
  position: relative;
  z-index: 2;
}

.reservation-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   13. Forms (shared)
   ======================================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--color-cream-light);
}

.contact-form .form-group label {
  color: var(--color-primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 2px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A3E28' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}

.form-hint {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-left: 4px;
}

.form-group .error-message {
  display: none;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #e74c3c;
}

.form-group.has-error .error-message {
  display: block;
}

.form-actions {
  text-align: center;
  margin-top: 24px;
}

.form-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(245, 230, 211, 0.75);
  line-height: 1.6;
}

.contact-form .form-meta {
  color: var(--color-text-light);
}

.form-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.form-wa-link:hover {
  color: #1ebe5a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-wa-link svg {
  flex-shrink: 0;
}

/* ========================================
   14. Contact
   ======================================== */
.section-contacto {
  background-color: var(--color-cream-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-cream-light);
}

.contact-icon-whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp), #128C7E);
}

.contact-item h3 {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-item a {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1rem;
}

.contact-item a:hover {
  color: var(--color-accent-dark);
}

.contact-social {
  margin-top: 40px;
}

.contact-social h3 {
  font-size: 0.9rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-cream-light);
}

.social-link:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--color-primary-dark);
}

/* ========================================
   15. Footer
   ======================================== */
.footer {
  background: var(--color-dark);
  color: rgba(245, 230, 211, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-cream-light);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 230, 211, 0.6);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--color-cream-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact p,
.footer-contact a {
  display: block;
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--color-accent);
}

.social-links-footer {
  margin-top: 16px;
}

.social-links-footer a {
  width: 36px;
  height: 36px;
  background: rgba(245, 230, 211, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-right: 8px;
}

.social-links-footer a svg {
  width: 16px;
  height: 16px;
  fill: rgba(245, 230, 211, 0.7);
}

.social-links-footer a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.social-links-footer a:hover svg {
  fill: var(--color-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 230, 211, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 230, 211, 0.4);
  margin: 0;
}

.footer-meta {
  margin-top: 8px !important;
  font-size: 0.78rem !important;
  color: rgba(245, 230, 211, 0.3) !important;
}

/* ========================================
   16a. FAQ
   ======================================== */
.section-faq {
  background-color: var(--color-cream-light);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(90, 62, 40, 0.08);
  border-color: var(--color-accent-light);
}

.faq-item[open] {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(90, 62, 40, 0.10);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: var(--color-white);
}

.faq-answer {
  padding: 0 28px 24px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
}

.faq-answer a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .faq-item summary {
    padding: 18px 20px;
  }
  .faq-item summary h3 {
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* ========================================
   16. WhatsApp Float
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--color-white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ========================================
   17. Toast Notification
   ======================================== */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-secondary-dark);
  color: var(--color-cream-light);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-content svg {
  color: var(--color-accent-light);
  flex-shrink: 0;
}

/* ========================================
   18. Scroll Animations
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.animate-on-scroll.from-left {
  transform: translateX(-50px);
}

.animate-on-scroll.from-left.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(50px);
}

.animate-on-scroll.from-right.is-visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-up {
  transform: scale(0.9);
}

.animate-on-scroll.scale-up.is-visible {
  transform: scale(1);
}

/* ========================================
   19. Responsive - Tablet (600px+)
   ======================================== */
@media (min-width: 600px) {
  .container {
    padding: 0 48px;
  }

  .section {
    padding: 100px 0;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 220px;
  }

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

/* ========================================
   20. Responsive - Desktop (900px+)
   ======================================== */
@media (min-width: 900px) {
  .nav-hamburger {
    display: none !important;
  }

  .nav-menu {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
  }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
  }

  .experiences-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }

  .location-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }

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

  .reservation-form {
    padding: 48px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}

/* Mobile nav overlay (< 900px) */
@media (max-width: 899px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1510;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 16px 32px;
    letter-spacing: 3px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ========================================
   21. Responsive - Large Desktop (1200px+)
   ======================================== */
@media (min-width: 1200px) {
  .container {
    padding: 0 60px;
  }

  .section {
    padding: 120px 0;
  }

  .map-container iframe {
    height: 450px;
  }
}

/* ========================================
   22. Accessibility
   ======================================== */
@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;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
