:root {
  --sage: #768B89;
  --rose: #C7A69E;
  --sand: #F2EFEA;
  --espresso: #3E3630;
  --sand-dark: #E8E3DC;
  --sage-light: #EDF0F0;
  --rose-light: #F5EDEB;
  --muted: #7A6D65;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--sand);
  color: var(--espresso);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 5%;
  background: rgba(242,239,234,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(118,139,137,0.15);
}

.nav-logo img { height: 50px; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--espresso);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.nav-cta {
  background: var(--rose);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #b5918a; transform: translateY(-1px); }

.section-label { display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem; }
.section-title { font-family: 'Lora', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--espresso); line-height: 1.2; margin-bottom: 3rem; }
.section-title em { font-style: italic; color: var(--sage); }

footer {
  background: var(--espresso);
  color: rgba(242,239,234,0.5);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-logo img { height: 38px; filter: brightness(0) invert(1) opacity(0.8); }
footer a { color: rgba(242,239,234,0.5); text-decoration: none; }
footer a:hover { color: var(--rose); }

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  footer { flex-direction: column; text-align: center; }
}
