:root {
  --bg: #f7f3ed;
  --fg: #1f2a21;
  --muted: #4c594e;
  --accent: #6b8f6a;
  --accent-strong: #4f6b51;
  --light: #ffffff;
  --card: #f1ece4;
  --shadow: 0 20px 60px rgba(12, 30, 20, 0.15);
  --shadow-hover: 0 40px 80px rgba(12, 30, 20, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --section-pad: clamp(4rem, 6vw, 6rem);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(247, 243, 237, 0.98), rgba(241, 236, 228, 0.95));
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 2px solid rgba(107, 143, 106, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-bottom-color: rgba(107, 143, 106, 0.2);
}

.brand { display: flex; align-items: center; gap: 0.75rem; }

.brand-mark {
  width: 50px; 
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 243, 237, 0.95) 0%, rgba(241, 236, 228, 0.9) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 15px rgba(79, 107, 81, 0.3), 0 0 20px rgba(107, 143, 106, 0.15);
  transition: all 0.3s ease;
  position: relative;
  padding: 4px;
  border: 2px solid rgba(107, 143, 106, 0.2);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand-mark:hover .brand-logo {
  transform: scale(1.1) rotate(-5deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 182, 141, 0.3), rgba(79, 107, 81, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.brand:hover .brand-mark::before {
  opacity: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }

.brand-name { font-weight: 700; }

.brand-tag { font-size: 0.85rem; color: var(--muted); }

.nav { display: flex; gap: 0.5rem; align-items: center; font-weight: 600; }

.nav a { 
  padding: 0.5rem 1rem; 
  border-radius: 999px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107, 143, 106, 0.1), rgba(79, 107, 81, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav a:hover { 
  color: var(--accent-strong);
  transform: translateY(-2px);
}

.nav a:hover::before {
  opacity: 1;
}

.nav a.active {
  color: var(--accent-strong);
  background: linear-gradient(135deg, rgba(107, 143, 106, 0.15), rgba(79, 107, 81, 0.2));
  box-shadow: 0 2px 8px rgba(107, 143, 106, 0.2);
  font-weight: 700;
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.1); opacity: 0; transition: opacity 0.3s ease; }

.btn:hover::before { opacity: 1; }

.btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }

.btn:active { transform: translateY(-1px) scale(0.98); }

.btn.primary { 
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--light); 
  box-shadow: 0 8px 20px rgba(107, 143, 106, 0.4), 0 0 30px rgba(107, 143, 106, 0.2);
  position: relative;
  overflow: visible;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107, 143, 106, 0.6), rgba(79, 107, 81, 0.6));
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.btn.primary:hover { 
  box-shadow: 0 12px 30px rgba(107, 143, 106, 0.5), 0 0 40px rgba(107, 143, 106, 0.3);
  transform: translateY(-4px) scale(1.05);
}

.btn.primary:hover::after {
  opacity: 1;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.btn.secondary { 
  background: transparent; 
  border: 2px solid var(--accent); 
  color: var(--accent-strong); 
  font-weight: 800;
  position: relative;
  overflow: visible;
}

.btn.secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn.secondary:hover { 
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--light);
  box-shadow: 0 8px 20px rgba(107, 143, 106, 0.3), 0 0 25px rgba(107, 143, 106, 0.2);
}

.btn.secondary:hover::before {
  opacity: 1;
}

.btn.ghost { 
  background: transparent; 
  border: 2px solid rgba(107, 143, 106, 0.3); 
  color: var(--fg); 
  padding: 0.7rem 1.2rem;
  position: relative;
  overflow: visible;
}

.btn.ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107, 143, 106, 0.1), rgba(79, 107, 81, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn.ghost:hover { 
  background: rgba(107, 143, 106, 0.1);
  border-color: var(--accent);
  color: var(--accent-strong);
  box-shadow: 0 4px 15px rgba(107, 143, 106, 0.2);
}

/* WhatsApp button special styling */
.btn.whatsapp-btn {
  position: relative;
  overflow: visible;
}

.btn.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.4), rgba(18, 140, 126, 0.4));
  opacity: 0;
  z-index: -1;
  filter: blur(10px);
  transition: opacity 0.3s ease;
}

.btn.whatsapp-btn:hover::after {
  opacity: 1;
  animation: whatsapp-button-glow 2s ease-in-out infinite;
}

.btn.primary.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.2);
}

.btn.primary.whatsapp-btn:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 0 50px rgba(37, 211, 102, 0.4);
}

.btn.ghost.whatsapp-btn {
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366;
}

.btn.ghost.whatsapp-btn:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.15));
  border-color: #25d366;
  color: #128c7e;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

@keyframes whatsapp-button-glow {
  0%, 100% { 
    opacity: 0.5;
    transform: scale(1);
  }
  50% { 
    opacity: 0.9;
    transform: scale(1.05);
  }
}

main { display: flex; flex-direction: column; gap: var(--section-pad); }

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(79, 107, 81, 0.75), rgba(0,0,0,0.2)), url('https://a0.muscache.com/im/pictures/hosting/Hosting-1544658362529676791/original/1a07b1b2-00d7-4bbb-ba74-63084f319880.jpeg') center/cover no-repeat fixed;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  color: #f7f9f5;
  animation: heroSlideUp 0.8s ease-out;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

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

.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, rgba(7,20,10,0.5), rgba(7,20,10,0.75)); 
  mix-blend-mode: multiply;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(107, 143, 106, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 820px; text-align: left; display: grid; gap: 1.25rem; animation: contentFadeIn 1s ease-out 0.3s both; }

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

.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 3.6rem); line-height: 1.1; margin: 0; animation: fadeInText 0.8s ease-out 0.5s both; }

@keyframes fadeInText {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

.lede { font-size: 1.05rem; color: #dce5da; max-width: 660px; animation: fadeIn 0.8s ease-out 0.7s both; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
  letter-spacing: 0.2px;
  animation: slideInLeft 0.7s ease-out 0.3s both;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.price-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.price { display: flex; flex-direction: column; gap: 0.2rem; font-size: 1.4rem; }

.price .old { text-decoration: line-through; opacity: 0.7; font-size: 1rem; }

.price .new { font-size: 2rem; font-weight: 800; }

.price .note { font-size: 0.95rem; opacity: 0.85; }

.rating { display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.85rem 1.1rem; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.2); }

.rating .star { 
  font-size: 1.3rem; 
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
  animation: star-twinkle 3s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }

.hero-highlights { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.chip { 
  padding: 0.4rem 0.75rem; 
  border-radius: 6px; 
  background: rgba(255,255,255,0.08); 
  border: none;
  font-weight: 500; 
  font-size: 0.9rem;
  cursor: default;
  user-select: none;
  pointer-events: none;
  opacity: 0.85;
  color: rgba(255,255,255,0.95);
  box-shadow: none;
  transition: none;
  display: inline-block;
  line-height: 1.4;
}

.section {
  padding: 0 clamp(1.5rem, 6vw, 4rem);
}

.section-heading { max-width: 780px; display: grid; gap: 0.5rem; margin-bottom: 2rem; }

.section-heading h2 { 
  margin: 0; 
  font-size: clamp(2rem, 4vw, 2.6rem); 
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--fg) 0%, var(--accent-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro { color: var(--muted); }

.eyebrow { text-transform: uppercase; letter-spacing: 0.25rem; font-size: 0.75rem; color: var(--accent-strong); font-weight: 700; }

.about-grid, .amenities-grid { display: grid; gap: 1rem; }

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

.about-card, .amenity-card, .review-card, .map-card { 
  background: linear-gradient(135deg, var(--card) 0%, rgba(255, 255, 255, 0.5) 100%);
  padding: 1.4rem; 
  border-radius: var(--radius); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 0 0 1px rgba(107, 143, 106, 0.05);
  border: 1px solid rgba(107, 143, 106, 0.1);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); 
  cursor: default;
  position: relative;
  overflow: hidden;
}

.about-card::before, .amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(107, 143, 106, 0.1), transparent);
  transition: left 0.5s ease;
}

.about-card:hover::before, .amenity-card:hover::before {
  left: 100%;
}

.about-card:hover, .amenity-card:hover { 
  box-shadow: 0 8px 25px rgba(0,0,0,0.1), 0 0 0 1px rgba(107, 143, 106, 0.15);
  border-color: rgba(107, 143, 106, 0.2);
}

.review-card {
  transition: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(107, 143, 106, 0.03);
  border-color: rgba(107, 143, 106, 0.08);
  background: linear-gradient(135deg, var(--card) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.review-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(107, 143, 106, 0.03);
  border-color: rgba(107, 143, 106, 0.08);
  transform: none;
  cursor: default;
}

.about-card h3, .amenity-card h3 { margin-top: 0; margin-bottom: 0.35rem; font-family: 'Playfair Display', serif; }

.about-card p, .amenity-card p { margin: 0; color: var(--muted); }

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

.amenity-card { display: grid; gap: 0.4rem; align-content: start; }

.icon { font-size: 1.4rem; }

.gallery { background: linear-gradient(180deg, #f7f3ed 0%, #e9e2d8 100%); border-radius: 28px; padding: var(--section-pad) clamp(1.5rem, 6vw, 4rem); margin: 0 clamp(1rem, 4vw, 3rem); box-shadow: var(--shadow); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 0 0 1px rgba(107, 143, 106, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent); opacity: 0; transition: opacity 0.3s ease; z-index: 2; }

.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3)); opacity: 0; transition: opacity 0.3s ease; z-index: 1; }

.gallery-item:hover { 
  transform: translateY(-8px) scale(1.03); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 0 2px rgba(107, 143, 106, 0.3), 0 0 40px rgba(107, 143, 106, 0.15);
  border-color: rgba(107, 143, 106, 0.4);
}

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

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

.gallery-item.tall { grid-row: span 2; }

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

.reviews { background: linear-gradient(120deg, #e7efe5, #f7f3ed); border-radius: 28px; padding: var(--section-pad) clamp(1.5rem, 6vw, 4rem); margin: 0 clamp(1rem, 4vw, 3rem); box-shadow: var(--shadow); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--light) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  cursor: default;
  user-select: none;
  pointer-events: none;
  transition: none;
  opacity: 0.95;
}

.rating-badge:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transform: none;
  cursor: default;
}

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin: 1.4rem 0; }

.review-card p { margin: 0 0 0.5rem 0; }

.reviewer { color: var(--muted); font-weight: 700; }

.centered { text-align: center; }

.contact { padding-bottom: calc(var(--section-pad) + 1rem); }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }

.contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; display: grid; gap: 0.6rem; color: var(--muted); }

.contact-list a { color: var(--accent-strong); font-weight: 700; }

.map-card { padding: 0; overflow: hidden; }

.about-detail { background: var(--card); margin-top: 1.5rem; padding: 1.6rem; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.04); display: grid; gap: 1rem; }

.about-detail h3 { margin: 0; font-family: 'Playfair Display', serif; }

.detail-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }

.detail-columns h4 { margin: 0 0 0.4rem 0; }

.detail-columns ul { margin: 0; padding-left: 1.1rem; color: var(--muted); display: grid; gap: 0.35rem; }

.spaces { margin-top: -1.5rem; }

.spaces-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }

.space-card { background: var(--card); padding: 1.4rem; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.04); display: grid; gap: 0.75rem; }

.space-head { display: flex; gap: 0.75rem; align-items: center; }

.space-head h3 { margin: 0; font-family: 'Playfair Display', serif; }

.space-head p { margin: 0; color: var(--muted); }

.space-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); display: grid; gap: 0.35rem; }

.map-card iframe { border: none; width: 100%; height: 320px; }

.map-note { margin: 0; padding: 1rem; background: var(--light); color: var(--muted); }

.gallery-rooms { background: var(--light); border-radius: 28px; padding: var(--section-pad) clamp(1.5rem, 6vw, 4rem); margin: 0 clamp(1rem, 4vw, 3rem); box-shadow: var(--shadow); }

.room-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.room-tab { background: var(--card); border: 1px solid rgba(0,0,0,0.06); padding: 0.65rem 1rem; border-radius: 999px; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; overflow: hidden; }

.room-tab::before { content: ""; position: absolute; inset: 0; background: rgba(107, 143, 106, 0.1); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; z-index: -1; }

.room-tab:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }

.room-tab:hover::before { transform: scaleX(1); }

.room-tab.active { background: var(--accent); color: var(--light); box-shadow: 0 8px 20px rgba(107, 143, 106, 0.3); }

.room-gallery-container { min-height: 300px; }

.room-images { display: none; animation: fadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

.room-images.active { display: block; }

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

.nav a { padding: 0.4rem 0.7rem; border-radius: 999px; transition: all 0.3s ease; position: relative; }

.nav a::after { content: ""; position: absolute; bottom: -2px; left: 0.7rem; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }

.nav a:hover::after { width: calc(100% - 1.4rem); }

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

.image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }

.image-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; }

.image-grid img:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 24px 48px rgba(0,0,0,0.2); filter: brightness(1.05); }

@media (max-width: 1200px) {
  .image-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
  .image-grid img { aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .image-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.8rem; }
  .image-grid img { aspect-ratio: 1; }
}

.footer {
  background: #11170f;
  color: #dfe7de;
  padding: 2.2rem clamp(1.5rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; align-items: center; }

.footer a { color: #dfe7de; font-weight: 700; }

.footer-contact { display: grid; gap: 0.35rem; }

.footer-cta { display: grid; gap: 0.5rem; justify-items: start; }

.rating-line { color: #c6d1c3; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; font-size: 0.95rem; color: #c6cfc3; }

.whatsapp-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  left: auto;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.2);
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: popIn 0.6s ease-out, whatsapp-glow 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: visible;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.6), rgba(18, 140, 126, 0.6));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-glow {
  0%, 100% { 
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.2);
  }
  50% { 
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.4);
  }
}

@keyframes whatsapp-pulse {
  0%, 100% { 
    opacity: 0.4;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.5); }
  50% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.whatsapp-fab:hover { 
  transform: translateY(-4px) scale(1.1); 
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6), 0 0 70px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab:hover::before {
  opacity: 1;
}

.whatsapp-fab:active { transform: translateY(-2px) scale(0.95); }

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--light);
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(107, 143, 106, 0.4), 0 0 30px rgba(107, 143, 106, 0.2);
  z-index: 19;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 30px rgba(107, 143, 106, 0.5), 0 0 40px rgba(107, 143, 106, 0.3);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.fade { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }

.fade.visible { opacity: 1; transform: translateY(0); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

body.menu-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .site-header { 
    flex-wrap: wrap; 
    gap: 0.6rem; 
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav { 
    display: none;
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(247, 243, 237, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 0.5rem;
  }
  
  .nav.nav-open {
    display: flex;
  }
  
  .nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: left;
  }
  
  .nav a:hover {
    background: var(--card);
  }
  
  .brand-copy { display: none; }
  
  .site-header .btn.ghost {
    display: none;
  }
}

@media (max-width: 640px) {
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .hero { border-radius: 0 0 18px 18px; }
  .hero-content { text-align: left; }
  .cta-row { width: 100%; }
  .btn { width: auto; }
  .site-header { position: sticky; }
  
  .whatsapp-fab {
    bottom: 80px;
    right: 20px;
    left: auto;
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}
