  @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

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

  :root {
    --bg: #0e0e0e;
    --surface: #161616;
    --surface2: #1e1e1e;
    --border: #2a2a2a;
    --text: #f0ede8;
    --muted: #7a766e;
    --accent: #ff6b35;
    --accent-soft: #7d2803;
    --warn-bg: #1e1408;
    --warn-border: #8c4f10;
    --warn-text: #f0b36a;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.65;
    min-height: 100vh;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-mark svg {
    width: 18px;
    height: 18px;
    fill: #0e0e0e;
  }

  .logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    color: var(--text);
  }

  .nav-link {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-link:hover { color: var(--accent); }

  main {
    max-width: 740px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
  }

  .page-header {
    margin-bottom: 3rem;
  }

  .eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 400;
  }

  h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1rem;
  }

  .subhead {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
  }

  .subhead a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .subhead a:hover { border-color: var(--accent); }

  .warn-banner {
    background: var(--warn-bg);
    border: 1px solid var(--warn-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .warn-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--warn-border);
    color: #0e0e0e;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .warn-content strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warn-text);
    font-weight: 500;
    display: block;
    margin-bottom: 0.2rem;
  }

  .warn-content p {
    font-size: 0.875rem;
    color: var(--warn-text);
    opacity: 0.85;
  }

  .section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    font-weight: 400;
  }

  .faq-list {
    list-style: none;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
  }

  .faq-question {
    font-size: 0.975rem;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    transition: color 0.2s;
  }

  .faq-toggle:hover .faq-question { color: var(--accent); }

  .faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, transform 0.3s;
    color: var(--muted);
    font-size: 14px;
  }

  .faq-toggle[aria-expanded="true"] .faq-icon {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(45deg);
  }

  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  .faq-answer-inner {
    padding: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
  }

  .faq-answer-inner a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .faq-answer-inner a:hover { border-color: var(--accent); }

  .contact-card {
    margin-top: 3.5rem;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .contact-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
  }

  .contact-card p {
    font-size: 0.85rem;
    color: var(--muted);
  }

  .contact-btn {
    background: var(--accent);
    color: #0e0e0e;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: opacity 0.2s;
  }

  .contact-btn:hover { opacity: 0.85; }