  /* ── VIDEO POPUP ────────────────────────────── */
  .vpopup {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    animation: vpFadeIn 0.25s ease;
  }
  @keyframes vpFadeIn { from { opacity: 0 } to { opacity: 1 } }
  .vpopup-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.88); backdrop-filter: blur(4px);
    cursor: pointer;
  }
  .vpopup-inner {
    position: relative; z-index: 1;
    width: min(880px, 94vw);
    animation: vpSlideUp 0.3s cubic-bezier(.22,1,.36,1);
  }
  @keyframes vpSlideUp { from { transform: translateY(30px); opacity: 0 } to { transform: none; opacity: 1 } }
  .vpopup-close {
    position: absolute; top: -2.75rem; right: 0;
    background: none; border: 1px solid rgba(255,255,255,0.3);
    color: #fff; width: 36px; height: 36px; border-radius: 50%;
    font-size: 0.85rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: background 0.15s, border-color 0.15s;
  }
  .vpopup-close:hover { background: var(--accent); border-color: var(--accent); }
  .vpopup-frame {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    background: #000; border: 2px solid rgba(255,255,255,0.08);
  }
  .vpopup-frame video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    outline: none;
  }
  /* ── SLIDERS ────────────────────────────────── */
  .slider-wrap {
    position: relative; display: flex; align-items: center; gap: 1rem;
  }
  .slider-viewport {
    flex: 1; overflow: hidden;
  }
  .slider-track {
    display: flex; gap: 1px; transition: transform 0.45s cubic-bezier(.22,1,.36,1);
    will-change: transform;
  }
  /* person cards inside slider */
  #personsSlider .person-card {
    flex: 0 0 calc(33.333% - 1px); min-width: 0;
  }
  /* blog cards inside slider */
  #blogSlider .blog-card {
    flex: 0 0 calc(33.333% - 1px); min-width: 0;
  }
  .slider-arrow {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border);
    background: var(--surface); color: var(--ink); font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    z-index: 2;
  }
  .slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  .slider-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
  .slider-dots {
    display: flex; justify-content: center; gap: 0.45rem; margin-top: 1.5rem;
  }
  .slider-dots .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--border);
    cursor: pointer; transition: background 0.15s, transform 0.15s; border: none; padding: 0;
  }
  .slider-dots .dot.active { background: var(--accent); transform: scale(1.25); }
  /* ── REVIEW ANIMATION ───────────────────────── */
  .review-body { transition: none; }
  .review-body.fading { opacity: 0; transform: translateY(8px); transition: opacity 0.18s ease, transform 0.18s ease; }
  .review-body.visible { opacity: 1; transform: none; transition: opacity 0.22s ease 0.05s, transform 0.22s ease 0.05s; }
  @media (max-width: 640px) {
    #personsSlider .person-card,
    #blogSlider .blog-card { flex: 0 0 100%; }
    .slider-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  }
  @media (min-width: 641px) and (max-width: 900px) {
    #personsSlider .person-card,
    #blogSlider .blog-card { flex: 0 0 50%; }
  }
  
  /* ── FORM POPUP ──────────────────────────────────── */
  .fpopup {
    position: fixed; inset: 0; z-index: 400;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    animation: vpFadeIn 0.2s ease;
  }
  .fpopup-overlay {
    position: absolute; inset: 0;
    background: rgba(15,12,10,0.85); backdrop-filter: blur(5px);
    cursor: pointer;
  }
  .fpopup-inner {
    position: relative; z-index: 1;
    width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    animation: vpSlideUp 0.32s cubic-bezier(.22,1,.36,1);
    scrollbar-width: thin;
  }
  .fpopup-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--muted); font-size: 0.8rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s; z-index: 2;
  }
  .fpopup-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

  .fpopup-header {
    background: var(--ink); color: #fff;
    padding: 2rem 2rem 1.75rem;
    position: relative;
  }
  .fpopup-header::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
  }
  .fpopup-eyebrow {
    font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent2); margin-bottom: 0.6rem;
  }
  .fpopup-title {
    font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
    margin-bottom: 0.5rem; line-height: 1.2;
  }
  .fpopup-sub {
    font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6;
  }

  /* Form body */
  .fpopup-form { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
  .fgroup { display: flex; flex-direction: column; gap: 0.4rem; }
  .flabel {
    font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  }
  .freq { color: var(--accent); margin-left: 2px; }
  .finput-wrap { position: relative; }
  .finput {
    width: 100%; padding: 0.75rem 2.5rem 0.75rem 0.9rem;
    border: 1.5px solid var(--border); background: var(--bg);
    font-family: var(--sans); font-size: 0.92rem; color: var(--ink);
    outline: none; transition: border-color 0.2s, background 0.2s;
    border-radius: 1px;
  }
  .finput::placeholder { color: #b5aca4; }
  .finput:focus { border-color: var(--ink); background: var(--surface); }
  .finput.error { border-color: var(--accent); }
  .finput-icon {
    position: absolute; right: 0.85rem; top: 50%; transform: translateY(-50%);
    font-size: 0.85rem; color: var(--muted); pointer-events: none;
  }
  .ferror {
    font-family: var(--mono); font-size: 0.67rem; color: var(--accent);
    letter-spacing: 0.04em; display: none;
  }
  .ferror.show { display: block; }

  /* Upload zone */
  .fupload-zone {
    border: 2px dashed var(--border); background: var(--bg);
    cursor: pointer; position: relative; transition: border-color 0.2s, background 0.2s;
    min-height: 110px;
  }
  .fupload-zone:hover, .fupload-zone.dragover { border-color: var(--ink); background: var(--surface); }
  .fupload-zone.has-file { border-style: solid; border-color: var(--ink); }
  .fupload-input {
    position: absolute; inset: 0; opacity: 0; cursor: pointer;
    width: 100%; height: 100%; z-index: 1;
  }
  .fupload-body {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.35rem; padding: 1.5rem; text-align: center; pointer-events: none;
  }
  .fupload-icon { font-size: 1.75rem; opacity: 0.5; }
  .fupload-text { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
  .fupload-hint { font-family: var(--mono); font-size: 0.67rem; color: var(--muted); letter-spacing: 0.06em; }

  .fupload-preview {
    position: relative; width: 100%; aspect-ratio: 16/7; overflow: hidden;
  }
  .fupload-preview img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .fupload-remove {
    position: absolute; top: 0.5rem; right: 0.5rem;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--ink); color: #fff; border: none; cursor: pointer;
    font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
    z-index: 2; transition: background 0.15s;
  }
  .fupload-remove:hover { background: var(--accent); }

  /* Checkbox */
  .fconsent {
    display: flex; align-items: flex-start; gap: 0.65rem; cursor: pointer;
  }
  .fconsent input[type="checkbox"] { display: none; }
  .fcheckbox {
    width: 18px; height: 18px; border: 1.5px solid var(--border);
    background: var(--bg); flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px; transition: background 0.15s, border-color 0.15s;
    position: relative;
  }
  .fconsent input:checked ~ .fcheckbox {
    background: var(--ink); border-color: var(--ink);
  }
  .fconsent input:checked ~ .fcheckbox::after {
    content: '✓'; position: absolute; color: #fff; font-size: 11px; font-weight: 700;
  }
  .fcheckbox.error { border-color: var(--accent); }
  .fconsent-text { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
  .fconsent-text a { color: var(--accent); text-decoration: underline; }

  .fpopup-submit { width: 100%; text-align: center; padding: 0.9rem; font-size: 0.8rem; }
  .fpopup-submit.loading { opacity: 0.7; pointer-events: none; }

  /* Success state */
  .fpopup-success {
    padding: 3.5rem 2rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
  }
  .fsuccess-icon {
    width: 64px; height: 64px; border-radius: 50%; background: #eaf4ee;
    border: 2px solid #52b788; color: #2d6a4f; font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }
  .fsuccess-title { font-family: var(--serif); font-size: 1.6rem; }
  .fsuccess-text { font-size: 0.9rem; color: var(--muted); max-width: 320px; line-height: 1.7; }

  @media (max-width: 600px) {
    .fpopup-inner { max-height: 100vh; border-radius: 0; }
    .fpopup-header { padding: 1.5rem 1.5rem 1.25rem; }
    .fpopup-form { padding: 1.25rem 1.5rem 1.5rem; }
  }