
    :root {
      --ink: #080808;
      --ink-soft: #101010;
      --paper: #f5f2eb;
      --paper-soft: #d2cfc8;
      --muted: #aaa8a3;
      --red: #c91c24;
      --red-bright: #ed2831;
      --line: rgba(245, 242, 235, .17);
      --line-strong: rgba(245, 242, 235, .3);
      --shadow: 0 24px 70px rgba(0, 0, 0, .38);
      --serif: Georgia, "Times New Roman", serif;
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 88px; }
    body {
      margin: 0;
      overflow-x: hidden;
      background: var(--ink);
      color: var(--paper);
      font-family: var(--sans);
      font-size: 18px;
      line-height: 1.58;
      text-rendering: optimizeLegibility;
    }
    body.menu-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    button, a { -webkit-tap-highlight-color: transparent; }
    a { color: inherit; text-underline-offset: .24em; text-decoration-thickness: 1px; }
    a:hover { color: #fff; }
    :focus-visible { outline: 3px solid var(--red-bright); outline-offset: 4px; }
    ::selection { background: var(--red); color: #fff; }
    .shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
    .skip-link {
      position: fixed; z-index: 100; left: 18px; top: -80px;
      padding: 12px 16px; background: var(--paper); color: var(--ink);
      transition: top .2s;
    }
    .skip-link:focus { top: 18px; }

    .site-head {
      position: fixed; z-index: 50; inset: 0 0 auto;
      background: rgba(8, 8, 8, .68);
      border-bottom: 1px solid rgba(245, 242, 235, .1);
      backdrop-filter: blur(9px);
      transition: background-color .25s, border-color .25s, backdrop-filter .25s;
    }
    .site-head.scrolled, .site-head.menu-open {
      background: rgba(8, 8, 8, .9);
      border-color: var(--line);
      backdrop-filter: blur(16px);
    }
    .head-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .mark {
      display: inline-flex; align-items: center; gap: 10px;
      color: var(--paper); font-size: .82rem; font-weight: 850;
      letter-spacing: .15em; text-decoration: none;
    }
    .mark-ring {
      width: 18px; aspect-ratio: 1; border: 3px solid var(--red);
      border-right-color: transparent; border-radius: 50%; transform: rotate(-28deg);
    }
    .nav-wrap { display: flex; align-items: center; gap: 28px; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      position: relative; padding: 10px 12px; color: var(--muted);
      font-size: .71rem; font-weight: 750; letter-spacing: .14em;
      text-transform: uppercase; text-decoration: none;
    }
    .nav-links a::after {
      content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px;
      height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
      transition: transform .2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--paper); }
    .nav-links a.active::after { transform: scaleX(1); }
    .head-cta {
      display: inline-flex; align-items: center; min-height: 40px; padding: 0 15px;
      border: 1px solid var(--red); color: #fff; font-size: .68rem; font-weight: 800;
      letter-spacing: .13em; text-transform: uppercase; text-decoration: none;
    }
    .head-cta:hover { background: var(--red); }
    .menu-button {
      display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line);
      background: transparent; color: var(--paper); cursor: pointer;
    }
    .menu-button span, .menu-button::before, .menu-button::after {
      content: ""; display: block; width: 20px; height: 1px; margin: 5px auto; background: currentColor;
      transition: transform .2s, opacity .2s;
    }
    .menu-button[aria-expanded="true"] span { opacity: 0; }
    .menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
    .menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

    .hero { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); border-bottom: 1px solid var(--line); }
    .hero-copy {
      position: relative; display: flex; flex-direction: column; justify-content: center;
      padding: 138px clamp(44px, 6.5vw, 110px) 76px max(24px, calc((100vw - 1200px) / 2));
    }
    .hero-copy::before {
      content: ""; position: absolute; width: 380px; aspect-ratio: 1; left: -210px; top: 18%;
      border: 1px solid rgba(201, 28, 36, .23); border-radius: 50%; pointer-events: none;
    }
    .eyebrow { margin: 0; color: var(--red-bright); font-size: .72rem; font-weight: 850; letter-spacing: .21em; text-transform: uppercase; }
    h1 {
      margin: 24px 0 22px; max-width: 760px; font-family: var(--serif);
      font-size: clamp(3.9rem, 7.8vw, 8.3rem); font-weight: 400; line-height: .84; letter-spacing: -.06em;
    }
    h1 span { display: block; color: transparent; -webkit-text-stroke: 1px var(--paper); }
    .lede { max-width: 660px; margin: 0; color: var(--paper-soft); font-size: clamp(1.05rem, 1.45vw, 1.28rem); }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
    .button {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      min-height: 50px; padding: 0 21px; border: 1px solid var(--line-strong);
      color: var(--paper); font-size: .73rem; font-weight: 780; letter-spacing: .12em;
      text-transform: uppercase; text-decoration: none; transition: background .2s, border-color .2s, transform .2s;
    }
    .button:hover { border-color: var(--paper); transform: translateY(-2px); }
    .button.primary { border-color: var(--red); background: var(--red); color: #fff; }
    .button.primary:hover { background: var(--red-bright); border-color: var(--red-bright); }
    .button-icon { font-size: .86rem; }
    .identity-line { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 34px 0 0; color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
    .identity-line span { display: inline-flex; align-items: center; gap: 8px; }
    .identity-line span:not(:last-child)::after { content: ""; width: 4px; aspect-ratio: 1; margin-left: 10px; border-radius: 50%; background: var(--red); }
    .signature { margin: 28px 0 0; font-family: var(--serif); font-size: 1.02rem; font-style: italic; }
    .signature-ring {
      display: inline-block; width: 18px; aspect-ratio: 1; margin-left: 5px; vertical-align: -.16em;
      border: 3px solid var(--red); border-right-color: transparent; border-radius: 50%; transform: rotate(-26deg);
    }
    .hero-image { position: relative; min-height: 690px; overflow: hidden; background: #161616; }
    .hero-image::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(8, 8, 8, .24), transparent 24%), linear-gradient(0deg, rgba(8, 8, 8, .18), transparent 28%);
      pointer-events: none;
    }
    .hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
    .image-note {
      position: absolute; z-index: 2; right: 22px; bottom: 22px; margin: 0;
      color: rgba(255,255,255,.68); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
    }
    .scroll-cue {
      position: absolute; right: 32px; bottom: 34px; writing-mode: vertical-rl;
      color: var(--muted); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
    }
    .scroll-cue::after { content: ""; width: 1px; height: 42px; margin: 12px auto 0; display: block; background: var(--red); }

    .section { padding: clamp(84px, 10vw, 138px) 0; border-bottom: 1px solid var(--line); }
    .section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(34px, 7vw, 100px); align-items: end; }
    .kicker { margin: 0 0 13px; color: var(--red-bright); font-size: .7rem; font-weight: 820; letter-spacing: .2em; text-transform: uppercase; }
    h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 400; line-height: .95; letter-spacing: -.045em; }
    .section-intro { max-width: 680px; margin: 0; color: var(--paper-soft); font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 2.05rem); line-height: 1.3; }
    .section-intro strong { color: var(--red-bright); font-weight: 400; }

    .explorer { display: grid; grid-template-columns: minmax(210px, .52fr) minmax(0, 1.48fr); margin-top: 58px; border: 1px solid var(--line); background: var(--line); gap: 1px; box-shadow: var(--shadow); }
    .tab-list { display: flex; flex-direction: column; background: var(--ink); padding: 16px; }
    .tab {
      position: relative; display: grid; grid-template-columns: 35px 1fr auto; gap: 10px; align-items: center;
      width: 100%; min-height: 70px; padding: 13px 14px; border: 0; border-bottom: 1px solid var(--line);
      background: transparent; color: var(--muted); text-align: left; cursor: pointer;
      font: inherit; transition: color .2s, background .2s;
    }
    .tab:last-child { border-bottom: 0; }
    .tab:hover { color: var(--paper); background: rgba(255,255,255,.025); }
    .tab[aria-selected="true"] { color: var(--paper); background: var(--ink-soft); }
    .tab[aria-selected="true"]::before { content: ""; position: absolute; inset: 0 auto 0 -16px; width: 3px; background: var(--red); }
    .tab-number { color: var(--red-bright); font-size: .66rem; letter-spacing: .1em; }
    .tab-label { font-family: var(--serif); font-size: 1.22rem; }
    .tab-arrow { font-size: .9rem; opacity: .5; }
    .panel-wrap { min-height: 470px; background: var(--ink-soft); }
    .panel { padding: clamp(30px, 5vw, 66px); }
    .js .panel[hidden] { display: none; }
    .panel-kicker { margin: 0 0 10px; color: var(--muted); font-size: .67rem; letter-spacing: .15em; text-transform: uppercase; }
    .panel h3 { max-width: 720px; margin: 0 0 22px; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
    .panel-copy { max-width: 760px; margin: 0; color: var(--paper-soft); font-size: 1.02rem; }
    .fact-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); }
    .fact { min-height: 110px; padding: 20px; background: var(--ink); }
    .fact b { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }
    .fact span { color: var(--muted); font-size: .78rem; }
    .book-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
    .book-card { min-height: 160px; padding: 22px; border: 1px solid var(--line); text-decoration: none; transition: border-color .2s, transform .2s; }
    .book-card:hover { border-color: var(--red); transform: translateY(-3px); }
    .book-card small { color: var(--red-bright); font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; }
    .book-card h4 { margin: 22px 0 6px; font-family: var(--serif); font-size: 1.32rem; font-weight: 400; line-height: 1.15; }
    .book-card p { margin: 0; color: var(--muted); font-size: .78rem; }
    .text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--paper); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
    .text-link::after { content: "↗"; color: var(--red-bright); }
    .quote { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.28; }
    .quote strong { color: var(--red-bright); font-weight: 400; }
    .practice-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
    .practice-item { border-top: 1px solid var(--red); padding-top: 15px; }
    .practice-item b { display: block; font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
    .practice-item span { color: var(--muted); font-size: .78rem; }

    .connect { background: linear-gradient(135deg, #101010 0%, #080808 60%); }
    .connect-grid { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr); gap: clamp(40px, 8vw, 110px); align-items: start; }
    .contact-copy { max-width: 720px; margin: 26px 0 0; color: var(--paper-soft); }
    .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .contact-note { max-width: 680px; margin: 34px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
    .now-card { border: 1px solid var(--line); background: var(--ink); box-shadow: var(--shadow); }
    .now-top { padding: 26px; border-bottom: 1px solid var(--line); }
    .now-top small { color: var(--red-bright); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
    .now-top h3 { margin: 12px 0 8px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
    .now-top p { margin: 0; color: var(--muted); font-size: .82rem; }
    .now-list { margin: 0; padding: 0; list-style: none; }
    .now-list li { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 26px; border-bottom: 1px solid var(--line); font-size: .82rem; }
    .now-list li:last-child { border-bottom: 0; }
    .now-list span { color: var(--muted); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
    .now-list a { text-decoration: none; }
    .now-list a:hover { color: var(--red-bright); }

    footer { padding: 46px 0 max(46px, env(safe-area-inset-bottom)); color: var(--muted); }
    .foot { display: flex; justify-content: space-between; align-items: center; gap: 26px; font-size: .75rem; }
    .foot-signature { color: var(--paper); font-family: var(--serif); font-size: .92rem; }
    .hebrew { direction: rtl; }

    @media (max-width: 940px) {
      .hero { grid-template-columns: 1fr 1fr; }
      .hero-copy { padding-right: 38px; }
      .scroll-cue { display: none; }
      .connect-grid { grid-template-columns: 1fr; }
      .now-card { max-width: 620px; }
    }
    @media (max-width: 760px) {
      html { scroll-padding-top: 72px; }
      .shell { width: min(100% - 32px, 1200px); }
      .head-inner { min-height: 68px; }
      .menu-button { display: block; }
      .head-cta { display: none; }
      .nav-links {
        position: fixed; inset: 68px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0;
        padding: 28px 24px calc(28px + env(safe-area-inset-bottom));
        background: rgba(8,8,8,.98); visibility: hidden; opacity: 0; transform: translateY(-10px);
        transition: opacity .2s, transform .2s, visibility .2s;
      }
      .nav-links.open { visibility: visible; opacity: 1; transform: none; }
      .nav-links a { display: flex; align-items: center; min-height: 66px; padding: 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.45rem; letter-spacing: 0; text-transform: none; }
      .nav-links a::after { display: none; }
      .nav-links a.active { color: var(--red-bright); }
      .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 68px; }
      .hero-image { min-height: min(72svh, 650px); order: -1; }
      .hero-image img { object-position: 62% center; }
      .hero-copy { padding: 58px 16px 68px; }
      .hero-copy::before { display: none; }
      h1 { font-size: clamp(3.75rem, 18vw, 6.3rem); }
      .section-head { grid-template-columns: 1fr; align-items: start; }
      .explorer { grid-template-columns: 1fr; }
      .tab-list { overflow-x: auto; flex-direction: row; padding: 8px; scrollbar-width: thin; }
      .tab { flex: 0 0 auto; width: auto; min-height: 52px; grid-template-columns: auto 1fr; padding: 9px 14px; border: 0; }
      .tab[aria-selected="true"]::before { inset: auto 12px -8px; width: auto; height: 3px; }
      .tab-arrow { display: none; }
      .panel-wrap { min-height: 0; }
      .panel { padding: 36px 24px 42px; }
      .fact-row, .practice-list { grid-template-columns: 1fr; }
      .book-grid { grid-template-columns: 1fr; }
      .foot { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 420px) {
      .identity-line span:not(:last-child)::after { display: none; }
      .identity-line { flex-direction: column; gap: 6px; }
      .hero-image { min-height: 500px; }
      .button { width: 100%; }
      .section { padding: 72px 0; }
      .connect-grid { grid-template-columns: minmax(0, 1fr); }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    }
  
:root{--paper:#f5f5f5;--paper-soft:#d0d0d0} h1{line-height:1.02} .nav-links a,.eyebrow,.kicker,.button,.head-cta{font-size:.875rem} .page-head{padding:145px 0 65px;border-bottom:1px solid var(--line)} .page-head h1{font-size:clamp(3rem,7vw,6rem);max-width:1050px} .reading{max-width:760px;margin:0 auto;padding:50px 24px 100px;font-family:Georgia,serif;font-size:1.2rem;line-height:1.85} .reading h2{font-size:2rem;line-height:1.2;margin:2em 0 .8em} .reading p{margin:0 0 1.4em}.reading img{height:auto;margin:30px auto;max-height:650px}.reading iframe{display:none}.reading a{overflow-wrap:anywhere}.reading blockquote{border-left:3px solid var(--red);padding-left:24px;margin-left:0}.reading .notice{font-family:var(--sans);font-size:.9rem;border:1px solid var(--line);padding:20px;color:var(--muted)} .library{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-top:40px}.tile{padding:30px;border-top:1px solid var(--line);text-decoration:none;display:block}.tile:hover{border-color:var(--red)}.tile h3{font-family:var(--serif);font-weight:400;font-size:1.7rem;line-height:1.2;margin:12px 0}.tile p{color:var(--muted);font-size:1rem}.tile small{font-size:.875rem;color:var(--red-bright)}.feature{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}.feature blockquote{font:clamp(2rem,4vw,3.4rem)/1.2 var(--serif);margin:0;letter-spacing:-.03em}.feature h2{line-height:1.05}.social-links{display:flex;flex-wrap:wrap;gap:16px;margin:25px 0}.share-status{font-family:var(--sans);font-size:.875rem;min-height:1.4em}.index-nav{display:flex;flex-wrap:wrap;gap:20px}.index-nav a{font-size:1rem}.meta{font-family:var(--sans);font-size:.875rem;color:var(--muted)}.gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.gallery img{width:100%;height:auto}.gallery h3{font-family:var(--serif);font-weight:400;font-size:1.5rem}.poem{white-space:pre-line}.section-head h2{line-height:1.04}@media(max-width:850px){.library,.gallery{grid-template-columns:repeat(2,minmax(0,1fr))}.feature{grid-template-columns:1fr}}@media(max-width:600px){.library,.gallery{grid-template-columns:1fr}.page-head{padding-top:110px}.hero-image{min-height:380px;max-height:65svh}.hero-copy{padding-top:35px}.head-inner{gap:12px}.reading{font-size:1.1rem}.feature{gap:25px}}
@media(max-width:1100px) and (min-width:761px){.nav-links{gap:0}.nav-links a{padding:10px 6px;letter-spacing:.02em;font-size:.8rem}.nav-wrap{gap:8px}.head-cta{display:none}.head-inner{gap:12px}} @media(max-width:600px){.head-inner:has(.index-nav){flex-wrap:wrap;padding:12px 0;gap:8px}.index-nav{width:100%;justify-content:space-between;gap:10px}.index-nav a{font-size:.875rem}.page-head{padding-top:145px}}

/* Poetry collection */
.poem-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}.poem-card{display:block;text-decoration:none;border:1px solid var(--line);background:var(--ink-soft)}.poem-card img{width:100%;aspect-ratio:3/4;object-fit:cover;filter:grayscale(1)}.poem-card>div{padding:25px}.poem-card h2{font-size:1.8rem;line-height:1.15;margin:14px 0}.poem-card p{font-size:.95rem}.poem-card span{font-size:.8rem;color:var(--muted)}.poem-card:hover{border-color:var(--red)}.poem-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(30px,6vw,90px);padding-bottom:100px;align-items:start}.poem-layout figure{margin:0;position:sticky;top:110px}.poem-photo{width:100%;height:auto}.poem-layout figcaption{font-size:.78rem;color:var(--muted);margin-top:12px}.verse{font-family:var(--serif);white-space:pre-line;font-size:clamp(1.1rem,1.7vw,1.4rem);line-height:1.85}.hebrew-poem{border-top:1px solid var(--line);margin-top:45px;padding-top:24px}.hebrew-poem h2{font-size:1.5rem}.poem-signature{margin:32px 0}.poem-layout .button{margin-top:20px}.poem-layout a{overflow-wrap:anywhere}@media(max-width:900px){.poem-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.poem-grid,.poem-layout{grid-template-columns:1fr}.poem-layout figure{position:static}.poem-card img{aspect-ratio:4/5;object-fit:contain;background:#080808}}
