* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f6f6;
}

.hero {
  position: relative;
  min-height: 90vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.hero-content { position: relative; padding: 20px; }

h1 { margin: 0 0 10px; font-size: clamp(38px, 6vw, 64px); }

.hero-buttons { margin-top: 16px; }

.section { max-width: 960px; margin: 60px auto; padding: 0 16px; }

.card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,.06);
}

.btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 12px;
  background: #3b6c4a;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin: 4px;
}

.btn-light {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery img {
  border-radius: 16px;
  width: 100%;
  display: block;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin: 8px 0 14px;
}

button.btn { border: none; cursor: pointer; }

.map { border-radius: 20px; overflow: hidden; }

footer {
  padding: 30px 16px;
  text-align: center;
  color: #888;
}

.note { color: #777; font-size: 14px; }
