/* THEME COLORS */
:root {
  --gold: #d4af37;
  --gold-soft: #f6e5a8;
  --green: #006f3c;
  --green-light: #0b9b56;
  --white: #ffffff;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.25);
  --container-width: 1120px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--gold);
  color: var(--green);
  line-height: 1.6;
}

/* LINKS */
a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* TOP BAR */
.top-bar {
  background: var(--gold);
  color: var(--green);
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  gap: 0.75rem;
}

.top-bar-label {
  font-weight: 700;
  margin-right: 0.25rem;
}

.top-bar-divider {
  margin: 0 0.4rem;
}

/* HEADER */
.site-header {
  background: var(--gold);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* NAV CORE */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 0.75rem;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
  background: var(--gold-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.brand-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

/* NAV LINKS (MOBILE DEFAULT) */
.nav-links {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  background: var(--gold);
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 70px;
  right: 1rem;
}

.nav-links.open {
  display: flex;
}

.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--green);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav a.active {
  background: rgba(255, 255, 255, 0.28);
}

.nav-cta {
  background: var(--green);
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: var(--green-light);
}

/* MOBILE BURGER */
.nav-toggle {
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green);
}

/* HERO */
.hero {
  background: var(--gold);
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 800;
  margin: 0 0 0.6rem;
}

.hero h1 {
  font-size: 2.1rem;
  margin: 0 0 0.6rem;
  color: var(--green);
}

.hero-tagline {
  font-size: 1rem;
  color: var(--green);
  margin: 0 0 1.2rem;
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--gold);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-light);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

/* HERO META */
.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--green);
}

.hero-meta strong {
  display: block;
  font-size: 0.95rem;
}

/* HERO CARD */
.hero-card {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--green);
  font-size: 0.9rem;
}

.hero-card h3 {
  margin: 0 0 0.4rem;
}

.hero-card p {
  margin: 0 0 0.9rem;
}

/* HERO FORM */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  gap: 0.2rem;
  color: var(--green);
}

.hero-form input,
.hero-form textarea,
.hero-form select {
  padding: 0.45rem 0.6rem;
  border-radius: 0.6rem;
  border: 2px solid var(--green);
  font-size: 0.85rem;
  color: var(--green);
  background: var(--gold-soft);
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: var(--green);
  opacity: 0.8;
}

.hero-form input:focus,
.hero-form textarea:focus,
.hero-form select:focus {
  outline: 2px solid var(--green-light);
  border-color: var(--green-light);
}


.hero-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--green);
}

/* SECTIONS (ALL GOLD, BUT CONTENT ORGANIZED) */
.section {
  padding: 3rem 0;
  background: var(--gold);
}

.section-alt {
  padding: 3rem 0;
  background: var(--gold);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--green);
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  color: var(--green);
}

.section-header p {
  margin: 0;
  color: var(--green);
}

/* INTRO GRID */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  font-size: 0.95rem;
  color: var(--green);
}

.intro-highlight {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  border: 2px solid var(--green);
  padding: 1.25rem 1.4rem;
  font-size: 0.9rem;
}

/* TEXT LINK */
.text-link {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.card {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  border: 2px solid var(--green);
  font-size: 0.9rem;
  color: var(--green);
}

/* LIST WITH CHECKMARKS */
.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--green);
}

.list-check li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.5rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.8rem;
  color: var(--green-light);
  font-weight: 800;
}

/* CAREERS BLOCK */
.careers-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  color: var(--green);
}

.careers-cta {
  text-align: left;
}

/* CENTERED CTA */
.centered-cta {
  margin-top: 2rem;
  text-align: center;
}

/* FOOTER */
footer {
  background: var(--gold);
  padding: 1.5rem 0 2.5rem;
  font-size: 0.85rem;
  color: var(--green);
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--green);
  font-weight: 700;
}

.footer-bottom {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* RESPONSIVE */

/* MOBILE (DEFAULT) */
@media (max-width: 767px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .brand {
    flex-direction: row;
  }
}

/* DESKTOP */
@media (min-width: 768px) {
  .top-bar-inner {
    font-size: 0.85rem;
  }

  /* TWO-LINE HEADER: brand first row, menu second row */
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-title {
    font-size: 1.9rem;
    font-weight: 900;
  }

  .brand-sub {
    font-size: 1rem;
    font-weight: 700;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: flex-start;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-block {
    grid-template-columns: 2fr 1fr;
  }

  .careers-cta {
    text-align: right;
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.9rem;
  }
}
