:root {
  --primary: rgb(140, 180, 40);
  /* main */
  --secondary: #00612F;
  /* dark green */
  --dark: #2F3C46;
  /* blue-gray */
  --bg: #f5f7f9;
  --card: #ffffff;
  --muted: #6b7785;
  --ring: rgba(140, 180, 40, .35);
  --shadow: 0 10px 24px rgba(18, 32, 41, .08);
}

main {}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--dark);
  background: var(--bg);
}

/* Layout */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #20292f;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: #fff;
}

.logo {
  display: inline-flex;
}

.logo.small svg {
  width: 22px;
  height: 22px;
}

.brand-text {
  font-weight: 700;
  letter-spacing: .3px;
}

.nav ul {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  color: #e8f1f6;
  text-decoration: none;
  font-weight: 600;
  padding: .5rem .7rem;
  border-radius: 8px;
}

.nav a:hover {
  background: rgba(255, 255, 255, .08);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #112;
  border: none;
  padding: .8rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .06s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-ghost {
  background: transparent;
  color: #e8f1f6;
  border: 1px solid rgba(255, 255, 255, .3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.skyline {
  padding: -10;
  margin: -10;
}

/* Hero */
.hero {
  padding: clamp(2rem, 4vw, 3rem) 0 2rem;
  background: linear-gradient(180deg, rgba(0, 97, 47, .25), rgba(0, 0, 0, 0) 60%);
}

.hero-title {
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
  margin: .7rem 0 .2rem;
  color: #0f2230;
}

.accent {
  color: var(--secondary);
}

/* Responsive video */
.video-embed {
  margin: 1.25rem 0 1.5rem;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 60, 70, .15);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

/* Cards / Features */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  flex: 1 1 15rem;
  background: var(--card);
  border: 1px solid rgba(47, 60, 70, .12);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
  align-items: center
}

.card svg {
  height: 8cm;
    max-height: 8rem;
}

.card h3 {
  margin: .2rem 0 .4rem;
}

.card p {
  margin: 0;
  text-align: center;
  color: var(--muted);
}


/* Accordion */
.accordion .acc-item {
  background: var(--card);
  border: 1px solid rgba(47, 60, 70, .12);
  border-radius: 12px;
  padding: .6rem 1rem;
  margin-bottom: .6rem;
  box-shadow: var(--shadow);
  overflow: auto;
}

.acc-title {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}


.acc-content {
  color: var(--muted);
  padding: .4rem .2rem .6rem .2rem;
  height: 100%;
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.accordion svg {
  float: left;
  overflow: auto;
   margin: 1rem;
   height: 5rem;
   width: 5rem;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
}


.gallery-item img {

  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #dfe7ee;
  min-height: 220px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.gallery-item {
  flex: 25%;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(47, 60, 70, .12);
  border-radius: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}

.gallery-item p {
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CTA / Form */

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}

/* Footer */


.site-footer {
  background: var(--dark);
  color: #d7e1ea;
  margin-top: 0rem;

  padding-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 1rem;
  align-items: start;
  padding-top: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #d7e1ea;
  text-decoration: none;
}

.svgpadding {
  display: block;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: .7rem 0 1.2rem;
}

/* Responsive */
@media (max-width: 1200px) {

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    flex: 1 1 25rem;
  }

  
  .gallery-item {
    flex: 1 1 15rem;
  }
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 540px) {

  .nav {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    background: #26303a;
    padding: .6rem 1rem;
  }

  .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }


  .gallery-item {
    flex: 1 1 15rem;
  }

  .card {
    flex: 1 1 15rem;
  }
}