@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');

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

:root {
  --brown-dark: #5E2E18;
  --brown:      #8B4A2F;
  --brown-light:#C48A6A;
  --green:      #1E9240;
  --green-dark: #155F2A;
  --green-header: #0F3D1E;
  --green-footer: #0F3D1E;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
}

body {
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  background: var(--green-header);
  padding: 0 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  position: relative;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-wordmark {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-wordmark {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.header-nav { display: flex; gap: 2rem; list-style: none; }

.header-nav a {
  color: var(--cream);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.header-nav a:hover { color: var(--brown-light); }

.header-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 4px;
}

.header-cta:hover { background: var(--green-dark) !important; }

/* ---------- Coming Soon ---------- */
.coming-soon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: linear-gradient(180deg, #1B6FA8 0%, #5BA8D4 40%, #F0F9FF 100%);
  padding: 4rem 2rem;
}

.coming-soon img {
  width: min(420px, 80vw);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.18));
}

.coming-soon p {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0d3a5c;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-header);
  color: rgba(255,255,255,.6);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p   { font-size: .9rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}

.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Hamburger ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: opacity .2s;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .header-inner { height: 72px; }

  .header-inner nav {
    display: flex;
    align-items: center;
  }

  .header-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    list-style: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--green-header);
    padding: .5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
  }

  .header-nav.open { display: flex; }

  .header-nav li { width: 100%; }

  .header-nav li a {
    display: block;
    padding: .85rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .header-nav li a:hover { background: rgba(255,255,255,.1); }

  .header-cta {
    display: block;
    margin: .5rem 1.5rem;
    padding: .75rem 1.5rem;
    text-align: center;
    border-radius: 4px;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}