:root {
  --turf: #187740;
  --turf-2: #207541;
  --gold: #b29f4b;
  --white: #ffffff;
  --ink: #1b1b1b;
  --muted: #6f6f6f;
  --line: #e1e7dd;
  --soft: #f5f8f2;
  --shadow: 0 18px 40px rgba(16, 56, 36, 0.12);
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 10% -10%, #f0f7f2 0%, transparent 60%),
    radial-gradient(800px 500px at 110% 10%, #f7f3e8 0%, transparent 55%),
    #ffffff;
}

p {
  color: var(--turf);
}

.topbar {
  background: #f1f7f0;
  color: #3a3a3a;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.topbar a { color: #2e5f45; text-decoration: none; }

.navbar-dark {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-modern {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.nav-modern .navbar-brand {
  gap: 12px;
}

.nav-modern .navbar-toggler {
  border: 1px solid var(--line);
}

.nav-modern .nav-link {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  color: #2b2b2b;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-modern .nav-link::after {
  content: \"\";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  height: 2px;
  width: 0%;
  background: var(--turf);
  transition: width 0.2s ease;
}

.nav-modern .nav-link:hover::after,
.nav-modern .nav-link.active::after {
  width: 100%;
}

.brand-logo {
  width: 60px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
  padding: 4px;
}

.brand-title {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  line-height: 1.1;
}

.nav-link {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.nav-link.active { color: var(--turf) !important; }

.btn-gold {
  background: var(--turf);
  border: 2px solid var(--turf);
  color: #ffffff;
  border-radius: 4px;
  font-weight: 700;
}

.btn-outline-light { border-radius: 4px; }

.hero {
  position: relative;
  min-height: 70vh;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/1.jpg") center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.04);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 18, 0.35) 0%, rgba(10, 28, 18, 0.35) 100%);
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.hero .accent { color: var(--gold); }

.section-soft { background: var(--soft); }

.card-square {
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.stat-band {
  background: linear-gradient(120deg, #1f7f49 0%, #2a8a53 55%, #1f7f49 100%);
  color: #fff;
  border-radius: 6px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--turf);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--turf);
  font-weight: 700;
  margin: 0 auto 10px;
}

.media-frame {
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  object-fit: cover;
}

.gallery-grid img {
  height: 220px;
  aspect-ratio: 4 / 3;
}

@media (min-width: 992px) {
  .gallery-grid img {
    height: 240px;
    aspect-ratio: 4 / 3;
  }
}

.contact-card {
  background: var(--turf);
  color: #fff;
  border-radius: 6px;
}

.contact-card a { color: #fff; }

.page-hero {
  background: linear-gradient(120deg, #1f7f49 0%, #2a8a53 100%);
  color: #fff;
}

.page-hero h1 {
  font-family: "Fraunces", serif;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--turf);
}

.table thead th {
  background: #f7f4ee;
}

.footer {
  color: var(--muted);
}
