:root {
  --teal: #15232B;
  --teal-light: #1F3440;
  --cream: #EAE6D6;
  --accent: #c9b99a;
  --text: #1a1a1a;
  --gray: #6b7280;
  --bg: #f7f6f3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 56px;
}

.logo {
  background: transparent;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

/* ── SHARED STRUCTURES ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-body-text {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── FOOTER ── */
footer {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 32px 48px;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ── GLOBALS RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  nav {
    gap: 12px;
  }
}
