        /* ============================================================
           Tunzua — Swiss/Editorial design system (2026 rebuild)
           Paper · Ink · Navy. Fraunces serif + Inter grotesque.
           Strict 1px hairlines, numbered sections, oversized type.
           ============================================================ */

        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --paper: #f5f2ea;
            --paper-2: #ece7da;
            --paper-3: #dfd8c6;
            --surface: #fbfaf5;
            --ink: #1a1713;
            --ink-2: #57513f;
            --ink-3: #6d6554;
            --accent: #10306e;
            --accent-2: #0b3d91;
            --accent-ink: #ffffff;
            --hairline: #d8d0bc;
            --hairline-soft: #e4decd;
            --sel: rgba(16, 48, 110, 0.18);
            --err: #8f3427;
        }

        .dark {
            --paper: #15130f;
            --paper-2: #1d1a14;
            --paper-3: #282318;
            --surface: #1a1712;
            --ink: #ede8dc;
            --ink-2: #b3ac9b;
            --ink-3: #908873;
            --accent: #9db9e8;
            --accent-2: #b3c9f0;
            --accent-ink: #0b1e46;
            --hairline: #322c20;
            --hairline-soft: #262119;
            --sel: rgba(157, 185, 232, 0.22);
            --err: #e08a7a;
        }

        html { background-color: var(--paper); overflow-x: clip; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--paper);
            color: var(--ink);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            overflow-x: clip;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        ::selection { background: var(--sel); color: var(--ink); }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        ul { list-style: none; }
        h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
        .fa-svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: currentColor; flex-shrink: 0; }
        .hidden { display: none !important; }

        .dark { color-scheme: dark; }

        /* ---------- Typography ---------- */
        .font-display { font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 72, 'SOFT' 0, 'WONK' 0; }
        .display-xl { font-size: clamp(2.6rem, 6.2vw, 4.9rem); line-height: 1.02; letter-spacing: -0.02em; font-weight: 560; }
        .display-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.06; letter-spacing: -0.015em; font-weight: 560; }
        .display-md { font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: -0.01em; font-weight: 520; }
        .eyebrow {
            display: inline-flex; align-items: center; justify-content: center; gap: 12px;
            font-size: 0.72rem; font-weight: 600; letter-spacing: 0.24em;
            text-transform: uppercase; color: var(--accent);
        }
        .eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent); flex-shrink: 0; }
        .body-lg { font-size: 1.09rem; color: var(--ink-2); }
        .body-md { font-size: 0.98rem; color: var(--ink-2); }
        .micro { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
        .num { font-variant-numeric: tabular-nums; }
        .italic-accent { font-style: italic; color: var(--accent); }

        /* ---------- Layout ---------- */
        .wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
        .section { padding: 96px 0; border-top: 1px solid var(--hairline); }

        /* Render performance: skip paint/layout for heavy below-fold sections until scrolled near.
           Anchor-target sections (#home/#clients/#services/#tally/#pricing/#about/#contact) stay
           rendered so scroll-to-anchor lands on real geometry (WebKit doesn't self-correct
           against the contain-intrinsic-size estimate). */
        main section:not(#home):not(#clients):not(#services):not(#tally):not(#pricing):not(#about):not(#contact) {
            content-visibility: auto;
            contain-intrinsic-size: auto 900px;
        }
        .section-head { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 56px; }
        .section-head.split { grid-template-columns: 1fr 1fr; align-items: end; }
        .section-index {
            font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 72;
            font-size: 1rem; font-weight: 500; color: var(--accent);
            letter-spacing: 0.04em;
        }
        @media (max-width: 820px) { .section-head.split { grid-template-columns: 1fr; } .section { padding: 72px 0; } }

        /* ---------- Buttons ---------- */
        .btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 13px 26px; border-radius: 3px;
            font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
            text-transform: uppercase; cursor: pointer; border: 1px solid transparent;
            transition: all 0.22s ease;
        }
        .btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
        .btn-ink:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
        .btn-outline { background: transparent; color: var(--ink); border-color: var(--hairline); }
        .btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }
        .btn-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
        .btn-accent:hover { filter: brightness(1.08); transform: translateY(-1px); }
        .btn svg { width: 14px; height: 14px; }

        /* ---------- Navbar ---------- */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: var(--paper);
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .navbar.scrolled { border-bottom-color: var(--hairline); box-shadow: 0 1px 0 rgba(0,0,0,0.02); }
        .navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .brand { display: flex; align-items: center; gap: 12px; }
        .brand img { width: 34px; height: 34px; border-radius: 8px; }
        .brand-text { font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 40; font-weight: 560; font-size: 1.12rem; letter-spacing: -0.01em; }
        .brand-text small { display: block; font-family: 'Inter'; font-size: 0.56rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-3); }
        .nav-left { display: flex; align-items: center; gap: 16px; }
        .sec-counter {
            font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 144;
            font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
            color: var(--ink-3); line-height: 1; min-width: 24px; text-align: right;
            padding-left: 16px; border-left: 1px solid var(--hairline);
            transition: color 0.25s ease;
        }
        @media (max-width: 960px) { .sec-counter { display: none; } }
        .nav-links { display: flex; align-items: center; gap: 30px; }
        .nav-link { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); position: relative; padding: 6px 0; transition: color 0.2s ease; }
        .nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.25s ease; }
        .nav-link:hover { color: var(--ink); }
        .nav-link:hover::after { width: 100%; }
        .nav-link.active { color: var(--ink); }
        .nav-link.active::after { width: 100%; }
        .nav-actions { display: flex; align-items: center; gap: 14px; }
        .theme-btn {
            width: 38px; height: 38px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            background: transparent; border: 1px solid var(--hairline); color: var(--ink);
            cursor: pointer; transition: all 0.2s ease;
        }
        .theme-btn:hover { border-color: var(--accent); color: var(--accent); transform: rotate(12deg); }
        .theme-btn svg { width: 16px; height: 16px; }

        /* Hamburger + mobile menu */
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; z-index: 1001; }
        .hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s; border-radius: 1px; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        .mobile-menu {
            position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
            background: var(--paper); z-index: 999; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu a { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 520; color: var(--ink); }
        .mobile-menu a:hover { color: var(--accent); }
        .mobile-menu a.active { color: var(--accent); position: relative; }
        .mobile-menu a.active::before {
            content: '—'; position: absolute; right: calc(100% + 12px); top: 50%;
            transform: translateY(-50%); pointer-events: none;
        }
        .mobile-menu a.btn { color: var(--paper); font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; padding: 14px 38px; }
        .mobile-menu a.btn:hover { color: var(--paper); background: var(--accent); border-color: var(--accent); }
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
        }

        /* Scroll progress */
        .scroll-progress { position: fixed; top: 0; left: 0; height: 2px; z-index: 1002; background: var(--accent); width: 0; transition: width 0.1s linear; }

        /* Skip link (keyboard a11y — revealed on Tab) */
        .skip-link {
            position: fixed; top: -120px; left: 16px; z-index: 2000;
            padding: 11px 18px; border-radius: 3px;
            background: var(--accent); color: var(--accent-ink);
            font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em;
            text-transform: uppercase; transition: top 0.2s ease;
        }
        .skip-link:focus { top: 12px; }

        /* ---------- Hero ---------- */
        .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 150px 0 70px; position: relative; }
        .hero-grid {
            display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px;
            align-items: center; max-width: 1100px; margin: 0 auto;
        }
        .hero h1 { margin: 26px 0 24px; }
        .hero .eyebrow { position: relative; padding-top: 22px; }
        .hero .eyebrow::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 46px; height: 1px; background: var(--accent);
        }
        .hero-sub { max-width: 540px; margin: 0 0 38px; }
        .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

        /* Ledger card — the hero's right column: a framed account statement
           with crop marks, dashed ledger rows, right-aligned amounts. */
        .hero-ledger {
            position: relative;
            background: var(--surface); border: 1px solid var(--hairline);
            padding: 34px 36px 30px;
            transform: translateY(calc(var(--parallax, 0px) * -0.35));
        }
        .ledger-head {
            display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
            padding-bottom: 18px; margin-bottom: 6px;
            border-bottom: 1px solid var(--hairline);
        }
        .ledger-head .ledger-title {
            font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 40;
            font-size: 1.05rem; font-weight: 560; letter-spacing: 0.02em; color: var(--ink);
        }
        .ledger-head .ledger-period {
            font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em;
            text-transform: uppercase; color: var(--ink-3);
        }
        .ledger-row {
            display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
            padding: 17px 0;
            border-bottom: 1px dashed var(--hairline-soft);
        }
        .ledger-row:last-of-type { border-bottom: none; }
        .ledger-row .lbl {
            font-size: 0.78rem; letter-spacing: 0.12em;
            text-transform: uppercase; color: var(--ink-2);
        }
        .ledger-row .val {
            font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 560; line-height: 1;
            color: var(--ink); font-variant-numeric: tabular-nums;
        }
        .ledger-foot {
            display: flex; align-items: center; justify-content: space-between; gap: 14px;
            margin-top: 6px; padding-top: 16px;
            border-top: 1px solid var(--hairline);
        }
        .ledger-foot span { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
        .ledger-foot .ledger-total { color: var(--accent); font-weight: 600; }

        .tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--hairline); border-radius: 2px; padding: 6px 12px; color: var(--ink-2); }

        /* Client marquee */
        .client-strip { border-top: 1px solid var(--hairline); padding: 34px 0; }
        .marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
        .marquee-track { display: flex; align-items: center; width: max-content; min-width: 200%; justify-content: space-around; animation: marquee 36s linear infinite; }
        .marquee:hover .marquee-track { animation-play-state: paused; }
        .marquee-item { flex-shrink: 0; padding: 12px 34px; }
        .marquee-item .logo-chip { display: flex; align-items: center; justify-content: center; padding: 10px 6px; opacity: 0.82; transition: opacity 0.25s ease; }
        .marquee-item:hover .logo-chip { opacity: 1; }
        .marquee-item img { max-height: 44px; width: auto; }
        .dark .marquee-item img { filter: brightness(1.45) contrast(0.95); }
        .marquee-item .logo-text { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 520; color: var(--ink-2); letter-spacing: -0.01em; }
        .testimonial-marquee { border-top: 1px solid var(--hairline); }
        @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* ---------- Services (numbered editorial rows) ---------- */
        .svc-list { border-top: 1px solid var(--hairline); }
        .svc-row {
            display: grid; grid-template-columns: 90px 64px 1fr 1fr; gap: 28px; align-items: start;
            padding: 38px 8px; border-bottom: 1px solid var(--hairline); position: relative;
            transition: background 0.25s ease, padding-left 0.25s ease;
        }
        .svc-row:hover { background: var(--paper-2); padding-left: 22px; }
        .svc-row .idx { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 500; color: var(--ink-3); }
        .svc-row .ic { width: 46px; height: 46px; border: 1px solid var(--hairline); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); }
        .svc-row .ic svg { width: 19px; height: 19px; }
        .svc-row h3 { font-family: 'Fraunces', serif; font-size: 1.45rem; font-weight: 540; letter-spacing: -0.01em; margin-bottom: 8px; }
        .svc-row p { font-size: 0.94rem; color: var(--ink-2); max-width: 460px; }
        .svc-row .tags { display: flex; flex-wrap: wrap; gap: 8px; align-self: center; justify-content: flex-end; }
        .svc-row .tags .tag { background: transparent; }
        @media (max-width: 900px) {
            .svc-row { grid-template-columns: 48px 1fr; gap: 16px 18px; padding: 30px 4px; }
            .svc-row .idx { display: none; }
            .svc-row .tags { grid-column: 2; justify-content: flex-start; }
            .hero-grid { grid-template-columns: 1fr; gap: 48px; }
            .hero-ledger { max-width: 420px; }
        }

        /* Why-Us folded band */
        .why-band { border: 1px solid var(--hairline); background: var(--surface); margin-top: 64px; }
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
        .why-item { padding: 34px 30px; border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
        .why-item:nth-child(3n) { border-right: none; }
        .why-item:nth-last-child(-n+3) { border-bottom: none; }
        .why-item .ic { width: 38px; height: 38px; margin-bottom: 18px; color: var(--accent); }
        .why-item .ic svg { width: 22px; height: 22px; }
        .why-item h4 { font-family: 'Fraunces', serif; font-size: 1.08rem; font-weight: 540; margin-bottom: 8px; }
        .why-item p { font-size: 0.88rem; color: var(--ink-2); }
        @media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } .why-item { border-right: none; border-bottom: 1px solid var(--hairline); } .why-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--hairline); } .why-item:last-child { border-bottom: none; } }

        /* ---------- Process ---------- */
        .proc-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--hairline); }
        .proc-step { padding: 34px 24px 14px 24px; border-right: 1px solid var(--hairline); }
        .proc-step:last-child { border-right: none; }
        .proc-step .n { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 500; color: var(--ink-3); line-height: 1; margin-bottom: 26px; transition: color 0.3s ease; }
        .proc-step:hover .n { color: var(--accent); }
        .proc-step h3 { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 8px; }
        .proc-step p { font-size: 0.84rem; color: var(--ink-2); }
        @media (max-width: 820px) { .proc-grid { grid-template-columns: 1fr; } .proc-step { border-right: none; border-bottom: 1px solid var(--hairline); padding: 26px 0; } .proc-step:last-child { border-bottom: none; } .proc-step .n { margin-bottom: 14px; } }

        /* ---------- Pricing cards ---------- */
        .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--hairline); }
        .price-card { padding: 44px 36px; border-right: 1px solid var(--hairline); background: var(--surface); display: flex; flex-direction: column; }
        .price-card:last-child { border-right: none; }
        .price-card.featured { background: var(--paper-2); position: relative; }
        .price-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -1px; right: 32px; background: var(--accent); color: var(--accent-ink); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; padding: 7px 14px; border-radius: 0 0 3px 3px; }
        .price-card .plan { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
        .price-card .amt { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 560; line-height: 1; }
        .price-card .amt small { font-family: 'Inter'; font-size: 0.85rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0.02em; }
        .price-card .per { font-size: 0.78rem; color: var(--ink-3); margin: 8px 0 26px; }
        .price-card ul { margin-bottom: 30px; flex-grow: 1; }
        .price-card li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--ink-2); padding: 7px 0; border-bottom: 1px dashed var(--hairline-soft); }
        .price-card li svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
        .price-card .btn { justify-content: center; }
        @media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } .price-card { border-right: none; border-bottom: 1px solid var(--hairline); } .price-card:last-child { border-bottom: none; } }

        /* ---------- Testimonials ---------- */
        .quote-card {
            width: 520px; max-width: 86vw; min-width: 0;
            padding: 34px 38px; box-sizing: border-box;
            background: var(--surface); border: 1px solid var(--hairline); border-radius: 2px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .marquee-item:hover .quote-card { transform: translateY(-4px); border-color: var(--accent); }
        .quote-mark { font-family: 'Fraunces', serif; font-size: 3rem; line-height: 0.6; color: var(--accent); margin-bottom: 20px; }
        .quote-card blockquote { font-family: 'Fraunces', serif; font-size: 1.28rem; font-weight: 480; line-height: 1.45; letter-spacing: -0.01em; margin-bottom: 22px; }
        .quote-who { display: flex; align-items: center; gap: 14px; }
        .quote-who .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-3); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 560; font-size: 1rem; color: var(--ink-2); }
        .quote-who .nm { font-size: 0.9rem; font-weight: 600; }
        .quote-who .src { font-size: 0.76rem; color: var(--ink-3); }

        /* ---------- About / timeline ---------- */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
        .about-col p { font-size: 0.97rem; color: var(--ink-2); margin-bottom: 16px; }
        .values { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--hairline); margin-top: 34px; }
        .value-item { padding: 22px 24px; border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
        .value-item:nth-child(2n) { border-right: none; }
        .value-item:nth-last-child(-n+2) { border-bottom: none; }

        /* Firm snapshot — ledger-statement strip in the About section */
        .firm-card {
            position: relative; margin-top: 64px;
            background: var(--surface); border: 1px solid var(--hairline);
            padding: 30px 36px 26px;
        }
        .firm-card .crop { --crop: var(--accent); }
        .firm-head {
            display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap;
            padding-bottom: 18px; border-bottom: 1px solid var(--hairline);
        }
        .firm-head .firm-overline {
            font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 40;
            font-size: 1.05rem; font-weight: 560; letter-spacing: 0.02em; color: var(--ink);
        }
        .firm-head .firm-period { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
        .firm-rows { display: grid; grid-template-columns: repeat(5, 1fr); }
        .firm-row {
            padding: 22px 26px 4px; display: flex; flex-direction: column; gap: 12px;
            border-right: 1px dashed var(--hairline-soft);
        }
        .firm-row:last-child { border-right: none; }
        .firm-row .lbl { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
        .firm-row .val { font-family: 'Fraunces', serif; font-size: 2.1rem; font-weight: 560; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
        .firm-foot {
            display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
            margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--hairline);
        }
        .firm-foot span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
        .firm-foot .firm-total { color: var(--accent); }
        @media (max-width: 820px) {
            .firm-rows { grid-template-columns: repeat(2, 1fr); }
            .firm-row { border-right: none; border-bottom: 1px dashed var(--hairline-soft); }
            .firm-row:nth-last-child(-n+2) { border-bottom: none; }
        }
        .value-item .k { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 540; margin-bottom: 4px; }
        .value-item .d { font-size: 0.8rem; color: var(--ink-2); }
        .timeline { margin-top: 70px; border-top: 1px solid var(--hairline); }
        .tl-row { display: grid; grid-template-columns: 130px 1fr; gap: 40px; padding: 30px 8px; border-bottom: 1px solid var(--hairline); }
        .tl-row .yr { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 540; color: var(--accent); }
        .tl-row h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
        .tl-row p { font-size: 0.88rem; color: var(--ink-2); max-width: 520px; }
        @media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

        /* ---------- Contact ---------- */
        .contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--hairline); }
        .contact-card { padding: 42px 38px; border-right: 1px solid var(--hairline); background: var(--surface); }
        .contact-card:nth-child(2n) { border-right: none; }
        .contact-card .ic { width: 46px; height: 46px; border: 1px solid var(--hairline); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 22px; }
        .contact-card .ic svg { width: 19px; height: 19px; }
        .contact-card h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 540; margin-bottom: 10px; }
        .contact-card p, .contact-card a.line { font-size: 0.95rem; color: var(--ink-2); display: block; }
        .contact-card a.line:hover { color: var(--accent); }
        .rating { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
        .rating .stars { display: flex; gap: 2px; color: var(--accent); }
        .rating .stars svg { width: 15px; height: 15px; }
        .rating span { font-size: 0.8rem; color: var(--ink-2); }
        @media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .contact-card { border-right: none; border-bottom: 1px solid var(--hairline); } .contact-card:nth-child(2n) { border-right: none; } .contact-card:last-child { border-bottom: none; } }

        /* ---------- CTA band ---------- */
        /* Crop-mark frames (Swiss print corner ticks) */
        .crop {
            position: absolute; inset: 12px; z-index: 2; pointer-events: none;
        }
        .crop::before {
            content: ''; position: absolute; inset: 0;
            background:
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) top left / 16px 1px,
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) top left / 1px 16px,
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) top right / 16px 1px,
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) top right / 1px 16px,
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) bottom left / 16px 1px,
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) bottom left / 1px 16px,
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) bottom right / 16px 1px,
                linear-gradient(var(--crop, var(--accent)), var(--crop, var(--accent))) bottom right / 1px 16px;
            background-repeat: no-repeat;
        }
        .cta-band { position: relative; --crop: rgba(245, 242, 234, 0.55); background: var(--ink); color: var(--paper); }
        .dark .cta-band { --crop: rgba(157, 185, 232, 0.55); }
        .dark .cta-band { background: var(--paper-2); border-top: 1px solid var(--hairline); }
        .cta-inner { position: relative; z-index: 1; padding: 90px 0; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
        .cta-inner h2 { color: var(--paper); }
        .dark .cta-inner h2 { color: var(--ink); }
        .cta-inner p { color: var(--paper); opacity: 0.75; max-width: 480px; margin-top: 16px; }
        .dark .cta-inner p { color: var(--ink-2); }
        .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
        .cta-band .btn-ink { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
        .cta-band .btn-outline { color: var(--paper); border-color: rgba(245, 242, 234, 0.45); }
        .cta-band .btn-outline:hover { border-color: var(--paper); }
        .dark .cta-band .btn-outline { color: var(--ink); border-color: rgba(237, 232, 220, 0.35); }
        .dark .cta-band .btn-outline:hover { border-color: var(--ink); }
        @media (max-width: 820px) { .cta-inner { grid-template-columns: 1fr; } }

        /* ---------- Footer ---------- */
        footer { border-top: 1px solid var(--hairline); }
        .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding: 70px 0 50px; }
        .foot-brand p { font-size: 0.9rem; color: var(--ink-2); max-width: 300px; margin: 18px 0 22px; }
        .socials { display: flex; gap: 10px; }
        .socials a { width: 36px; height: 36px; border: 1px solid var(--hairline); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-2); transition: all 0.2s ease; }
        .socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
        .socials svg { width: 15px; height: 15px; }
        .foot-col h3 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
        .foot-col ul { display: flex; flex-direction: column; gap: 12px; }
        .foot-col a, .foot-col li { font-size: 0.9rem; color: var(--ink-2); }
        .foot-col a {
            position: relative; transition: color 0.2s ease;
        }
        .foot-col a::after {
            content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px;
            background: var(--accent); transform: scaleX(0); transform-origin: left;
            transition: transform 0.25s ease;
        }
        .foot-col a:hover { color: var(--accent); }
        .foot-col a:hover::after { transform: scaleX(1); }
        .foot-bottom { border-top: 1px solid var(--hairline); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
        .foot-bottom p { font-size: 0.78rem; color: var(--ink-2); }
        .foot-bottom .legal { display: flex; gap: 22px; }
        .foot-bottom .legal a { font-size: 0.78rem; color: var(--ink-2); }
        .foot-bottom .legal a:hover { color: var(--accent); }
        @media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

        /* ---------- Back to top ---------- */
        #backToTop {
            position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px;
            border-radius: 50%; border: 1px solid var(--hairline);
            background: var(--surface); color: var(--ink);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 60;
            transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
        }
        #backToTop:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
        #backToTop svg { width: 17px; height: 17px; }
        #backToTop .ring { position: absolute; inset: -1px; width: 48px; height: 48px; pointer-events: none; }
        #backToTop .ring circle { fill: none; stroke-width: 1.5; }
        #backToTop .ring-bg { stroke: var(--hairline); }
        #backToTop .ring-fg {
            stroke: var(--accent); stroke-linecap: round;
            transform: rotate(-90deg); transform-origin: 50% 50%;
            stroke-dasharray: 128.8; stroke-dashoffset: 128.8;
        }
        #backToTop.opacity-0 { opacity: 0; }
        #backToTop.pointer-events-none { pointer-events: none; }

        /* ---------- Insights ---------- */
        .insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--hairline); }
        .insight-card {
            padding: 34px 34px 34px 0; border-bottom: 1px solid var(--hairline);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .insight-card:hover { transform: translateY(-4px); }
        .insight-card h3 a { position: relative; }
        .insight-card h3 a::after {
            content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
            background: var(--accent); transform: scaleX(0); transform-origin: left;
            transition: transform 0.25s ease;
        }
        .insight-card h3 a:hover::after { transform: scaleX(1); }
        .insight-card + .insight-card { border-left: 1px solid var(--hairline); padding-left: 34px; }
        .insight-meta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
        .insight-card h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 560; letter-spacing: -0.01em; line-height: 1.24; }
        .insight-card h3 a { transition: color 0.2s ease; }
        .insight-card h3 a:hover { color: var(--accent); }
        .insight-card > p:not(.insight-meta) { color: var(--ink-2); font-size: 0.94rem; line-height: 1.7; margin-top: 12px; }
        .insight-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
        .insight-link svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
        .insight-card:hover .insight-link svg { transform: translateX(4px); }
        .insights-all { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); transition: color 0.2s ease; }
        .insights-all svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
        .insights-all:hover svg { transform: translateX(4px); }
        @media (max-width: 820px) {
            .insights-grid { grid-template-columns: 1fr; }
            .insight-card { padding: 28px 0; }
            .insight-card + .insight-card { border-left: none; padding-left: 0; }
        }

        /* ---------- Mobile quick-contact bar ---------- */
        .mobile-cta {
            position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
            display: none; align-items: stretch;
            background: var(--surface); border-top: 1px solid var(--hairline);
            padding-bottom: env(safe-area-inset-bottom);
            transform: translateY(0); transition: transform 0.35s ease;
        }
        .mobile-cta a {
            flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
            padding: 15px 10px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .mobile-cta a + a { border-left: 1px solid var(--hairline); }
        .mobile-cta .m-call { background: var(--accent); color: var(--accent-ink); }
        .mobile-cta .m-call:active { filter: brightness(1.1); }
        .mobile-cta .m-wa { background: var(--ink); color: var(--paper); }
        .mobile-cta .m-wa:active { filter: brightness(1.4); }
        .mobile-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
        body.cookie-open .mobile-cta { transform: translateY(110%); }
        @media (max-width: 900px) {
            .mobile-cta { display: flex; }
            body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
            #backToTop { bottom: calc(28px + 56px + env(safe-area-inset-bottom)); }
        }
        @media (prefers-reduced-motion: reduce) {
            .mobile-cta { transition: none; }
        }

        /* ---------- Cookie banner ---------- */
        #cookieConsent {
            position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
            background: var(--surface); border-top: 1px solid var(--hairline);
            transform: translateY(100%); transition: transform 0.45s ease;
        }
        #cookieConsent.show { transform: translateY(0); }
        .cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; flex-wrap: wrap; }
        .cookie-inner p { font-size: 0.86rem; color: var(--ink-2); max-width: 720px; }
        .cookie-inner p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
        .cookie-btns { display: flex; gap: 10px; }
        .cookie-btns .btn { padding: 10px 18px; font-size: 0.7rem; }

        /* ---------- FAQ accordion ---------- */
        .faq-list { border-top: 1px solid var(--hairline); }
        .faq-item { border-bottom: 1px solid var(--hairline); }
        .faq-q {
            width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
            padding: 27px 4px; background: none; border: none; cursor: pointer; text-align: left;
            font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 40;
            font-weight: 540; font-size: 1.14rem; letter-spacing: -0.01em; color: var(--ink);
            transition: color 0.2s ease;
        }
        .faq-q:hover { color: var(--accent); }
        .faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
        a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
            outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px;
        }
        .faq-plus { position: relative; width: 15px; height: 15px; flex-shrink: 0; opacity: 0.85; }
        .faq-plus::before, .faq-plus::after {
            content: ''; position: absolute; background: var(--accent);
            transition: transform 0.32s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.2s ease;
        }
        .faq-plus::before { left: 0; top: 6.5px; width: 15px; height: 2px; }
        .faq-plus::after { left: 6.5px; top: 0; width: 2px; height: 15px; }
        .faq-item.open .faq-plus::after { transform: rotate(90deg); opacity: 0; }
        .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.38s cubic-bezier(0.2, 0.6, 0.2, 1); }
        .faq-item.open .faq-a { grid-template-rows: 1fr; }
        .faq-item.open .faq-q { color: var(--accent); }
        .faq-a > div { overflow: hidden; }
        .faq-a p { padding: 0 4px 28px; color: var(--ink-2); font-size: 0.96rem; line-height: 1.75; max-width: 700px; }
        @media (max-width: 640px) { .faq-q { font-size: 1.02rem; } }

        /* ---------- Contact form ---------- */
        .contact-form-wrap { margin-top: 78px; border-top: 1px solid var(--hairline); padding-top: 56px; }
        .form-head h3 { font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 40; font-size: 1.5rem; font-weight: 560; letter-spacing: -0.01em; margin-bottom: 8px; }
        .form-head p { color: var(--ink-2); font-size: 0.95rem; max-width: 480px; }
        .contact-form { margin-top: 38px; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; }
        .field { display: flex; flex-direction: column; gap: 9px; }
        .field-full { grid-column: 1 / -1; }
        .field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
        .field label .opt { font-weight: 400; text-transform: none; letter-spacing: 0.02em; color: var(--ink-3); }
        .field input, .field select, .field textarea {
            font-family: inherit; font-size: 0.98rem; color: var(--ink);
            background: transparent; border: none; border-bottom: 1px solid var(--hairline);
            padding: 10px 2px; border-radius: 0; transition: border-color 0.22s ease;
            -webkit-appearance: none; appearance: none;
        }
        .field input::placeholder, .field textarea::placeholder { color: var(--ink-3); opacity: 0.75; }
        .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
        .field select { cursor: pointer; }
        .field select:invalid { color: var(--ink-3); }
        .field textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
        .field input[aria-invalid='true'] { border-bottom-color: var(--err); }
        .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
        .form-foot { display: flex; align-items: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
        .form-note { font-size: 0.8rem; color: var(--ink-3); }
        .form-status { display: none; margin-top: 22px; padding: 14px 18px; border: 1px solid var(--hairline); font-size: 0.9rem; color: var(--ink-2); }
        .form-status.ok { display: block; border-color: var(--accent); color: var(--accent); }
        .form-status.err { display: block; border-color: var(--err); color: var(--err); }
        .btn:disabled { opacity: 0.6; cursor: wait; }
        @media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; gap: 24px; } .contact-form-wrap { margin-top: 56px; padding-top: 42px; } }

        /* ---------- Reveal animations ---------- */
        .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
        .reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
        .reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
        .reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
        .reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active { opacity: 1; transform: none; }

        /* ---------- Reduced motion ---------- */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
            .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
            .hero-in > * { animation: none !important; opacity: 1 !important; }
            .hero { --parallax: 0px !important; }
            .hero-ledger { transform: none !important; }
        }

        /* Scroll margin for anchor nav */
        [id] { scroll-margin-top: 84px; }

        /* ---------- Paper grain (editorial print texture, both themes) ---------- */
        body::before {
            content: ''; position: fixed; inset: 0; z-index: 2147483000;
            pointer-events: none; opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
        }

        /* ---------- Ghost section numerals (decorative, CSS-generated) ---------- */
        .section { position: relative; overflow: hidden; }
        .section::before {
            content: attr(data-ghost);
            position: absolute; top: 96px; right: -18px; z-index: 0;
            font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 144;
            font-size: clamp(130px, 19vw, 290px); line-height: 1; font-weight: 500;
            color: transparent; -webkit-text-stroke: 1px var(--hairline);
            pointer-events: none; user-select: none;
        }
        .section > * { position: relative; z-index: 1; }
        @media (max-width: 820px) {
            .section::before { opacity: 0.55; font-size: clamp(88px, 22vw, 140px); top: 64px; right: -6px; }
        }


        /* Ghost folio for the hero ("00") — echoes the numbered sections.
           Rendered via attr(data-ghost) on a pseudo-element so the numeral is
           never a real text node (keeps the WCAG contrast walker clean).
           The .hero-ghost span itself is an empty styling hook. */
        .hero-ghost { position: absolute; pointer-events: none; }
        .hero-ghost::before {
            content: attr(data-ghost);
            position: absolute; left: 50%; top: 50%; z-index: 0;
            transform: translate(-50%, calc(-58% + var(--parallax, 0px)));
            font-family: 'Fraunces', serif; font-variation-settings: 'opsz' 144;
            font-size: clamp(190px, 30vw, 380px); line-height: 1; font-weight: 500;
            color: transparent; -webkit-text-stroke: 1px var(--hairline);
            pointer-events: none; user-select: none; opacity: 0.85;
            animation: ghostIn 0.5s ease 0.15s both;
        }
        @keyframes ghostIn { from { opacity: 0; } to { opacity: 0.85; } }
        .hero-grid { position: relative; z-index: 1; }
        @media (max-width: 820px) { .hero-ghost::before { opacity: 0.55; font-size: clamp(120px, 30vw, 200px); } }
        @media (max-width: 820px) {
            .hero { --parallax: 0px !important; }
            .hero-ledger { transform: none !important; }
        }

        /* ---------- Hero entrance: staggered fade-up on load ---------- */
        .hero-in > * { opacity: 0; animation: heroUp 0.6s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
        .hero-in > *:nth-child(1) { animation-delay: 0.04s; }
        .hero-in > *:nth-child(2) { animation-delay: 0.12s; }
        .hero-in > *:nth-child(3) { animation-delay: 0.20s; }
        .hero-in > *:nth-child(4) { animation-delay: 0.28s; }
        .hero-in > *:nth-child(5) { animation-delay: 0.34s; }
        @keyframes heroUp {
            from { opacity: 0; transform: translateY(22px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ---------- Hover polish: card lift, CTA arrows ---------- */
        .price-card { transition: transform 0.3s ease, border-color 0.3s ease; }
        .price-card:hover { transform: translateY(-3px); border-color: var(--accent); }
        .hero-ctas .btn::after { content: '→'; margin-left: 2px; transition: transform 0.25s ease; }
        .hero-ctas .btn:hover::after { transform: translateX(4px); }
        .insight-link svg { transition: transform 0.25s ease; }
        .insight-link:hover svg { transform: translateX(3px); }

        /* ---------- Testimonial avatar: brand accent ---------- */
        .quote-who .avatar { background: var(--accent); color: var(--accent-ink); }

        /* ---------- Print ---------- */
        @media print {
            :root {
                --paper: #ffffff !important; --paper-2: #ffffff !important; --paper-3: #f2f2f2 !important;
                --surface: #ffffff !important; --ink: #111111 !important; --ink-2: #333333 !important;
                --ink-3: #555555 !important; --accent: #10306e !important;
                --hairline: #bbbbbb !important; --hairline-soft: #cccccc !important;
            }
            body { background: #fff !important; }
            .navbar, .mobile-menu, .mobile-cta, .hamburger, .theme-btn,
            #backToTop, .scroll-progress, #cookieConsent, .sec-counter,
            .hero-ghost, .ghost-numeral, .btn, .skip-link { display: none !important; }
            .hero { min-height: 0 !important; padding: 40px 0 !important; }
            .hero-ledger, .hero-stats { display: none !important; }
            .section { padding: 32px 0 !important; }
            * { animation: none !important; transition: none !important; }
            @page { margin: 16mm; }
        }
