
:root {
  --terracotta: #C2785C;
  --terracotta-deep: #A35D42;
  --blush: #E8C4B8;
  --blush-light: #F2DDD6;
  --rose: #B56576;
  --sand: #F5EDE4;
  --sand-dark: #E8DDD0;
  --cream: #FBF7F3;
  --white: #FFFFFF;
  --charcoal: #2D2926;
  --text-dark: #3A3330;
  --text-mid: #6B5E57;
  --text-light: #9A8D85;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text-dark); background: var(--cream); overflow-x: hidden; }

/* ═══════ NAV ═══════ */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 0.7rem 2rem; background: rgba(45,41,38,0.92); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo span { color: var(--blush); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.3s; letter-spacing: 0.3px; }
.nav-links a:hover { color: var(--blush); }
.nav-cta { background: var(--terracotta) !important; color: var(--white) !important; padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 600 !important; transition: background 0.3s !important; }
.nav-cta:hover { background: var(--terracotta-deep) !important; }
.nav-cta-alt { background: var(--rose) !important; color: var(--white) !important; padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 600 !important; transition: background 0.3s !important; }
.nav-cta-alt:hover { background: #9B4F60 !important; }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ═══════ HERO ═══════ */
.hero { padding: 10rem 2rem 4rem; background: linear-gradient(135deg, var(--charcoal) 0%, #4A3B34 40%, var(--terracotta-deep) 100%); text-align: center; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--white); margin-bottom: 1rem; }
.hero h1 em { color: var(--blush); font-style: italic; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ═══════ FAQ ═══════ */
.faq-section { padding: 5rem 2rem; }
.faq-inner { max-width: 750px; margin: 0 auto; }
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--terracotta);
  display: inline-block;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--sand-dark);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(45,41,38,0.06); }
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.3s;
  user-select: none;
}
.faq-question:hover { color: var(--terracotta); }
.faq-arrow {
  font-size: 1.2rem;
  color: var(--terracotta);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════ CTA ═══════ */
.cta-section {
  background: var(--white);
  text-align: center;
  padding: 4rem 2rem;
  margin: 0 2rem 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(45,41,38,0.06);
  border: 1px solid var(--sand-dark);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.cta-section h2 em { color: var(--terracotta); font-style: italic; }
.cta-section p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 450px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); }

/* ═══════ FOOTER ═══════ */
footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 2.5rem 2rem; text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; list-style: none; padding: 0; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--blush); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 8rem 1.5rem 3rem; }
  .faq-section { padding: 3rem 1.5rem; }
  .faq-question { font-size: 0.9rem; padding: 1rem 1.2rem; }
  .cta-section { margin: 0 1rem 2rem; padding: 2.5rem 1.5rem; }
}
