        :root {
            /* Palette — exact tokens from the Tal Kalimyan site */
            --page: #F4F5F2;
            --surface: #FFFFFF;
            --surface-cool: #F6F8FD;
            --cool-line: #D5E0F7;
            --ink: #00203F;
            --ink-2: #41566B;
            --ink-3: #6E7A86;
            --accent: #2E4D9E;
            --accent-deep: #003262;
            --sage: #7B9669;
            --line: #E4E1DA;

            --nav-h: 76px;
            --measure: 760px;
            --ease: cubic-bezier(0.22, 1, 0.36, 1);

            --serif: "Frank Ruhl Libre", "David Libre", Georgia, serif;
            --sans: "Assistant", "Heebo", system-ui, -apple-system, sans-serif;
            --latin: "Cormorant Garamond", Georgia, serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--page);
            color: var(--ink);
            font-family: var(--sans);
            font-size: 17px;
            line-height: 1.72;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        main {
            flex: 1;
        }

        ::selection {
            background: rgba(46, 77, 158, 0.15);
        }

        a {
            color: inherit;
        }

        :focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: 1px;
        }

        .wrap {
            width: 100%;
            max-width: 1180px;
            margin-inline: auto;
            padding-inline: clamp(20px, 5vw, 56px);
        }

        .reading {
            max-width: var(--measure);
            margin-inline: auto;
        }

        /* ---------- Eyebrow / labels ---------- */
        .eyebrow {
            font-family: var(--sans);
            font-weight: 600;
            font-size: 0.74rem;
            letter-spacing: 0.18em;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            margin: 0 0 1.1rem;
        }

        .eyebrow::before {
            content: "";
            width: 30px;
            height: 1px;
            background: var(--accent);
            display: inline-block;
        }

        /* ---------- Brand accent bar ---------- */
        .brand-bar {
            width: 3px;
            height: 30px;
            background: var(--ink);
            flex: none;
        }

        /* ---------- Header ---------- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            height: var(--nav-h);
            background: rgba(244, 245, 242, 0.86);
            backdrop-filter: saturate(140%) blur(10px);
            -webkit-backdrop-filter: saturate(140%) blur(10px);
            border-bottom: 1px solid var(--line);
        }

        .site-header .wrap {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            text-decoration: none;
        }

        .brand .lockup {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .brand .he {
            font-family: var(--serif);
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.01em;
            color: var(--ink);
            white-space: nowrap;
        }

        .brand .en {
            font-family: var(--sans);
            font-weight: 500;
            font-size: 0.68rem;
            letter-spacing: 0.05em;
            color: var(--ink-3);
            margin-top: 3px;
            direction: ltr;
            text-align: right;
            white-space: nowrap;
        }

        .header-contact {
            position: relative;
            font-family: var(--sans);
            font-size: 0.86rem;
            font-weight: 600;
            color: var(--ink-2);
            letter-spacing: 0.04em;
            text-decoration: none;
            direction: ltr;
        }

        .header-contact::after {
            content: "";
            position: absolute;
            inset-inline: 0;
            bottom: -3px;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s var(--ease);
        }

        .header-contact:hover {
            color: var(--accent);
        }

        .header-contact:hover::after {
            transform: scaleX(1);
        }

        @media (max-width: 640px) {
            .header-contact { display: none; }
        }

        /* ---------- Hero ---------- */
        .hero {
            padding-top: clamp(52px, 8vw, 96px);
            padding-bottom: clamp(30px, 5vw, 50px);
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            font-family: var(--serif);
            font-weight: 500;
            font-size: clamp(2rem, 4.8vw, 3.4rem);
            line-height: 1.16;
            letter-spacing: -0.005em;
            margin: 0;
            max-width: 18ch;
            color: var(--ink);
        }

        .hero .subtitle {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            margin: 1.25rem 0 0;
            font-family: var(--sans);
            font-weight: 600;
            font-size: clamp(0.98rem, 1.5vw, 1.12rem);
            letter-spacing: 0.04em;
            color: var(--accent);
        }

        .hero .subtitle::before {
            content: "";
            width: 38px;
            height: 1px;
            background: var(--accent);
            flex: none;
        }

        .hero .lede {
            margin: 1.7rem 0 0;
            max-width: 56ch;
            font-family: var(--serif);
            font-weight: 400;
            font-size: clamp(1.14rem, 1.7vw, 1.34rem);
            line-height: 1.6;
            color: var(--ink-2);
        }

        /* ---------- Sections ---------- */
        .section {
            padding-block: clamp(40px, 6vw, 68px);
        }

        .rule {
            border: 0;
            border-top: 1px solid var(--line);
            margin: 0;
        }

        .section h2 {
            font-family: var(--serif);
            font-weight: 500;
            font-size: clamp(1.5rem, 2.8vw, 2.1rem);
            line-height: 1.22;
            letter-spacing: -0.005em;
            margin: 0 0 1.4rem;
            color: var(--ink);
        }

        .prose p {
            margin: 0 0 1.15rem;
            color: var(--ink-2);
        }

        .prose p:last-child {
            margin-bottom: 0;
        }

        .prose strong {
            color: var(--ink);
            font-weight: 700;
        }

        /* ---------- Advantages ---------- */
        .adv-intro {
            font-family: var(--serif);
            font-size: 1.18rem;
            color: var(--ink);
            margin: 0 0 1.6rem;
            font-weight: 500;
        }

        .adv {
            display: grid;
            gap: 1.4rem;
        }

        .adv-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1.1rem;
            align-items: start;
            padding: 1.55rem 1.65rem;
            background: var(--surface);
            border: 1px solid var(--line);
            border-inline-start: 2px solid var(--cool-line);
            transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
        }

        .adv-item:hover {
            border-inline-start-color: var(--accent);
            box-shadow: 0 14px 40px -28px rgba(0, 32, 63, 0.5);
            transform: translateY(-2px);
        }

        .adv-num {
            font-family: var(--latin);
            font-style: italic;
            font-weight: 500;
            font-size: 2.15rem;
            line-height: 1;
            color: var(--accent);
            direction: rtl;
            min-width: 1.4ch;
            text-align: center;
        }

        .adv-item h3 {
            font-family: var(--sans);
            font-weight: 700;
            font-size: 1.08rem;
            color: var(--ink);
            margin: 0.2rem 0 0.5rem;
            letter-spacing: 0.005em;
        }

        .adv-item p {
            margin: 0;
            color: var(--ink-2);
            font-size: 0.98rem;
            line-height: 1.66;
        }

        /* ---------- Contact callout ---------- */
        .contact-note {
            background: var(--surface-cool);
            border: 1px solid var(--cool-line);
            border-inline-start: 3px solid var(--accent);
            padding: 1.5rem 1.7rem;
            margin-top: 2rem;
        }

        .contact-note p {
            margin: 0;
            color: var(--ink-2);
            font-size: 1rem;
        }

        .contact-note a {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid rgba(46, 77, 158, 0.3);
            transition: border-color 0.2s var(--ease);
        }

        .contact-note a[href^="tel"],
        .contact-note a[href^="mailto"] {
            direction: ltr;
            unicode-bidi: embed;
            display: inline-block;
        }

        .contact-note a:hover {
            border-bottom-color: var(--accent);
        }

        /* ---------- CTA button ---------- */
        .cta-band {
            text-align: center;
            padding-block: clamp(34px, 5vw, 54px);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            background: var(--accent);
            color: #fff;
            font-family: var(--sans);
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: 0.02em;
            text-decoration: none;
            padding: 1rem 2.1rem;
            border: 1px solid var(--accent);
            transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
        }

        .btn .line {
            display: block;
            width: 22px;
            height: 1px;
            background: rgba(255, 255, 255, 0.85);
            transition: width 0.3s var(--ease);
        }

        .btn:hover {
            background: var(--accent-deep);
            border-color: var(--accent-deep);
        }

        .btn:hover .line {
            width: 40px;
        }

        /* ---------- Accordions ---------- */
        .acc {
            border-top: 1px solid var(--line);
        }

        details.acc-item {
            border-bottom: 1px solid var(--line);
        }

        details.acc-item > summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.35rem 0;
            font-family: var(--serif);
            font-weight: 500;
            font-size: 1.18rem;
            color: var(--ink);
            transition: color 0.2s var(--ease);
        }

        details.acc-item > summary::-webkit-details-marker,
        details.acc-item > summary::after {
            display: none !important;
        }

        details.acc-item > summary:hover {
            color: var(--accent);
        }

        .acc-chevron {
            flex: none;
            width: 13px;
            height: 13px;
            border-inline-start: 1.5px solid currentColor;
            border-bottom: 1.5px solid currentColor;
            transform: rotate(-45deg);
            transition: transform 0.3s var(--ease);
            margin-inline-start: auto;
            margin-bottom: 4px;
            opacity: 0.6;
        }

        details.acc-item[open] .acc-chevron {
            transform: rotate(135deg);
            margin-bottom: 0;
            margin-top: 4px;
        }

        .acc-icon {
            font-size: 1.05rem;
            line-height: 1;
            opacity: 0.85;
        }

        .acc-body {
            padding: 0 0 1.7rem;
            color: var(--ink-2);
            font-size: 0.99rem;
            line-height: 1.7;
            animation: accIn 0.45s var(--ease);
        }

        @keyframes accIn {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .acc-body p {
            margin: 0 0 0.9rem;
        }

        .acc-body ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0.55rem;
        }

        .acc-body li {
            position: relative;
            padding-inline-start: 1.3rem;
            list-style: none !important;
        }

        .acc-body ul li::before {
            content: "";
            position: absolute;
            inset-inline-start: 0;
            top: 0.62em;
            width: 6px;
            height: 6px;
            background: var(--sage);
        }

        .acc-body ol.steps {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 1rem;
            counter-reset: step;
        }

        .acc-body ol.steps li {
            counter-increment: step;
            position: relative;
            padding-inline-start: 2.6rem;
            list-style: none !important;
        }

        .acc-body ol.steps li::before {
            content: counter(step);
            position: absolute;
            inset-inline-start: 0;
            top: 0;
            width: 1.7rem;
            height: 1.7rem;
            display: grid;
            place-items: center;
            background: var(--surface-cool);
            border: 1px solid var(--cool-line);
            color: var(--accent);
            font-family: var(--latin);
            font-style: italic;
            font-weight: 600;
            font-size: 0.95rem;
            direction: ltr;
        }

        .acc-body ol.steps small {
            display: block;
            color: var(--ink-3);
            font-size: 0.82rem;
            margin-top: 0.15rem;
        }

        /* Compensation table */
        .comp-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0.4rem 0 1.1rem;
            font-size: 0.95rem;
        }

        .comp-table th,
        .comp-table td {
            text-align: start;
            padding: 0.7rem 0.9rem;
            border-bottom: 1px solid var(--line);
        }

        .comp-table thead th {
            font-family: var(--sans);
            font-weight: 700;
            font-size: 0.78rem;
            letter-spacing: 0.06em;
            color: var(--ink-3);
            background: var(--surface-cool);
            border-bottom: 1px solid var(--cool-line);
        }

        .comp-table tbody td {
            color: var(--ink-2);
        }

        .comp-table strong {
            color: var(--accent);
            font-weight: 700;
        }

        /* ---------- Footer ---------- */
        .site-footer {
            background: var(--ink);
            color: rgba(244, 245, 242, 0.62);
            padding-block: clamp(22px, 3vw, 30px);
            text-align: center;
        }

        .site-footer p {
            margin: 0;
            font-size: 0.8rem;
            letter-spacing: 0.04em;
            color: inherit;
        }

        /* ---------- Reveal (progressive enhancement) ---------- */
        .reveal {
            opacity: 1;
            transform: none;
        }

        html.has-js .reveal {
            opacity: 0;
            transform: translateY(16px);
        }

        html.has-js .reveal.in {
            opacity: 1;
            transform: none;
            transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 720px) {
            body { font-size: 16px; }
            .adv-item { padding: 1.3rem; }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                transition-duration: 0.001ms !important;
            }
            .reveal { opacity: 1; transform: none; }
            html.has-js .reveal { opacity: 1; transform: none; }
        }
