:root {
  --green: #195100;
  --orange: #e98f50;
  --cream: #f7f3ed;
  --dark: #152014;
  --text: #4e594b;
  --white: #fff;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar { background: var(--green); color: #fff; font-size: 0.92rem; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar-inner > div:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-location-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.topbar-glyph {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang { display: flex; align-items: center; gap: 6px; }
.lang a {
  text-decoration: none;
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}
.lang a[aria-current="page"] { background: #fff; color: var(--green); border-color: #fff; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.logo-mark {
  width: clamp(34px, 4vw, 46px);
  height: clamp(34px, 4vw, 46px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  opacity: 0.94;
}

.logo-text {
  line-height: 1.1;
}

.header.is-scrolled .logo-mark {
  opacity: 1;
  filter: saturate(0.82) contrast(1.05);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.1);
}
.nav { display: flex; gap: 22px; align-items: center; }
.nav a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.95rem; }
.nav a:hover { color: var(--orange); }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)); }
.hero-content { position: relative; z-index: 1; width: min(920px, calc(100% - 32px)); padding: 80px 0; }
.hero-content {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.12;
  margin: 0 0 20px;
}
.hero p { font-size: clamp(1rem, 2.5vw, 1.25rem); margin: 0 auto 28px; max-width: 780px; }
.btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--green);
}
.btn:hover { background: #fff; color: var(--green); }
.btn.secondary { background: transparent; border-color: rgba(255, 255, 255, 0.75); }
.btn.secondary:hover { background: #fff; color: var(--green); }

.section { padding: 72px 0; }
.section.alt { background: var(--cream); }
.section {
  position: relative;
}
.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; }
.eyebrow {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}
h2 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 22px;
}
h3 { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; margin: 0 0 8px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery img {
  width: 100%;
  height: clamp(170px, 18vw, 230px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.card-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card {
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: var(--shadow);
  border-radius: 22px;
  border: 1px solid rgba(25, 81, 0, 0.06);
}
.card .icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--green);
  background: rgba(25, 81, 0, 0.08);
  border: 1px solid rgba(25, 81, 0, 0.14);
  border-radius: 14px;
}

.icon-glyph,
.feature-glyph {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card .icon img,
.feature-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.feature {
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  border: 1px solid rgba(25, 81, 0, 0.05);
}
.feature strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: rgba(25, 81, 0, 0.08);
  border: 1px solid rgba(25, 81, 0, 0.14);
  border-radius: 10px;
}

.cta {
  background: linear-gradient(rgba(25, 81, 0, 0.86), rgba(25, 81, 0, 0.86)), url("images/DJI_0030-scaled.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 58%);
  pointer-events: none;
}
.cta h2 { color: #fff; }

.footer { background: var(--dark); color: rgba(255, 255, 255, 0.86); padding: 46px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.footer h3 { color: #fff; }
.footer a { color: rgba(255, 255, 255, 0.9); }
.copyright { border-top: 1px solid rgba(255, 255, 255, 0.15); margin-top: 28px; padding-top: 18px; font-size: 0.88rem; }

@media (max-width: 860px) {
  .nav { display: none; }
  .hero { min-height: 66vh; }
  .grid, .footer-grid { grid-template-columns: 1fr; }
  .card-row, .feature-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 52px 0; }
  .topbar-inner { justify-content: center; text-align: center; }
  .logo {
    gap: 8px;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: clamp(200px, 52vw, 300px); }
  .btn { width: 100%; text-align: center; }
  .hero-content { padding: 58px 0; }
}

@media (max-width: 430px) {
  .logo-text { display: none; }
  .logo-mark {
    width: 38px;
    height: 38px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
  z-index: 200;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1300px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.lightbox-btn {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.lightbox-btn:hover {
  background: rgba(0, 0, 0, 0.62);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 60px;
  border-radius: 12px;
  font-size: 28px;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

body.lightbox-open {
  overflow: hidden;
}