@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --green-dark:   #1a2e1f;
  --green-mid:    #2d4a35;
  --green-light:  #4a7358;
  --sand:         #e8dfc8;
  --sand-light:   #f5f0e8;
  --sand-pale:    #faf8f4;
  --gold:         #b89a5a;
  --text-dark:    #1a1a18;
  --text-mid:     #4a4a42;
  --text-light:   #7a7a70;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand-pale);
  color: var(--text-dark);
  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: 1.2rem 4rem;
  background: rgba(26,46,31,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,154,90,0.2);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--sand);
  letter-spacing: 0.04em; line-height: 1.2;
  text-decoration: none;
}
.nav-logo span {
  display: block; font-size: 0.68rem; color: var(--gold);
  letter-spacing: 0.15em; font-family: 'DM Sans', sans-serif;
  font-weight: 300; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: rgba(232,223,200,0.7); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 400;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--sand); border-bottom-color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--green-dark);
  padding: 0.55rem 1.4rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--sand); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--sand); border-radius: 2px; transition: 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-dark); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--sand); text-decoration: none; font-size: 1.5rem;
  font-family: 'Playfair Display', serif; letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 2rem; right: 2rem;
  color: var(--sand); font-size: 2rem; cursor: pointer;
  background: none; border: none;
}

/* ── SHARED LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.section-tag {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; line-height: 1.15; color: var(--green-dark);
}
h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 1.5rem; }
.lead {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--text-mid); max-width: 55ch;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(184,154,90,0.03) 0, rgba(184,154,90,0.03) 1px, transparent 1px, transparent 50px),
    repeating-linear-gradient(-45deg, rgba(184,154,90,0.03) 0, rgba(184,154,90,0.03) 1px, transparent 1px, transparent 50px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--sand); margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 1.05rem; color: rgba(232,223,200,0.65);
  max-width: 50ch; line-height: 1.75; font-weight: 300;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.75rem; color: rgba(232,223,200,0.35);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.page-hero .breadcrumb a { color: rgba(232,223,200,0.35); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(184,154,90,0.5); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--green-dark);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sand); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: var(--green-dark); border: 1.5px solid var(--green-dark);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--green-dark); color: var(--sand); }
.btn-ghost-light {
  display: inline-block;
  color: var(--sand); border: 1px solid rgba(232,223,200,0.3);
  padding: 0.9rem 2.2rem; border-radius: 2px;
  font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #0f1a12;
  padding: 3rem 0;
  border-top: 1px solid rgba(184,154,90,0.1);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--sand); font-size: 1rem; text-decoration: none;
}
.footer-logo span {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  color: rgba(232,223,200,0.4); font-size: 0.78rem;
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(232,223,200,0.25); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 1.5rem; }
  .page-hero { padding: 7rem 0 3.5rem; }
}
