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

:root {
  --crimson: #8b0000;
  --deep-red: #5c0000;
  --blood: #c0392b;
  --ember: #e74c3c;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --smoke: #1a1a1a;
  --ash: #2d2d2d;
  --pale: #f5f0e8;
  --fog: #d4c9b8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--smoke);
  color: var(--pale);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--ember); }
nav ul { display: flex; gap: 2rem; list-style: none; }
nav a {
  color: var(--fog);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  transition: color 0.3s;
}
nav a:hover, nav a.active { color: var(--gold); }

/* PAGE HERO */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,0,0,0.25) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--ember); }
.page-hero p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--fog);
  font-weight: 300;
}

/* DIVIDER */
.gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  margin: 0 10%;
}

/* BUTTONS */
.btn {
  padding: 0.85rem 2.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  border: none;
}
.btn-primary {
  background: var(--crimson);
  color: var(--gold-light);
  border: 1px solid var(--blood);
}
.btn-primary:hover {
  background: var(--blood);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,0,0,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(201,168,76,0.4);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* FOOTER */
footer {
  background: #000;
  padding: 4rem 2.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  margin-top: 4rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(212,201,184,0.5);
  margin-top: 0.8rem;
}
.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-col a { color: rgba(212,201,184,0.5); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--fog); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(212,201,184,0.25);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

/* FAQ accordion */
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.12); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--pale);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  text-align: left;
  padding: 1.8rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q span { color: var(--gold); font-size: 1.3rem; transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 1.8rem; font-size: 0.97rem; line-height: 1.8; color: var(--fog); }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 500px; }

@media (max-width: 768px) {
  nav ul { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
