/* ===================================================================
   JOHN BOY TATTOO - Landing Page
   Design language mirrored from johnboytattoo.com:
   black background, white text, Heebo font, minimal luxury.
   =================================================================== */

:root {
  --bg: #000000;
  --bg-soft: #0c0c0c;
  --surface: #141414;
  --line: #262626;
  --text: #ffffff;
  --muted: #a8a8a8;
  --gold: #d9c08b;      /* subtle luxury accent */
  --wa: #25d366;        /* whatsapp green */
  --radius: 4px;
  --maxw: 1180px;
  --pad: clamp(16px, 5vw, 40px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Heebo", system-ui, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: clamp(1rem, 2.6vw, 1.05rem);
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--text); color: #000; }
.btn--primary:hover { background: var(--gold); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1eb257; }
.btn--block { width: 100%; }
.wa-icon { font-size: 1.15em; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--pad);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url("https://johnboytattoo.com/cdn/shop/files/DSC01419_e7e20c84-1ebe-4253-aa86-ee93c9ad50be.jpg?v=1777448121&width=1600") center/cover no-repeat;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.65) 55%, rgba(0,0,0,.92) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__logo { width: clamp(96px, 22vw, 150px); height: auto; margin: 0 auto 24px; }
.hero__title {
  font-weight: 900;
  line-height: 1.1;
}
.hero__title-main {
  display: block;
  white-space: nowrap;              /* שלוש המילים תמיד בשורה אחת */
  /* עוגן ב-px/vw כדי שהכותרת לא תיחתך בהגדלת טקסט (WCAG 1.4.4) */
  font-size: clamp(22px, 7vw, 58px);
  letter-spacing: 0.5px;
}
.hero__title-brand {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: clamp(16px, 4.4vw, 35px);
  letter-spacing: 6px;
}
.hero__sub {
  margin: 20px auto 34px;
  font-size: clamp(1.05rem, 3.6vw, 1.35rem);
  font-weight: 300;
  color: #ededed;
  max-width: 560px;
}
.hero__quote {
  font-style: italic;
  font-weight: 400;
  color: #f2f2f2;
  line-height: 1.5;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__cta .btn { flex: 1 1 220px; max-width: 320px; }

/* ---------- TRUST BAR ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust__item {
  background: var(--bg);
  padding: 26px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust__num { font-weight: 900; font-size: clamp(1.1rem, 3.4vw, 1.7rem); color: var(--gold); }
.trust__label { font-size: clamp(.78rem, 2.4vw, .95rem); color: var(--muted); }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(56px, 9vw, 100px) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.section__head { text-align: center; margin-bottom: clamp(28px, 5vw, 48px); }
.section__title {
  font-weight: 900;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  letter-spacing: -0.5px;
}
.section__lead { margin-top: 12px; color: var(--muted); font-weight: 300; font-size: clamp(1rem, 3vw, 1.15rem); }

/* ---------- GRIDS / CARDS ---------- */
.grid { display: grid; gap: clamp(10px, 2.5vw, 18px); }
.grid--styles { grid-template-columns: repeat(4, 1fr); }
.grid--artists { grid-template-columns: repeat(6, 1fr); }
.grid--process { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 28px); }

.card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.card--style { display: block; aspect-ratio: 3/4; }
.card--style img, .card--artist img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}
.card--style:hover img { transform: scale(1.06); }
.card__label {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 26px 14px 14px;
  font-weight: 700; font-size: clamp(1rem, 2.6vw, 1.2rem);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  text-align: center;
}
.card--style::after {
  content: "לתיאום -";
  position: absolute; top: 12px; inset-inline-start: 12px;
  font-size: .8rem; font-weight: 500;
  background: rgba(0,0,0,.55); color: var(--gold);
  padding: 5px 10px; border-radius: 999px;
  opacity: 0; transform: translateY(-6px); transition: .25s ease;
}
.card--style:hover::after { opacity: 1; transform: translateY(0); }

.card--artist { aspect-ratio: 3/4; }
.card--artist figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 24px 10px 12px;
  font-weight: 700; font-size: clamp(.9rem, 2vw, 1.05rem); text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.88));
}

/* ---------- STUDIO ---------- */
.studio__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 48px); align-items: center; }
.studio__text p { color: var(--muted); font-weight: 300; margin: 18px 0 28px; font-size: clamp(1rem, 2.6vw, 1.15rem); max-width: 46ch; }
.studio__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

/* ---------- PROCESS ---------- */
.step {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  font-weight: 900; font-size: 1.4rem; margin-bottom: 16px;
}
.step h3 { font-size: clamp(1.05rem, 3vw, 1.25rem); margin-bottom: 8px; }
.step p { color: var(--muted); font-weight: 300; }

/* ---------- HERO REASSURE LINE ---------- */
.hero__reassure {
  margin-top: 16px;
  font-size: clamp(.85rem, 2.4vw, .95rem);
  color: var(--muted);
  letter-spacing: .3px;
}
.hero__reassure::before { content: "✓ "; color: var(--gold); }

/* ---------- HERO (academy) ---------- */
.hero__eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: clamp(.85rem, 2.6vw, 1.05rem);
  margin-bottom: 10px;
}
.hero__title--he {
  font-size: clamp(2rem, 8vw, 3.8rem);
  letter-spacing: 0;
  line-height: 1.12;
}

/* ---------- COUNTDOWN ---------- */
.countdown { text-align: center; }
.countdown__box {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 40px);
}
.countdown__eyebrow { color: var(--gold); font-weight: 700; font-size: clamp(1rem, 3vw, 1.2rem); margin-bottom: 8px; }
.countdown__title { font-weight: 700; font-size: clamp(1.1rem, 3vw, 1.4rem); margin-bottom: 18px; color: var(--muted); }
.countdown__timer { display: flex; justify-content: center; gap: clamp(10px, 3vw, 22px); margin-bottom: 26px; }
.cd-unit {
  min-width: clamp(58px, 16vw, 84px);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 6px;
  display: flex; flex-direction: column; gap: 4px;
}
.cd-num { font-weight: 900; font-size: clamp(1.5rem, 6vw, 2.4rem); color: var(--text); font-variant-numeric: tabular-nums; }
.cd-lbl { font-size: clamp(.72rem, 2.2vw, .85rem); color: var(--muted); }

/* ---------- CURRICULUM ---------- */
.grid--curriculum { grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.5vw, 22px); }
.curr__card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 30px);
}
.curr__num { display: block; font-weight: 900; font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.curr__card h3 { font-size: clamp(1.05rem, 2.8vw, 1.25rem); margin-bottom: 10px; }
.curr__card p { color: var(--muted); font-weight: 300; font-size: .95rem; line-height: 1.7; }

/* ---------- PERKS ---------- */
.grid--perks { grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; max-width: 900px; margin-inline: auto; }
.perk {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
  font-weight: 500; font-size: clamp(.95rem, 2.4vw, 1.05rem);
}
.perk__ico {
  flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .9rem;
}

/* ---------- TESTIMONIALS ---------- */
.grid--testimonials { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 26px); }
.testi {
  margin: 0; text-align: center;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  display: flex; flex-direction: column; align-items: center;
}
.testi__img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 16px; }
.testi__quote { color: #e6e6e6; font-weight: 300; font-style: italic; line-height: 1.7; margin: 0 0 14px; }
.testi__name { color: var(--gold); font-weight: 700; }

/* ---------- GRADUATES ---------- */
.grid--grads { grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 2vw, 16px); }
.grad {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(18px, 2.5vw, 24px) 12px;
  transition: border-color .2s ease, transform .15s ease, background .2s ease;
}
.grad:hover { border-color: var(--gold); background: #171717; transform: translateY(-2px); }
.grad__ig { width: 30px; height: 30px; color: var(--gold); margin-bottom: 4px; }
.grad__name { font-weight: 700; font-size: clamp(.98rem, 2.4vw, 1.1rem); }
.grad__handle { color: var(--muted); font-size: .88rem; direction: ltr; }
.grad:hover .grad__handle { color: var(--gold); }

/* ---------- WHY US ---------- */
.grid--why { grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 28px); }
.why__item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 34px);
  text-align: center;
}
.why__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; margin-bottom: 16px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  color: var(--gold); font-size: 1.5rem; line-height: 1;
}
.why__item h3 { font-size: clamp(1.05rem, 3vw, 1.25rem); margin-bottom: 8px; }
.why__item p { color: var(--muted); font-weight: 300; }

/* ---------- KNOW BEFORE (VALUE) ---------- */
.grid--know { grid-template-columns: repeat(4, 1fr); }
.know__card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 26px);
}
.know__card h3 { font-size: clamp(1rem, 2.6vw, 1.15rem); margin-bottom: 10px; color: var(--gold); }
.know__card p { color: var(--muted); font-weight: 300; font-size: .96rem; line-height: 1.7; }
.know__cta { text-align: center; margin-top: clamp(24px, 4vw, 36px); color: var(--muted); font-weight: 300; font-size: clamp(1rem, 2.8vw, 1.12rem); }
.know__cta a { color: var(--gold); font-weight: 700; text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 780px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  font-weight: 700;
  font-size: clamp(1.02rem, 3vw, 1.2rem);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; color: var(--gold); font-weight: 400; font-size: 1.6rem; line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "-"; }
.faq__item p { color: var(--muted); font-weight: 300; padding: 0 4px 20px; }

/* ---------- LEAD FORM ---------- */
.lead { max-width: 640px; }
.lead__box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 44px);
  text-align: center;
}
#lead-form { margin-top: 26px; text-align: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 500; font-size: .95rem; margin-bottom: 8px; }
.req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 14px;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; }
.field input:invalid:not(:placeholder-shown) { border-color: #c0392b; }
#submit-btn { margin-top: 6px; }
.form-msg { margin-top: 14px; font-size: .95rem; min-height: 1.2em; text-align: center; }
.form-msg.error { color: #ff6b6b; }
.form-msg.ok { color: var(--wa); }
.lead__wa { margin-top: 18px; text-align: center; color: var(--muted); font-size: .95rem; }
.lead__wa a { color: var(--wa); font-weight: 700; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 7vw, 64px) var(--pad) 120px;
  text-align: center;
}
.footer__logo { width: 72px; height: auto; margin: 0 auto 28px; opacity: .9; }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 760px; margin: 0 auto;
}
.footer__col h4 { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.footer__col p { color: var(--muted); font-weight: 300; font-size: .95rem; }
.footer__col a:hover { color: var(--text); }
.footer__credit { margin-top: 40px; color: #666; font-size: .85rem; font-weight: 300; }

/* ---------- STICKY CONTACT BAR ---------- */
.sticky-contact {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.sticky-contact__inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
}
.sticky-contact__title {
  font-weight: 700; font-size: .95rem; color: var(--gold);
  white-space: nowrap;
}
.sticky-contact__row { display: flex; gap: 8px; flex: 1; min-width: 0; }
.sticky-contact input {
  flex: 1; min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit; font-size: 16px;   /* 16px מונע זום אוטומטי ב-iOS */
  padding: 12px 12px;
}
.sticky-contact input:focus { outline: none; border-color: var(--gold); }
.sticky-contact input[aria-invalid="true"] { border-color: #ff6b6b; }
.sticky-contact__btn {
  flex: 0 0 auto;
  background: var(--gold); color: #000;
  border: none; border-radius: var(--radius);
  font-family: inherit; font-weight: 700; font-size: 1rem;
  padding: 12px 26px; cursor: pointer;
  min-height: 46px;
}
.sticky-contact__btn:hover { filter: brightness(1.06); }
.sticky-contact__btn:disabled { opacity: .6; cursor: default; }

/* ---------- THANK YOU PAGE ---------- */
.thankyou {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 60px var(--pad);
  max-width: 620px; margin: 0 auto;
}
.thankyou__logo { width: clamp(90px, 20vw, 130px); height: auto; margin-bottom: 24px; }
.thankyou__check {
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--wa); color: var(--wa);
  font-size: 2.4rem; font-weight: 700; margin-bottom: 24px;
}
.thankyou h1 { font-weight: 900; font-size: clamp(1.8rem, 7vw, 2.8rem); }
.thankyou p { color: var(--muted); font-weight: 300; margin-top: 16px; font-size: clamp(1rem, 3vw, 1.15rem); }
.thankyou__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.thankyou__cta .btn { flex: 1 1 220px; max-width: 300px; }
.thankyou__meta { margin-top: 40px; font-size: .9rem; color: #777; }
.thankyou__meta a { color: var(--gold); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .grid--artists { grid-template-columns: repeat(3, 1fr); }
  .grid--process { grid-template-columns: 1fr; }
  .grid--why { grid-template-columns: 1fr; }
  .grid--know { grid-template-columns: repeat(2, 1fr); }
  .grid--curriculum { grid-template-columns: repeat(2, 1fr); }
  .grid--testimonials { grid-template-columns: 1fr; }
  .grid--grads { grid-template-columns: repeat(3, 1fr); }
  .studio__grid { grid-template-columns: 1fr; }
  .studio__img { order: -1; }
}
@media (max-width: 680px) {
  .grid--styles { grid-template-columns: repeat(2, 1fr); }
  .grid--know { grid-template-columns: 1fr; }
  .grid--curriculum { grid-template-columns: 1fr; }
  .grid--perks { grid-template-columns: 1fr; }
  .grid--grads { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .sticky-contact__title { display: none; }   /* חוסך מקום במובייל */
}
@media (max-width: 380px) {
  .grid--artists { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ===================================================================
   ACCESSIBILITY — נגישות (ת"י 5568 / WCAG 2.0 AA)
   =================================================================== */

/* --- Skip link (דילוג לתוכן) --- */
.skip-link {
  position: fixed;
  inset-inline-start: 50%;
  top: -80px;
  transform: translateX(50%);
  z-index: 200;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 0 0 6px 6px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; }

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

/* --- Visible keyboard focus (WCAG 2.4.7) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
/* fallback עבור דפדפנים ללא focus-visible */
.faq__item summary:focus { outline: 3px solid var(--gold); outline-offset: 2px; }

/* --- Field hint + error --- */
.field__hint { display: block; margin-top: 6px; font-size: .82rem; color: var(--muted); }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #ff6b6b; }

/* --- Footer legal / accessibility statement link --- */
.footer__legal {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 10px;
}
.footer__legal a { color: var(--gold); text-decoration: underline; font-size: .92rem; }
.footer__legal a:hover { color: var(--text); }
.footer__legal-sep { color: #555; }

/* ===================================================================
   ACCESSIBILITY WIDGET — תפריט נגישות מובנה
   =================================================================== */
.a11y-toggle {
  position: fixed;
  inset-inline-start: 16px;
  bottom: 84px;                 /* מעל סרגל צור-הקשר הסטיקי */
  z-index: 120;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  border: 2px solid #000;
  box-shadow: 0 3px 12px rgba(0,0,0,.5);
  font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.a11y-toggle:hover { filter: brightness(1.08); }

.a11y-panel {
  position: fixed;
  inset-inline-start: 16px;
  bottom: 148px;
  z-index: 121;
  width: min(310px, calc(100vw - 32px));
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.7);
  display: none;
  max-height: min(72vh, 560px);
  overflow-y: auto;
}
.a11y-panel[data-open="true"] { display: block; }
.a11y-panel h2 { font-size: 1.1rem; margin-bottom: 4px; }
.a11y-panel .a11y-sub { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-btn {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 6px;
  padding: 12px 8px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  min-height: 48px;             /* יעד מגע נגיש */
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.a11y-btn:hover { border-color: var(--gold); }
.a11y-btn[aria-pressed="true"] { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 700; }
.a11y-btn--wide { grid-column: 1 / -1; }
.a11y-reset { background: transparent; color: #ff9a9a; border-color: #5a2a2a; }
.a11y-statement { display: block; text-align: center; margin-top: 12px; color: var(--gold); text-decoration: underline; font-size: .88rem; }
.a11y-close {
  position: absolute; top: 8px; inset-inline-end: 10px;
  background: none; border: none; color: var(--muted);
  font-size: 22px; cursor: pointer; width: 40px; height: 40px; line-height: 1;
}
.a11y-close:hover { color: var(--text); }

/* --- מצבי נגישות המופעלים על <html> --- */
html.a11y-grayscale body { filter: grayscale(100%); }

html.a11y-links a { text-decoration: underline !important; }
html.a11y-links a:focus,
html.a11y-links a:hover { outline: 2px solid var(--gold); outline-offset: 2px; }

html.a11y-readable body,
html.a11y-readable body * { font-family: Arial, "Segoe UI", sans-serif !important; letter-spacing: .3px; }
html.a11y-readable p,
html.a11y-readable li,
html.a11y-readable .hero__sub { line-height: 1.9 !important; }

html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

/* מצב ניגודיות מרבית: רקע שחור מלא, טקסט לבן, אקסנט צהוב בהיר, בלי תמונת רקע מאחורי טקסט */
html.a11y-contrast body { background: #000; }
html.a11y-contrast .hero__bg,
html.a11y-contrast .hero__overlay { display: none !important; }
html.a11y-contrast .hero { background: #000; }
html.a11y-contrast .hero__sub,
html.a11y-contrast .section__lead,
html.a11y-contrast .step p,
html.a11y-contrast .faq__item p,
html.a11y-contrast .studio__text p,
html.a11y-contrast .trust__label,
html.a11y-contrast .footer__col p,
html.a11y-contrast .footer__credit,
html.a11y-contrast .field__hint { color: #fff !important; }
html.a11y-contrast .hero__title-brand,
html.a11y-contrast .trust__num,
html.a11y-contrast .footer__col h4,
html.a11y-contrast a { color: #ffd54a !important; }
html.a11y-contrast .btn--primary { background: #fff; color: #000; }
html.a11y-contrast .card__label,
html.a11y-contrast .card--artist figcaption { background: #000; }
html.a11y-contrast .step,
html.a11y-contrast .lead__box,
html.a11y-contrast .field input,
html.a11y-contrast .field select,
html.a11y-contrast .field textarea { border-color: #fff !important; }

@media (max-width: 680px) {
  .a11y-toggle { bottom: 92px; }   /* מעל סרגל צור-הקשר במובייל */
  .a11y-panel { bottom: 156px; }
}

/* --- Legal / accessibility statement page --- */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) var(--pad) 120px;
}
.legal-back { display: inline-block; color: var(--gold); text-decoration: underline; margin-bottom: 28px; font-weight: 500; }
.legal-page h1 { font-weight: 900; font-size: clamp(1.8rem, 6vw, 2.6rem); margin-bottom: 20px; }
.legal-page h2 { font-weight: 700; font-size: clamp(1.2rem, 4vw, 1.5rem); color: var(--gold); margin: 32px 0 12px; }
.legal-page p { color: #e6e6e6; font-weight: 300; margin-bottom: 12px; }
.legal-page strong { font-weight: 700; color: #fff; }
.legal-page ul { list-style: disc; padding-inline-start: 22px; margin-bottom: 12px; color: #e6e6e6; font-weight: 300; }
.legal-page li { margin-bottom: 8px; }
.legal-contact { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; padding: 18px 22px; list-style: none; }
.legal-contact li { margin-bottom: 10px; }
.legal-note { margin-top: 34px; padding: 16px 18px; border-inline-start: 3px solid var(--gold); background: var(--bg-soft); color: var(--muted) !important; font-size: .92rem; }