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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--olive-dark);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s4);
}
@media (min-width: 768px)  { .container { padding: 0 var(--s8); } }
@media (min-width: 1200px) { .container { padding: 0 var(--s6); } }

/* ── Scroll-reveal base states ── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Section heading helpers ── */
.section-heading { text-align: center; margin-bottom: var(--s16); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 700;
  color: var(--olive-dark);
  margin-bottom: var(--s4);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-medium);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.section-divider::before,
.section-divider::after {
  content: '';
  height: 2px;
  width: 52px;
  border-radius: 2px;
}
.section-divider::before { background: linear-gradient(to right, transparent, var(--gold)); }
.section-divider::after  { background: linear-gradient(to left,  transparent, var(--gold)); }

/* ── Wave separator ── */
.section-wave {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.section-wave svg,
.section-wave-top svg,
.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}
@media (min-width: 768px) {
  .section-wave svg,
  .section-wave-top svg,
  .footer-wave svg { height: 80px; }
}
