@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink: #0a0f1a;
  --parchment: #f8f6f1;
  --warm-white: #fdfcf9;
  --champagne: #c9a96e;
  --champagne-light: #dfc9a0;
  --champagne-dark: #a8873f;
  --slate: #4a5568;
  --mist: #e8e4dd;
  --charcoal: #1a2332;
  --soft-shadow: rgba(10, 15, 26, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 252, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--mist);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--champagne); font-weight: 700; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--champagne);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.4s ease;
}

.nav-cta:hover {
  background: var(--champagne);
  color: var(--warm-white);
}

/* ── COMMON ELEMENTS ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--champagne);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate);
  max-width: 600px;
  font-weight: 300;
}

.page-section {
  padding: 8rem 3rem 6rem;
  min-height: 100vh;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--ink);
  color: var(--parchment);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(10, 15, 26, 0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--champagne-dark); }
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(248, 246, 241, 0.4);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--parchment);
}

.footer-logo span { color: var(--champagne); }

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(248, 246, 241, 0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--champagne); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── MOBILE ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.mobile-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .mobile-toggle { display: flex; }
  .nav-links, .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--warm-white);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 150;
  }

  .nav-links.open a { font-size: 1rem; }
  .page-section { padding: 6rem 1.5rem 4rem; }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links { flex-direction: column; gap: 1rem; }
}
