  /* ─── Self-hosted Heebo (subset by unicode range) ─── */
  @font-face {
    font-family: "Heebo";
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url("/assets/fonts/heebo-hebrew.woff2") format("woff2");
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
  }
  @font-face {
    font-family: "Heebo";
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url("/assets/fonts/heebo-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: "Heebo";
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url("/assets/fonts/heebo-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* Metric-adjusted fallback so the system font occupies the same
     visual box as Heebo, eliminating CLS on font swap. */
  @font-face {
    font-family: "Heebo-Fallback";
    src: local("Arial");
    size-adjust: 99%;
    ascent-override: 91%;
    descent-override: 22%;
    line-gap-override: 0%;
  }

  :root {
    --white:      #FFFFFF;
    --paper:      #F5F7FA;
    --paper-2:    #EBF0F5;
    --ink:        #0A0A0B;
    --ink-2:      #2A2A2D;
    --ink-soft:   #525258;
    --ink-muted:  #6C6C72;
    --line:       #DCE3EC;
    --line-soft:  #E8EDF3;
    --green:      #0E5043;
    --green-deep: #073A30;
    --green-pale: #EEF5F1;
    --clay:       #C44829;
    --clay-deep:  #A93917;
    --blue:       #7DA9D5;
    --blue-deep:  #3F6E96;
    --blue-pale:  #E8F0F7;
    --font:       "Heebo", "Heebo-Fallback", system-ui, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ─── Nav ─── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
  }
  .brand {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--ink);
    display: flex; align-items: center; gap: 10px;
  }
  .brand-mark {
    width: 7px; height: 7px;
    background: var(--green);
    display: inline-block;
    transform: translateY(0);
  }
  .brand-sub {
    font-weight: 400;
    font-size: 13px;
    color: var(--ink-muted);
    border-right: 1px solid var(--line);
    padding-right: 12px;
    margin-right: 4px;
  }
  .nav-links {
    display: flex; gap: 32px;
    font-size: 14px; font-weight: 500;
    color: var(--ink-2);
  }
  .nav-links a { transition: color 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-actions { display: flex; align-items: center; gap: 20px; }
  .nav-lang {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .nav-cta {
    font-size: 14px;
    padding: 11px 22px;
    background: var(--ink);
    color: var(--white);
    font-weight: 500;
    transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--green); }
  @media (max-width: 880px) {
    .nav-links, .brand-sub { display: none; }
    .nav-inner { padding: 14px 20px; }
  }

  /* ─── Hero ─── */
  .hero {
    max-width: 1280px; margin: 0 auto;
    padding: 88px 32px 72px;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    margin-bottom: 36px;
  }
  .hero-eyebrow::before {
    content: ""; display: inline-block;
    width: 24px; height: 1px; background: var(--green);
  }
  .hero h1 {
    font-weight: 900;
    font-size: clamp(38px, 6.2vw, 80px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 1120px;
    margin-bottom: 40px;
  }
  .hero h1 .highlight {
    color: var(--green);
    position: relative;
    display: inline-block;
  }
  .hero h1 .strike {
    color: var(--ink-muted);
    font-weight: 400;
  }
  .hero-sub {
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 640px;
    margin-bottom: 48px;
    font-weight: 400;
  }
  .hero-ctas {
    display: flex; gap: 12px; align-items: center;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 17px 30px;
    font-family: var(--font);
    font-size: 15px; font-weight: 500;
    border: none; cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.005em;
  }
  .btn-clay {
    background: var(--clay); color: var(--white);
  }
  .btn-clay:hover { background: var(--clay-deep); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
  .btn svg { width: 14px; height: 14px; }

  .hero-source {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 16px;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 780px;
  }
  .hero-source-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-deep);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  /* ─── Trust strip / data crisis ─── */
  .crisis {
    background: var(--ink);
    color: var(--white);
    padding: 88px 32px;
    border-top: 1px solid var(--line);
  }
  .crisis-inner { max-width: 1280px; margin: 0 auto; }
  .crisis-eyebrow {
    font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #E26A4A;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .crisis-h2 {
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    max-width: 880px;
    margin-bottom: 64px;
  }
  .crisis-h2 strong { color: var(--white); font-weight: 900; }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .stat {
    padding: 40px 24px 0 0;
    border-left: 1px solid rgba(255,255,255,0.12);
  }
  .stat:last-child { border-left: none; }
  .stat:first-child { padding-right: 0; }
  .stat-num {
    font-weight: 900;
    font-size: clamp(46px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 16px;
  }
  .stat-num .small { font-size: 0.5em; font-weight: 700; color: var(--ink-muted); }
  .stat-label {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    max-width: 240px;
  }
  .stat-source {
    margin-top: 16px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
  }
  @media (max-width: 880px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat { padding: 32px 20px 0 0; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 32px; }
    .stat:nth-child(2n) { border-left: none; }
  }
  @media (max-width: 540px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat { border-left: none; }
  }

  /* ─── Section base ─── */
  section.std { padding: 112px 32px; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .section-eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--green);
  }
  .section-h2 {
    font-weight: 800;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 820px;
    color: var(--ink);
  }
  .section-h2 em { font-style: normal; color: var(--green); }
  .section-lede {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 680px;
    line-height: 1.7;
  }
  @media (max-width: 700px) { section.std { padding: 80px 20px; } }

  /* ─── Why this matters ─── */
  .why-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
  }
  .why-points { display: flex; flex-direction: column; gap: 4px; }
  .why-point {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
  }
  .why-point:last-child { border-bottom: 1px solid var(--line); }
  .why-num {
    font-weight: 900;
    font-size: 28px;
    color: var(--green);
    letter-spacing: -0.02em;
  }
  .why-content h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .why-content p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .why-content cite {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: var(--ink-muted);
    font-style: normal;
    letter-spacing: 0.02em;
  }
  .evidence-card {
    background: var(--blue-pale);
    padding: 40px 36px;
    border-right: 3px solid var(--blue-deep);
    position: sticky;
    top: 100px;
  }
  .evidence-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-deep);
    padding: 5px 10px;
    margin-bottom: 20px;
  }
  .evidence-card h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--blue-deep);
  }
  .evidence-card p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .evidence-source {
    font-size: 12px;
    color: var(--ink-soft);
    border-top: 1px solid rgba(125,169,213,0.4);
    padding-top: 16px;
  }
  @media (max-width: 980px) {
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .evidence-card { position: static; }
  }

  /* ─── Services ─── */
  .services { background: var(--paper); }
  .services-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .service {
    background: var(--white);
    padding: 48px 40px;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
    min-height: 380px;
  }
  .service:hover { background: var(--paper-2); }
  .service-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 24px;
  }
  .service h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .service p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
  }
  .service-meta {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 32px;
    padding-top: 20px;
    border-top: 1px dashed var(--line);
  }
  .meta-row { display: flex; justify-content: space-between; font-size: 13px; }
  .meta-key { color: var(--ink-muted); }
  .meta-val { color: var(--ink-2); font-weight: 500; }
  .service-link {
    font-size: 14px; font-weight: 500;
    color: var(--green);
    display: inline-flex; align-items: center; gap: 8px;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }
  .service:hover .service-link { border-color: var(--green); }
  .service-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
  .service:hover .service-link svg { transform: translateX(-4px); }
  @media (max-width: 980px) {
    .services-grid { grid-template-columns: 1fr; }
    .service { min-height: auto; }
  }

  /* ─── Comparison ─── */
  .compare-h-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 0;
    margin-top: 64px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 20px;
  }
  .compare-h {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-muted);
  }
  .compare-h.us { color: var(--blue-deep); }
  .compare-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 0;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.45;
    padding-left: 24px;
  }
  .compare-cell {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
    padding-left: 24px;
  }
  .compare-cell.us {
    color: var(--blue-deep);
    font-weight: 500;
  }
  .compare-cell.us::before {
    content: "✓ ";
    color: var(--blue);
    font-weight: 700;
    margin-left: 4px;
  }
  .compare-cell.them::before {
    content: "— ";
    color: var(--ink-muted);
    margin-left: 4px;
  }
  @media (max-width: 700px) {
    .compare-h-row, .compare-row { grid-template-columns: 1fr; gap: 12px; }
    .compare-row { padding: 20px 0; }
    .compare-cell { padding-right: 24px; padding-left: 0; }
  }

  /* ─── Process ─── */
  .process { background: var(--paper); }
  .process-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 6%;
    left: 6%;
    height: 1px;
    background: var(--line);
  }
  .step { padding: 0 24px; position: relative; }
  .step-circle {
    width: 60px; height: 60px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--green);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
  }
  .step-circle.active { background: var(--blue-deep); color: var(--white); border-color: var(--blue-deep); }
  .step h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .step p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .step-time {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--ink-muted);
    font-weight: 500;
  }
  @media (max-width: 880px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
    .process-grid::before { display: none; }
  }
  @media (max-width: 540px) {
    .process-grid { grid-template-columns: 1fr; }
  }

  /* ─── About ─── */
  .about-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    max-width: 820px;
  }
  .about-content h2 {
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
  }
  .about-content h2 em { font-style: normal; color: var(--green); }
  .about-content p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .credentials {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
  .cred {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
  }
  .cred-year {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .cred strong { font-weight: 600; color: var(--ink); }
  .about-link {
    margin-top: 36px;
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--ink);
    font-weight: 500;
    border-bottom: 2px solid var(--green);
    padding-bottom: 4px;
    font-size: 15px;
  }
  .about-link svg { width: 14px; height: 14px; }
  @media (max-width: 980px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .credentials { grid-template-columns: 1fr; }
  }

  /* ─── Self-check ─── */
  .check-section {
    background: var(--green);
    color: var(--white);
  }
  .check-section .section-eyebrow { color: rgba(255,255,255,0.7); }
  .check-section .section-eyebrow::before { background: var(--clay); }
  .check-section .section-h2 { color: var(--white); }
  .check-section .section-lede { color: rgba(255,255,255,0.75); }
  .check-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
  }
  .check-row {
    display: flex; gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    cursor: pointer;
    transition: padding 0.2s;
  }
  .check-row:hover { padding-right: 6px; }
  .check-box {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border: 1.5px solid rgba(255,255,255,0.5);
    transform: translateY(3px);
    transition: all 0.2s;
    position: relative;
  }
  .check-row:hover .check-box { background: var(--clay); border-color: var(--clay); }
  .check-row:hover .check-box::after {
    content: "";
    position: absolute;
    top: 1px; right: 5px;
    width: 5px; height: 9px;
    border: solid var(--white);
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
  }
  .check-cta-strip {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
  }
  .check-cta-text {
    font-size: 18px;
    color: var(--white);
    max-width: 560px;
    line-height: 1.5;
  }
  .check-cta-text strong { color: var(--white); font-weight: 700; }
  @media (max-width: 700px) { .check-grid { grid-template-columns: 1fr; gap: 0; } }

  /* ─── Testimonial ─── */
  .quote-section { background: var(--white); }
  .quote {
    max-width: 880px;
    margin: 0 auto;
  }
  .quote-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 32px;
    display: flex; align-items: center; gap: 12px;
  }
  .quote-tag::before {
    content: ""; width: 24px; height: 1px; background: var(--clay);
  }
  .quote blockquote {
    font-weight: 500;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 36px;
    letter-spacing: -0.015em;
  }
  .quote-attribution {
    display: flex; align-items: center; gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .attr-info {
    display: flex; flex-direction: column;
  }
  .attr-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
  }
  .attr-role {
    font-size: 13px;
    color: var(--ink-muted);
  }
  .more-link {
    margin-right: auto;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 2px solid var(--green);
    padding-bottom: 2px;
  }
  @media (max-width: 600px) {
    .quote-attribution { flex-wrap: wrap; }
    .more-link { margin-right: 0; }
  }

  /* ─── Final CTA ─── */
  .final {
    background: var(--ink);
    color: var(--white);
    padding: 128px 32px;
  }
  .final-inner { max-width: 1100px; margin: 0 auto; }
  .final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .final h2 {
    font-weight: 900;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 0;
  }
  .final h2 em { font-style: normal; color: var(--clay); }
  .final-meta {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }
  .final-meta strong { color: var(--white); font-weight: 600; }
  .final-meta-block {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .final-meta-block:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .final-meta-key {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
  }
  .final-ctas {
    margin-top: 48px;
    grid-column: 1 / -1;
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .final-ctas .btn-clay { padding: 22px 36px; font-size: 16px; }
  .final .btn-ghost {
    color: var(--white); border-color: rgba(255,255,255,0.3);
  }
  .final .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
  @media (max-width: 880px) {
    .final-grid { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ─── Footer ─── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    padding: 0 32px 32px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .foot-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 64px 0 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
  }
  .foot-brand-block { display: flex; flex-direction: column; gap: 12px; }
  .foot-brand {
    color: var(--white); font-size: 18px; font-weight: 700;
    letter-spacing: -0.01em;
  }
  .foot-tag {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 320px;
  }
  .foot-col h3 {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .foot-col a {
    display: block;
    padding: 5px 0;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    font-size: 14px;
  }
  .foot-col a:hover { color: var(--clay); }
  .foot-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
  }
  @media (max-width: 880px) {
    .foot-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 0; }
  }
  @media (max-width: 540px) {
    .foot-inner { grid-template-columns: 1fr; }
  }

  /* ─── Shorts gallery ─── */
  .shorts-section { background: var(--paper); }
  .shorts-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
  }
  .short-card {
    position: relative;
    display: block;
    aspect-ratio: 9 / 16;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 6px 24px -8px rgba(10,10,11,0.18), 0 1px 0 rgba(255,255,255,0.05) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .short-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -14px rgba(10,10,11,0.32);
  }
  .short-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .short-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 35%, transparent 60%, rgba(0,0,0,0.55) 100%);
    color: var(--white);
    pointer-events: none;
    transition: background 0.25s;
  }
  .short-card:hover .short-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 40%, transparent 70%, rgba(0,0,0,0.45) 100%);
  }
  .short-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    opacity: 0.85;
  }
  .short-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .short-caption {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.005em;
    max-width: 78%;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }
  .short-play {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
  .short-play svg {
    width: 18px;
    height: 18px;
    margin-right: -2px;
  }
  @media (max-width: 880px) {
    .shorts-grid { gap: 16px; }
  }
  @media (max-width: 540px) {
    .shorts-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
    }
    .short-caption { font-size: 12px; }
    .short-play { width: 36px; height: 36px; }
  }

  /* ─── Video modal ─── */
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
  .video-modal.open {
    opacity: 1;
    pointer-events: auto;
  }
  .video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,11,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: none;
    cursor: pointer;
  }
  .video-modal-inner {
    position: relative;
    width: min(90vw, 420px);
    max-height: 90vh;
    aspect-ratio: 9 / 16;
    background: var(--ink);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  }
  .video-modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--ink);
  }
  .video-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s;
  }
  .video-modal-close:hover { background: rgba(255,255,255,0.26); }
  .video-modal-close svg { width: 18px; height: 18px; }
  body.modal-open { overflow: hidden; }

  /* ─── Sticky mobile bar ─── */
  .mobile-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    z-index: 100;
    padding: 8px;
    gap: 6px;
    box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.08);
  }
  .mobile-bar a {
    flex: 1;
    text-align: center;
    padding: 12px 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    border: 1px solid var(--line);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .mobile-bar a.primary {
    background: var(--clay); color: var(--white); border-color: var(--clay);
  }
  .mobile-bar svg { width: 14px; height: 14px; }
  @media (max-width: 800px) {
    .mobile-bar { display: flex; }
    body { padding-bottom: 76px; }
  }
