:root {
    --ink: #0E1B2C;
    --ink-2: #14263E;
    --paper: #F6F1E8;
    --paper-2: #EFE7D6;
    --brass: #B68A3E;
    --brass-2: #8E6A28;
    --sage: #4A6151;
    --rust: #A14A2C;
    --line: rgba(14,27,44,0.14);
    --line-strong: rgba(14,27,44,0.28);
    --shadow: 0 1px 0 rgba(14,27,44,0.04), 0 12px 30px -12px rgba(14,27,44,0.18);

    --serif: "Fraunces", "Times New Roman", serif;
    --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* Subtle paper grain overlay */
  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.10  0 0 0 0 0.17  0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.6;
    z-index: 1;
  }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

  /* ---------- TOP BAR ---------- */
  .topbar {
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    letter-spacing: 0.02em;
  }
  .topbar .wrap {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 10px; padding-bottom: 10px;
    flex-wrap: wrap; gap: 12px;
  }
  .topbar a { display: inline-flex; align-items: center; gap: 6px; }
  .topbar a:hover { color: var(--brass); }
  .topbar .pill {
    background: var(--brass); color: var(--ink);
    padding: 4px 10px; border-radius: 999px; font-weight: 600;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  }

  /* ---------- LANGUAGE SWITCHER ---------- */
  .lang {
    position: relative;
  }
  .lang-btn {
    background: transparent;
    border: 1px solid rgba(246,241,232,0.25);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s, background .2s;
  }
  .lang-btn:hover { border-color: var(--brass); background: rgba(182,138,62,0.08); }
  .lang-btn .globe {
    width: 14px; height: 14px;
    opacity: 0.85;
  }
  .lang-btn .caret {
    font-size: 8px;
    opacity: 0.7;
    transition: transform .2s;
  }
  .lang.open .lang-btn .caret { transform: rotate(180deg); }

  .lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 12px 32px -8px rgba(14,27,44,0.28);
    padding: 8px;
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
  }
  .lang.open .lang-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .lang-menu .lang-head {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding: 8px 12px 6px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 4px;
  }
  .lang-menu button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    text-align: left;
    padding: 9px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    transition: background .15s;
  }
  .lang-menu button:hover { background: var(--paper-2); }
  .lang-menu button.active {
    background: var(--ink); color: var(--paper);
  }
  .lang-menu button.active .native { color: var(--brass); }
  .lang-menu button .native {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--ink-2);
    text-transform: uppercase;
  }
  .lang-menu button.active:hover { background: var(--ink-2); }

  /* RTL support for Arabic */
  html[dir="rtl"] body { font-family: var(--sans); }
  html[dir="rtl"] .topbar .wrap { direction: rtl; }
  html[dir="rtl"] .nav { direction: rtl; }
  html[dir="rtl"] .hero-grid,
  html[dir="rtl"] .ps-grid,
  html[dir="rtl"] .audience-grid,
  html[dir="rtl"] .ctastrip-inner,
  html[dir="rtl"] .intake-shell {
    direction: rtl;
  }
  html[dir="rtl"] .ps-cell.left { border-right: none; border-left: 1px solid var(--line); }
  html[dir="rtl"] .form-card .badge { left: auto; right: 28px; }
  html[dir="rtl"] .step::before { right: auto; left: 22px; }
  html[dir="rtl"] .aud-card { border-left: 1px solid var(--line); border-right: 4px solid var(--brass); }
  html[dir="rtl"] .aud-card.alt { border-right-color: var(--sage); }
  html[dir="rtl"] .test::before { left: auto; right: 22px; }
  html[dir="rtl"] .eyebrow::before,
  html[dir="rtl"] .section-head .eyebrow::after { transform: scaleX(-1); }
  html[dir="rtl"] .ps-list li,
  html[dir="rtl"] .form-card ul li,
  html[dir="rtl"] .aud-card ul li,
  html[dir="rtl"] .intake-promise li {
    flex-direction: row-reverse;
  }

  /* Switching state — fade content briefly while languages swap */
  body.translating main, body.translating section { opacity: 0.6; transition: opacity .2s; }

  /* ---------- HEADER ---------- */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: rgba(246,241,232,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
  }
  .brand-mark {
    width: 38px; height: 38px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    background: var(--paper);
  }
  /* Logo image used in topbar nav (small) */
  .brand-logo {
    height: 44px;
    width: auto;
    display: block;
  }
  /* Logo image used in footer (slightly larger, sits well in the foot column) */
  .brand-foot .brand-logo {
    height: 56px;
    margin-bottom: 4px;
  }
  @media (max-width: 720px) {
    .brand-logo { height: 36px; }
    .brand-foot .brand-logo { height: 48px; }
  }
  .nav ul {
    list-style: none;
    display: flex; gap: 28px; align-items: center;
    font-size: 14px;
  }
  .nav ul a {
    position: relative;
    padding: 6px 0;
    font-weight: 500;
    color: var(--ink-2);
    transition: color .2s;
  }
  .nav ul a:hover { color: var(--brass-2); }
  .nav ul a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    height: 1px; width: 0; background: var(--brass);
    transition: width .25s ease;
  }
  .nav ul a:hover::after { width: 100%; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    font-family: var(--sans);
    font-weight: 600; font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 999px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--ink); color: var(--paper);
    border-color: var(--ink);
  }
  .btn-primary:hover { background: var(--brass-2); border-color: var(--brass-2); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--ink); border-color: var(--line-strong);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .btn-brass { background: var(--brass); color: var(--ink); border-color: var(--brass); }
  .btn-brass:hover { background: var(--brass-2); border-color: var(--brass-2); color: var(--paper); }

  .menu-btn { display: none; background: none; border: none; cursor: pointer; }
  .menu-btn span {
    display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0;
    transition: transform .25s ease;
  }

  /* ---------- LANGUAGE SWITCHER (RTL support) ---------- */
  /* RTL support for Arabic */
  html[dir="rtl"] body { direction: rtl; }
  html[dir="rtl"] .eyebrow::before,
  html[dir="rtl"] .section-head .eyebrow::before { margin-right: 0; margin-left: 10px; }
  html[dir="rtl"] .section-head .eyebrow::after { margin-left: 0; margin-right: 10px; }
  html[dir="rtl"] .ps-cell.left { border-right: none; border-left: 1px solid var(--line); }
  html[dir="rtl"] .aud-card { border-left: 1px solid var(--line); border-right: 4px solid var(--brass); }
  html[dir="rtl"] .aud-card.alt { border-right-color: var(--sage); }
  html[dir="rtl"] .form-card .badge { left: auto; right: 28px; }
  html[dir="rtl"] .step::before { right: auto; left: 22px; }
  html[dir="rtl"] .test::before { left: auto; right: 22px; }
  html[dir="rtl"] .ps-list li::before,
  html[dir="rtl"] .form-card ul li::before,
  html[dir="rtl"] .aud-card ul li::before { transform: scaleX(-1); }
  html[dir="rtl"] .lang-menu { right: auto; left: 0; }
  html[dir="rtl"] .lang-menu button { text-align: right; }
  html[dir="rtl"] .hero-card { transform: rotate(-0.6deg); }
  html[dir="rtl"] .hero-card .stamp { right: auto; left: 24px; transform: rotate(4deg); }
  html[dir="rtl"] .intake-card::before { right: auto; left: 22px; transform: rotate(3deg); }
  html[dir="rtl"] .ornament-1 { right: auto; left: 8%; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass-2);
    margin-bottom: 24px;
  }
  .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: var(--brass);
  }
  h1.display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 5.6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  h1.display em {
    font-style: italic;
    font-variation-settings: "opsz" 144;
    color: var(--brass-2);
  }
  .hero p.lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 560px;
    margin-bottom: 36px;
  }
  .hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  }
  .hero-meta {
    margin-top: 44px;
    display: flex; gap: 36px; flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .meta-item .num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .meta-item .lbl {
    font-size: 12px;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
  }

  /* Hero card visual */
  .hero-card {
    position: relative;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 36px;
    box-shadow: var(--shadow);
    transform: rotate(0.6deg);
  }
  .hero-card::before {
    content: ""; position: absolute;
    inset: -10px -10px auto auto;
    width: 84px; height: 84px;
    background: var(--brass);
    border-radius: 50%;
    z-index: -1;
    filter: blur(0px);
  }
  .hero-card .stamp {
    position: absolute; top: 24px; right: 24px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--rust);
    border: 1.5px solid var(--rust);
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: rotate(-4deg);
    opacity: 0.85;
  }
  .doc-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 8px;
  }
  .doc-title {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .doc-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
  }
  .doc-row:last-of-type { border-bottom: none; }
  .doc-row span:last-child { font-family: var(--mono); font-weight: 500; }
  .doc-savings {
    margin-top: 20px;
    padding: 16px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 4px;
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .doc-savings .lbl { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
  .doc-savings .val { font-family: var(--serif); font-size: 26px; color: var(--brass); }

  /* Decorative ornaments */
  .ornament {
    position: absolute;
    font-family: var(--serif);
    font-style: italic;
    color: var(--brass);
    opacity: 0.18;
    pointer-events: none;
  }
  .ornament-1 {
    top: 60px; right: 8%;
    font-size: 240px;
    line-height: 1;
  }

  /* ---------- TRUST BAR ---------- */
  .trust {
    background: var(--ink);
    color: var(--paper);
    padding: 22px 0;
    border-top: 1px solid var(--ink-2);
    border-bottom: 1px solid var(--ink-2);
  }
  .trust-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap;
    font-size: 13px;
  }
  .trust-row .lbl {
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brass);
    font-size: 11px;
  }
  .trust-row ul {
    list-style: none; display: flex; gap: 36px; flex-wrap: wrap;
    font-family: var(--serif);
    font-size: 16px;
    letter-spacing: -0.01em;
  }
  .trust-row li::before {
    content: "✓"; color: var(--brass); margin-right: 8px;
  }

  /* ---------- SECTIONS GENERAL ---------- */
  section.block { padding: 100px 0; position: relative; }
  .section-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
  }
  .section-head .eyebrow { justify-content: center; }
  .section-head .eyebrow::before { display: none; }
  .section-head .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--brass); margin-left: 10px; }
  .section-head .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brass); margin-right: 10px; display: block; }
  h2.h-section {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  h2.h-section em { font-style: italic; color: var(--brass-2); }
  .section-head p {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.6;
  }

  /* ---------- PROBLEM/SOLUTION ---------- */
  .ps {
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .ps-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 4px;
    overflow: hidden;
  }
  .ps-cell {
    padding: 56px 44px;
  }
  .ps-cell.left { border-right: 1px solid var(--line); }
  .ps-cell h3 {
    font-family: var(--serif);
    font-size: 30px;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
    line-height: 1.15;
  }
  .ps-cell.left h3::before {
    content: "Without us";
    display: block;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 12px;
  }
  .ps-cell.right h3::before {
    content: "With us";
    display: block;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 12px;
  }
  .ps-list { list-style: none; }
  .ps-list li {
    padding: 14px 0; border-bottom: 1px dashed var(--line);
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 15px;
    color: var(--ink-2);
  }
  .ps-list li:last-child { border-bottom: none; }
  .ps-list li .icn {
    flex-shrink: 0; width: 22px; height: 22px;
    display: grid; place-items: center;
    border-radius: 50%;
    font-family: var(--mono); font-size: 12px; font-weight: 600;
  }
  .ps-cell.left .icn { background: rgba(161,74,44,0.12); color: var(--rust); }
  .ps-cell.right .icn { background: rgba(74,97,81,0.14); color: var(--sage); }

  /* ---------- FORMS EXPLAINED ---------- */
  .forms-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .form-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--brass);
  }
  .form-card .badge {
    position: absolute; top: -14px; left: 28px;
    background: var(--ink); color: var(--paper);
    padding: 6px 14px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.16em; text-transform: uppercase;
    border-radius: 999px;
  }
  .form-card h3 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    margin: 18px 0 12px;
    letter-spacing: -0.015em;
  }
  .form-card .sub {
    font-size: 14px; color: var(--ink-2); margin-bottom: 24px;
    font-style: italic;
    font-family: var(--serif);
  }
  .form-card ul { list-style: none; }
  .form-card ul li {
    font-size: 14px; color: var(--ink-2);
    padding: 10px 0; border-top: 1px solid var(--line);
    display: flex; gap: 10px; align-items: flex-start;
    line-height: 1.45;
  }
  .form-card ul li::before {
    content: "→"; color: var(--brass-2); flex-shrink: 0; font-weight: 600;
  }
  .form-card .filed {
    margin-top: 22px;
    padding: 12px 14px;
    background: var(--paper-2);
    border-radius: 4px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-2);
    display: flex; justify-content: space-between;
  }
  .form-card .filed strong { color: var(--ink); }
  .form-card.featured {
    background: var(--ink); color: var(--paper);
    border-color: var(--ink);
  }
  .form-card.featured .badge { background: var(--brass); color: var(--ink); }
  .form-card.featured .sub,
  .form-card.featured ul li { color: rgba(246,241,232,0.78); }
  .form-card.featured ul li { border-top-color: rgba(246,241,232,0.14); }
  .form-card.featured .filed { background: rgba(246,241,232,0.08); color: rgba(246,241,232,0.7); }
  .form-card.featured .filed strong { color: var(--brass); }
  .form-card.featured ul li::before { color: var(--brass); }

  /* ---------- PROCESS ---------- */
  .process { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
  .process .section-head h2 { color: var(--paper); }
  .process .section-head p { color: rgba(246,241,232,0.78); }
  .process .section-head .eyebrow { color: var(--brass); }
  .process .section-head .eyebrow::before,
  .process .section-head .eyebrow::after { background: var(--brass); }
  .process::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(182,138,62,0.15), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(74,97,81,0.18), transparent 45%);
    pointer-events: none;
  }
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
  }
  .step {
    position: relative;
    padding: 36px 24px;
    border: 1px solid rgba(246,241,232,0.14);
    border-radius: 4px;
    background: rgba(246,241,232,0.03);
    transition: border-color .3s, background .3s;
  }
  .step:hover {
    border-color: var(--brass);
    background: rgba(182,138,62,0.06);
  }
  .step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute; top: 22px; right: 22px;
    font-family: var(--serif); font-style: italic;
    font-size: 36px; color: var(--brass); opacity: 0.7;
    line-height: 1;
  }
  .step h4 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 50px 0 12px;
    letter-spacing: -0.01em;
  }
  .step p {
    font-size: 14px;
    color: rgba(246,241,232,0.72);
    line-height: 1.55;
  }
  .step .when {
    margin-top: 18px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--brass);
  }

  /* ---------- WHO WE SERVE ---------- */
  .audience-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  .aud-card {
    padding: 44px 40px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--brass);
    border-radius: 4px;
  }
  .aud-card.alt { border-left-color: var(--sage); }
  .aud-card h3 {
    font-family: var(--serif);
    font-size: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
  }
  .aud-card p { color: var(--ink-2); font-size: 15px; margin-bottom: 18px; line-height: 1.6; }
  .aud-card ul { list-style: none; }
  .aud-card ul li {
    padding: 10px 0; border-top: 1px solid var(--line);
    font-size: 14px; color: var(--ink-2);
    display: flex; gap: 10px; align-items: center;
  }
  .aud-card ul li::before {
    content: ""; width: 6px; height: 6px;
    background: var(--brass); border-radius: 50%; flex-shrink: 0;
  }
  .aud-card.alt ul li::before { background: var(--sage); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials { background: var(--paper-2); }
  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .test {
    background: var(--paper);
    padding: 36px 32px;
    border: 1px solid var(--line);
    border-radius: 4px;
    position: relative;
  }
  .test::before {
    content: "“";
    position: absolute; top: 8px; left: 22px;
    font-family: var(--serif); font-style: italic;
    font-size: 100px; color: var(--brass);
    line-height: 1;
    opacity: 0.4;
  }
  .test blockquote {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.45;
    margin: 26px 0 22px;
    letter-spacing: -0.01em;
    color: var(--ink);
    position: relative;
  }
  .test cite {
    font-style: normal;
    font-size: 13px;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-2);
    display: block;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .test cite span {
    display: block;
    color: var(--brass-2);
    font-size: 11px;
    margin-top: 2px;
  }

  /* ---------- FAQ ---------- */
  .faq-grid { max-width: 880px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-item summary {
    list-style: none;
    padding: 28px 4px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.25;
    gap: 28px;
    transition: color .2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--brass-2); }
  .faq-item summary .toggle {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid; place-items: center;
    transition: transform .3s ease, background .3s ease, color .3s ease;
    font-family: var(--mono); font-size: 18px; font-weight: 400;
  }
  .faq-item[open] summary .toggle {
    background: var(--ink); color: var(--paper); border-color: var(--ink);
    transform: rotate(45deg);
  }
  .faq-body {
    padding: 0 4px 28px;
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.65;
    max-width: 760px;
  }
  .faq-body p + p { margin-top: 14px; }

  /* ---------- PRICING ---------- */
  .pricing { background: var(--paper-2); }
  .pricing .section-head { margin-bottom: 36px; }
  .pricing .pricing-note {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brass-2);
    border-left: 2px solid var(--brass);
    padding: 6px 0 6px 14px;
    margin: 18px 0 32px;
    line-height: 1.5;
  }
  html[dir="rtl"] .pricing .pricing-note {
    border-left: none;
    border-right: 2px solid var(--brass);
    padding: 6px 14px 6px 0;
  }
  .price-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }
  .price-table {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 28px 26px 24px;
    border-radius: 2px;
  }
  .price-table h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .price-row:last-child { border-bottom: none; padding-bottom: 0; }
  .price-row .svc { font-weight: 500; color: var(--ink); }
  .price-row .svc-note {
    font-size: 13px;
    color: var(--ink-2);
    margin-top: 4px;
    line-height: 1.5;
    opacity: 0.85;
  }
  .price-row .fee {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--brass-2);
    font-size: 14px;
    text-align: right;
    white-space: nowrap;
  }
  .price-row .fee.included { color: var(--sage); }

  /* All-in cost grid */
  .pricing-policy {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 24px 26px;
    border-radius: 2px;
  }

  .price-combine {
    text-align: center;
    margin: 28px auto 28px;
    max-width: 720px;
  }
  .price-combine p {
    font-family: var(--serif);
    font-size: 19px;
    font-style: italic;
    color: var(--ink-2);
    line-height: 1.55;
    padding: 0 24px;
    position: relative;
  }
  .price-combine p::before,
  .price-combine p::after {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: var(--brass);
    margin: 14px auto;
  }
  .pricing-policy h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .pricing-policy ul { list-style: none; padding: 0; }
  .pricing-policy ul li {
    padding-left: 22px;
    position: relative;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 8px;
  }
  .pricing-policy ul li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--brass);
    font-weight: 700;
    font-size: 22px;
  }
  html[dir="rtl"] .pricing-policy ul li {
    padding-left: 0;
    padding-right: 22px;
  }
  html[dir="rtl"] .pricing-policy ul li::before { left: auto; right: 0; }
  .pricing-cta {
    margin-top: 30px;
    text-align: center;
  }

  /* ---------- TITLE AGENT SECTION ---------- */
  .ta-section {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .ta-section .section-head .eyebrow {
    color: var(--brass);
  }
  .ta-section .section-head .eyebrow::before,
  .ta-section .section-head .eyebrow::after {
    background: var(--brass);
  }
  .ta-section .section-head h2 { color: var(--paper); }
  .ta-section .section-head h2 em { color: var(--brass); }
  .ta-section .section-head p { color: rgba(246,241,232,0.78); }
  .ta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 36px;
  }
  .ta-block h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(246,241,232,0.12);
  }
  .ta-steps { list-style: none; padding: 0; counter-reset: tas; }
  .ta-steps li {
    counter-increment: tas;
    position: relative;
    padding-left: 52px;
    margin-bottom: 22px;
    min-height: 38px;
  }
  .ta-steps li::before {
    content: counter(tas, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--brass);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
  }
  html[dir="rtl"] .ta-steps li {
    padding-left: 0;
    padding-right: 52px;
  }
  html[dir="rtl"] .ta-steps li::before { left: auto; right: 0; }
  .ta-steps li h4 {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .ta-steps li p {
    color: rgba(246,241,232,0.78);
    font-size: 14px;
    line-height: 1.65;
  }
  .ta-benefits { list-style: none; padding: 0; }
  .ta-benefits li {
    padding: 12px 0 12px 28px;
    position: relative;
    border-bottom: 1px solid rgba(246,241,232,0.08);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(246,241,232,0.86);
  }
  .ta-benefits li:last-child { border-bottom: none; }
  .ta-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--brass);
    font-size: 13px;
    font-weight: 700;
  }
  html[dir="rtl"] .ta-benefits li {
    padding-left: 0;
    padding-right: 28px;
  }
  html[dir="rtl"] .ta-benefits li::before { left: auto; right: 0; }
  .ta-benefits li strong { color: var(--paper); }
  .ta-cta-row {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ta-cta-row .btn-brass { color: var(--ink); }
  .ta-cta-row .btn-ghost { color: var(--paper); border-color: rgba(246,241,232,0.4); }
  .ta-cta-row .btn-ghost:hover { background: var(--paper); color: var(--ink); }

  @media (max-width: 860px) {
    .price-tables { grid-template-columns: 1fr; }
    .ta-grid { grid-template-columns: 1fr; gap: 36px; }
    .price-row { grid-template-columns: 1fr; }
    .price-row .fee { text-align: left; padding-top: 4px; }
  }

  /* ---------- CTA STRIP ---------- */
  .ctastrip {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .ctastrip-inner {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
    align-items: center;
    padding: 90px 0;
  }
  .ctastrip h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .ctastrip h2 em { font-style: italic; color: var(--brass); }
  .ctastrip p {
    color: rgba(246,241,232,0.78);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 520px;
  }
  .ctastrip .actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .contact-card {
    background: rgba(246,241,232,0.04);
    border: 1px solid rgba(246,241,232,0.14);
    border-radius: 4px;
    padding: 36px;
  }
  .contact-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contact-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(246,241,232,0.1);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px;
    gap: 16px;
  }
  .contact-row:last-child { border-bottom: none; }
  .contact-row .k {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--brass);
  }
  .contact-row a, .contact-row .v {
    color: var(--paper); font-weight: 500;
  }
  .contact-row a:hover { color: var(--brass); }

  /* ---------- FOOTER ---------- */
  footer.site {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    padding: 64px 0 28px;
    font-size: 14px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .foot-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass-2);
    margin-bottom: 18px;
  }
  .foot-col ul { list-style: none; }
  .foot-col ul li { padding: 6px 0; }
  .foot-col ul a { color: var(--ink-2); transition: color .2s; }
  .foot-col ul a:hover { color: var(--brass-2); }
  .foot-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-size: 12px;
    color: var(--ink-2);
  }
  .foot-disclaimer {
    margin-top: 24px;
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.6;
    max-width: 880px;
    font-style: italic;
    opacity: 0.85;
  }
  .foot-disclaimer .foot-asof {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-family: var(--mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brass-2);
    opacity: 0.85;
  }
  .foot-disclaimer .foot-asof time {
    color: inherit;
    border-bottom: 1px dotted currentColor;
    padding-bottom: 1px;
  }

  /* ---------- INTAKE FORM ---------- */
  .intake { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .intake-shell {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }
  .intake-side {
    position: sticky; top: 110px;
  }
  .intake-side h2.h-section { text-align: left; }
  .intake-side .eyebrow { justify-content: flex-start; }
  .intake-side .eyebrow::before { display: block; }
  .intake-side .eyebrow::after { display: none; }
  .intake-side p {
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .intake-promise {
    list-style: none;
    margin-top: 12px;
    border-top: 1px solid var(--line);
  }
  .intake-promise li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 14px;
    color: var(--ink-2);
  }
  .intake-promise li strong { color: var(--ink); display: block; margin-bottom: 2px; font-size: 15px; }
  .intake-promise .icn {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--ink); color: var(--brass);
    display: grid; place-items: center;
    font-family: var(--serif); font-size: 16px; font-style: italic;
  }

  .intake-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 44px;
    box-shadow: var(--shadow);
    position: relative;
  }
  .intake-card::before {
    content: "Confidential";
    position: absolute; top: 22px; right: 22px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
    border: 1.5px solid var(--rust);
    padding: 5px 10px;
    border-radius: 4px;
    transform: rotate(-3deg);
    opacity: 0.85;
  }
  .intake-progress {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 28px;
  }
  .intake-progress .bar {
    flex: 1; height: 2px; background: var(--line); position: relative; border-radius: 2px;
  }
  .intake-progress .bar::after {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0;
    width: var(--pct, 33%);
    background: var(--brass);
    border-radius: 2px;
    transition: width .4s ease;
  }
  .intake-step-pane { display: none; }
  .intake-step-pane.active { display: block; animation: fade-in .35s ease; }
  @keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
  .intake-step-pane h3 {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }
  .intake-step-pane .step-sub {
    color: var(--ink-2);
    font-size: 14px;
    margin-bottom: 28px;
  }

  .field-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px;
  }
  .field-grid .full { grid-column: 1 / -1; }
  .field {
    display: flex; flex-direction: column; gap: 6px;
  }
  .field label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
  }
  .field label .req { color: var(--rust); margin-left: 3px; }
  .field input,
  .field select,
  .field textarea {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 12px 14px;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--brass);
    box-shadow: 0 0 0 3px rgba(182,138,62,0.18);
  }
  .field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
  .field-hint {
    font-size: 12px;
    color: var(--ink-2);
    opacity: 0.85;
    margin-top: 2px;
    line-height: 1.4;
  }
  .radio-group, .check-group {
    display: flex; flex-direction: column; gap: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 14px 16px;
    background: var(--paper);
  }
  .radio-group label, .check-group label {
    font-family: var(--sans); font-size: 14px;
    text-transform: none; letter-spacing: 0; color: var(--ink);
    display: flex; align-items: flex-start; gap: 10px;
    cursor: pointer;
    padding: 4px 0;
    line-height: 1.4;
  }
  .radio-group input, .check-group input {
    width: auto; flex-shrink: 0; margin-top: 3px;
    accent-color: var(--ink);
  }
  .currency-row { display: flex; gap: 12px; }
  .currency-row .field:first-child { flex: 0 0 110px; }
  .currency-row .field:last-child { flex: 1; }

  .intake-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    flex-wrap: wrap;
  }
  .intake-actions .step-of {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
  }
  .intake-actions .actions { display: flex; gap: 10px; }

  .intake-success {
    text-align: center;
    padding: 24px 8px;
  }
  .intake-success .check {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--sage); color: var(--paper);
    display: grid; place-items: center;
    font-family: var(--serif); font-size: 36px;
    margin: 0 auto 24px;
  }
  .intake-success h3 {
    font-family: var(--serif);
    font-size: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .intake-success p {
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 24px;
  }
  .intake-success .next {
    text-align: left;
    background: var(--paper-2);
    border-radius: 4px;
    padding: 18px 22px;
    margin-top: 20px;
  }
  .intake-success .next h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass-2);
    margin-bottom: 12px;
  }
  .intake-success .next ol {
    padding-left: 20px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.6;
  }

  /* ---------- SCROLL REVEALS ---------- */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .ornament-1 { display: none; }
    .ps-grid { grid-template-columns: 1fr; }
    .ps-cell.left { border-right: none; border-bottom: 1px solid var(--line); }
    .forms-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .ctastrip-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
    .intake-shell { grid-template-columns: 1fr; gap: 40px; }
    .intake-side { position: static; }
    .intake-card { padding: 32px 26px; }
    .field-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 720px) {
    .nav ul { display: none; }
    .nav ul.open {
      display: flex;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column;
      background: var(--paper);
      padding: 20px 28px 28px;
      border-bottom: 1px solid var(--line);
      box-shadow: var(--shadow);
      gap: 4px;
    }
    .nav ul.open li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav ul.open li:last-child { border-bottom: none; padding-top: 16px; }
    .menu-btn { display: block; }
    section.block { padding: 70px 0; }
    .hero { padding: 50px 0 70px; }
    .hero-meta { gap: 24px; }
    .ps-cell { padding: 36px 28px; }
    .process-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
    .topbar .wrap { font-size: 12px; }
    .email-link { display: none; }
    .lang-menu { right: -10px; }
    h1.display { font-size: 44px; }
  }