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

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

:root {
  --ivory: #fdfaf5;
  --deep: #1a1025;
  --violet: #6b4fa0;
  --violet-light: #c4aee8;
  --violet-pale: #f3eefb;
  --gold: #c9a458;
  --gold-light: #e8d5a0;
  --gold-pale: #faf5ea;
  --rose: #c97a96;
  --teal: #4a9e8a;
  --sky: #6aaed6;
  --green: #7aaa6a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--ivory); color: var(--deep); overflow-x: hidden; }

/* NAV */
nav {
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,164,88,0.18);
  padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--violet); letter-spacing: 0.06em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  text-decoration: none; color: rgba(26,16,37,0.5);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--violet); }

/* SHARED SECTION ELEMENTS */
.eyebrow {
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; text-align: center;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  color: var(--deep); text-align: center; margin-bottom: 1rem; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--violet); }
.gold-rule { width: 50px; height: 1px; background: var(--gold-light); margin: 1rem auto 2.5rem; }

/* FOOTER */
footer {
  background: #110a1d; color: rgba(255,255,255,0.35);
  text-align: center; padding: 2.5rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 0.4rem;
}
.footer-tag { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,0.3);
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.6rem; opacity: 0.35; }

/* BUTTONS */
.btn-primary {
  background: var(--violet); color: #fff;
  padding: 0.85rem 2rem; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--deep); }
.btn-outline {
  background: transparent; color: var(--violet);
  padding: 0.85rem 2rem; border: 1px solid var(--violet-light); cursor: pointer;
  font-family: 'Raleway', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--violet-pale); border-color: var(--violet); }
