  /* ============================================================
     FAQ PAGE
     Brand: Georgia + Helvetica Neue · burgundy + deep-sea + olympus-stone
     ============================================================ */

  /* PAGE HERO */
  .page-hero {
    background: var(--deep-sea);
    color: var(--off-white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .page-hero-img { position: absolute; inset: 0; z-index: 0; opacity: 0.30; }
  .page-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse at 100% 100%, rgba(123, 31, 44, 0.25) 0%, transparent 60%),
      radial-gradient(ellipse at 0% 0%, rgba(91, 143, 168, 0.18) 0%, transparent 50%),
      linear-gradient(180deg, rgba(14, 42, 56, 0.65) 0%, rgba(14, 42, 56, 0.88) 100%);
  }
  .page-hero .wrap { position: relative; z-index: 2; }
  .page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(247, 243, 236, 0.85);
  }
  .page-hero-eyebrow .dash { width: 32px; height: 1px; background: var(--marble-red); }
  .page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6.5vw, 84px);
    line-height: 1;
    color: var(--off-white);
    margin-bottom: 24px;
    max-width: 18ch;
    letter-spacing: -0.01em;
  }
  .page-hero h1 em { color: var(--marble-red); font-style: italic; }
  .page-hero-sub {
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.45;
    color: rgba(247, 243, 236, 0.85);
    max-width: 60ch;
  }

  /* JUMP TOC */
  .faq-toc {
    background: var(--olympus-stone);
    padding: 48px 0;
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: padding var(--transition);
  }
  .faq-toc.scrolled { padding: 24px 0; }
  .faq-toc-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--marble-red);
    margin-bottom: 18px;
  }
  .faq-toc-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .faq-toc-link {
    display: block;
    padding: 14px 18px;
    background: var(--off-white);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--marble-red);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
  }
  .faq-toc-link:hover {
    background: rgba(123, 31, 44, 0.04);
    transform: translateX(2px);
  }
  .faq-toc-num {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--marble-red);
    margin-bottom: 4px;
  }
  .faq-toc-label {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.3;
    color: var(--ink);
  }

  /* CATEGORY SECTIONS */
  .faq-category {
    background: var(--off-white);
    padding: 100px 0 80px;
    scroll-margin-top: 140px;
  }
  .faq-category:nth-of-type(even) {
    background: var(--olympus-stone);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .faq-category-header {
    max-width: 720px;
    margin-bottom: 64px;
  }
  .faq-category-header .eyebrow {
    display: block;
    margin-bottom: 16px;
  }
  .faq-category-header h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
    max-width: 22ch;
  }
  .faq-category-header h2 em { color: var(--marble-red); font-style: italic; }

  /* INDIVIDUAL Q&A BLOCKS */
  .faq-list {
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .faq-item {
    padding: 36px 0;
    border-bottom: 1px solid var(--rule);
  }
  .faq-item:first-child { padding-top: 0; }
  .faq-item:last-child { border-bottom: none; }
  .faq-question {
    font-family: var(--serif);
    font-size: clamp(22px, 2.2vw, 26px);
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.005em;
  }
  .faq-question em { color: var(--marble-red); font-style: italic; }
  .faq-answer {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 720px;
  }
  .faq-answer p {
    margin-bottom: 14px;
  }
  .faq-answer p:last-child { margin-bottom: 0; }
  .faq-answer strong {
    color: var(--ink);
    font-weight: 600;
  }
  .faq-answer em { font-style: italic; }
  .faq-answer a {
    color: var(--marble-red);
    border-bottom: 1px solid rgba(123, 31, 44, 0.4);
    transition: border-color var(--transition), color var(--transition);
  }
  .faq-answer a:hover {
    color: var(--marble-red-dark);
    border-bottom-color: var(--marble-red);
  }
  .faq-answer ul {
    list-style: none;
    padding: 6px 0 0;
    margin: 0 0 12px;
  }
  .faq-answer ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.6;
  }
  .faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 1px;
    background: var(--marble-red);
  }

  /* PRICE TABLE — for Cost of Living Q */
  .faq-price-table {
    margin: 18px 0 6px;
    border: 1px solid var(--rule);
    background: var(--off-white);
  }
  .faq-category:nth-of-type(even) .faq-price-table {
    background: var(--off-white);
  }
  .faq-price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
  }
  .faq-price-row:last-child { border-bottom: none; }
  .faq-price-item {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink);
  }
  .faq-price-value {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--marble-red);
    white-space: nowrap;
  }
  .faq-price-note {
    display: block;
    margin-top: 10px;
    padding: 14px 18px;
    background: rgba(123, 31, 44, 0.06);
    border-left: 2px solid var(--marble-red);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  /* STILL HAVE QUESTIONS BAND */
  .faq-cta {
    background: var(--marble-red);
    color: var(--off-white);
    padding: 80px 0;
  }
  .faq-cta-grid {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 48px;
    align-items: center;
  }
  .faq-cta-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(247, 243, 236, 0.8);
    margin-bottom: 14px;
  }
  .faq-cta-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 12px;
  }
  .faq-cta-title em { font-style: italic; color: rgba(247, 243, 236, 0.7); }
  .faq-cta-sub {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(247, 243, 236, 0.85);
    max-width: 56ch;
  }
  .faq-cta-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
  }
  .faq-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--off-white);
    color: var(--marble-red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
  }
  .faq-cta-primary:hover {
    background: var(--olympus-stone);
    transform: translateY(-1px);
  }
  .faq-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(247, 243, 236, 0.4);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: border-color var(--transition), background var(--transition);
    white-space: nowrap;
  }
  .faq-cta-secondary:hover {
    border-color: var(--off-white);
    background: rgba(247, 243, 236, 0.06);
  }

  /* PATH FORWARD */
  .path-forward {
    background: var(--off-white);
    padding: 140px 0;
  }
  .path-forward-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .path-forward-header h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 18ch;
    margin: 16px auto 0;
  }
  .path-forward-header h2 em { color: var(--marble-red); font-style: italic; }
  .path-forward-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .path-card {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--deep-sea);
    color: var(--off-white);
    transition: transform var(--transition);
  }
  .path-card:hover { transform: translateY(-6px); }
  .path-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
    transition: opacity var(--transition), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .path-card:hover img { opacity: 0.75; transform: scale(1.05); }
  .path-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14, 42, 56, 0.3) 0%, rgba(14, 42, 56, 0.85) 100%);
    z-index: 1;
  }
  .path-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .path-num {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--off-white);
  }
  .path-card h3 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 12px;
  }
  .path-card h3 em { font-style: italic; color: var(--marble-red); }
  .path-card p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(247, 243, 236, 0.85);
    margin-bottom: 16px;
  }
  .path-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    border-bottom: 1px solid rgba(247, 243, 236, 0.4);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: border-color var(--transition), gap var(--transition);
  }
  .path-card:hover .path-link {
    border-bottom-color: var(--off-white);
    gap: 14px;
  }

  /* ============================================================
     RESPONSIVE
     ============================================================ */

  @media (max-width: 1100px) {
    .page-hero { padding: 160px 0 90px; }

    .faq-toc { position: static; }
    .faq-toc-list { grid-template-columns: 1fr; gap: 10px; }

    .faq-cta-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .faq-cta-buttons { flex-direction: row; flex-wrap: wrap; }

    .path-forward-grid { grid-template-columns: 1fr; }
    .path-card { aspect-ratio: 16 / 10; }
  }

  @media (max-width: 760px) {
    .wrap { padding: 0 24px; }
    .nav-primary { display: none; }
    .nav-toggle { display: flex; }

    .page-hero { padding: 140px 0 72px; }
    .page-hero-eyebrow {
      font-size: 10px;
      letter-spacing: 0.16em;
      gap: 10px;
      margin-bottom: 24px;
    }
    .page-hero-eyebrow .dash { width: 24px; }
    .page-hero h1 {
      font-size: clamp(40px, 13vw, 60px);
      max-width: 14ch;
    }
    .page-hero-sub { font-size: 18px; }

    .faq-toc { padding: 32px 0; }

    .faq-category {
      padding: 72px 0 56px;
      scroll-margin-top: 80px;
    }
    .faq-category-header { margin-bottom: 48px; }
    .faq-item { padding: 28px 0; }
    .faq-question { font-size: 20px; }
    .faq-answer,
    .faq-answer ul li { font-size: 16px; }

    .faq-price-row {
      grid-template-columns: 1fr;
      gap: 4px;
      padding: 14px 18px;
    }

    .faq-cta { padding: 64px 0; }
    .faq-cta-buttons {
      flex-direction: column;
      width: 100%;
    }
    .faq-cta-primary,
    .faq-cta-secondary { width: 100%; }

    .path-forward { padding: 76px 0; }
    .path-card { aspect-ratio: auto; min-height: 360px; }
    .path-card-content { padding: 30px 24px; }
  }

  @media (max-width: 480px) {
    .page-hero { padding: 128px 0 64px; }
    .page-hero h1 { font-size: clamp(38px, 14vw, 52px); }
    .page-hero-sub { font-size: 17px; }

    .faq-category { padding: 60px 0 48px; }
    .path-forward { padding: 64px 0; }
    .path-card { min-height: 340px; }
  }
