*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #1a1814; --stone: #4a4540; --mist: #8a857e;
  --parchment: #f5f2ec; --cream: #faf8f4;
  --gold: #b8975a; --white: #ffffff; --border: rgba(74,69,64,0.15);
}
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.7; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-back { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--stone); text-decoration: none; }
.nav-back:hover { color: var(--gold); }

.page-header { background: var(--ink); padding: 8rem 2rem 4rem; text-align: center; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.gold-line { width: 40px; height: 2px; background: var(--gold); margin: 1rem auto; }

.content { max-width: 780px; margin: 0 auto; padding: 4rem 2rem 6rem; }

.last-updated { background: var(--parchment); border: 1px solid var(--border); border-radius: 4px; padding: 0.75rem 1.25rem; font-size: 0.8rem; color: var(--mist); margin-bottom: 3rem; }

.toc { background: var(--parchment); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem 2rem; margin-bottom: 3rem; }
.toc h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.toc ol { padding-left: 1.25rem; }
.toc li { margin-bottom: 0.4rem; }
.toc a { color: var(--gold); text-decoration: none; font-size: 0.88rem; }
.toc a:hover { text-decoration: underline; }

.section { margin-bottom: 3rem; }
.section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.section h3 { font-size: 0.95rem; font-weight: 600; color: var(--stone); margin: 1.5rem 0 0.5rem; }
.section p { font-size: 0.9rem; color: var(--stone); margin-bottom: 1rem; line-height: 1.8; }
.section ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.section ul li { font-size: 0.88rem; color: var(--stone); margin-bottom: 0.4rem; line-height: 1.7; }
.section a { color: var(--gold); }

.highlight-box { background: var(--parchment); border-left: 3px solid var(--gold); padding: 1rem 1.25rem; margin: 1rem 0; font-size: 0.88rem; color: var(--stone); border-radius: 0 4px 4px 0; line-height: 1.7; }

.btn-link { display: inline-block; margin-top: 0.75rem; background: var(--gold); color: white; padding: 0.5rem 1.25rem; border-radius: 3px; text-decoration: none; font-size: 0.8rem; letter-spacing: 0.08em; }

.contact-box { background: var(--ink); color: var(--white); border-radius: 6px; padding: 2rem; text-align: center; margin-top: 3rem; }
.contact-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.contact-box p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 0.5rem; }
.contact-box a { color: var(--gold); text-decoration: none; font-weight: 500; }

footer { background: var(--ink); color: rgba(255,255,255,0.4); padding: 2rem; text-align: center; font-size: 0.78rem; }
footer a { color: var(--gold); text-decoration: none; margin: 0 0.5rem; }

/* Contact form */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 4px; background: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--ink); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--ink); color: var(--white); border: none; border-radius: 4px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--gold); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-question { font-size: 0.95rem; font-weight: 500; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { font-size: 0.88rem; color: var(--stone); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; padding-top: 0.75rem; }

@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .content { padding: 3rem 1.25rem 4rem; }
}
