/* ─────────────────────────────────────────────────────────────
   Spanish Kosher Supply — "Reserva" design system
   Ground: bottle-green near-black. Accent: the gold of the oil.
   Reading surfaces: ivory. Rhythm: dark → ivory → dark.
   Type: DM Serif Display (display) + DM Sans (text).
   Hebrew: Frank Ruhl Libre (display) + Heebo (text).
   ───────────────────────────────────────────────────────────── */

:root {
  --g0: #15281D;            /* deepest green, hero / contact */
  --g1: #1B3226;            /* cards on dark */
  --g2: #23402F;            /* hover on dark */
  --g3: #10201A;            /* footer */
  --ivory:   #F1E9D6;       /* reading ground */
  --ivory-2: #F8F3E8;       /* raised surface on ivory */
  --ivory-3: #E7DDC6;       /* deeper band */
  --ink:   #0D1712;
  --ink-2: #4A5245;
  --ink-3: #7F877B;
  --cream:   #F1E9D6;
  --cream-2: rgba(241, 233, 214, .78);
  --cream-3: rgba(241, 233, 214, .55);
  --gold:   #D6B25A;
  --gold-2: #E4C878;        /* text on dark */
  --gold-3: #A8862F;        /* numerals on ivory */
  --line-d:  rgba(241, 233, 214, .14);
  --line-d2: rgba(241, 233, 214, .08);
  --line-l:  rgba(21, 40, 29, .14);
  --line-l2: rgba(21, 40, 29, .08);

  --font-display: "DM Serif Display", "Iowan Old Style", "Times New Roman", Georgia, serif;
  --font-sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 180ms;
  --t-med: 380ms;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1360px;
  --header-h: 76px;
  --radius: 14px;
}

html[lang="he"] {
  --font-display: "Frank Ruhl Libre", "David", "Times New Roman", serif;
  --font-sans: "Heebo", "Arial Hebrew", Arial, sans-serif;
}

/* Tone tokens: every component reads --fg/--line/--num, never a literal */
.dark, body {
  --fg: var(--cream); --fg-2: var(--cream-2); --fg-3: var(--cream-3);
  --line: var(--line-d); --line-2: var(--line-d2);
  --num: var(--gold-2); --surface: var(--g1); --eyebrow: var(--gold);
}
.light, .band {
  --fg: var(--ink); --fg-2: var(--ink-2); --fg-3: var(--ink-3);
  --line: var(--line-l); --line-2: var(--line-l2);
  --num: var(--gold-3); --surface: var(--ivory-2); --eyebrow: var(--ink-3);
  color: var(--ink);
}
.light { background: var(--ivory); }
.band { background: var(--ivory-3); }
.dark { background: var(--g0); color: var(--cream); }

/* ───────────── Reset & base ───────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; background: var(--g0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--g0);
  color: var(--cream);
  font: 400 1.0625rem/1.6 var(--font-sans);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html.menu-open, html.menu-open body { overflow: hidden; }
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ol, ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }
::selection { background: var(--gold); color: var(--g0); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; inset-inline-start: 16px; top: -60px; background: var(--gold); color: var(--g0); padding: 10px 14px; border-radius: 8px; z-index: 200; }
.skip:focus { top: 12px; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ───────────── Typography ───────────── */
.h1, .h2, .h3, .hero-title { font-family: var(--font-display); font-weight: 400; text-wrap: balance; }
.hero-title { font-size: clamp(2.6rem, 6.2vw, 6rem); line-height: 1; letter-spacing: -.01em; }
.h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); line-height: .98; letter-spacing: -.012em; }
.h2 { font-size: clamp(2.2rem, 4.4vw, 4.1rem); line-height: 1.02; letter-spacing: -.01em; }
.h3 { font-size: clamp(1.6rem, 2.3vw, 2.2rem); line-height: 1.12; letter-spacing: -.005em; }
.h4 { font: 600 1.125rem/1.3 var(--font-sans); letter-spacing: -.005em; }

html[lang="he"] .hero-title, html[lang="he"] .h1, html[lang="he"] .h2, html[lang="he"] .h3 { letter-spacing: 0; font-weight: 500; }
html[lang="he"] .hero-title { line-height: 1.12; font-size: clamp(2.5rem, 5.6vw, 5.4rem); }
html[lang="he"] .h1 { line-height: 1.12; }
html[lang="he"] .h2 { line-height: 1.16; }
html[lang="he"] .h3 { line-height: 1.24; }

p { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.35vw, 1.3rem); line-height: 1.5; color: var(--fg-2); max-width: 46ch; }
.lead-xl { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.95rem); line-height: 1.3; color: var(--fg); max-width: 34ch; }
html[lang="he"] .lead-xl { line-height: 1.4; }
.small { font-size: .9375rem; color: var(--fg-3); line-height: 1.55; }

.eyebrow, .label {
  font: 600 .7rem/1.2 var(--font-sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--eyebrow);
}
.label { color: var(--fg-3); }
html[lang="he"] .eyebrow, html[lang="he"] .label { letter-spacing: .04em; font-size: .78rem; }
.eyebrow { display: flex; align-items: center; gap: .75rem; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; flex: none; }
.hero-eyebrow::before { display: none; }

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; display: inline-block; }
.hero-eyebrow .dot { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(214, 178, 90, .45); } 55% { box-shadow: 0 0 0 7px rgba(214, 178, 90, 0); } }

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: 1rem 1.5rem; border-radius: 999px;
  font: 600 .9375rem/1 var(--font-sans); letter-spacing: .01em;
  border: 1px solid transparent;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: .7rem 1.05rem; font-size: .8125rem; }
.btn-solid { background: var(--gold); color: var(--g0); border-color: var(--gold); }
.btn-solid:hover { background: var(--gold-2); border-color: var(--gold-2); }
.light .btn-solid, .band .btn-solid { background: var(--g0); color: var(--ivory); border-color: var(--g0); }
.light .btn-solid:hover, .band .btn-solid:hover { background: var(--g2); border-color: var(--g2); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--fg); }
.btn .arrow, .btn .arrow-down { width: 17px; height: 17px; transition: transform var(--t-med) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn:hover .arrow-down { transform: translateY(3px); }
[dir="rtl"] .arrow { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .arrow { transform: scaleX(-1) translateX(3px); }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ───────────── Header ───────────── */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--cream);
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(21, 40, 29, .84);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(241, 233, 214, .1);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; color: inherit; }
.brand-mark { width: 30px; height: 30px; color: var(--gold); }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; white-space: nowrap; }
html[lang="he"] .brand-name { font-family: "DM Serif Display", Georgia, serif; }

.nav { display: none; gap: 2.4rem; }
.nav a, .footer-nav a {
  font: 500 .8125rem/1 var(--font-sans); letter-spacing: .03em; color: var(--cream-2);
  position: relative; padding-block: .4rem;
  transition: color var(--t-fast) var(--ease);
}
.nav a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
[dir="rtl"] .nav a::after { transform-origin: right; }
.nav a:hover { color: var(--cream); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-cta { display: none; }

.lang { display: inline-flex; align-items: center; gap: 0; }
.lang button {
  font: 600 .72rem/1 var(--font-sans); letter-spacing: .1em;
  padding: .5rem .1rem; color: var(--fg-3);
  transition: color var(--t-fast) var(--ease);
}
.lang button:not(:first-child)::before { content: "·"; margin-inline: .55rem; color: var(--fg-3); opacity: .5; }
.lang button:hover { color: var(--fg); }
.lang button[aria-pressed="true"] { color: var(--fg); font-weight: 700; }

.menu-btn { display: inline-flex; align-items: center; gap: .6rem; padding: .5rem 0 .5rem .5rem; }
.menu-btn-label { font: 500 .8125rem/1 var(--font-sans); letter-spacing: .03em; }
.menu-btn-icon { width: 22px; height: 12px; position: relative; display: block; }
.menu-btn-icon i { position: absolute; inset-inline: 0; height: 1.5px; background: currentColor; transition: transform var(--t-med) var(--ease), top var(--t-med) var(--ease); }
.menu-btn-icon i:first-child { top: 0; }
.menu-btn-icon i:last-child { top: 10px; }
html.menu-open .menu-btn-icon i:first-child { top: 5px; transform: rotate(45deg); }
html.menu-open .menu-btn-icon i:last-child { top: 5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--g0); color: var(--cream);
  padding-top: var(--header-h);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility 0s linear var(--t-med);
}
html.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-menu-inner { height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding-block: 2rem 2.5rem; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .2rem; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(2.2rem, 9vw, 3.4rem); line-height: 1.15;
  padding-block: .35rem; border-bottom: 1px solid var(--line-d2);
}
.mobile-menu-foot { display: flex; }
.mobile-menu-foot .btn { width: 100%; justify-content: center; padding-block: 1.15rem; }

@media (max-width: 540px) {
  .header-inner { gap: 1rem; }
  .header-actions { gap: .7rem; }
  .brand { gap: .5rem; }
  .brand-mark { width: 26px; height: 26px; }
  .brand-name { font-size: 1.02rem; }
  .lang button { font-size: .66rem; letter-spacing: .06em; }
  .lang button:not(:first-child)::before { margin-inline: .4rem; }
  .menu-btn-label { display: none; }
  .menu-btn { padding-inline-start: .25rem; }
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .mobile-menu { display: none; }
}
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* ───────────── Hero ───────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(620px, 94vh, 980px);
  display: flex; align-items: flex-end;
  padding-top: var(--header-h);
  background: var(--g0);
}
.hero-bg { position: absolute; inset: 0; opacity: 0; animation: bgIn 1.6s var(--ease-out) .1s forwards; }
@keyframes bgIn { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }
.hero-bg picture, .hero-bg img { width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: 62% 50%; transform: scale(1.08); will-change: transform; filter: saturate(.94); }
.hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(21, 40, 29, .72) 0%, rgba(21, 40, 29, 0) 24%),
    linear-gradient(90deg, rgba(21, 40, 29, .9) 0%, rgba(21, 40, 29, .66) 36%, rgba(21, 40, 29, .14) 70%, rgba(21, 40, 29, .04) 100%),
    linear-gradient(0deg, rgba(21, 40, 29, .92) 0%, rgba(21, 40, 29, .28) 42%, rgba(21, 40, 29, 0) 66%);
}
[dir="rtl"] .hero-veil {
  background:
    linear-gradient(180deg, rgba(21, 40, 29, .72) 0%, rgba(21, 40, 29, 0) 24%),
    linear-gradient(270deg, rgba(21, 40, 29, .9) 0%, rgba(21, 40, 29, .66) 36%, rgba(21, 40, 29, .14) 70%, rgba(21, 40, 29, .04) 100%),
    linear-gradient(0deg, rgba(21, 40, 29, .92) 0%, rgba(21, 40, 29, .28) 42%, rgba(21, 40, 29, 0) 66%);
}
[dir="rtl"] .hero-bg img { object-position: 38% 50%; }
.hero-rule {
  position: absolute; z-index: 2; top: calc(var(--header-h) + 22px); left: 50%; transform: translateX(-50%);
  width: min(100% - 2 * var(--gutter), var(--max) - 2 * var(--gutter)); height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(214, 178, 90, .08) 100%);
}
[dir="rtl"] .hero-rule { background: linear-gradient(270deg, var(--gold) 0%, rgba(214, 178, 90, .08) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: clamp(120px, 18vh, 200px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero-text { max-width: 760px; display: flex; flex-direction: column; gap: clamp(1.2rem, 2vw, 1.6rem); }
.hero-eyebrow { color: var(--gold); }
.hero-title { color: var(--cream); }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-title .line > span { display: inline-block; transform: translateY(108%); animation: rise 1s var(--ease-out) forwards; }
.hero-title .line:nth-child(1) > span { animation-delay: .12s; }
.hero-title .line:nth-child(2) > span { animation-delay: .22s; }
.hero-title .line:nth-child(3) > span { animation-delay: .32s; }
.hero-title .l2 { font-style: italic; color: var(--gold-2); }
html[lang="he"] .hero-title .l2 { font-style: normal; }
@keyframes rise { to { transform: translateY(0); } }
.hero .lead { color: var(--cream-2); max-width: 48ch; font-size: clamp(1.02rem, 1.15vw, 1.15rem); }
.fade-in { opacity: 0; transform: translateY(12px); animation: fadeUp .9s var(--ease-out) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero-caption {
  position: absolute; z-index: 2; inset-inline-end: var(--gutter); bottom: clamp(48px, 7vw, 96px);
  display: none; align-items: center; gap: .7rem;
  color: var(--cream-2); font: 600 .7rem/1.2 var(--font-sans); letter-spacing: .16em; text-transform: uppercase;
  max-width: 260px; text-align: end;
}
html[lang="he"] .hero-caption { letter-spacing: .03em; font-size: .8rem; }
@media (min-width: 1100px) { .hero-caption { display: flex; } }


/* Clocks band */
.clocks-band { background: var(--g0); border-top: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d2); }
.clocks { display: grid; grid-template-columns: 1fr; }
.clock { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 1rem; align-items: baseline; padding: 1.2rem 0; border-bottom: 1px solid var(--line-d2); }
.clock:last-child { border-bottom: 0; }
.clock-city { grid-row: 1; font: 600 .7rem/1.2 var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--cream-3); }
html[lang="he"] .clock-city { letter-spacing: .04em; font-size: .8rem; }
.clock-time { grid-row: 1; justify-self: end; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; font-variant-numeric: tabular-nums; color: var(--gold-2); }
.clock-role { grid-column: 1 / -1; font-size: .875rem; color: var(--cream-3); margin-top: .35rem; }
@media (min-width: 720px) {
  .clocks { grid-template-columns: repeat(3, 1fr); }
  .clock { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: .5rem; padding: 1.8rem clamp(1rem, 2.4vw, 2rem); border-bottom: 0; border-inline-start: 1px solid var(--line-d2); }
  .clock:first-child { border-inline-start: 0; padding-inline-start: 0; }
  .clock-time { grid-row: 2; justify-self: start; font-size: clamp(2.6rem, 3.6vw, 3.6rem); }
  .clock-role { grid-column: 1; margin-top: .1rem; }
}

/* ───────────── Sections ───────────── */
.section { padding-block: clamp(84px, 11vw, 168px); }
.section-head { display: flex; flex-direction: column; gap: 1.2rem; max-width: 60ch; margin-bottom: clamp(2.6rem, 5vw, 4.5rem); }
.section-head .lead { margin-top: .4rem; }
.section-head-row { max-width: none; flex-direction: column; }
.section-head-row > div { display: flex; flex-direction: column; gap: 1.2rem; }
.note { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; color: var(--fg-2); max-width: 36ch; }
.note .dot { background: var(--gold-3); }
@media (min-width: 900px) {
  .section-head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 3rem; }
  .note { padding-bottom: .6rem; text-align: end; }
  .note .dot { order: 2; }
}

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem); }
.col-head, .col-body, .col-wide, .col-narrow { grid-column: 1 / -1; }
.col-head { display: flex; flex-direction: column; gap: 1.2rem; }
@media (min-width: 900px) {
  .col-head { grid-column: 1 / 5; position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
  .col-body { grid-column: 6 / 13; }
  .col-wide { grid-column: 1 / 8; }
  .col-narrow { grid-column: 9 / 13; }
}

/* What we do */
.promise { margin-top: 1.6rem; font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.7rem); color: var(--gold-3); }
.pillars { margin-top: clamp(2.6rem, 4.5vw, 4rem); border-top: 1px solid var(--line); }
.pillar { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding-block: 1.6rem; border-bottom: 1px solid var(--line); }
.pillar-num { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--num); padding-top: .15rem; }
html[lang="he"] .pillar-num { font-style: normal; }
.pillar .h4 { margin-bottom: .45rem; }
.pillar p { color: var(--fg-2); max-width: 52ch; }
@media (min-width: 720px) { .pillar { grid-template-columns: 4.5rem 1fr; padding-block: 2rem; } }

/* Markets */
.route { margin: clamp(-1rem, -1vw, -.4rem) auto clamp(2rem, 4vw, 3.5rem); max-width: 900px; }
.route svg { width: 100%; height: auto; overflow: visible; }
.route-line { fill: none; stroke: rgba(241, 233, 214, .22); stroke-width: 1; stroke-dasharray: 3 6; }
.route-track { fill: none; stroke: transparent; }
.route-mover { fill: var(--gold-2); }
.route-node circle { fill: var(--cream); }
.route-node .halo { fill: none; stroke: var(--gold); stroke-width: 1; opacity: .7; animation: halo 3.2s ease-out infinite; transform-origin: 450px 170px; transform-box: view-box; }
.route-node-origin circle:not(.halo) { fill: var(--gold); }
.route-node text { fill: var(--cream-2); font: 600 12.5px var(--font-sans); letter-spacing: .14em; text-transform: uppercase; }
html[lang="he"] .route-node text { letter-spacing: .02em; font-size: 14px; }
@keyframes halo { 0% { transform: scale(.7); opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }
@media (max-width: 700px) {
  .route { margin-bottom: 1.6rem; }
  .route-node text { font-size: 30px; letter-spacing: .1em; }
  html[lang="he"] .route-node text { font-size: 34px; }
  .route-node circle { r: 10; }
  .route-node .halo { r: 22; }
  .route-node-origin circle:not(.halo) { r: 13; }
  .route-mover { r: 7; }
  .route-line { stroke-width: 2; stroke-dasharray: 6 12; }
}

.markets { display: grid; grid-template-columns: 1fr; gap: 16px; }
.market {
  background: var(--g1); border: 1px solid rgba(214, 178, 90, .3); border-radius: var(--radius);
  padding: clamp(1.8rem, 3.2vw, 3rem); display: flex; flex-direction: column; gap: 1.2rem;
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.market:hover { background: var(--g2); border-color: rgba(214, 178, 90, .55); }
.market-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.tag { font: 600 .7rem/1 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); border: 1px solid rgba(228, 200, 120, .35); border-radius: 999px; padding: .5rem .8rem; white-space: nowrap; }
html[lang="he"] .tag { letter-spacing: .03em; font-size: .78rem; }
.market-who { font-size: 1.05rem; color: var(--cream-2); max-width: 40ch; }
@media (min-width: 800px) { .markets { grid-template-columns: 1fr 1fr; } }

/* Products */
.products { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.product {
  position: relative; background: var(--ivory); color: var(--ink); padding: clamp(1.8rem, 3.4vw, 3rem);
  min-height: 300px; display: flex; flex-direction: column; gap: 1.6rem;
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.product-num { font-family: var(--font-display); font-style: italic; font-size: clamp(2.6rem, 4.4vw, 4.2rem); line-height: 1; color: var(--gold-3); transition: color var(--t-med) var(--ease); }
html[lang="he"] .product-num { font-style: normal; }
.product-body { display: flex; flex-direction: column; gap: .75rem; max-width: 40ch; }
.product-body p { color: var(--ink-2); transition: color var(--t-med) var(--ease); }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-foot .label { transition: color var(--t-med) var(--ease); }
.product-foot .arrow { width: 20px; height: 20px; color: var(--ink-3); transition: transform var(--t-med) var(--ease), color var(--t-med) var(--ease); }
.product:hover { background: var(--g0); color: var(--cream); }
.product:hover .product-num { color: var(--gold-2); }
.product:hover .product-body p { color: var(--cream-2); }
.product:hover .product-foot .label { color: var(--cream-3); }
.product:hover .product-foot .arrow { transform: translateX(4px); color: var(--gold-2); }
[dir="rtl"] .product:hover .product-foot .arrow { transform: scaleX(-1) translateX(4px); }
@media (min-width: 800px) { .products { grid-template-columns: 1fr 1fr; } .product { min-height: 360px; } }

/* Process */
.steps { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 3vw, 2.8rem) clamp(1.5rem, 3vw, 3rem); }
.step { position: relative; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .6rem; }
.step::before { content: ""; position: absolute; top: -1px; inset-inline-start: 0; height: 1px; width: 0; background: var(--gold-3); transition: width 1.1s var(--ease); transition-delay: var(--d, 0s); }
.is-in .step::before { width: 100%; }
.step-num { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--num); }
html[lang="he"] .step-num { font-style: normal; }
.step p { color: var(--fg-2); font-size: 1rem; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* People */
.people { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 4rem); }
.person { display: flex; flex-direction: column; gap: .9rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.person-name { margin-top: .2rem; }
.person > p:not(.label) { color: var(--fg-2); max-width: 44ch; }
.links { display: flex; flex-direction: column; gap: .4rem; margin-top: .6rem; }
.links a { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: .8rem; font-size: 1rem; padding-block: .25rem; }
.links a > span { font: 600 .7rem/1.2 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); min-width: 6.5rem; }
html[lang="he"] .links a > span { letter-spacing: .03em; font-size: .78rem; }
.links a bdi { border-bottom: 1px solid var(--line); transition: border-color var(--t-fast) var(--ease); }
.links a:hover bdi { border-color: var(--gold-3); }
@media (min-width: 800px) { .people { grid-template-columns: 1fr 1fr; } }

/* Contact */
.contact .col-wide { display: flex; flex-direction: column; gap: 1.6rem; }
.contact .col-wide .lead { margin-top: .4rem; }
.contact .cta-row { margin-top: .6rem; }
.contact-side { display: flex; flex-direction: column; gap: .7rem; padding-top: 1.4rem; border-top: 1px solid var(--line); align-self: end; }
.contact-side a { font-size: 1rem; color: var(--cream-2); transition: color var(--t-fast) var(--ease); overflow-wrap: anywhere; }
.contact-side a:hover { color: var(--gold-2); }
.contact-side .label { margin-bottom: .4rem; }

/* ───────────── Footer ───────────── */
.site-footer { background: var(--g3); color: var(--cream); padding-block: clamp(3rem, 6vw, 5rem) 2rem; border-top: 1px solid var(--line-d2); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-tag { max-width: 40ch; color: var(--cream-2); font-size: .95rem; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a:hover { color: var(--cream); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
.footer-contact a { font-size: .95rem; color: var(--cream-2); border-bottom: 1px solid transparent; transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.footer-contact a:hover { color: var(--gold-2); border-color: var(--gold-2); }
.footer-contact .lang { margin-top: .6rem; }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.4rem; border-top: 1px solid var(--line-d2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .8rem; color: var(--cream-3); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }

/* ───────────── Reveal on scroll ───────────── */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); transition-delay: var(--d, 0s); }
html.js .reveal.is-in, html.js .is-in > .reveal, html.js .is-in .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-in, .hero-bg, .hero-title .line > span { opacity: 1; transform: none; animation: none; transition: none; }
  .hero-eyebrow .dot, .route-node .halo { animation: none; }
  .route-mover { display: none; }
  .step::before { transition: none; }
  .hero-bg img { transform: none; }
}
