:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --surface: #151515;
  --surface-alt: #1c1c1c;
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --accent: #1e7f3f;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: radial-gradient(circle at top, rgba(30, 127, 63, 0.2), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  display: grid;
  gap: 24px;
  align-items: center;
}

.logo {
  width: 160px;
  height: auto;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  color: var(--muted);
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.subhead {
  color: var(--muted);
  max-width: 560px;
}

.header-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.button.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface);
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-header p {
  color: var(--muted);
  max-width: 620px;
}

.media-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-card {
  background: linear-gradient(135deg, rgba(30, 127, 63, 0.12), rgba(0, 0, 0, 0)),
    var(--surface-alt);
}

.map-embed {
  padding-top: 48%;
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.helper {
  font-size: 0.9rem;
  color: var(--muted);
}

.helper strong {
  color: var(--text);
}


.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    grid-template-columns: auto 1fr;
  }

  .logo {
    width: 180px;
  }

  .map-embed {
    padding-top: 38%;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
