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

:root {
  --forest:     #2C3E2D;
  --lake:       #4A7FA5;
  --stone:      #8B8B7A;
  --cream:      #F8F6F1;
  --white:      #FFFFFF;
  --ink:        #1A1A18;
  --mist:       #EAE8E1;
  --lake-light: #D6E8F4;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44,62,45,0.08);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--forest); letter-spacing: 0.02em; text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-weight: 400; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; color: var(--ink); opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta { background: var(--forest); color: var(--white) !important; opacity: 1 !important; padding: 10px 20px; border-radius: 4px; font-size: 12px !important; }
.nav-cta:hover { background: #3a5240 !important; }

/* PAGE HERO */
.page-hero {
  padding-top: 72px; min-height: 280px; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.55); }
.page-hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.2) 100%); }
.page-hero-content { position: relative; padding: 48px 80px; }
.page-hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lake-light); margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--lake-light); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 500; color: var(--white); line-height: 1.1; }

/* SHARED ELEMENTS */
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lake); margin-bottom: 12px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 4vw, 48px); font-weight: 500; line-height: 1.1; color: var(--forest); margin-bottom: 20px; }
.section-body { font-size: 15px; font-weight: 300; line-height: 1.8; color: #4a4a46; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--lake); color: var(--white); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 28px; border-radius: 4px; white-space: nowrap; transition: background 0.2s; }
.btn-primary:hover { background: #3d6f93; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--forest); color: var(--forest); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 28px; border-radius: 4px; transition: all 0.2s; }
.btn-outline:hover { background: var(--forest); color: var(--white); }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 48px 80px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--white); text-decoration: none; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .page-hero-content { padding: 40px 32px; }
  footer { padding: 40px 32px; flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
