:root {
  --cream: #FAF9F7;
  --blush: #E1DBDB;
  --plum: #401E31;
  --mauve: #7A7395;
  --slate: #484745;
  --plum-light: #5a2c47;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--slate);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--blush);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--plum);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--plum); }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--plum);
  padding: 0.65rem 1.5rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--plum-light); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--plum);
  color: var(--cream);
}
.btn-primary:hover { background: var(--plum-light); }
.btn-outline {
  border: 1px solid var(--plum);
  color: var(--plum);
  background: transparent;
}
.btn-outline:hover { background: var(--plum); color: var(--cream); }
.btn-ghost {
  border-bottom: 1px solid var(--mauve);
  color: var(--mauve);
  padding: 0 0 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}
.btn-ghost:hover { color: var(--plum); border-color: var(--plum); }

/* SECTION BASE */
section { padding: 7rem 4rem; }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

/* TYPOGRAPHY */
.label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.5rem;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); color: var(--plum); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--plum); }
h3 { font-size: 1.5rem; color: var(--plum); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* DIVIDER */
.divider {
  width: 40px;
  height: 1px;
  background: var(--mauve);
  margin: 2rem 0;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* FOOTER */
footer {
  background: var(--plum);
  color: var(--blush);
  padding: 4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  color: var(--mauve);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer-links a { color: var(--blush); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* MOBILE NAV */
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--plum); transition: all 0.3s; }

@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  section { padding: 5rem 1.5rem; }
  footer { padding: 3rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; }
  .footer-links { text-align: left; }
}
