:root {
  --bg: #0f1a12;
  --panel: #102616;
  --panel-alt: #0b1d12;
  --text: #e8efe9;
  --muted: #b9c6bb;
  --brand: #2a4e2a; /* matches the green tone found in the Wix theme */
  --brand-2: #3f6d3f;
  --ring: #89a389;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #0b160f 60%, #0a120d 100%);
}

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

.logo {
  height: 50px;
}

#title-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Layout helpers */
.container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(10, 18, 13, 0.6);
  border-bottom: 1px solid rgba(137, 163, 137, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text);
  text-decoration: none;
}
.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover {
  color: var(--text);
}
.nav .cta {
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 20px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 12px 20px 18px;
  border-bottom: 1px solid rgba(137, 163, 137, 0.15);
  background: rgba(10, 18, 13, 0.9);
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 0.9rem;
}
.mobile-nav .cta {
  background: var(--brand);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
}

@media (max-width: 800px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .mobile-nav {
    display: flex;
  }
  .mobile-nav[hidden] {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 88px 0 64px;
  background: radial-gradient(
      1200px 400px at 20% -10%,
      rgba(63, 109, 63, 0.28),
      transparent 60%
    ),
    radial-gradient(
      900px 300px at 100% 0%,
      rgba(42, 78, 42, 0.22),
      transparent 60%
    );
}
.hero-inner {
  text-align: center;
}
.hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}
.tagline {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 1.25rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border-radius: 14px;
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(137, 163, 137, 0.35);
}
.btn:hover {
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 70px 0;
}
.section-alt {
  background: linear-gradient(180deg, var(--panel), var(--panel-alt));
}
.section h2 {
  margin: 0 0 14px;
  font-size: 2rem;
}
.section p {
  color: var(--muted);
}

/* Cards */
.cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: rgba(16, 38, 22, 0.55);
  border: 1px solid rgba(137, 163, 137, 0.18);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 6px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 880px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  margin: 10px 0;
}
.socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.socials a {
  color: var(--text);
  text-decoration: none;
}
.socials a:hover {
  color: #cfe5d0;
}
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(137, 163, 137, 0.15);
  padding: 18px 0;
  background: rgba(10, 18, 13, 0.7);
}
.footer-inner {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.back-to-top {
  color: var(--muted);
  text-decoration: none;
}
.back-to-top:hover {
  color: var(--text);
}
