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

:root {
  --purple: #5A2A82;
  --gold: #D4AF37;
  --ivory: #F8F5F0;
  --taupe: #A6978A;
  --charcoal: #2E2B2B;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

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

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  font-size: 0.68rem !important;
  letter-spacing: 0.12em;
  transition: background 0.3s ease !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--purple);
  color: var(--purple);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.gold-divider-left {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--purple);
  padding: 9rem 4rem 5rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--ivory);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-top: 0.8rem;
}

.footer-nav h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--taupe);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-contact p {
  font-size: 0.82rem;
  color: var(--taupe);
  line-height: 2;
}

.footer-bottom {
  background: var(--ivory);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(166, 151, 138, 0.6);
  letter-spacing: 0.05em;
}

/* ── PLACEHOLDER IMAGE ── */
.img-placeholder {
  background: linear-gradient(135deg, #e8e2da 0%, #d4c9be 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 99;
    overflow-y: auto;
    padding: 5rem 2rem 3rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }

  .nav-links li:first-child {
    border-top: 1px solid rgba(212,175,55,0.15);
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--charcoal);
    display: block;
    padding: 1.1rem 0;
  }

  .nav-links a:hover {
    color: var(--purple);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 1.5rem;
  }

  .nav-links a.nav-cta {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--purple);
    color: var(--white) !important;
  }

  .hamburger {
    display: flex;
    z-index: 101;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }

  .gold-divider-left {
    margin: 0.8rem auto;
  }

  .footer-bottom {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .page-header {
    padding: 7rem 1.5rem 3.5rem;
  }

  .page-header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .btn-gold,
  .btn-outline,
  .btn-primary {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1.5rem;
  }
}
