@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #090909;
  --bg-alt: #0d0a0a;
  --bg-soft: #15110f;
  --gold: #d5ae73;
  --gold-deep: #8a6634;
  --rose-gold: #d79a8b;
  --blush-gold: #e7b2a4;
  --text-light: #f5ede6;
  --text-muted: #ddcec1;
  --text-soft: #bea693;
  --border-gold: rgba(198, 160, 98, 0.55);
  --shadow-glow: 0 14px 42px rgba(157, 119, 64, 0.12);
  --radius-md: 0.85rem;
  --radius-lg: 1.25rem;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-light);
  background:
    radial-gradient(circle at 18% 22%, rgba(199, 135, 108, 0.12), transparent 42%),
    radial-gradient(circle at 84% 10%, rgba(196, 142, 102, 0.10), transparent 36%),
    radial-gradient(circle at 70% 78%, rgba(145, 94, 58, 0.13), transparent 42%),
    linear-gradient(180deg, #050505 0%, var(--bg) 36%, var(--bg-alt) 100%);
  line-height: 1.65;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(231, 178, 164, 0.35) 0.4px, transparent 0.6px);
  background-size: 6px 6px;
}

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

a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

a:hover { color: var(--blush-gold); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.08;
  margin: 0 0 0.65em;
  letter-spacing: 0.02em;
}

h1, h2 { line-height: 1.02; }
h3, h4 { line-height: 1.12; }

p { margin: 0 0 1em; color: var(--text-muted); }

.editorial-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  color: var(--gold);
}

ul { margin: 0; padding: 0; list-style: none; }

html, body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.faq-section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.faq-intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 2rem;
  color: var(--text-muted);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(198, 160, 98, 0.42);
  background:
    linear-gradient(165deg, rgba(22, 17, 15, 0.96), rgba(11, 8, 8, 0.92));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(236, 197, 162, 0.12);
  pointer-events: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem 1.15rem 3.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  color: var(--text-light);
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(215, 154, 139, 0.6);
  color: var(--blush-gold);
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  background: rgba(27, 20, 18, 0.8);
}

.faq-item[open] summary {
  color: var(--blush-gold);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.faq-item[open] summary::before {
  content: "–";
}

.faq-answer {
  padding: 0 1.25rem 1.25rem 3.2rem;
  color: var(--text-muted);
  max-width: 68ch;
}

.faq-answer p {
  margin: 0;
}

.faq-item:hover {
  border-color: rgba(231, 178, 164, 0.52);
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 1rem 1rem 1rem 2.9rem;
    font-size: 1.2rem;
  }

  .faq-item summary::before {
    left: 0.9rem;
    width: 24px;
    height: 24px;
  }

  .faq-answer {
    padding: 0 1rem 1rem 2.9rem;
  }
}