@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

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

:root {
  --sage: #7a9c7a;
  --sage-light: #c8d9c0;
  --sage-pale: #eef3eb;
  --cream: #faf7f2;
  --bark: #5c4a32;
  --bark-light: #8a7260;
  --bark-pale: #f2ede6;
  --white: #ffffff;
  --text: #2c2a25;
  --text-muted: #6b6458;
  --amber: #c87d2a;
  --amber-pale: #fdf0e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--sage-light);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Lora', serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--sage); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  transition: all 0.3s;
}

@media (max-width: 680px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--sage-light);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--sage-light);
  padding: 2rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--bark);
  margin-bottom: 0.25rem;
}

.footer-sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.footer-email a {
  font-size: 13px;
  color: var(--sage);
  text-decoration: none;
}

.footer-email a:hover { text-decoration: underline; }

/* ── SHARED LAYOUT ── */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--sage-light);
  margin: 1.25rem 0 2rem;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--sage-pale);
  border-bottom: 1px solid var(--sage-light);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.page-header .section-title { margin-bottom: 0.5rem; }
.page-header .section-body { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  background: transparent;
  border: 1px solid var(--sage-light);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn-primary:hover {
  background: #6a8c6a;
  border-color: #6a8c6a;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.card:hover { border-color: var(--sage); }

/* ── CHIPS & TAGS ── */
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--sage-light);
  color: var(--sage);
}

.tag-amber {
  border-color: #e8c898;
  color: var(--amber);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--bark-pale);
  border: 1px solid #ddd0c0;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.cta-banner p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.cta-link {
  font-size: 14px;
  color: var(--bark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--sage-light);
  white-space: nowrap;
}

.cta-link:hover { border-color: var(--sage); color: var(--sage); }
