/* ============================================
   Base — Reset & Typography
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
::selection { background: rgba(180,157,114,0.22); color: var(--green); }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--green);
  line-height: 1.12;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { color: var(--muted); line-height: 1.75; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

section { padding: 7rem 0; }
@media (min-width: 768px) { section { padding: 9rem 0; } }

/* ── Label / Eyebrow ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
}

.label::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.label-center { justify-content: center; }
.label-center::before { display: none; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.70s var(--ease), transform 0.70s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* ── Scroll progress ── */
#scrollBar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--grad-gold);
  z-index: 9999;
  pointer-events: none;
}
