<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: #0a1a0e;
    color: #e8f5e1;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;   z-index: 99999;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 3rem;
    background: rgba(10,26,14,0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(97,180,50,0.15);
  }

  .logo {
    font-size: 1.5rem; font-weight: 600; letter-spacing: 0.12em;
    color: #7ecb3f; text-transform: uppercase;
  }
  .logo span { color: #e8f5e1; font-weight: 300; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: #a8d880; text-decoration: none; font-size: 0.9rem;
    letter-spacing: 0.04em; transition: color 0.2s;
  }
  .nav-links a:hover { color: #7ecb3f; }

.logo {
  position: relative;
  z-index: 100000;  
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}


  /* HERO - Full photo */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 0 5rem 0;
    position: relative; overflow: hidden;
  }
  .hero-photo {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('/img/photo1.jpg');
    background-size: cover; 
	background-position: center;
  }
  /* Dark overlay so text is readable */
  .hero-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,26,14,0.35) 0%,
      rgba(10,26,14,0.55) 50%,
      rgba(10,26,14,0.88) 100%
    );
  }
  /* Note for when user replaces image */
  .photo-note {
    position: absolute; top: 80px; right: 2rem; z-index: 10;
    background: rgba(126,203,63,0.15); border: 1px dashed rgba(126,203,63,0.4);
    color: #7ecb3f; font-size: 0.72rem; padding: 0.5rem 0.8rem;
    border-radius: 2px; letter-spacing: 0.04em; pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 3rem;
    max-width: 760px;
  }
  .hero-eyebrow {
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: #7ecb3f; margin-bottom: 1.2rem; font-weight: 500;
  }
  .hero-title {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 300; line-height: 1.08;
    color: #f0fae8; margin-bottom: 1.5rem; letter-spacing: -0.02em;
  }
  .hero-title strong { font-weight: 600; color: #7ecb3f; display: block; }
  .hero-desc {
    font-size: 1.05rem; color: #c5e8a0; max-width: 480px;
    line-height: 1.75; margin-bottom: 2.5rem;
  }
  .btn-primary {
    display: inline-block; padding: 0.85rem 2.2rem;
    background: #7ecb3f; color: #0a1a0e;
    font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em;
    text-decoration: none; text-transform: uppercase;
    border-radius: 2px; transition: background 0.2s;
  }
  .btn-primary:hover { background: #9be055; }

  .hero-stats {
    position: relative; z-index: 2;
    display: flex; gap: 3rem;
    padding: 2rem 3rem 0;
    border-top: 1px solid rgba(126,203,63,0.2);
    margin-top: 3rem;
  }
  .stat-num { font-size: 2.2rem; font-weight: 600; color: #7ecb3f; line-height: 1; }
  .stat-label {
    font-size: 0.78rem; color: #6aaa3a; letter-spacing: 0.08em;
    text-transform: uppercase; margin-top: 0.3rem;
  }

  /* SECTIONS */
  section { padding: 5rem 3rem; }
  .section-label {
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: #7ecb3f; margin-bottom: 0.8rem;
  }
  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300; color: #f0fae8; line-height: 1.2; margin-bottom: 1.5rem;
  }

  /* ABOUT */
  #about { background: #0d1f10; }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    max-width: 960px; align-items: center; margin-top: 2rem;
  }
  .about-text { color: #a8d880; font-size: 1rem; line-height: 1.85; }
  .about-panel {
    background: #0a1a0e; border: 1px solid rgba(97,180,50,0.2);
    border-radius: 4px; padding: 2rem;
  }
  .feature-row {
    display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
  }
  .feature-row:last-child { margin-bottom: 0; }
  .feature-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(126,203,63,0.1); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .feature-icon svg { width: 20px; height: 20px; stroke: #7ecb3f; fill: none; stroke-width: 1.8; }
  .feature-title { font-size: 0.9rem; font-weight: 500; color: #d4f0a8; margin-bottom: 0.25rem; }
  .feature-desc { font-size: 0.85rem; color: #6aaa3a; line-height: 1.6; }

  /* PARK */
  #park { background: #0a1a0e; }
  .park-visual {
    margin-top: 2.5rem;
    background: #0d2810; border: 1px solid rgba(97,180,50,0.15);
    border-radius: 4px; padding: 2.5rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .park-card { border-left: 2px solid #7ecb3f; padding-left: 1.2rem; }
  .park-card-num { font-size: 1.8rem; font-weight: 600; color: #7ecb3f; }
  .park-card-label { font-size: 0.78rem; color: #6aaa3a; text-transform: uppercase; letter-spacing: 0.1em; }
  .park-card-desc { font-size: 0.85rem; color: #a8d880; margin-top: 0.4rem; }

  /* CONTACT */
  #contact { background: #0d1f10; }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    max-width: 860px; margin-top: 2rem;
  }
  .contact-info p { color: #a8d880; font-size: 1rem; line-height: 1.85; margin-bottom: 1.5rem; }
  .contact-item {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1rem; color: #d4f0a8; font-size: 0.95rem;
  }
  .contact-item svg { width: 18px; height: 18px; stroke: #7ecb3f; fill: none; stroke-width: 1.8; flex-shrink: 0; }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .contact-form input, .contact-form textarea {
    background: #0a1a0e; border: 1px solid rgba(97,180,50,0.25);
    color: #e8f5e1; padding: 0.85rem 1rem;
    font-family: inherit; font-size: 0.9rem; border-radius: 2px;
    outline: none; transition: border-color 0.2s;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: #3d6625; }
  .contact-form input:focus, .contact-form textarea:focus { border-color: #7ecb3f; }
  .contact-form textarea { min-height: 110px; resize: vertical; }

  /* FOOTER */
  footer {
    background: #060f08; padding: 2rem 3rem;
    border-top: 1px solid rgba(97,180,50,0.1);
    display: flex; align-items: center; justify-content: space-between;
    color: #3d6625; font-size: 0.8rem; letter-spacing: 0.04em;
  }
  footer .logo-sm { color: #7ecb3f; font-weight: 600; font-size: 1rem; letter-spacing: 0.12em; }

  @media (max-width: 700px) {
    nav { padding: 1rem 1.2rem; }
    .nav-links { display: none; }
    .hero-content { padding: 0 1.5rem; }
    .hero-stats { padding: 2rem 1.5rem 0; gap: 1.5rem; flex-wrap: wrap; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .park-visual { grid-template-columns: 1fr; }
    section { padding: 3rem 1.5rem; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

.park-image-wrapper {
  margin-top: 2.5rem;
}

.park-image {
  border: 1px solid rgba(97,180,50,0.15);
  border-radius: 4px;
  overflow: hidden;
  background: #0d2810;
}

.park-image img {
  width: 120%;
  height: 420px;
  object-fit: cover;
  display: block;
}
</style>