*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sandy: #C8A96E;
  --sandy-light: #F5EFE6;
  --sandy-dark: #A0824A;
  --blue: #2E86AB;
  --blue-dark: #1A6B8A;
  --dark: #1A1A1A;
  --mid: #555;
  --white: #FFFFFF;
  --section-pad: 80px 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 2px solid var(--sandy);
  backdrop-filter: blur(6px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--blue); text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 8px 18px; border-radius: 4px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }
.nav-mobile { display: none; list-style: none; flex-direction: column; background: var(--white); padding: 10px 20px 16px; border-top: 1px solid var(--sandy-light); }
.nav-mobile.open { display: flex; }
.nav-mobile a { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 0.95rem; padding: 8px 0; text-transform: uppercase; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #2E86AB 0%, #1A4A5C 40%, #0D2B38 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80') center/cover no-repeat;
  opacity: 0.25;
}
.hero-content { position: relative; z-index: 1; padding: 20px; }
.hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 300; letter-spacing: 4px;
  text-transform: uppercase; color: var(--sandy); margin-bottom: 12px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white); font-weight: 700;
  line-height: 1.1; margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.15rem; font-weight: 300;
  color: rgba(255,255,255,0.85); margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none;
  padding: 13px 30px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.2s; cursor: pointer;
}
.btn-primary { background: var(--sandy); color: var(--white); }
.btn-primary:hover { background: var(--sandy-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-wide { width: 100%; text-align: center; margin-top: 20px; }
.btn-whatsapp { background: #25D366; color: var(--white); font-size: 1rem; padding: 16px 36px; }
.btn-whatsapp:hover { background: #1aad52; }
.btn-email { background: var(--sandy); color: var(--white); font-size: 1rem; padding: 16px 36px; }
.btn-email:hover { background: var(--sandy-dark); }

/* ── INTRO ───────────────────────────────────────────────────────────────── */
.intro { padding: 60px 20px; text-align: center; border-bottom: 1px solid var(--sandy-light); }
.intro-text {
  max-width: 740px; margin: 0 auto;
  font-size: 1.1rem; color: var(--mid); line-height: 1.9;
  font-family: 'Playfair Display', serif; font-style: italic;
}

/* ── HIGHLIGHTS ──────────────────────────────────────────────────────────── */
.highlights { background: var(--blue); padding: 30px 20px; }
.highlights-grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
}
.highlight-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 32px; color: var(--white); text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.highlight-item:last-child { border-right: none; }
.highlight-icon { font-size: 1.6rem; margin-bottom: 6px; }
.highlight-item p { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

/* ── SECTION LABELS & HEADINGS ───────────────────────────────────────────── */
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sandy); margin-bottom: 8px;
}
.section-label.light { color: var(--sandy); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark); margin-bottom: 10px;
}
.section-sub { color: var(--mid); font-size: 1rem; margin-bottom: 40px; }

/* ── PROPERTY SECTIONS ───────────────────────────────────────────────────── */
.property-section { padding: var(--section-pad); }
.alt-bg { background: var(--sandy-light); }

.property-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
  margin-top: 40px;
}
.property-layout.reverse { direction: rtl; }
.property-layout.reverse > * { direction: ltr; }

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 130px 130px;
  gap: 8px;
}
.photo-placeholder {
  background: linear-gradient(135deg, #D4C4A0, #B8A070);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  font-size: 0.85rem; font-weight: 700;
}
.photo-placeholder.main {
  grid-column: 1 / 3;
}
.photo-placeholder small { display: block; font-weight: 300; font-size: 0.75rem; margin-top: 4px; opacity: 0.85; }

/* Property Info */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 28px;
}
.info-item {
  background: var(--sandy-light); border-radius: 6px;
  padding: 12px; text-align: center; border-left: 3px solid var(--sandy);
}
.info-item strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mid); margin-bottom: 4px; }
.info-item span { font-size: 0.9rem; font-weight: 700; color: var(--dark); }

.property-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin: 20px 0 8px; color: var(--dark);
}
.property-info p { color: var(--mid); font-size: 0.95rem; margin-bottom: 10px; }

.features-list { list-style: none; margin: 8px 0; }
.features-list li {
  padding: 5px 0; font-size: 0.9rem; color: var(--mid);
  border-bottom: 1px solid var(--sandy-light);
}
.features-list li::before { content: "✓ "; color: var(--sandy); font-weight: 700; }

/* ── AMENITIES ───────────────────────────────────────────────────────────── */
.amenities-section { padding: var(--section-pad); background: var(--white); text-align: center; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px;
}
.amenity-card {
  background: var(--sandy-light); border-radius: 10px;
  padding: 30px 20px; text-align: center;
  border-top: 3px solid var(--sandy); transition: transform 0.2s;
}
.amenity-card:hover { transform: translateY(-4px); }
.amenity-icon { font-size: 2.2rem; margin-bottom: 12px; }
.amenity-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.amenity-card p { font-size: 0.88rem; color: var(--mid); }

/* ── HOUSE RULES ─────────────────────────────────────────────────────────── */
.rules-section { background: var(--blue); padding: 60px 20px; text-align: center; }
.rules-section h2 { color: var(--white); margin-bottom: 30px; }
.rules-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.rule-item {
  background: rgba(255,255,255,0.12); border-radius: 6px;
  padding: 14px 12px; color: var(--white);
  font-size: 0.88rem; font-weight: 600; text-align: center;
}

/* ── LOCATION ────────────────────────────────────────────────────────────── */
.location-section { padding: var(--section-pad); background: var(--sandy-light); text-align: center; }
.map-placeholder {
  width: 100%; height: 320px; background: linear-gradient(135deg, #D4C4A0, #B8A070);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; font-weight: 700; margin: 20px 0;
}
.map-placeholder small { display: block; font-weight: 300; margin-top: 6px; }
.location-note { font-size: 0.88rem; color: var(--mid); font-style: italic; }

/* ── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-section {
  background: linear-gradient(135deg, #1A4A5C, #0D2B38);
  padding: var(--section-pad); text-align: center; color: var(--white);
}
.contact-section h2 { color: var(--white); margin-bottom: 12px; }
.contact-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 30px; }
.contact-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.contact-details p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 6px 0; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 36px 20px; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--sandy); margin-bottom: 6px; }
.footer-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 10px; }
.footer-links { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--sandy); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .property-layout { grid-template-columns: 1fr; }
  .property-layout.reverse { direction: ltr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { padding: 14px 18px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-rows: 200px 110px 110px; }
  .highlights-grid { gap: 0; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); width: 50%; }
  .highlight-item:nth-child(even) { border-right: none; }
}
