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

/* ── Tokens ── */
:root {
  --sage:            #4a7c59;
  --sage-light:      #6a9e77;
  --sage-pale:       #e8f0ea;
  --gold:            #c9963a;
  --gold-light:      #e8b96a;
  --gold-pale:       #fdf4e3;
  --cream:           #faf7f2;
  --warm-white:      #fffef9;
  --charcoal:        #2c2c2c;
  --mid:             #5a5a5a;
  --soft:            #9a9a8a;
  --bucket-blue:     #5b8fa8;
  --bucket-coral:    #d4735e;
  --bucket-lavender: #8a7ab5;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Global type ── */
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
em { font-style: italic; font-weight: 300; color: var(--sage); }

p { line-height: 1.75; }

/* ── Background blobs ── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: var(--sage);  top: -120px; left: -120px; animation-delay: 0s; }
.blob-2 { width: 360px; height: 360px; background: var(--gold);  bottom: -80px; right: -80px; animation-delay: 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* ── Layout ── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section { padding: 100px 0; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
}
.eyebrow-sage { background: var(--sage-pale); color: var(--sage); }
.eyebrow-gold { background: var(--gold-pale); color: var(--gold); }

/* ── Scroll reveal ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Load animations ── */
.load-1 { opacity: 0; animation: fadeUp 0.6s ease 0.1s forwards; }
.load-2 { opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards; }
.load-3 { opacity: 0; animation: fadeUp 0.6s ease 0.3s forwards; }
.load-4 { opacity: 0; animation: fadeUp 0.6s ease 0.4s forwards; }
.load-5 { opacity: 0; animation: fadeUp 0.6s ease 0.5s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── Nav ── */
nav {
  position: relative;
  z-index: 10;
  padding: 32px 24px 0;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.wordmark span { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--charcoal); }
.nav-link.active { color: var(--sage); }

.nav-cta {
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--sage-light); transform: translateY(-2px); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(74, 124, 89, 0.28);
}
.btn-primary:active { transform: translateY(0); }

.btn-light {
  display: inline-block;
  background: white;
  color: var(--sage);
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.18); }

/* ── CTA band ── */
.section-cta {
  background: var(--sage);
  padding: 100px 0;
  text-align: center;
}
.section-cta h2 { color: white; }
.section-cta h2 em { color: var(--gold-light); }
.cta-body { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 460px; margin: 20px auto 48px; }
.cta-note { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ── Footer ── */
footer {
  background: var(--charcoal);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-wordmark span { color: var(--sage-light); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Sub-page hero ── */
.subpage-hero {
  padding: 80px 0 64px;
  text-align: center;
}
.subpage-hero h1 { margin-bottom: 24px; }
.subpage-hero .hero-body {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .nav-links { gap: 16px; }
}
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .subpage-hero { padding: 56px 0 40px; }
  .nav-link { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; }
}
