/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --green: #1A6B3A;
  --green-dark: #124d2a;
  --green-light: #E8F5EE;
  --green-mid: #A8D5B5;
  --black: #0E0E0E;
  --grey-dark: #1A1A1A;
  --grey-mid: #555555;
  --grey-light: #E5E7EB;
  --grey-bg: #F7F7F5;
  --white: #FFFFFF;
  --gold: #D4A843;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--grey-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ──────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: transparent;
  color: var(--grey-dark);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid var(--grey-light);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: var(--white);
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform 0.15s;
}
.btn-light:hover { transform: translateY(-1px); }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-light);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 600; }

.btn-nav {
  margin-left: auto;
  padding: 9px 20px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--green-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-dark);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 0;
  border-top: 1px solid var(--grey-light);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-mid);
  border-bottom: 1px solid var(--grey-light);
}
.mobile-menu a:last-child { border-bottom: none; }
.btn-nav-mobile {
  margin-top: 8px;
  padding: 12px 20px;
  background: var(--green) !important;
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  border-bottom: none !important;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 56px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--grey-light);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 16px;
  max-width: 680px;
}

.page-hero p {
  font-size: 17px;
  color: var(--grey-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}
