:root {
  --dark-green: #24492a;
  --mid-green: #4f6d55;
  --sage-green: #7c9383;
  --accent-green: #3d6b35;
  --text-dark: #2b2f26;
  --bg-light: #eef1ee;
  --white: #ffffff;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  color: var(--accent-green);
  font-weight: bold;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--white);
  border-bottom: 1px solid #e2e6e2;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo img {
  height: 64px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-dark);
  font-size: 16px;
}

nav a.active,
nav a:hover {
  color: var(--accent-green);
  border-bottom: 2px solid var(--accent-green);
}

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 20, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-content p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--sage-green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--mid-green); }

/* Sections */
section {
  padding: 60px 0;
}

.section-light { background: var(--bg-light); }

.two-col {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.two-col > div { flex: 1; min-width: 280px; }

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 50px 20px;
  color: var(--white);
}

.stat:nth-child(1) { background: var(--dark-green); }
.stat:nth-child(2) { background: var(--mid-green); }
.stat:nth-child(3) { background: var(--sage-green); }

.stat .num { font-size: 44px; font-weight: bold; }
.stat .label { font-size: 15px; margin-top: 8px; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border: 1px solid #e2e6e2;
  border-radius: 8px;
  padding: 28px;
}

.card h3 { margin-bottom: 12px; font-size: 20px; }

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 30px auto 0;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #c9d0c9;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}

.contact-form .consent input { width: auto; margin: 3px 0 0; }

/* Footer */
footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 50px 24px;
  text-align: center;
}

footer h3 { color: var(--white); margin-bottom: 16px; }

footer a { text-decoration: underline; }

footer .legal-links {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.85;
}

footer .legal-links a { margin: 0 10px; }

/* Gallery */
.gallery-card { padding: 20px; text-align: left; }
.gallery-card h3 { color: var(--accent-green); font-size: 18px; margin-bottom: 4px; }
.gallery-card .project-note { font-size: 13px; color: var(--mid-green); margin-bottom: 14px; }
.ba-pair { display: flex; gap: 8px; }
.ba-pair.single { display: block; }
.ba-shot { flex: 1; min-width: 0; }
.ba-shot img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e6e2;
}
.ba-shot .ba-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--sage-green);
  margin-top: 6px;
  font-weight: bold;
}

/* Utility */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }

@media (max-width: 700px) {
  header { flex-direction: column; gap: 12px; }
  nav ul { justify-content: center; gap: 16px; }
  .hero-content h1 { font-size: 30px; }
}
