@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #07140d;
  --teal: #39b54a;
  --green: #39b54a;
  --dark-green: #006837;
  --light-green: #8bdc65;
  --gold: #f4a825;
  --white: #ffffff;
  --gray: #a9b7ad;
  --card-bg: #0d2417;
  --dark-bg: #05100a;
  --gradient: linear-gradient(135deg, #39b54a 0%, #006837 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 14px 60px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(57,181,74,0.22);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.nav-cta {
  background: var(--gradient);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  display: inline-block;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #16a34a;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* PAGE HEADER */
.page-header {
  padding: 140px 60px 80px;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(57,181,74,.14);
}

.page-header-content {
  max-width: 640px;
}

.page-header .breadcrumb {
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.page-header .breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-header p {
  font-size: .98rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

/* SECTION */
.section {
  padding: 90px 60px;
}

.section-dark {
  background: var(--dark-bg);
}

.section-label {
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 540px;
}

/* BUTTONS */
.btn-primary,
.btn-outline {
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.32);
}

/* CARD */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px;
}

/* FOOTER */
footer {
  padding: 60px 60px 28px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a {
  font-size: .8rem;
  color: var(--gray);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: var(--gray);
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #07140d 0%, #0f3d22 100%);
  text-align: center;
  padding: 90px 60px;
}

.cta-band .section-title {
  margin: 0 auto 14px;
  max-width: 580px;
}

.cta-band p {
  color: var(--gray);
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */
@media (max-width: 900px) {
  nav {
    padding: 12px 20px;
  }

  .section,
  .page-header {
    padding: 70px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE NAV FIX */
@media (max-width: 768px) {

  nav {
    min-height: 78px;
    padding: 12px 16px;
  }

  .logo img {
    height: 42px !important;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    border-top: 1px solid #eee;
  }

  .nav-links.show {
    display: flex;
  }

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

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 22px;
    font-size: 15px;
    color: #111;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav-links a.active {
    color: var(--teal);
    background: #f7fff9;
  }
}

/* SMALL MOBILE */
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 45px 20px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 105px 20px 45px !important;
  }

  .section {
    padding: 45px 20px !important;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

