:root {
  --bg: #f7f2eb;
  --card: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --accent: #7c3aed;
  --accent-dark: #5b21b6;
  --soft: #ede9fe;
  --available: #15803d;
  --occupied: #b91c1c;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, rgba(31,41,51,.86), rgba(91,33,182,.68)), url('photos/hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  flex-direction: column;
}

.nav {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand { font-weight: 800; font-size: 1.2rem; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { opacity: .92; font-weight: 600; }

.hero-content {
  width: min(900px, 92%);
  margin: auto;
  padding: 80px 0;
}

.tag, .section-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .78rem;
  color: #c4b5fd;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.05;
  max-width: 920px;
  margin: 12px 0;
}

.subtitle { max-width: 720px; font-size: 1.2rem; opacity: .92; }
.hero-actions, .contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
}
.primary { background: var(--accent); color: white; }
.primary:hover { background: var(--accent-dark); }
.secondary { background: white; color: var(--accent-dark); }

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 72px 0;
}

.highlight-grid, .availability-grid, .video-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.highlight-card, .features-card, .flat-card, .video-card, .contact-form {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.highlight-card span { color: var(--muted); font-weight: 700; }
.highlight-card strong { display: block; font-size: 1.3rem; margin-top: 6px; }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; margin: 8px 0 18px; }
h3 { margin-top: 0; }
.muted { color: var(--muted); }
.small-note { color: var(--muted); font-size: .9rem; }

.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.features-list li {
  background: var(--soft);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
}

.flat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: .82rem;
}
.badge.available { background: #dcfce7; color: var(--available); }
.badge.occupied { background: #fee2e2; color: var(--occupied); }

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}

.gallery-item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.gallery-item p { padding: 0 18px 18px; margin: 12px 0 0; font-weight: 700; }

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label { font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  font: inherit;
}

footer {
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .two-column, .contact-section { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
}
