:root {
  --charcoal: #1C1F1E;
  --charcoal-mid: #272B2A;
  --charcoal-light: #343938;
  --green: #2D6A4F;
  --green-mid: #388A65;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --cream: #F5F2ED;
  --white: #FFFFFF;
  --gray: #8A908E;
  --gray-light: #E4E8E6;
  --text: #1C1F1E;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); 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: 0 64px; height: 76px;
  background: rgba(28,31,30,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 4px; font-weight: 600 !important; transition: background 0.2s !important; letter-spacing: 0.01em !important; }
.nav-cta:hover { background: var(--green-mid) !important; }

/* BUTTONS */
.btn-green { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--white); font-weight: 600; font-size: 15px; padding: 15px 30px; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,106,79,0.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-weight: 500; font-size: 15px; padding: 14px 28px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--charcoal); color: var(--white); font-weight: 600; font-size: 15px; padding: 15px 30px; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.btn-dark:hover { background: var(--charcoal-mid); transform: translateY(-2px); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--green); font-weight: 700; font-size: 15px; padding: 15px 30px; border-radius: 4px; text-decoration: none; transition: all 0.2s; flex-shrink: 0; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* SECTION LABELS */
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: block; }
.section-tag-light { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); margin-bottom: 14px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -0.01em; color: var(--charcoal); }
.section-title-light { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -0.01em; color: var(--white); }

/* CTA BAND */
.cta-band { background: var(--green); padding: 96px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-weight: 800; font-size: clamp(30px, 4vw, 48px); color: var(--white); line-height: 1.1; max-width: 560px; letter-spacing: -0.01em; }
.cta-band h2 em { font-style: italic; color: rgba(255,255,255,0.7); }

/* MARQUEE */
.marquee-wrap { background: var(--green); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 64px; white-space: nowrap; animation: marquee 28s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 20px; }
.marquee-item::after { content: '◆'; font-size: 7px; color: rgba(255,255,255,0.35); }

/* FOOTER */
footer { background: #141716; padding: 52px 64px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 16px; }
.footer-nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-nav-group h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-nav-group a:hover { color: var(--green-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* LOGO SVG MARK */
.logo-mark { display: flex; align-items: center; }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .cta-band { padding: 64px 24px; flex-direction: column; }
  footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; }
}
