@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&family=Barlow+Condensed:wght@600;700&display=swap');

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

:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --khaki: #b5985a;
  --khaki-light: #d4b483;
  --khaki-pale: #f5efe0;
  --white: #ffffff;
  --off-white: #fafaf8;
  --sand: #f2ede3;
  --text: #1a2e1f;
  --mid: #6b7c72;
  --light: #a8b8ae;
  --border: #e2ddd5;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--green-dark); text-decoration: none; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo span {
  display: inline-block; width: 8px; height: 8px;
  background: var(--khaki); border-radius: 50%;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 0.6rem 1.4rem; border-radius: 3px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--mid); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: var(--white); z-index: 99; padding: 1.5rem 2rem;
  flex-direction: column; gap: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  font-size: 0.9rem; font-weight: 500; color: var(--mid); text-decoration: none;
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid var(--green); color: var(--green);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.85rem 2rem; border-radius: 3px;
  transition: all 0.2s; display: inline-block;
  background: none; cursor: pointer;
}
.btn-ghost:hover { background: var(--green); color: var(--white); }
.btn-khaki {
  background: var(--khaki); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 3px;
  transition: background 0.2s; display: inline-block;
  border: none; cursor: pointer;
}
.btn-khaki:hover { background: var(--khaki-light); }

/* ── SECTION HELPERS ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--khaki);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--khaki); }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15;
  color: var(--green-dark); margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--khaki); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--green-dark);
  padding: 9rem 4rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(181,152,90,0.12) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400; color: var(--white); line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--khaki-light); }
.page-hero p {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.8; max-width: 520px;
  border-left: 2px solid var(--khaki);
  padding-left: 1.2rem;
}

/* ── CREDENTIAL STRIP ── */
.credential-strip {
  background: var(--green);
  padding: 0.9rem 4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.cred-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
  display: flex; align-items: center; gap: 0.5rem;
}
.cred-item::before { content: '✓'; color: var(--khaki-light); font-size: 0.7rem; }
.cred-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

/* ── QUOTE SECTION ── */
.quote-section {
  background: var(--khaki-pale);
  padding: 5rem 4rem; text-align: center;
  border-top: 3px solid var(--khaki);
}
.quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic; color: var(--green-dark); line-height: 1.6;
  max-width: 700px; margin: 0 auto 1.2rem;
}
.quote-attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--khaki);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--green-dark); padding: 5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--white); max-width: 500px;
}
.cta-section h2 em { font-style: italic; color: var(--khaki-light); }

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 3rem 4rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--khaki);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s; font-weight: 300;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.75rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.45s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.6s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .credential-strip { padding: 0.9rem 1.5rem; gap: 1rem; }
  .cred-divider { display: none; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .cta-section { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
