@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;0,900;1,400&family=Epilogue:wght@300;400;500;600&display=swap');

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

:root {
  --green-deep: #1C3520;
  --green-mid: #2E5E35;
  --green-bright: #4A8C4F;
  --sage: #8CB88F;
  --cream: #F4EFE4;
  --warm-white: #FAFAF7;
  --bark: #7A5230;
  --gold: #C8903C;
  --text: #1A1A18;
  --muted: #6B6B60;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(28,53,32,0.97); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
}
.nav-logo {
  font-family: 'Fraunces', serif; font-size: 1.15rem;
  font-weight: 700; color: var(--cream); letter-spacing: -0.3px;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(244,239,228,0.75); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta {
  background: var(--gold) !important; color: white !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #b07830 !important; }
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--cream); font-size: 1.4rem; cursor: pointer;
}
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--green-deep); z-index: 99;
  flex-direction: column; padding: 20px 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(244,239,228,0.8); text-decoration: none;
  padding: 12px 0; font-size: 1rem; border-bottom: 1px solid rgba(244,239,228,0.08);
}
.mobile-cta {
  background: var(--gold); color: white !important;
  text-align: center; border-radius: 8px; margin-top: 12px;
  padding: 14px !important; border: none !important; font-weight: 600;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--green-deep); padding: 120px 72px 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(74,140,79,0.12); pointer-events: none;
}
.page-hero .section-eyebrow { color: var(--sage); }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: var(--cream); line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 16px; position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero p {
  font-size: 1rem; color: rgba(244,239,228,0.65);
  line-height: 1.7; max-width: 560px; font-weight: 300;
  position: relative; z-index: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: white;
  padding: 15px 32px; border-radius: 8px; font-size: 0.92rem;
  font-weight: 600; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,144,60,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(200,144,60,0.5); }
.btn-secondary {
  display: inline-block; background: rgba(244,239,228,0.08);
  color: var(--cream); padding: 15px 32px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(244,239,228,0.2); transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(244,239,228,0.14); }
.btn-outline {
  display: inline-block; background: transparent;
  color: var(--green-deep); padding: 13px 28px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--green-deep); transition: all 0.2s;
}
.btn-outline:hover { background: var(--green-deep); color: var(--cream); }

/* ── SECTION COMMONS ── */
section { padding: 96px 72px; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--green-bright); margin-bottom: 12px;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--green-deep);
  line-height: 1.1; letter-spacing: -0.8px; margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.7; max-width: 540px; font-weight: 300;
}

/* ── CONTACT CHIPS ── */
.contact-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 12px 22px; border-radius: 8px;
  font-size: 0.9rem; text-decoration: none; transition: background 0.2s;
}
.contact-chip:hover { background: rgba(255,255,255,0.18); }

/* ── FOOTER ── */
footer { background: var(--green-deep); color: var(--cream); padding: 56px 72px 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-brand .f-logo { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.footer-brand .f-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; color: rgba(244,239,228,0.5); line-height: 1.65; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sage); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(244,239,228,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(244,239,228,0.1); padding: 20px 0; }
.footer-bottom p { font-size: 0.78rem; color: rgba(244,239,228,0.3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV BADGES ── */
.nav-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
}
.nav-badge-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  transition: transform 0.2s;
}
.nav-badge-img:hover { transform: scale(1.1); }

/* ── MOBILE ── */
@media(max-width:900px){
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-badges { display: none; }
  section { padding: 64px 28px; }
  .page-hero { padding: 100px 28px 56px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 28px 0; }
}
