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

:root {
  --cream: #F5F0EB;
  --warm-white: #FAF8F5;
  --sand: #E8E0D8;
  --charcoal: #1A1A1A;
  --dark: #0C0C0B;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --text-muted: #6B6560;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
}

.heading-sm {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 8rem 0; }
.section-padding-sm { padding: 5rem 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.divider { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn:hover { background: var(--charcoal); color: var(--warm-white); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--warm-white); }
.btn-filled { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }
.btn-filled:hover { background: transparent; color: var(--charcoal); }
.btn-white { border-color: var(--warm-white); color: var(--warm-white); }
.btn-white:hover { background: var(--warm-white); color: var(--charcoal); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--warm-white);
  letter-spacing: 0.08em;
  transition: color 0.4s ease;
}

.nav.scrolled .nav-logo,
.nav.nav-dark .nav-logo { color: var(--charcoal); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  transition: color 0.3s ease;
  position: relative;
}

.nav.scrolled .nav-links a,
.nav.nav-dark .nav-links a { color: var(--charcoal); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold) !important; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.2rem !important;
  border: 1px solid var(--gold) !important;
  font-size: 0.65rem !important;
  color: var(--gold) !important;
  transition: all 0.3s ease;
}

.nav-cta:hover { background: var(--gold); color: var(--warm-white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--warm-white);
  transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span,
.nav.nav-dark .nav-toggle span { background: var(--charcoal); }

/* Dark nav (for pages without hero image) */
.nav-dark { background: var(--warm-white); padding: 1rem 2.5rem; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 11, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu nav { text-align: center; }

.mobile-menu a {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-white);
  padding: 0.8rem 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE HERO (shorter, for inner pages) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 2rem;
}

/* ===== FULL HERO (homepage) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== INTRO SECTION ===== */
.intro { background: var(--warm-white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image {
  aspect-ratio: 4/5;
  background: var(--sand);
  overflow: hidden;
}

.intro-content .heading-sm { color: var(--gold); margin-bottom: 1rem; }
.intro-content .heading-lg { margin-bottom: 1.5rem; }
.intro-content .body-text { margin-bottom: 2rem; }

.intro-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
}

.stat-item h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.stat-item p {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ===== FEATURES RIBBON ===== */
.features-ribbon {
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 4rem 0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.ribbon-item h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.ribbon-item p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== VILLA CARDS ===== */
.villa { background: var(--cream); }

.villa-header { text-align: center; margin-bottom: 4rem; }
.villa-header .heading-sm { color: var(--gold); margin-bottom: 1rem; }
.villa-header .body-text { margin-top: 1.5rem; }

.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.villa-card {
  background: var(--warm-white);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.villa-card:hover { transform: translateY(-4px); }

.villa-card-image {
  aspect-ratio: 3/2;
  background: var(--sand);
  overflow: hidden;
}

.villa-card-image img { width: 100%; height: 100%; object-fit: cover; }

.villa-card-content { padding: 1.5rem; }

.villa-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.villa-card-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== GALLERY GRID ===== */
.gallery { background: var(--warm-white); }

.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-header .heading-sm { color: var(--gold); margin-bottom: 1rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--sand);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item:hover::after { background: rgba(0,0,0,0.1); }

/* Gallery category layout */
.gallery-category { margin-bottom: 4rem; }
.gallery-category:last-child { margin-bottom: 0; }

.gallery-category h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand);
}

.gallery-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-cat-grid .gallery-item { aspect-ratio: 3/2; }
.gallery-cat-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

/* ===== AMENITIES ===== */
.amenities { background: var(--charcoal); color: var(--warm-white); }

.amenities-header { text-align: center; margin-bottom: 4rem; }
.amenities-header .heading-sm { color: var(--gold); margin-bottom: 1rem; }
.amenities-header .body-text { color: rgba(255,255,255,0.5); margin-top: 1.5rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.amenity-group h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.amenity-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }

.amenity-group li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.amenity-group li::before {
  content: '';
  width: 6px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ===== EXPERIENCE / SPLIT SECTIONS ===== */
.experience { background: var(--cream); }

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.experience-content .heading-sm { color: var(--gold); margin-bottom: 1rem; }
.experience-content .heading-lg { margin-bottom: 1.5rem; }
.experience-content .body-text { margin-bottom: 2rem; }

.experience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.experience-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.experience-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.experience-image {
  aspect-ratio: 4/5;
  background: var(--sand);
  overflow: hidden;
}

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

/* ===== LOCATION ===== */
.location { background: var(--warm-white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-map {
  aspect-ratio: 1;
  background: var(--sand);
  overflow: hidden;
}

.location-map iframe { width: 100%; height: 100%; border: 0; }

.location-content .heading-sm { color: var(--gold); margin-bottom: 1rem; }
.location-content .heading-lg { margin-bottom: 1.5rem; }

.location-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.location-highlights li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.location-highlights .highlight-label {
  font-weight: 500;
  color: var(--charcoal);
  min-width: 140px;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--cream); }

.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header .heading-sm { color: var(--gold); margin-bottom: 1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--warm-white);
  padding: 2.5rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.review-author {
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
}

.review-name { font-size: 0.8rem; font-weight: 500; color: var(--charcoal); }
.review-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ===== CTA / BOOKING ===== */
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #1a1a2e 50%, #16213e 100%);
  color: var(--warm-white);
  text-align: center;
  padding: 10rem 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196, 162, 101, 0.08) 0%, transparent 60%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section .heading-sm { color: var(--gold-light); margin-bottom: 1rem; }
.cta-section .heading-xl { margin-bottom: 1.5rem; }
.cta-section .body-text { color: rgba(255,255,255,0.6); margin-bottom: 3rem; }

.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONCIERGE SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--warm-white);
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--sand);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== BOOKING OPTIONS ===== */
.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.booking-card {
  background: var(--warm-white);
  border: 2px solid var(--sand);
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
}

.booking-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.booking-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.booking-card .booking-details {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  border: 1px solid var(--sand);
  background: var(--warm-white);
  color: var(--charcoal);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.8rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}

.footer-social { display: flex; gap: 1.5rem; }
.footer-social a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-padding { padding: 5rem 0; }
  .intro-grid, .experience-grid, .location-grid { gap: 3rem; }
  .villa-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 600px; }
  .page-hero { height: 40vh; min-height: 300px; }
  .section-padding { padding: 4rem 0; }
  .intro-grid, .experience-grid, .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image { aspect-ratio: 3/2; }
  .experience-image { aspect-ratio: 3/2; order: -1; }
  .villa-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cat-grid .gallery-item:first-child { grid-column: span 2; }
  .amenities-grid { grid-template-columns: 1fr; }
  .ribbon-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .intro-stats { gap: 2rem; }
  .cta-section { padding: 6rem 0; }
  .location-map { aspect-ratio: 16/9; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .intro-stats { flex-direction: column; gap: 1.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* ===== PHOTO NUMBER BADGE ===== */
.gallery-item { position: relative; }
.photo-num {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2;
  background: rgba(0,0,0,0.45);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ===== HALF CASA CALLOUT ===== */
.half-casa-callout {
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin: 2rem auto;
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.half-casa-callout .hc-text { flex: 1 1 360px; }
.half-casa-callout h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.half-casa-callout p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== NAV CONTACT BUTTON ===== */
.nav-contact {
  font-size: 0.78rem !important;
  letter-spacing: 0.18em;
  opacity: 0.85;
}
.nav-contact:hover { opacity: 1; }

/* ===== WHATSAPP BUTTON ===== */
.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border-color: #25D366 !important;
}
.btn-whatsapp:hover { background: #1ebe57; border-color: #1ebe57 !important; }

/* ===== FOOTER CONTACT BLOCK ===== */
.footer-contact-block {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-contact-block .fcb-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-contact-block .fcb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}
.footer-contact-block a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}
.footer-contact-block a:hover { color: var(--gold-light); }
.footer-contact-block a[data-coming-soon="true"] {
  opacity: 0.55;
  cursor: default;
}
.footer-contact-block a[data-coming-soon="true"]::after {
  content: ' (soon)';
  font-size: 0.7rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* ===== BOOK PAGE CONTACT BUTTONS ===== */
.book-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== LOCATION MAP FULL ===== */
.map-embed-wrap {
  width: 100%;
  margin: 0 auto 2.5rem;
  border: 1px solid var(--sand);
  overflow: hidden;
}
.map-embed-wrap iframe { display: block; width: 100%; border: 0; }

/* ===== RATE NOTE ===== */
.rate-note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
  margin-top: 1.25rem;
}

/* ===== STORY OF NINA ===== */
.story-nina {
  background: var(--warm-white);
  padding: 5rem 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.story-nina .story-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.story-nina h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}
.story-nina p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .half-casa-callout { padding: 1.5rem; }
  .footer-contact-block { flex-direction: column; align-items: flex-start; }
}
