:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f6fbf6;
  color: #1f2937;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-image: radial-gradient(circle at top left, rgba(96, 165, 90, 0.12), transparent 30%), radial-gradient(circle at bottom right, rgba(34, 125, 80, 0.08), transparent 25%);
}

img, iframe {
  max-width: 100%;
  border: 0;
}

iframe {
  width: 100%;
  height: 100%;
}

.site-header {
  background: radial-gradient(circle at top left, #51ad63 0%, #276749 40%, #1f4d2d 100%);
  color: white;
  padding: 1.5rem 1.5rem 1.25rem;
}

.brand h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.tagline {
  margin: 0;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255,255,255,0.22);
}

.page-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.hero {
  text-align: left;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgba(222,247,232,0.98), rgba(255,255,255,0.92));
  border-radius: 28px;
  border: 1px solid #d6f4e0;
  box-shadow: 0 22px 60px rgba(34, 76, 46, 0.08);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(34, 76, 46, 0.12);
}

.hero-note {
  margin-top: 1rem;
  color: #134e2c;
  font-weight: 600;
}

.hero h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  background: #1f4d2d;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
}

.button-secondary {
  background: white;
  color: #1f4d2d;
  border: 1px solid #1f4d2d;
}

.panels {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.panel {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.panel h3 {
  margin-top: 0;
}

.content-block {
  margin-top: 2rem;
  padding: 1.75rem;
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  border: 1px solid #e6f2ea;
  box-shadow: 0 16px 35px rgba(31, 41, 55, 0.05);
}

.content-block h2 {
  margin-top: 0;
}

.map-card {
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  margin: 1rem 0;
  border: 1px solid #cce8d5;
  background: #f8fff8;
}

.layout-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.bed {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #e6f4e5;
  border: 1px solid #c5e6c9;
  font-weight: 700;
  color: #14532d;
  text-align: center;
  padding: 1rem;
}

.bed-communal {
  background: #d1fae5;
  border-color: #86efac;
  color: #134e2c;
}

.site-footer a {
  color: #1f4d2d;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 800px) {
  .panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) 0.9fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }
}