:root {
  --bg: #0f1111;
  --text: #1f2523;
  --brand: #2f6b3f;
  --brand-dark: #234f2f;
  --soft: #f5f8f5;
  --white: #ffffff;
  --muted: #5c665f;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e4ece5;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.brand img {
  height: 56px;
  width: auto;
}

nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

nav a {
  color: #273029;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-sm {
  padding: 10px 16px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4, 8, 6, 0.8), rgba(4, 8, 6, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 70px 0;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  margin: 0 0 24px;
  max-width: 640px;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 68px 0;
}

.section h2 {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
}

.section-soft {
  background: var(--soft);
}

.grid-two {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #e5ece6;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0 0 14px;
  line-height: 1.65;
}

.contact-card p {
  margin-bottom: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #d9e2da;
}

.map-wrap iframe {
  width: 100%;
  min-height: 460px;
}

.footer {
  background: var(--bg);
  color: #d8dfda;
  padding: 28px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.footer a {
  color: #d8dfda;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .grid-two {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .topbar-content {
    flex-wrap: wrap;
  }

  .brand img {
    height: 48px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
