    :root {
      --night: #07171b;
      --night-2: #0c2a2e;
      --ink: #112e32;
      --paper: #f7f3e8;
      --paper-2: #fffdf6;
      --accent: #c6432f;
      --gold: #ffc857;
      --gold-deep: #e0a93b;
      --muted: #5a6365;
      --line: #ddd6c4;
      --shadow: 0 20px 55px rgba(7, 23, 27, 0.28);
      --nav-h: 68px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; }
    img { max-width: 100%; height: auto; }
    h1, h2, h3, .display { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; letter-spacing: 0.01em; }

    /* ---------- HERO ---------- */
    .hero { position: relative; min-height: calc(100svh - var(--nav-h)); display: grid; align-items: center; overflow: hidden;
      background:
        radial-gradient(1200px 600px at 78% 30%, rgba(255, 200, 87, 0.16), transparent 60%),
        linear-gradient(90deg, rgba(7, 23, 27, 0.97) 0%, rgba(7, 23, 27, 0.85) 42%, rgba(7, 23, 27, 0.42) 100%),
        image-set(url("/images/perf/citadel.webp") type("image/webp"), url("/images/citadel.jpg") type("image/jpeg")) center right / cover no-repeat, var(--night);
      color: #fff; padding: 26px 24px; }
    .hero-inner { width: min(1160px, 100%); margin: 0 auto; display: grid;
      grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
    .eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); font-weight: 700;
      font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; margin: 0 0 14px; }
    .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
    h1 { font-size: clamp(40px, 5.6vw, 68px); line-height: 1.0; margin: 0; font-weight: 900;
      text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
    .subtitle { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-size: clamp(18px, 2.4vw, 27px); font-weight: 700;
      color: var(--gold); margin: 10px 0 0; letter-spacing: 0.16em; text-transform: uppercase; }
    .hero-copy { font-size: 18px; max-width: 540px; margin: 18px 0 24px; color: #ece6d6; }
    .actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
      padding: 14px 26px; border-radius: 999px; background: var(--gold); color: var(--night);
      text-decoration: none; font-weight: 700; font-size: 16px; border: 2px solid var(--gold);
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s; box-shadow: 0 10px 30px rgba(255, 200, 87, 0.22); }
    .button:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255, 200, 87, 0.3); }
    .button.secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); box-shadow: none; }
    .button.secondary:hover { border-color: var(--gold); color: var(--gold); }
    .hero-cover { justify-self: center; width: min(300px, 80%); border-radius: 6px;
      box-shadow: 0 30px 70px rgba(0,0,0,0.55); transform: rotate(2.5deg);
      transition: transform 0.4s ease; border: 1px solid rgba(255,200,87,0.25); }
    .hero-cover:hover { transform: rotate(0deg) translateY(-6px); }
    .hero-inner > picture { justify-self: center; width: min(300px, 80%); }
    .hero-inner > picture .hero-cover { width: 100%; }
    .cover-frame > picture, .author-photo-wrap > picture { display: contents; }
    .rating-chip { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,200,87,0.3);
      padding: 8px 16px; border-radius: 999px; font-size: 14px; color: #f3ecd8; }
    .stars { color: var(--gold); letter-spacing: 2px; }
    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; text-align: left; }
      .hero-inner > picture { display: none; }
      .hero-cover { display: none; }
      .hero { background: linear-gradient(180deg, rgba(7,23,27,0.92), rgba(7,23,27,0.82)),
        image-set(url("/images/perf/citadel.webp") type("image/webp"), url("/images/citadel.jpg") type("image/jpeg")) center 20% / cover no-repeat, var(--night); }
    }
    @media (max-width: 520px) {
      .hero { min-height: calc(100svh - var(--nav-h)); padding: 32px 18px 36px; }
      .hero-copy { font-size: 16px; margin: 22px 0 26px; }
      h1 { font-size: clamp(36px, 13vw, 52px); }
      .subtitle { font-size: 16px; letter-spacing: 0.11em; }
      .eyebrow { font-size: 11px; letter-spacing: 0.13em; margin-bottom: 18px; }
      .eyebrow::before { width: 18px; }
      .actions { align-items: stretch; }
      .actions .button { width: 100%; max-width: 310px; }
      .rating-chip { font-size: 13px; padding: 7px 12px; }
    }

    /* ---------- SECTIONS ---------- */
    section { padding: 86px 24px; scroll-margin-top: calc(var(--nav-h) + 10px); }
    .wrap { width: min(1160px, 100%); margin: 0 auto; }
    .section-eyebrow { color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase;
      letter-spacing: 0.18em; margin: 0 0 12px; font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.08; margin: 0 0 20px; }
    .lead { font-size: 19px; color: var(--muted); margin: 0 0 16px; }
    @media (max-width: 720px) {
      section { padding: 64px 20px; }
      h2 { font-size: clamp(26px, 8vw, 34px); }
      .lead { font-size: 17px; }
    }
    @media (max-width: 420px) {
      section { padding: 54px 18px; }
    }

    #book { min-height: calc(100svh - var(--nav-h)); display: grid; align-items: center; padding-top: 40px; padding-bottom: 40px; }
    @media (max-width: 820px) { #book { min-height: 0; padding-top: 56px; padding-bottom: 56px; } }
    .book-band { display: grid; grid-template-columns: minmax(220px, 320px) minmax(0, 1fr); gap: 56px; align-items: center; }
    .cover-frame { position: relative; padding: 14px; background: linear-gradient(145deg, #fffdf6, #efe8d4);
      border-radius: 8px; box-shadow: var(--shadow); }
    .cover-frame img { width: 100%; display: block; border-radius: 3px; }

    .facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line);
      border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 30px; }
    .fact { background: var(--paper-2); padding: 20px; }
    .fact strong { display: block; font-size: 12px; color: var(--accent); text-transform: uppercase;
      margin-bottom: 6px; letter-spacing: 0.1em; font-weight: 700; }
    .fact span { font-size: 16px; font-weight: 600; }
    @media (max-width: 640px) {
      .book-band { gap: 34px; }
      .cover-frame { width: min(260px, 82vw); margin: 0 auto; padding: 10px; }
      .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 24px; }
      .fact { padding: 16px 14px; }
      .fact span { font-size: 15px; }
    }

    /* ---------- SAMPLE / PEEK INSIDE ---------- */
    .sample { background: var(--night); color: #fff;
      background-image: radial-gradient(900px 400px at 15% 10%, rgba(255,200,87,0.10), transparent 60%); }
    .sample h2 { color: #fff; }
    .sample .lead { color: #d6dadb; }
    .sample-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
    .pull-quote { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.3;
      color: var(--gold); border-left: 3px solid var(--gold-deep); padding-left: 22px; margin: 0; }
    .sample-card { background: linear-gradient(160deg, rgba(255,200,87,0.12), rgba(255,200,87,0.03));
      border: 1px solid rgba(255,200,87,0.32); border-radius: 16px; padding: 34px; text-align: center; }
    .sample-card .doc { font-size: 40px; line-height: 1; margin-bottom: 8px; }
    .sample-card p { color: #d6dadb; font-size: 15px; margin: 6px 0 22px; }
    @media (max-width: 820px) { .sample-grid { grid-template-columns: 1fr; gap: 30px; } }
    @media (max-width: 520px) {
      .sample-card { padding: 26px 20px; border-radius: 12px; }
      .pull-quote { padding-left: 16px; font-size: 20px; }
    }

    /* ---------- AUTHOR ---------- */
    .author { background: var(--night-2); color: #fff; }
    .author h2 { color: #fff; }
    .author .lead { color: #d6dadb; }
    .author-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
    .author-photo-wrap { position: relative; }
    .author-photo { width: 100%; max-width: 360px; border-radius: 16px; display: block; margin: 0 auto;
      border: 1px solid rgba(255,200,87,0.32); box-shadow: 0 26px 60px rgba(0,0,0,0.5); }
    .author-photo-wrap .age-badge { position: absolute; right: 14px; bottom: -18px;
      background: var(--gold); color: var(--night); font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-weight: 900;
      border-radius: 14px; padding: 10px 16px; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
    .author-photo-wrap .age-badge .n { font-size: 30px; line-height: 1; }
    .author-photo-wrap .age-badge .t { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
    @media (max-width: 820px) {
      .book-band, .author-grid { grid-template-columns: 1fr; gap: 36px; }
      .author-photo-wrap { max-width: 320px; margin: 0 auto; }
    }
    @media (max-width: 520px) {
      .author-photo-wrap { max-width: 260px; }
      .author-photo-wrap .age-badge { right: 6px; bottom: -14px; padding: 8px 13px; border-radius: 12px; }
      .author-photo-wrap .age-badge .n { font-size: 26px; }
    }

    /* ---------- REVIEWS ---------- */
    .reviews { background: var(--paper-2); }
    .review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
    .review-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px;
      box-shadow: 0 8px 24px rgba(23,59,63,0.06); }
    .review-card .stars { font-size: 18px; }
    .review-card h3 { font-size: 18px; margin: 12px 0 10px; }
    .review-card p { margin: 0 0 14px; color: var(--muted); font-size: 16px; }
    .review-card .by { font-weight: 600; font-size: 14px; color: var(--ink); font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    .review-links { margin: 26px auto 0; max-width: 780px; text-align: center; background: var(--paper);
      border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; box-shadow: 0 8px 24px rgba(23,59,63,0.06); }
    .review-links p { margin: 0 0 14px; color: var(--muted); font-size: 15px; }
    .review-link-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .review-link-row a { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 9px 16px;
      border-radius: 999px; background: var(--gold); color: var(--night); border: 1px solid var(--gold); font-weight: 700;
      font-size: 14px; text-decoration: none; transition: transform 0.15s ease, background 0.2s ease; }
    .review-link-row a:hover { background: #ffd479; transform: translateY(-1px); }
    @media (max-width: 720px) {
      .review-grid { grid-template-columns: 1fr; }
      .review-link-row a { flex: 1 1 160px; }
    }
    @media (max-width: 520px) {
      .review-grid { gap: 18px; margin-top: 28px; }
      .review-card { padding: 22px 20px; border-radius: 12px; }
      .review-links { padding: 20px 18px; }
    }

    /* ---------- AUTHOR PROFILES ---------- */
    .profile-cards { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; justify-content: flex-start; }
    .pcard { display: flex; align-items: center; gap: 16px; text-align: left; text-decoration: none;
      background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px;
      box-shadow: 0 8px 24px rgba(23,59,63,0.06); transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s; }
    .pcard:hover { transform: translateY(-3px); border-color: var(--gold-deep); box-shadow: 0 16px 34px rgba(23,59,63,0.12); }
    .pcard-logo { position: relative; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 12px;
      background: #fff; border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
    .pcard-logo img { position: absolute; width: 30px; height: 30px; object-fit: contain; }
    .pcard-logo .mono { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-weight: 900; font-size: 22px; color: var(--gold-deep); }
    .pcard-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .pcard-name { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-weight: 700; font-size: 16px; line-height: 1.18; color: var(--ink); white-space: nowrap; }
    .pcard-role { font-size: 13px; line-height: 1.2; color: var(--muted); white-space: nowrap; }
    .pcard-go { margin-left: auto; color: var(--gold-deep); font-weight: 700; font-size: 17px; transition: transform 0.15s ease, color 0.2s; }
    .pcard:hover .pcard-go { color: var(--accent); transform: translate(2px, -2px); }
    .author .profile-cards { margin-top: 20px; }
    .author .pcard { flex: 0 1 240px; min-width: 0; gap: 10px; padding: 11px 13px; border-radius: 10px; }
    .author .pcard-logo { flex-basis: 34px; width: 34px; height: 34px; border-radius: 9px; }
    .author .pcard-logo img { width: 21px; height: 21px; }
    .author .pcard-logo .mono { font-size: 17px; }
    @media (max-width: 980px) {
      .author .pcard { flex-basis: 240px; }
    }
    @media (max-width: 820px) {
      .profile-cards { justify-content: center; }
      .author .profile-cards { max-width: 520px; margin-left: auto; margin-right: auto; }
      .author .pcard { flex: 0 1 240px; }
    }
    @media (max-width: 560px) {
      .profile-cards { gap: 8px; }
      .author .profile-cards { max-width: 100%; }
      .author .pcard { flex-basis: 100%; padding: 11px 13px; }
      .pcard-name { font-size: 16px; }
      .pcard-role { font-size: 13px; }
    }

    /* ---------- BUY / STORES ---------- */
    .buy { text-align: center; }
    .region { margin-top: 44px; text-align: left; }
    .region-title { font-size: 20px; margin: 0 0 18px; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
    .region-title::after { content: ""; height: 1px; width: 60px; background: var(--line); display: inline-block; }
    .store-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .store-card { display: flex; flex-direction: column; gap: 6px; text-align: left;
      background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: 24px 24px 22px;
      box-shadow: 0 8px 24px rgba(23,59,63,0.06); transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s; }
    .store-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(23,59,63,0.12); border-color: var(--gold-deep); }
    .store-card .store-name { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-weight: 700; font-size: 18px; color: var(--ink); }
    .store-card .store-meta { font-size: 14px; color: var(--muted); min-height: 20px; }
    .store-actions { margin-top: 12px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .store-primary { display: inline-flex; align-items: center; gap: 7px; background: var(--accent); color: #fff;
      text-decoration: none; font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px;
      transition: background 0.2s, transform 0.15s; }
    .store-primary:hover { background: #a8351f; transform: translateY(-1px); }
    .store-search { font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none;
      border-bottom: 1px dashed var(--gold-deep); padding-bottom: 1px; transition: color 0.2s; }
    .store-search:hover { color: var(--accent); }
    .store-card.intl .store-primary { background: var(--ink); }
    .store-card.intl .store-primary:hover { background: var(--night-2); }
    .buy-note { font-size: 14px; color: var(--muted); max-width: 640px; margin: 14px auto 0; }
    @media (max-width: 820px) { .store-grid { grid-template-columns: 1fr; } }
    @media (max-width: 520px) {
      .region { margin-top: 34px; }
      .store-grid { gap: 14px; }
      .store-card { padding: 20px; border-radius: 12px; }
      .store-actions { gap: 11px; }
      .store-primary { padding: 9px 14px; }
    }

    /* ---------- SCHOOL ---------- */
    .school { background: var(--paper); border-top: 1px solid var(--line); }
    .columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
    ul.ticks { list-style: none; margin: 18px 0 0; padding: 0; }
    ul.ticks li { position: relative; padding-left: 30px; margin: 12px 0; color: var(--muted); font-size: 16px; }
    ul.ticks li::before { content: "✦"; color: var(--gold-deep); position: absolute; left: 0; top: 1px; font-size: 15px; }
    @media (max-width: 720px) { .columns { grid-template-columns: 1fr; } }

    /* ---------- FOOTER / CONTACT ---------- */
    .contact { background: var(--night); color: #fff; text-align: center; }
    .contact h2 { color: #fff; }
    .contact .lead { color: #cdd2d3; max-width: 620px; margin: 0 auto 26px; }
    .email-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,200,87,0.12);
      border: 1px solid rgba(255,200,87,0.4); color: var(--gold); text-decoration: none; padding: 14px 26px;
      border-radius: 999px; font-weight: 600; font-size: 17px; letter-spacing: 0.02em; transition: background 0.2s; }
    .email-pill:hover { background: rgba(255,200,87,0.2); }
    .socials { display: flex; gap: 16px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
    .socials a { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
      border-radius: 50%; color: #e9e3d2; text-decoration: none; border: 1px solid rgba(255,255,255,0.22);
      transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s; }
    .socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,200,87,0.08); transform: translateY(-2px); }
    .socials svg { width: 20px; height: 20px; fill: currentColor; display: block; }
    /* ---------- EMBERS + SCROLL PENNANT + SOUND ---------- */
    #embers { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; }
    .scroll-pennant { position: fixed; top: calc(var(--nav-h) + 6px); right: 20px; bottom: 22px; width: 44px; z-index: 40; pointer-events: none; }
    .sp-track { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%);
      background: linear-gradient(to bottom, rgba(255,200,87,0.04), rgba(255,200,87,0.30), rgba(255,200,87,0.04)); border-radius: 2px; }
    .sp-flag { position: absolute; left: 0; top: 0; width: 44px; height: 60px; transform: translateY(0);
      transition: transform 0.08s linear; will-change: transform; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.55)); }
    .sp-flag svg { width: 100%; height: 100%; display: block; }
    .scroll-bar { display: none; position: fixed; top: var(--nav-h); left: 0; height: 3px; width: 0;
      background: linear-gradient(90deg, var(--gold-deep), var(--gold)); z-index: 55; box-shadow: 0 0 8px rgba(255,200,87,0.6); }
    @media (max-width: 820px) { .scroll-pennant { display: none; } .scroll-bar { display: block; } }
    .sfx-toggle { position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px; border-radius: 50%;
      background: rgba(7,23,27,0.82); border: 1px solid rgba(255,200,87,0.45); color: var(--gold);
      display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 60; padding: 0;
      backdrop-filter: blur(4px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); transition: background 0.2s, transform 0.15s; }
    .sfx-toggle:hover { background: rgba(12,42,46,0.95); transform: translateY(-2px); }
    .sfx-toggle svg { width: 20px; height: 20px; display: block; }
    .sfx-toggle .wave { opacity: 0; transition: opacity 0.2s; }
    .sfx-toggle.on .wave { opacity: 1; }
    .sfx-toggle .slash { opacity: 1; transition: opacity 0.2s; }
    .sfx-toggle.on .slash { opacity: 0; }
    @media (max-width: 560px) { .sfx-toggle { width: 40px; height: 40px; right: 12px; bottom: 12px; } }
    @media (prefers-reduced-motion: reduce) { .sp-flag { transition: none; } #embers { display: none; } }

    /* ---------- CONNECT / SOCIAL ---------- */
    .connect { background: var(--night-2); color: #fff; text-align: center; }
    .connect h2 { color: #fff; }
    .connect .lead { color: #d6dadb; }
    .social-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 38px; text-align: left; }
    .scard { display: flex; flex-direction: column; gap: 14px; text-decoration: none;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,200,87,0.22); border-radius: 16px; padding: 24px;
      transition: transform 0.15s ease, border-color 0.2s, background 0.2s; }
    .scard:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(255,200,87,0.07); }
    .scard-head { display: flex; align-items: center; gap: 12px; }
    .scard-icon { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,200,87,0.12); border: 1px solid rgba(255,200,87,0.3); color: var(--gold); }
    .scard-icon svg { width: 22px; height: 22px; fill: currentColor; display: block; }
    .scard-id { display: flex; flex: 1 1 auto; min-width: 0; flex-direction: column; }
    .scard-name { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-weight: 700; font-size: 17px; color: #fff; }
    .scard-handle { display: block; max-width: 100%; overflow-wrap: anywhere; font-size: 13px; line-height: 1.3; color: var(--gold); }
    .home-page .connect .scard-vp { font-size: 15px; color: var(--site-cta-muted); margin: 0; flex: 1; }
    .scard-follow { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--night);
      font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 999px; }
    .scard:hover .scard-follow { background: #ffd479; }
    @media (max-width: 820px) { .social-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

    /* ---------- FAQ ---------- */
    .faq { background: linear-gradient(180deg, #efe8d4 0%, #f7f3e8 100%); border-top: 1px solid var(--line); }
    .faq-list { margin-top: 34px; display: grid; gap: 14px; }
    .faq-item { background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
    .faq-item summary { list-style: none; cursor: pointer; font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; font-weight: 700; font-size: 18px;
      color: var(--ink); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after { content: "+"; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 999px;
      display: grid; place-items: center; background: rgba(255,200,87,0.2); color: var(--accent); font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
    .faq-item[open] summary::after { content: "-"; }
    .faq-item p { margin: 0; padding: 0 24px 20px; color: var(--muted); font-size: 16px; }
    .faq-item a { color: var(--accent); font-weight: 600; text-decoration: none; }
    .faq-item a:hover { text-decoration: underline; }

    /* ---------- reveal animation ---------- */
    .reveal { opacity: 1; transform: none; }
    .js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .js .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .js .reveal { opacity: 1; transform: none; transition: none; }
      .button, .store-card, .hero-cover { transition: none; }
      .button:hover, .store-card:hover, .hero-cover:hover { transform: none; }
    }
