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

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --sunset-orange:  #e85d20;
  --sunset-amber:   #f4a234;
  --sunset-red:     #c23d1a;
  --teal:           #2ab4a8;
  --teal-dark:      #1d8c82;
  --teal-light:     #5dd4cb;
  --cream:          #fdf8f2;
  --warm-white:     #ffffff;
  --dark:           #1a1f2e;
  --charcoal:       #3a3a4a;
  --muted:          #6b6b7b;
  --border:         #e8e0d5;
  --shadow:         0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 48px rgba(0,0,0,0.15);
  --sunset-grad-hero: linear-gradient(180deg, #ffffff 0%, #cce8f4 30%, #5bc8c0 60%, #1d8c82 80%, #1a1f2e 100%);
}

html { scroll-behavior: smooth; }

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

img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 31, 46, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--sunset-orange);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--sunset-amber);
}

.nav-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav-links a:hover { color: var(--sunset-amber); }

.nav-cta {
  background: var(--sunset-orange) !important;
  color: white !important;
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sunset-red) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--sunset-grad-hero);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding: 2rem;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232,93,32,0.12);
  border: 1px solid rgba(232,93,32,0.4);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--sunset-orange);
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--sunset-amber);
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-weight: 700;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--sunset-orange);
  opacity: 1;
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary { background: var(--sunset-orange); color: white; border: 2px solid var(--sunset-orange); }
.btn-primary:hover { background: var(--sunset-red); border-color: var(--sunset-red); }
.btn-outline { background: rgba(255,255,255,0.15); color: white; border: 2px solid rgba(255,255,255,0.8); }
.btn-outline:hover { background: rgba(255,255,255,0.3); border-color: white; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  color: white;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 3px solid var(--teal);
}

.stats-bar span { opacity: 0.55; }
.stats-bar strong { color: var(--sunset-amber); }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

p { color: var(--charcoal); }

/* ===== HIGHLIGHTS ===== */
.highlights { background: var(--warm-white); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.highlight-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--sunset-orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.highlight-card:nth-child(2) { border-top-color: var(--teal); }
.highlight-card:nth-child(3) { border-top-color: var(--sunset-amber); }
.highlight-icon { font-size: 1.8rem; margin-bottom: 1rem; }

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

.stars { color: var(--sunset-amber); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--dark);
  border-radius: 10px;
  color: white;
}

.rating-big { font-size: 3rem; font-weight: 700; color: var(--sunset-amber); line-height: 1; }
.rating-info p { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.rating-info p:last-child { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 0.25rem; }

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

.review-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
}

.reviewer { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }

.reviewer-initial {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(160deg, #c23d1a, #f4a234, #2ab4a8);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 0.95rem; }
.reviewer-location { font-size: 0.75rem; color: var(--muted); }
.review-text { font-size: 0.93rem; line-height: 1.65; color: var(--charcoal); font-style: italic; font-family: 'Playfair Display', serif; }

/* ===== PROPERTY PAGE ===== */
.property { background: var(--warm-white); }
.property-intro { max-width: 700px; font-size: 1.05rem; line-height: 1.85; margin-bottom: 3rem; }

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  height: 460px;
}

.photo-main { grid-row: 1 / 3; }
.photo-main img, .photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.photo-placeholder {
  background: linear-gradient(135deg, #2a2f3e, #3a3f50);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: rgba(255,255,255,0.35);
  font-size: 0.78rem; font-family: 'Lato', sans-serif;
  border-radius: 4px;
}
.photo-placeholder small { font-size: 0.65rem; opacity: 0.6; display: block; margin-top: 0.3rem; }
.photo-main.photo-placeholder { border-radius: 0; }

/* Airbnb link */
.airbnb-banner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 8px; padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.9rem; color: var(--charcoal);
}

.btn-airbnb {
  background: #ff385c; color: white; border: none;
  padding: 0.6rem 1.25rem; border-radius: 6px;
  font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-airbnb:hover { background: #e0314f; }

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  margin-bottom: 1rem;
  height: 520px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #111;
}

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55); color: white; border: none;
  font-size: 2.5rem; line-height: 1; padding: 0.4rem 0.9rem;
  cursor: pointer; transition: background 0.2s; z-index: 10;
  border-radius: 4px;
}
.carousel-btn:hover { background: rgba(0,0,0,0.85); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-counter {
  position: absolute; bottom: 1rem; right: 1.25rem;
  background: rgba(0,0,0,0.55); color: white;
  font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.75rem;
  border-radius: 50px; letter-spacing: 0.06em;
}

.airbnb-link {
  margin-top: 0.75rem;
  font-size: 0.78rem;
}
.airbnb-link a {
  color: var(--teal-dark); text-decoration: underline; font-weight: 700;
}
.airbnb-link a:hover { color: var(--teal); }

.bedrooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.bedroom-card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--cream); border-top: 4px solid var(--sunset-orange); }
.bedroom-card:nth-child(2) { border-top-color: var(--teal); }
.bedroom-card:nth-child(3) { border-top-color: var(--sunset-amber); }
.bedroom-card-body { padding: 1.25rem; }
.bedroom-card-body p { font-size: 0.88rem; color: var(--muted); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.amenity-group h4 {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sunset-orange); margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--sunset-amber); font-weight: 700;
}

.amenity-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.amenity-group li { font-size: 0.88rem; color: var(--charcoal); display: flex; align-items: center; gap: 0.5rem; }
.amenity-group li::before { content: '✓'; color: var(--teal); font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.rule-item {
  background: var(--dark); color: rgba(255,255,255,0.85);
  border-radius: 8px; padding: 0.9rem 1.25rem;
  font-size: 0.88rem; display: flex; align-items: center; gap: 0.6rem;
}

/* ===== INQUIRE PAGE ===== */
.inquire { background: var(--cream); }

.inquire-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.inquire-info h2 { margin-bottom: 1rem; }
.inquire-info > p { margin-bottom: 1.5rem; }

.inquire-steps { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.inquire-steps li { display: flex; gap: 1rem; align-items: flex-start; font-size: 0.9rem; color: var(--charcoal); }

.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sunset-orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem;
}

.trust-badges {
  margin-top: 2.5rem; padding: 1.25rem;
  background: var(--dark); border-radius: 10px;
  color: rgba(255,255,255,0.75); display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.83rem;
}
.trust-badges span { display: flex; align-items: center; gap: 0.5rem; }

/* ===== FORM ===== */
.form-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2.5rem;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--sunset-orange);
}

.form-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

.form-group label {
  font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--charcoal); font-weight: 700;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Lato', sans-serif; font-size: 0.95rem;
  color: var(--dark); background: var(--cream);
  transition: border-color 0.2s; outline: none;
}

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

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

.form-submit {
  width: 100%; padding: 1rem;
  background: var(--sunset-orange); color: white; border: none;
  border-radius: 6px; font-size: 0.88rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  margin-top: 0.5rem; transition: background 0.2s;
}
.form-submit:hover { background: var(--sunset-red); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark); color: rgba(255,255,255,0.6);
  text-align: center; padding: 2.5rem 2rem;
  font-size: 0.82rem; border-top: 3px solid var(--sunset-orange);
}
footer strong { color: var(--sunset-amber); font-family: 'Dancing Script', cursive; font-size: 1rem; font-weight: 400; }

/* ===== PAGE SECTIONS ===== */
.page { display: none; }
.page.active { display: block; }
.divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ===== NAV BUTTONS ===== */
.nav-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700;
  transition: color 0.2s; padding: 0;
}
.nav-btn:hover { color: var(--sunset-amber); }
.nav-btn.nav-cta {
  background: var(--sunset-orange); color: white;
  padding: 0.55rem 1.2rem; border-radius: 4px;
}
.nav-btn.nav-cta:hover { background: var(--sunset-red); color: white; }

/* ===== BTN GHOST ===== */
.btn-ghost {
  background: transparent; color: var(--sunset-orange);
  border: 2px solid var(--sunset-orange);
}
.btn-ghost:hover { background: var(--sunset-orange); color: white; }

/* ===== ABOUT BRAND ===== */
.about-brand { background: var(--dark); }
.about-brand .section-label { color: var(--sunset-amber); }
.about-brand h2 { color: white; }
.about-text {
  max-width: 700px; font-size: 1.05rem; line-height: 1.85;
  color: rgba(255,255,255,0.7);
}

/* ===== PROPERTIES GRID ===== */
.properties { background: var(--cream); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.property-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.property-card--coming-soon { opacity: 0.65; }
.property-card--coming-soon:hover { transform: none; }

.property-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--sunset-orange); color: white;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 50px;
  z-index: 2;
}

.property-card-img {
  height: 220px;
  background: var(--sunset-grad-hero);
}

.property-card-img--soon {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  display: flex; align-items: center; justify-content: center;
}
.property-card-img--soon::after {
  content: '🏡';
  font-size: 3.5rem;
  opacity: 0.3;
}

.property-card-body { padding: 1.5rem; }

.property-card-location {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-dark); font-weight: 700; margin-bottom: 0.4rem;
}

.property-card-body h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.property-card-body p { font-size: 0.9rem; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.6; }

.property-card-stats {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
  font-size: 0.78rem; color: var(--muted);
  padding: 0.75rem 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin-bottom: 1.25rem;
}

.property-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== NEIGHBORHOOD GUIDE ===== */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.neighborhood-category--wide {
  grid-column: 1 / -1;
}

.neighborhood-category {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.neighborhood-cat-header {
  background: var(--dark);
  color: var(--sunset-amber);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
}

.neighborhood-places {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.neighborhood-places--row {
  flex-direction: row;
  flex-wrap: wrap;
}

.neighborhood-place {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.neighborhood-place:last-child { border-bottom: none; }
.neighborhood-places--row .neighborhood-place {
  flex: 1 1 220px;
  border-bottom: none;
  border-right: 1px solid var(--border);
}
.neighborhood-places--row .neighborhood-place:last-child { border-right: none; }

.place-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.place-info {
  font-size: 0.8rem;
  color: var(--charcoal);
}
.place-hours {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .inquire-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 3rem 1.25rem; }
  .stats-bar { gap: 0.4rem 1.2rem; font-size: 0.7rem; }
}
