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

:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-strong: #f1f5ee;
  --text: #182216;
  --muted: #4f5d4f;
  --brand: #2f5233;
  --brand-strong: #3c7a4a;
  --accent: #c7e8c0;
  --border: #d8e2d1;
  --shadow: 0 14px 40px rgba(19, 32, 19, 0.12);
  --shadow-soft: 0 10px 26px rgba(19, 32, 19, 0.14);
  --radius-lg: 6px;
  --radius-md: 6px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%, #eef3eb 100%);
  line-height: 1.6;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1f3f26 0%, #376a40 45%, #6a9a67 100%);
  color: #f6f8f3;
  padding: 84px 16px 96px;
  text-align: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.12), transparent 45%);
  opacity: 0.9;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.logo {
  width: min(168px, 42vw);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  opacity: 0.85;
}

h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
}

.subtitle {
  font-size: 1.12rem;
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(246, 248, 243, 0.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: #f6f8f3;
  color: #1f3f26;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.button.ghost {
  border-color: rgba(246, 248, 243, 0.6);
  color: #f6f8f3;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

main {
  max-width: 1120px;
  margin: 24px auto 48px;
  padding: 0 16px;
  display: grid;
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 226, 209, 0.9);
}

.card h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

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

.highlights > div {
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid rgba(216, 226, 209, 0.75);
}

.highlights h3 {
  color: var(--brand);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

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

.gallery p {
  margin-top: 6px;
  color: var(--muted);
}

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

.gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.map-embed {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 340px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 340px;
}

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

@media (max-width: 700px) {
  .hero {
    padding: 64px 16px 84px;
  }

  main {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .button,
  .gallery-item {
    transition: none;
  }
}
