/* =================================================================
   ARISTO CAFFE — Café site
   Hand-written CSS. No framework runtime. European salon look:
   deep bottle green, cream serif, bronze & brass, gilded hairlines.
   ================================================================= */

/* ---- Design tokens ------------------------------------------------ */
:root {
  /* The salon — deep greens from the café's own walls */
  --forest:     #16221B;   /* page background                 */
  --forest-2:   #1D2B22;   /* raised panel                    */
  --forest-3:   #24352A;   /* higher panel / hover            */

  /* Cream & parchment (from the printed menu) */
  --cream:      #F0E9D6;   /* primary text                    */
  --cream-dim:  #C6BDA4;   /* secondary text                  */
  --cream-faint:#8F8871;   /* muted text                      */
  --parchment:  #FCFBF7;   /* the menu card face              */
  --parch-2:    #F4F1E6;

  /* Bronze & brass (from the café's lamps and frames) */
  --bronze:     #9A6A3A;   /* main accent                     */
  --bronze-2:   #B98B54;   /* brighter bronze                 */
  --brass:      #D9C08A;   /* highlight / champagne brass     */
  --olive:      #6F7257;   /* menu-card olive                 */
  --sage:       #A7AA94;   /* menu-card sage                  */

  /* Ink for on-parchment text (menu card) */
  --ink:        #33312B;
  --ink-2:      #3C3A33;
  --muted:      #9A9483;
  --dots:       #C2BBA8;

  --line:        rgba(240,233,214,.14);
  --line-strong: rgba(240,233,214,.30);
  --line-ink:    rgba(51,49,43,.16);

  /* Type — Cormorant covers Latin, Frank Ruhl Libre covers Hebrew */
  --font-display: "Cormorant Garamond", "Frank Ruhl Libre", Georgia, serif;
  --font-body:    "Heebo", "Inter", system-ui, sans-serif;

  --shadow: 0 30px 60px -30px rgba(0,0,0,.65);
  --shadow-sm: 0 16px 34px -20px rgba(0,0,0,.55);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: 320ms;

  --maxw: 1240px;
  --gutter: clamp(18px, 5vw, 64px);
}

/* ---- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--forest);
  color: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: clip;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--bronze-2); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Language visibility */
html[lang="en"] .lang-he { display: none !important; }
html[lang="he"] .lang-en { display: none !important; }

/* Vintage film grain — static SVG noise, zero JS */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 250; pointer-events: none;
  opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Type scale --------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--brass);
}
html[lang="he"] .eyebrow { letter-spacing: .14em; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .01em;
}

/* Thin gilded rule with a centered diamond */
.rule {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--brass); font-size: .7rem;
}
.rule::before, .rule::after {
  content: ""; height: 1px; width: min(120px, 20vw);
  background: linear-gradient(90deg, transparent, rgba(217,192,138,.55));
}
.rule::after { background: linear-gradient(90deg, rgba(217,192,138,.55), transparent); }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-block-end: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(22,34,27,.88);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-block-end-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; display: block; }
.brand__word {
  font-family: var(--font-display); font-weight: 500; font-size: 1.06rem;
  letter-spacing: .32em; text-transform: uppercase; color: var(--cream);
  direction: ltr; white-space: nowrap;
}
@media (max-width: 480px) { .brand__word { display: none; } }

.nav__links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
.nav__links a {
  font-size: .9rem; font-weight: 500; letter-spacing: .04em;
  position: relative; padding: 6px 2px; color: var(--cream-dim);
  transition: color 200ms var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; inset-inline: 0; inset-block-end: 0;
  height: 1px; background: var(--brass); transform: scaleX(0);
  transform-origin: inset-inline-start; transition: transform 260ms var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex; border: 1px solid var(--line-strong); border-radius: 999px;
  overflow: hidden; font-size: .76rem; font-weight: 600; letter-spacing: .04em;
}
.lang-toggle button { padding: 7px 12px; color: var(--cream-dim); transition: background 200ms, color 200ms; }
.lang-toggle button[aria-pressed="true"] { background: var(--bronze); color: var(--parchment); }

/* ---- Buttons: gilded restraint ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7ch;
  font-weight: 500; letter-spacing: .06em; font-size: .9rem;
  padding: 15px 30px; border-radius: 4px;
  background: linear-gradient(160deg, var(--bronze-2), var(--bronze) 75%);
  color: var(--parchment) !important;
  border: 1px solid rgba(217,192,138,.35);
  box-shadow: 0 16px 34px -18px rgba(154,106,58,.7);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), filter 220ms;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -20px rgba(154,106,58,.85); filter: brightness(1.07); }
.btn:active { transform: none; }
.btn--ghost {
  background: transparent; color: var(--cream) !important;
  border-color: var(--line-strong); box-shadow: none; filter: none;
}
.btn--ghost:hover { background: rgba(240,233,214,.06); border-color: var(--brass); box-shadow: none; filter: none; }
.btn--lg { padding: 18px 38px; font-size: .96rem; }

/* WhatsApp button keeps its identity, muted to fit the salon */
.btn--wa { background: linear-gradient(160deg, #4FA463, #3D8A50 75%); border-color: rgba(255,255,255,.2); }

.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--cream);
  transition: transform 260ms var(--ease), opacity 200ms;
}
.nav__burger span { position: relative; }
.nav__burger span::before { position: absolute; inset-block-start: -7px; inset-inline-start: 0; }
.nav__burger span::after  { position: absolute; inset-block-start: 7px;  inset-inline-start: 0; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(7px) rotate(45deg); background: var(--cream); }
body.menu-open .nav__burger span::after  { transform: translateY(-7px) rotate(-45deg); background: var(--cream); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--forest-2);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform 420ms var(--ease-out);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 8.5vw, 3rem); line-height: 1.2; color: var(--cream);
  border-block-end: 1px solid var(--line); padding-block: 14px;
  transition: color 200ms, padding-inline-start 260ms var(--ease);
}
.mobile-menu a:hover { color: var(--brass); padding-inline-start: 12px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

/* =================================================================
   HERO — the salon at night
   ================================================================= */
.hero {
  position: relative; min-height: min(94svh, 820px); display: flex;
  padding-block: 100px 44px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url(../assets/img/hero.jpg);
  background-size: cover; background-position: center 60%;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(13,20,16,.82), rgba(13,20,16,.55) 45%, rgba(13,20,16,.92)),
    rgba(22,34,27,.35);
}
.hero__inner {
  position: relative; z-index: 1; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: clamp(12px, 2vh, 22px);
}
.hero__seal { width: min(120px, 26vw); height: auto; opacity: .95;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)); }
.hero__word {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 6.4vw, 4.6rem); letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream); direction: ltr; line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
  padding-inline-start: .3em; /* optically recenter the tracking */
}
.hero__word .thin { color: var(--brass); }
.hero__title {
  font-size: clamp(1.35rem, 3.2vw, 2.3rem);
  font-weight: 500;
  color: var(--cream-dim);
  white-space: nowrap;
  text-shadow: 0 3px 20px rgba(0,0,0,.45);
}
@media (max-width: 640px) { .hero__title { white-space: normal; } }
.hero__lead {
  color: var(--cream-dim); font-size: clamp(.98rem, 1.3vw, 1.1rem);
  max-width: 54ch; text-wrap: balance;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-block-start: 10px; }

.hero__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  border-block-start: 1px solid var(--line);
  padding-block-start: clamp(12px, 1.6vh, 18px); margin-block-start: clamp(14px, 2.5vh, 26px);
  width: 100%;
  font-size: .86rem; color: var(--cream-dim);
}
.hero__bottom .ltr { direction: ltr; unicode-bidi: embed; }
.hero__bottom a:hover { color: var(--brass); }

/* Entrance */
.hero__seal, .hero__word, .hero__eyebrow, .hero__title, .hero__lead, .hero__cta, .hero__bottom { opacity: 0; }
.hero.in .hero__seal    { animation: heroFadeUp .8s var(--ease-out) .05s forwards; }
.hero.in .hero__word    { animation: heroFadeUp .8s var(--ease-out) .2s forwards; }
.hero.in .hero__eyebrow { animation: heroFadeUp .7s var(--ease-out) .35s forwards; }
.hero.in .hero__title   { animation: heroFadeUp .8s var(--ease-out) .45s forwards; }
.hero.in .hero__lead    { animation: heroFadeUp .7s var(--ease-out) .6s forwards; }
.hero.in .hero__cta     { animation: heroFadeUp .7s var(--ease-out) .75s forwards; }
.hero.in .hero__bottom  { animation: heroFadeUp .7s var(--ease-out) .9s forwards; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* =================================================================
   MARQUEE — brass whisper
   ================================================================= */
.marquee {
  border-block: 1px solid var(--line); background: var(--forest-2);
  overflow: hidden; padding-block: 14px; white-space: nowrap; color: var(--brass);
}
.marquee__track { display: inline-flex; gap: 0; will-change: transform; animation: scroll 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1rem, 1.9vw, 1.3rem); letter-spacing: .08em;
  padding-inline: 30px; display: inline-flex; align-items: center; gap: 30px;
}
.marquee__track span::after { content: "✦"; font-style: normal; color: rgba(217,192,138,.5); font-size: .55em; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee__track { animation-direction: reverse; }

/* =================================================================
   SECTION SCAFFOLD
   ================================================================= */
.section { padding-block: clamp(44px, 6vw, 80px); position: relative; }
.section__head { text-align: center; margin-block-end: clamp(24px, 3.5vw, 40px); }
.section__title { font-size: clamp(1.9rem, 4.6vw, 3.3rem); color: var(--cream); margin-block: 10px 6px; }
.section__title .accent { color: var(--brass); }
.section__sub { color: var(--cream-dim); max-width: 60ch; margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay] { transition-delay: calc(var(--d, 0) * 1ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
  .hero__seal, .hero__word, .hero__eyebrow, .hero__title, .hero__lead, .hero__cta, .hero__bottom { opacity: 1 !important; transform: none !important; animation: none !important; }
}
html.a11y-no-motion .hero__seal, html.a11y-no-motion .hero__word, html.a11y-no-motion .hero__eyebrow,
html.a11y-no-motion .hero__title, html.a11y-no-motion .hero__lead, html.a11y-no-motion .hero__cta,
html.a11y-no-motion .hero__bottom { opacity: 1 !important; transform: none !important; animation: none !important; }

/* =================================================================
   ABOUT — the salon story
   ================================================================= */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } }
.about__body { text-align: start; }
.about__body .section__title { text-align: start; }
.about__body p { color: var(--cream-dim); margin-block-start: 16px; max-width: 54ch; }
.about__body p strong { color: var(--cream); font-weight: 600; }
.about__sign { margin-block-start: 22px; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--brass); }
.about__photo {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.about__photo::after { /* inner gilded frame */
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(217,192,138,.35);
  border-radius: 3px; pointer-events: none;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }

/* =================================================================
   MENU — the parchment card on the dark table
   ================================================================= */
.menu { background: var(--forest-2); border-block: 1px solid var(--line); }
.menu__card {
  position: relative; max-width: 940px; margin-inline: auto;
  background: var(--parchment);
  border: 1px solid #C7C8B6;
  padding: clamp(34px, 5vw, 54px) clamp(20px, 4vw, 46px) clamp(26px, 4vw, 40px);
  overflow: hidden; color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 3px;
}
.menu__leaf { position: absolute; width: 150px; height: 150px; opacity: .5; pointer-events: none; }
.menu__head { text-align: center; margin: 0 0 34px; }
.menu__word {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 3.5rem); letter-spacing: 12px; color: var(--ink-2); line-height: 1;
  padding-inline-start: 12px;
}
.menu__sub { font-family: "Frank Ruhl Libre", serif; font-size: 1.2rem; color: var(--olive); letter-spacing: 8px; margin-top: 8px; padding-inline-start: 8px; }
.menu__cols { column-count: 2; column-gap: 52px; }
@media (max-width: 640px) { .menu__cols { column-count: 1; } }

.menu-sec { break-inside: avoid; margin: 0 0 28px; }
.menu-sec__t {
  font-family: "Cormorant Garamond", serif; text-transform: uppercase;
  letter-spacing: 6px; font-size: 1.25rem; color: var(--olive); text-align: center;
  margin: 0 0 14px; font-weight: 600;
}
.menu-item { display: flex; align-items: flex-end; gap: 9px; margin: 0 0 10px; }
.menu-item__nm { font-family: "Frank Ruhl Libre", serif; font-size: 1.06rem; color: var(--ink); transition: color .25s; }
.menu-item__dots { flex: 1; border-bottom: 1.5px dotted var(--dots); transform: translateY(-5px); min-width: 16px; }
.menu-item__pr { font-family: var(--font-body); font-size: .95rem; color: var(--ink); transition: color .25s, transform .25s; white-space: nowrap; direction: ltr; }
.menu-item:hover .menu-item__nm, .menu-item:hover .menu-item__pr { color: var(--bronze); }
.menu-item:hover .menu-item__pr { transform: scale(1.08); }
.menu-desc { font-family: var(--font-body); font-weight: 300; font-size: .8rem; color: var(--muted); margin: -5px 0 10px; }
.menu__foot {
  font-family: "Frank Ruhl Libre", serif; font-style: italic; font-size: .86rem;
  color: #8A8576; text-align: center; margin-top: 18px;
}

/* =================================================================
   GALLERY — framed prints in the dark
   ================================================================= */
.gallery { columns: 3; column-gap: clamp(14px, 1.6vw, 22px); }
@media (max-width: 1000px) { .gallery { columns: 2; } }
@media (max-width: 560px)  { .gallery { columns: 1; } }

.card {
  break-inside: avoid; margin-block-end: clamp(14px, 1.6vw, 22px);
  position: relative; border-radius: 6px; overflow: hidden;
  background: var(--forest-2); cursor: zoom-in; display: block; width: 100%; text-align: start;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(217,192,138,.45); }
.card__media { position: relative; aspect-ratio: var(--ar, 3/2); background-size: cover; background-position: center; }
.card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .6s var(--ease), transform 600ms var(--ease-out);
}
.card__media img.loaded { opacity: 1; }
.card:hover .card__media img { transform: scale(1.045); }
.card__corner {
  position: absolute; inset-block-start: 12px; inset-inline-end: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(22,34,27,.8); color: var(--brass); border: 1px solid rgba(217,192,138,.5);
  opacity: 0; transform: scale(.5); transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
  pointer-events: none;
}
.card:hover .card__corner { opacity: 1; transform: scale(1); }

/* =================================================================
   VISIT — hours · map · contact
   ================================================================= */
.visit { background: var(--forest-2); border-block: 1px solid var(--line); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .visit__grid { grid-template-columns: 1fr; } }
.visit__aside .section__title { text-align: start; }

.hours { margin-block-start: 22px; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.hours__row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 16px; font-size: .95rem;
  border-block-end: 1px solid var(--line);
}
.hours__row:last-child { border-block-end: none; }
.hours__row:nth-child(odd) { background: rgba(240,233,214,.03); }
.hours__row .d { color: var(--cream-dim); }
.hours__row .h { color: var(--cream); direction: ltr; unicode-bidi: embed; font-variant-numeric: tabular-nums; }
.hours__row.today .d, .hours__row.today .h { color: var(--brass); font-weight: 600; }

.visit__meta { margin-block-start: 22px; display: grid; gap: 12px; }
.visit__meta > div { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--cream-dim); }
.visit__meta svg { flex: none; color: var(--bronze-2); margin-block-start: 3px; }
.visit__meta a[href^="tel"] { direction: ltr; unicode-bidi: embed; }
.visit__meta a:hover { color: var(--brass); }
.visit__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-block-start: 24px; }

.map__frame {
  border-radius: 6px; overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: var(--shadow); aspect-ratio: 4/3.4; background: var(--forest-3);
}
.map__frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.8) sepia(.08) brightness(.94); }
.map__links { display: flex; gap: 18px; margin-block-start: 12px; font-size: .86rem; font-weight: 500; }
.map__links a { color: var(--brass); text-decoration: underline; text-underline-offset: 3px; transition: color 200ms; }
.map__links a:hover { color: var(--cream); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--forest); padding-block: clamp(36px, 5vw, 60px) 28px; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { width: 74px; height: auto; opacity: .95; }
.footer__brand .w { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .3em; text-transform: uppercase; direction: ltr; }
.footer__tag { margin-block-start: 12px; color: var(--cream-faint); font-size: .9rem; max-width: 34ch; }
.footer__cols { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; }
.footer__col h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--cream-faint); margin-block-end: 14px; font-weight: 600; }
html[lang="he"] .footer__col h4 { letter-spacing: .08em; }
.footer__col a, .footer__col p { display: block; color: var(--cream-dim); font-size: .95rem; padding-block: 4px; transition: color 200ms; }
.footer__col a:hover { color: var(--brass); }
.footer__col .ltr { direction: ltr; unicode-bidi: embed; }
.footer__bottom {
  margin-block-start: 32px; padding-block-start: 20px; border-block-start: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--cream-faint);
}
.footer__legal { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { color: var(--cream-dim); transition: color 200ms; }
.footer__legal a:hover { color: var(--brass); }

.footer__col a {
  background-image: linear-gradient(var(--brass), var(--brass));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 1px;
  transition: background-size 340ms var(--ease-out), color 200ms;
  width: fit-content;
}
html[dir="rtl"] .footer__col a { background-position: 100% 100%; }
.footer__col a:hover { background-size: 100% 1px; }

/* =================================================================
   LIGHTBOX
   ================================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px);
  background: rgba(10,14,11,.94); backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 6px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.lightbox__close {
  position: absolute; inset-block-start: clamp(16px,3vw,32px); inset-inline-end: clamp(16px,3vw,32px);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--cream);
  transition: background 200ms, transform 200ms;
}
.lightbox__close:hover { background: rgba(240,233,214,.1); transform: rotate(90deg); }
.lightbox__cap { position: absolute; inset-block-end: clamp(16px,3vw,32px); inset-inline-start: 50%; transform: translateX(-50%); color: var(--cream-dim); font-size: .9rem; }
html[dir="rtl"] .lightbox__cap { transform: translateX(50%); }

/* =================================================================
   ACCESSIBILITY  (תפריט נגישות)
   ================================================================= */
.skip-link {
  position: fixed; inset-block-start: 8px; inset-inline-start: 8px; z-index: 300;
  background: var(--bronze); color: var(--parchment); padding: 10px 16px; border-radius: 6px;
  border: 1px solid rgba(217,192,138,.4);
  font-weight: 600; transform: translateY(-180%); transition: transform 200ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.a11y-fab {
  position: fixed; inset-block-end: 20px; inset-inline-start: 20px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest-3); color: var(--cream); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms;
}
.a11y-fab:hover { transform: translateY(-2px); border-color: var(--brass); }
.a11y-fab svg { width: 32px; height: 32px; }

.a11y-panel {
  position: fixed; inset-block-end: 88px; inset-inline-start: 20px; z-index: 150;
  width: min(348px, calc(100vw - 40px));
  background: var(--forest-2); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 18px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.98);
  transition: opacity 200ms var(--ease), transform 220ms var(--ease-out), visibility 200ms;
  max-height: min(82vh, 640px); overflow-y: auto;
}
.a11y-panel.open { opacity: 1; visibility: visible; transform: none; }
.a11y-panel__head { display: flex; align-items: center; justify-content: space-between; margin-block-end: 14px; }
.a11y-panel__head h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; }
.a11y-close {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--cream);
  transition: background 200ms, transform 200ms;
}
.a11y-close:hover { background: rgba(240,233,214,.08); transform: rotate(90deg); }

.a11y-fontrow { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; margin-block-end: 12px; }
.a11y-fontrow .lbl { font-size: .85rem; font-weight: 600; color: var(--cream-dim); }
.a11y-fontrow .ctrls { display: flex; align-items: center; gap: 8px; }
.a11y-fontrow button {
  width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--line-strong);
  font-weight: 700; font-size: 1rem; color: var(--cream); transition: background 200ms, border-color 200ms;
}
.a11y-fontrow button:hover { background: rgba(240,233,214,.08); border-color: var(--brass); }
.a11y-fontrow .val { min-width: 3.2ch; text-align: center; font-weight: 700; font-size: .85rem; color: var(--cream); }

.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.a11y-opt {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 13px 8px; border: 1px solid var(--line); border-radius: 10px;
  font-size: .78rem; font-weight: 600; text-align: center; color: var(--cream-dim);
  transition: color 200ms, border-color 200ms, background 200ms;
}
.a11y-opt svg { width: 23px; height: 23px; }
.a11y-opt:hover { color: var(--cream); border-color: var(--brass); }
.a11y-opt[aria-pressed="true"] { color: var(--cream); border-color: var(--bronze-2); background: rgba(154,106,58,.15); }

.a11y-foot { margin-block-start: 14px; display: grid; gap: 8px; }
.a11y-reset {
  width: 100%; text-align: center; padding: 11px; border-radius: 8px;
  background: var(--bronze); color: var(--parchment); border: 1px solid rgba(217,192,138,.4);
  font-weight: 600; font-size: .85rem;
  transition: filter 200ms;
}
.a11y-reset:hover { filter: brightness(1.08); }

/* ---- Applied states ---- */
html.a11y-readable {
  --font-display: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  --font-body: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; }
html.a11y-bigcursor, html.a11y-bigcursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath d='M4 2l16 9-7 1.5L9.5 19z' fill='%23fff' stroke='%23000' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") 4 4, auto !important;
}

/* High contrast — pure black/white/yellow */
html.a11y-contrast {
  --forest: #000000; --forest-2: #0d0d0d; --forest-3: #1a1a1a;
  --cream: #ffffff; --cream-dim: #ffffff; --cream-faint: #d8d8d8;
  --parchment: #ffffff; --parch-2: #f0f0f0;
  --bronze: #ffd400; --bronze-2: #ffe600; --brass: #ffe600;
  --olive: #005500; --sage: #007700;
  --ink: #000000; --ink-2: #000000; --muted: #333333; --dots: #666666;
  --line: rgba(255,255,255,.55); --line-strong: rgba(255,255,255,.8);
}
html.a11y-contrast .hero::before { background: rgba(0,0,0,.86); }
html.a11y-contrast body::after { display: none; }
html.a11y-contrast .btn { color: #000 !important; }

/* Pause animations */
html.a11y-no-motion *, html.a11y-no-motion *::before, html.a11y-no-motion *::after {
  animation-duration: 0s !important; animation-iteration-count: 1 !important;
  transition-duration: 0s !important; scroll-behavior: auto !important;
}
html.a11y-no-motion .marquee__track { animation: none !important; }
html.a11y-no-motion .reveal { opacity: 1 !important; transform: none !important; }

/* Accessibility statement modal */
.a11y-modal {
  position: fixed; inset: 0; z-index: 210; display: none;
  align-items: center; justify-content: center; padding: clamp(16px,4vw,48px);
  background: rgba(10,14,11,.92); backdrop-filter: blur(6px);
}
.a11y-modal.open { display: flex; }
.a11y-modal__box {
  background: var(--forest-2); border: 1px solid var(--line-strong); border-radius: 12px;
  max-width: 640px; width: 100%; max-height: 86vh; overflow-y: auto; padding: clamp(22px,4vw,38px);
  box-shadow: var(--shadow);
}
.a11y-modal__box h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem,3vw,2rem); margin-block-end: 12px; }
.a11y-modal__box h3 { font-size: 1.05rem; font-weight: 700; margin-block: 18px 6px; }
.a11y-modal__box p, .a11y-modal__box li { color: var(--cream-dim); font-size: .96rem; margin-block-end: 8px; }
.a11y-modal__box ul { padding-inline-start: 20px; }
.a11y-modal__box a { color: var(--brass); text-decoration: underline; }
.a11y-modal__close { margin-block-start: 22px; }

@media (max-width: 560px) {
  .a11y-fab { width: 50px; height: 50px; inset-block-end: 16px; inset-inline-start: 16px; }
  .a11y-fab svg { width: 28px; height: 28px; }
  .a11y-panel { inset-block-end: 76px; inset-inline-start: 16px; }
}

/* =================================================================
   MICRO-INTERACTIONS
   ================================================================= */
.btn { --mx: 0px; --my: 0px; }
.is-magnetic { transform: translate(var(--mx), var(--my)); }
.is-magnetic:hover { transform: translate(var(--mx), calc(var(--my) - 2px)); }
@media (prefers-reduced-motion: reduce) {
  .is-magnetic, .is-magnetic:hover { transform: none !important; }
}
html.a11y-no-motion .is-magnetic, html.a11y-no-motion .is-magnetic:hover { transform: none !important; }

/* =================================================================
   GOLD DUST canvas
   ================================================================= */
.dust {
  position: fixed; inset: 0; z-index: 60; width: 100%; height: 100%;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .dust { display: none; } }
html.a11y-no-motion .dust { display: none; }

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */
.cookie {
  position: fixed; inset: auto 0 0 0; z-index: 200;
  background: var(--forest-2);
  border-block-start: 1px solid var(--line-strong);
  box-shadow: 0 -18px 50px -20px rgba(0,0,0,.6);
  padding-block: clamp(12px, 2vh, 16px);
  animation: cookieUp .5s var(--ease-out);
}
.cookie[hidden] { display: none; }
@keyframes cookieUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .cookie { animation: none; } }

.cookie__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(14px, 3vw, 32px); flex-wrap: wrap;
}
.cookie__text { margin: 0; color: var(--cream-dim); font-size: .9rem; line-height: 1.55; max-width: 74ch; }
.cookie__link { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; margin-inline-start: 6px; white-space: nowrap; }
.cookie__link:hover { color: var(--cream); }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__actions .btn { padding: 11px 26px; }

@media (max-width: 640px) {
  .cookie__inner { flex-direction: column; align-items: stretch; }
  .cookie__actions { justify-content: stretch; }
  .cookie__actions .btn { flex: 1; }
}

/* Map click-to-load facade — the iframe only loads on tap */
.map__frame--idle { display: grid; place-items: center; }
.map__load {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 100%; height: 100%; padding: 24px; color: var(--cream-dim);
  transition: color 200ms, background 200ms;
}
.map__load svg { color: var(--bronze-2); }
.map__load strong { font-weight: 600; font-size: 1.02rem; color: var(--cream); }
.map__load small { font-size: .8rem; color: var(--cream-faint); }
.map__load:hover { background: rgba(217,192,138,.06); }
