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

:root {
  --green-900: #0C1F13;
  --green-800: #1A3A28;
  --green-700: #1E4430;
  --green-600: #2D6A4F;
  --green-400: #4A9E72;
  --green-100: #D4EAD8;
  --green-50:  #F0F7F2;
  --cream:     #FAFAF6;
  --cream-mid: #F3F0E8;
  --white:     #FFFFFF;
  --gray-300:  #D8D5CC;
  --gray-400:  #B8B4AA;
  --gray-500:  #888480;
  --gray-700:  #3E3C38;
  --text:      #1A1916;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 66px;
  background: rgba(250,250,246,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.07); }

.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text .name { font-family: 'Playfair Display', serif; font-size: 15.5px; font-weight: 500; color: var(--green-800); letter-spacing: 0.01em; }
.nav-logo-text .sub { font-size: 9.5px; font-weight: 600; color: var(--gray-500); letter-spacing: 0.13em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--gray-700); text-decoration: none; padding: 6px 11px; border-radius: 4px; transition: color 0.18s, background 0.18s; white-space: nowrap; }
.nav-links a:hover { color: var(--green-700); background: var(--green-50); }
.nav-links a.active { color: var(--green-800); font-weight: 600; }
.nav-links .nav-cta { background: var(--green-800); color: var(--white) !important; padding: 7px 18px; border-radius: 4px; }
.nav-links .nav-cta:hover { background: var(--green-700); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--green-800); border-radius: 2px; transition: all 0.3s; }

.nav-mobile { display: none; position: fixed; top: 66px; left: 0; right: 0; background: rgba(250,250,246,0.99); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray-300); padding: 14px 5% 22px; z-index: 199; flex-direction: column; gap: 2px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; font-weight: 500; color: var(--gray-700); text-decoration: none; padding: 10px 12px; border-radius: 4px; }
.nav-mobile a:hover { background: var(--green-50); color: var(--green-800); }
.nav-mobile .nav-cta-m { background: var(--green-800); color: var(--white); margin-top: 8px; text-align: center; border-radius: 4px; }

/* ── FOOTER ── */
footer { background: var(--green-900); padding: 56px 5% 30px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.footer-brand img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.82); }
.footer-brand-text { font-family: 'Playfair Display', serif; font-size: 14.5px; font-weight: 500; color: var(--white); }
.footer-tagline { font-size: 12.5px; color: rgba(255,255,255,0.32); max-width: 210px; line-height: 1.6; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-400); margin-bottom: 13px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.46); text-decoration: none; transition: color 0.18s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.46); margin-bottom: 6px; }
.footer-col .email-link { color: var(--green-400); font-weight: 500; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── SHARED UTILS ── */
.page-wrap { padding-top: 66px; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-600); margin-bottom: 13px; }
.eyebrow-light { color: var(--green-400); }

.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.2vw, 40px); font-weight: 500; color: var(--green-900); line-height: 1.18; letter-spacing: -0.01em; }
.section-title em { font-style: italic; color: var(--green-600); }
.section-title-light { color: var(--white); }
.section-title-light em { color: var(--green-400); }

.body-text { font-size: 16px; color: var(--gray-700); line-height: 1.78; }
.body-text-light { color: rgba(255,255,255,0.65); }

.btn { display: inline-block; padding: 12px 26px; border-radius: 4px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; transition: background 0.18s, border-color 0.18s, color 0.18s; }
.btn-dark { background: var(--green-800); color: var(--white); }
.btn-dark:hover { background: var(--green-700); }
.btn-white { background: var(--white); color: var(--green-900); }
.btn-white:hover { background: var(--green-100); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.32); color: var(--white); }
.btn-outline:hover { border-color: rgba(255,255,255,0.72); }
.btn-ghost { color: var(--green-800) !important; font-size: 13.5px; font-weight: 600; text-decoration: none !important; display: inline-flex; align-items: center; gap: 5px; border-bottom: 1.5px solid var(--green-800); padding-bottom: 1px; transition: color 0.18s, border-color 0.18s; }
.btn-ghost:hover { color: var(--green-600) !important; border-color: var(--green-600); }
.btn-ghost-light { color: rgba(255,255,255,0.88) !important; border-bottom: 1.5px solid rgba(255,255,255,0.4); padding-bottom: 1px; font-size: 13.5px; font-weight: 600; text-decoration: none !important; display: inline-flex; align-items: center; gap: 5px; transition: color 0.18s, border-color 0.18s; }
.btn-ghost-light:hover { color: var(--white) !important; border-color: rgba(255,255,255,0.78); }

/* ── RESPONSIVE NAV ── */
@media (max-width: 900px) { .nav-links { display: none; } .nav-hamburger { display: flex; } }

/* ── PAGE HERO (dark header on interior pages) ── */
.page-hero { background: var(--green-900); padding: 96px 5% 72px; }
.page-hero .eyebrow,
.page-hero .eyebrow-light { color: var(--green-400) !important; }
.page-hero .section-title,
.page-hero .section-title-light,
.page-hero h1 { color: var(--white) !important; }
.page-hero .body-text,
.page-hero .body-text-light,
.page-hero p { color: rgba(255,255,255,0.65) !important; }
.page-hero em { color: var(--green-400) !important; font-style: italic; }
