@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

:root {
  --forest: #2D4A2D; --forest-dark: #1a2e1a; --forest-deep: #0f1c0f;
  --gold: #C8A96E; --gold-light: #E0C898; --cream: #F5F0E8;
  --cream-dark: #E8E0D0; --stone: #8A8070;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: #1a2e1a; color: var(--forest-deep); }
.site-wrap { max-width: 1100px; margin: 0 auto; background: var(--cream); box-shadow: 0 0 60px rgba(0,0,0,0.4); }

/* NAV */
.nav { background: var(--forest-dark); display: flex; justify-content: space-between; align-items: center; padding: 14px 48px; position: sticky; top: 0; z-index: 100; }
.nav-logo { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 20px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--cream-dark); text-decoration: none; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: background 0.2s, color 0.2s; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--gold); color: var(--forest-deep); }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--forest-deep); border: none; padding: 14px 32px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 500; transition: opacity 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { opacity: 0.88; }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.35); padding: 14px 32px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: border-color 0.2s, color 0.2s; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--forest-dark); border: 1px solid var(--forest-dark); padding: 12px 28px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: background 0.2s, color 0.2s; text-decoration: none; display: inline-block; }
.btn-outline-dark:hover { background: var(--forest-dark); color: var(--cream); }

/* SHARED ELEMENTS */
.section-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-eyebrow-muted { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; display: block; }
.gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 22px; }
.section-divider { display: flex; align-items: center; gap: 16px; padding: 0 60px; margin: 6px 0; }
.divider-line { flex: 1; height: 1px; background: var(--cream-dark); }
.divider-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }

/* STRIP */
.strip { background: var(--gold); display: flex; justify-content: center; gap: 40px; padding: 16px 32px; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest-deep); font-weight: 500; }
.strip-dot { width: 5px; height: 5px; background: var(--forest); border-radius: 50%; flex-shrink: 0; }

/* PAGE HERO (non-home) */
.page-hero { position: relative; overflow: hidden; height: 320px; }
.page-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(10,20,10,0.55); }
.page-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.page-hero-content h1 { font-family: 'Cormorant Garamond', serif; color: var(--cream); font-size: 48px; font-weight: 400; line-height: 1.1; margin-bottom: 10px; }
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.page-hero-content p { font-size: 14px; color: var(--cream-dark); opacity: 0.8; max-width: 480px; line-height: 1.7; }

/* FOOTER */
footer { background: var(--forest-deep); padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 20px; font-weight: 600; }
.footer-address { font-size: 11px; color: var(--stone); text-align: center; line-height: 1.8; opacity: 0.65; }
.footer-address a { color: var(--gold); text-decoration: none; }
.footer-copy { font-size: 11px; color: var(--stone); opacity: 0.45; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .page-hero-content h1 { font-size: 32px; }
}
