/* ============ NOYZ landing — tokens ============ */
:root {
  --ink: #120e17;          /* stage dark — warm violet-black (club haze), never pure black */
  --smoke: #1a1522;        /* card surface */
  --smoke-2: #241c2f;
  --pink: #ff007f;         /* brand */
  --pink-deep: #e6006f;    /* pink for surfaces with white text on top — meets WCAG AA 4.5:1 */
  --pink-soft: #ff4da6;
  --brass: #e8a33d;        /* saxophone gold */
  --white: #ffffff;        /* reserved for text on pink/brass — AA contrast depends on it */
  --paper: #f2ece2;        /* stage-light ivory — display/body text on dark surfaces */
  --dim: #c0b7ab;
  --line: rgba(242, 236, 226, 0.1);
  --radius: 18px;
  --font-display: "Karantina", "Heebo", sans-serif;
  --font-body: "Heebo", Arial, sans-serif;
  --font-logo: "Lato", "Helvetica Neue", sans-serif; /* official NØ¥Z wordmark */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Film grain — a tiled SVG noise texture over everything, so the page reads
   as stage/analog rather than flat digital. Pure decoration: no pointer
   events, invisible to assistive tech, disabled in high-contrast mode. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  /* feComponentTransfer pushes the turbulence toward true black/white specks
     instead of soft mid-gray fog — overlay blend barely moves near-black
     backgrounds or near-white text unless the noise itself has real contrast. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch' result='t'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='gamma' amplitude='1' exponent='4' offset='0'/%3E%3CfeFuncG type='gamma' amplitude='1' exponent='4' offset='0'/%3E%3CfeFuncB type='gamma' amplitude='1' exponent='4' offset='0'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }

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

.center { text-align: center; margin-top: 2.2rem; }
.accent { color: var(--pink); }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

.btn-primary {
  background: var(--pink-deep);
  color: var(--white);
  box-shadow: 0 0 24px rgba(255, 0, 127, 0.45);
}
.btn-primary:hover { box-shadow: 0 0 38px rgba(255, 0, 127, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--pink-soft);
  border-color: var(--pink);
}
.btn-outline:hover { background: var(--pink-deep); color: var(--white); }

.btn-wide { width: 100%; font-size: 1.15rem; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute; inset: 0;
  /* The footage reads dark on phone screens — a flat translucent layer would
     just wash out contrast, so this lifts shadows via screen blending instead
     (brightens without flattening, the way a fill light would). */
  background: rgba(242, 236, 226, 0.3);
  mix-blend-mode: screen;
  z-index: -1;
}

.hero-content { padding: 2rem 1.25rem; max-width: 860px; }

/* Sized down ~40% from the original (was clamp 4.5–11.5rem etc.) — reads
   slicker and less in-your-face while keeping the same proportions/glow. */
.hero-mark {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: clamp(3.2rem, 14vw, 8rem);
  line-height: 1.05;
  letter-spacing: 0.15em;
  /* cancel the trailing letter-space so the mark stays optically centered */
  margin-inline-end: -0.15em;
  direction: ltr;
  color: var(--paper);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 0 60px rgba(255, 0, 127, 0.18);
}

.hero-sub {
  direction: ltr;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--brass);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.hero-ctas .btn {
  font-size: 0.8rem;
  padding: 0.52rem 1.3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.4rem; right: 50%;
  transform: translateX(50%);
  color: var(--paper);
  font-size: 1.6rem;
  text-decoration: none;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(50%) translateY(0); }
  50% { transform: translateX(50%) translateY(8px); }
}

/* ============ Section background video (lead-capture sections) ============ */
/* Same treatment as the hero — a looping video wash behind the section, with
   a screen/multiply-blend tint over it so the form card on top stays legible.
   Used only on the two lead-capture sections, to pull the eye toward them. */
.has-bg-video { position: relative; overflow: hidden; isolation: isolate; }
.section-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.section-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(242, 236, 226, 0.55);
  mix-blend-mode: screen;
  z-index: -1;
}
.section-bg-overlay-dark {
  background: rgba(18, 14, 23, 0.72);
  mix-blend-mode: normal;
}

/* ============ Quick contact (compact, right under the video carousel) ============ */
/* Deliberately the one bright/light section on an otherwise dark page — reads
   as a bold "stop scrolling, fill this in" band rather than blending in. The
   video shows through the padding around it; the card keeps the form legible. */
.quick-contact {
  padding: 2.5rem 1.25rem;
}
.quick-contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  background: rgba(242, 236, 226, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 60px rgba(18, 14, 23, 0.3);
}
.quick-contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: 0.02em;
  color: var(--ink);
}
.quick-contact-copy p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  letter-spacing: 0.02em;
  color: rgba(18, 14, 23, 0.72);
  margin-top: 0.3rem;
}
.quick-contact-form {
  width: 100%;
  max-width: 880px;
  display: grid;
  gap: 0.6rem;
}
.qc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
}
.qc-row-2 {
  grid-template-columns: 1fr auto;
  align-items: stretch;
}
.quick-contact-form input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18, 14, 23, 0.14);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.15s ease;
}
.quick-contact-form input::placeholder { color: #9a9088; }
.quick-contact-form input[type="tel"],
.quick-contact-form input[type="email"] {
  direction: ltr;
  text-align: right;
}
.quick-contact-form input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.15);
}
.quick-contact-form .btn { white-space: nowrap; }

@media (max-width: 720px) {
  /* Same idea as the bottom contact form: don't give every field its own
     full-width row. Name keeps its own row (spans both columns below), but
     phone/email share one row, and the message+button row stays inline
     instead of stacking — together that's two fewer rows of height. */
  .quick-contact { padding: 1.75rem 1.25rem; }
  .quick-contact-inner { gap: 0.8rem; padding: 1.5rem 1.1rem; }
  .qc-row { grid-template-columns: 1fr 1fr; }
  .qc-row #qc-name { grid-column: 1 / -1; }
}

/* ============ LED ticker (signature) ============ */
.ticker {
  overflow: hidden;
  background: var(--pink);
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  white-space: nowrap;
}

.ticker-track i {
  font-style: normal;
  color: rgba(10, 10, 12, 0.55);
  font-size: 0.9rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  /* one copy of 8 = 12.5%, plus 1/8 of the 1.6rem flex gap; RTL: track flows right */
  to { transform: translateX(calc(12.5% + 0.2rem)); }
}

/* ============ NOYZ brand marquee ============ */
.brand-marquee {
  overflow: hidden;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  direction: ltr;
  animation: marquee 8s linear infinite; /* ~32px/s — same speed as the pink ticker */
}

.marquee-track span {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  color: var(--pink);
}

.marquee-track i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.1rem;
}

@keyframes marquee {
  /* one copy of 16 = 6.25% plus 1/16 of the 2.2rem gap; scrolls opposite the pink ticker */
  from { transform: translateX(calc(6.25% + 0.1375rem)); }
  to { transform: translateX(0); }
}

/* ============ Proof band (verifiable track record) ============ */
.proof {
  background: var(--smoke);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-track {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.4rem 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.proof-item { padding: 0.2rem 0.6rem; }
.proof-item:not(:first-child) { border-inline-start: 1px solid var(--line); }

.proof-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  line-height: 1;
  color: var(--brass);
}
.proof-label {
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 0.4rem;
}

.proof-stars {
  color: var(--brass);
  letter-spacing: 0.12em;
  font-size: 0.85em;
}

a.proof-link {
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease;
}
a.proof-link:hover { background: var(--smoke-2); }
a.proof-link:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }

.quote-source { color: var(--brass); }

/* ============ Stage moment (full-bleed impact photo) ============ */
.impact {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  padding: 4.5rem 1.25rem;
}

.impact-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Top-anchored on purpose: his head sits close to the top edge of the
     source photo, so any wide/short viewport that forces vertical cropping
     must crop from the bottom (smoke/crowd) only, never the top. */
  object-position: 50% 0%;
  z-index: -2;
}

.impact-overlay {
  position: absolute; inset: 0;
  /* Small but visible top vignette (short enough to clear his head), and a
     longer, more gradual bottom fade so the heading/button stay legible. */
  background: linear-gradient(180deg, rgba(18, 14, 23, 0.55) 0%, transparent 18%, transparent 45%, var(--ink) 100%);
  z-index: -1;
}

.impact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.045em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
  margin-bottom: 1.4rem;
}

/* ============ Article pages (/qa, /saxophone-for-wedding) ============ */
.article-top {
  padding: 1.4rem 1.25rem;
  text-align: center;
}

.article-brand {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin-inline-end: -0.15em;
  direction: ltr;
  display: inline-block;
  color: var(--paper);
  text-decoration: none;
}

.article { max-width: 760px; }

.article-body {
  color: var(--dim);
  font-size: 1.08rem;
}
.article-body p { margin-bottom: 1.1rem; }
.article-body strong { color: var(--paper); }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  margin: 2.2rem 0 0.8rem;
}
.article-lede {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brass);
}
.article a { color: var(--pink-soft); }

/* ============ Sections ============ */
.section {
  padding: 4.5rem 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* These three run back-to-back with identical backgrounds and no photo/band
   between them (unlike services, which the marquee already separates from
   the video section) — a hairline stops them reading as one merged block. */
.pricing-section, .testimonials-section, .about-section {
  border-top: 1px solid var(--line);
}

/* Framed apart from the promo-video section above it — identical background
   made the pair read as one merged block, and the stacked section padding
   (9rem combined) left an oversized gap between them. */
.video-gallery-section {
  background: var(--smoke);
  border-top: 1px solid var(--line);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.video-section {
  padding-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.045em;
  /* faint warm halo — reads as stage light hitting the letters */
  text-shadow: 0 0 34px rgba(232, 163, 61, 0.16);
}

.section-sub {
  text-align: center;
  color: var(--dim);
  font-size: 1.1rem;
  margin-top: 0.6rem;
  margin-bottom: 2.4rem;
}

/* ============ Video facades ============ */
.video-facade {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: var(--smoke);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

/* The main promo video specifically (not the vertical gallery cards or audio
   tiles below) — full-bleed 16:9 at 1080px felt oversized. Capping it and
   centering with margins is the standard treatment on video-forward sites
   (Apple, Stripe, etc. never run a hero/demo video edge-to-edge either). */
.video-section .video-facade {
  max-width: 780px;
  margin-inline: auto;
}
.video-facade img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.video-facade:hover img { transform: scale(1.03); filter: brightness(1.08); }
.video-facade:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
.video-facade iframe, .video-facade video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}

.play-btn {
  position: absolute;
  top: 50%; right: 50%;
  transform: translate(50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255, 0, 127, 0.92);
  box-shadow: 0 0 40px rgba(255, 0, 127, 0.6);
  transition: transform 0.2s ease;
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-42%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 24px;
  border-color: transparent transparent transparent var(--white);
}
.video-facade:hover .play-btn { transform: translate(50%, -50%) scale(1.08); }
.video-facade.small .play-btn { width: 62px; height: 62px; }
.video-facade.small .play-btn::after { border-width: 11px 0 11px 18px; }

/* ============ Services ============ */
/* Bright band, same family as the quick-contact/contact-form treatment — the
   section is full-bleed so the light reads edge to edge, content stays
   centered at the usual 1080px measure via .services-inner. */
.services-section {
  background: var(--paper);
  max-width: none;
}
.services-section .section-title { color: var(--ink); }
.services-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(18, 14, 23, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(232, 163, 61, 0.6); }

.service-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  object-fit: cover;
  border: 2px solid rgba(232, 163, 61, 0.5);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--pink-deep);
  margin-bottom: 0.7rem;
}

.service-card p { color: #5a5148; font-size: 0.98rem; }

.services-tagline {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 1.25rem;
  color: var(--ink);
}
.services-tagline strong { color: var(--pink-deep); }

/* ============ Pricing ============ */
.pricing-gate {
  text-align: center;
  margin-top: 1.4rem;
}
.pricing-gate p {
  font-size: 1.2rem;
  color: var(--dim);
  margin-bottom: 1.1rem;
}
.pricing-gate[hidden] { display: none; }

.pricing-content { margin-top: 1rem; }
.pricing-content[hidden] { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.price-card {
  position: relative;
  background: var(--smoke);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(255, 0, 127, 0.55); }

.price-badge {
  position: absolute;
  top: -0.85rem; right: 1.4rem;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
}
.price-badge.gold { background: var(--brass); color: var(--ink); }

.price-card h3 { font-size: 1.25rem; font-weight: 700; }

.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink-soft);
  line-height: 1;
}
.price::after {
  content: "כולל מע״מ";
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dim);
  margin-top: 0.3rem;
}

.price-card p { color: var(--dim); font-size: 0.95rem; flex-grow: 1; }
.price-card .btn { align-self: center; }

.extras {
  margin-top: 2.6rem;
  background: var(--smoke-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.8rem;
}
.extras h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--brass);
  margin-bottom: 0.8rem;
}
.extras ul { list-style: none; display: grid; gap: 0.7rem; }
.extras li { color: var(--dim); }
.extras li strong { color: var(--paper); }
.extra-price { color: var(--pink-soft); font-weight: 700; white-space: nowrap; }

.why-me {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
}
.why-me strong { color: var(--paper); }

/* ============ Testimonials ============ */
.testi-stars {
  color: var(--brass);
  letter-spacing: 0.12em;
  font-size: 0.92em;
  margin-inline-end: 0.3em;
}

/* Carousel: one slide per view, native scroll-snap. scrollIntoView (used by
   the dots in main.js) resolves the correct direction on its own in RTL, so
   there's no scrollLeft-sign math to get wrong across browsers. */
.testi-carousel { max-width: 720px; margin: 2.6rem auto 0; }

/* Shared rail chrome (arrows + dots): used by the testimonials carousel, the
   video gallery, and (mobile-only) the services rail — same visual language
   across content types. */
:is(.testi-viewport, .video-rail-viewport, .services-viewport) { position: relative; }

:is(.testi-arrow, .video-arrow, .services-arrow) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(242, 236, 226, 0.3);
  background: rgba(26, 21, 34, 0.75);
  backdrop-filter: blur(6px);
  color: var(--paper);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
:is(.testi-arrow, .video-arrow, .services-arrow):hover { border-color: var(--brass); }
:is(.testi-arrow, .video-arrow, .services-arrow):focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; }
/* Inset inside the viewport (not hung off the edge) on every screen size, so
   they never clip against the section's own padding — the slide/card content
   below reserves matching horizontal space so buttons never sit on top of it. */
:is(.testi-arrow-next, .video-arrow-next, .services-arrow-next) { left: 0.25rem; }
:is(.testi-arrow-prev, .video-arrow-prev, .services-arrow-prev) { right: 0.25rem; }

.testi-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.08rem;
  color: var(--dim);
  padding: 0 3rem; /* clears the 40px arrow buttons inset at each edge */
}
.testi-slide p { quotes: none; }
.testi-slide footer {
  margin-top: 1rem;
  color: var(--brass);
  font-weight: 700;
}

/* Audio testimonials (Dana / Assaf & Genia): real Vimeo recordings whose only
   available thumbnail is a generic waveform+logo card, not real footage — so
   instead of showing that image, this renders a small brand-colored wave
   icon as a stand-in. Reuses .video-facade's existing click-to-load JS. */
.testi-audio-facade {
  aspect-ratio: 3.25 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--smoke-2), var(--smoke));
}
.testi-audio-wave {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40%;
}
.testi-audio-wave i {
  display: block;
  width: 5px;
  border-radius: 3px;
  background: var(--brass);
  opacity: 0.85;
}
.testi-audio-wave i:nth-child(1) { height: 35%; }
.testi-audio-wave i:nth-child(2) { height: 70%; }
.testi-audio-wave i:nth-child(3) { height: 45%; }
.testi-audio-wave i:nth-child(4) { height: 100%; }
.testi-audio-wave i:nth-child(5) { height: 55%; }
.testi-audio-wave i:nth-child(6) { height: 80%; }
.testi-audio-wave i:nth-child(7) { height: 40%; }

.testi-audio-label { margin-top: 0.9rem; font-size: 0.95rem; }

:is(.testi-dots, .video-dots, .services-dots) { display: flex; justify-content: center; gap: 0.55rem; margin-top: 0.7rem; }
:is(.testi-dot, .video-dot, .services-dot) {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
:is(.testi-dot, .video-dot, .services-dot).active { background: var(--pink); transform: scale(1.3); }
:is(.testi-dot, .video-dot, .services-dot):focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; }
/* .services-dot sits on the light band — var(--line) (a near-transparent
   paper tint) is invisible there, so it needs its own dark-tinted inactive color. */
.services-dot { background: rgba(18, 14, 23, 0.18); }
/* The services rail only becomes an actual swipeable carousel under 900px
   (see Responsive) — on desktop it's the static 3-column grid below, so its
   arrows/dots stay hidden there. */
.services-arrow, .services-dots { display: none; }

.testi-source { text-align: center; margin-top: 1rem; color: var(--dim); font-size: 0.9rem; }

/* ============ Video gallery ============ */
/* Real footage from the Meta ad creatives (vertical 9:16, Reels-format) — a
   horizontal rail suits that format better than a cropped-to-16:9 grid would.
   clamp() keeps ~2 cards + a peek of a 3rd on mobile (signals swipeability)
   and settles at a fixed card size once there's room for ~4 on desktop. */
.video-gallery { margin-top: 2.6rem; }

.video-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 3rem; /* clears the arrow buttons, same reasoning as .testi-slide */
}
.video-rail::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 clamp(150px, 42vw, 230px);
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.video-card-label {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.4rem 0.6rem 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(10, 8, 14, 0.88) 70%);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  pointer-events: none;
}

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.4rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.about-text .section-title { text-align: right; margin-bottom: 1.2rem; }
.about-text p { color: var(--dim); margin-bottom: 0.9rem; }
.about-signoff { color: var(--pink-soft) !important; font-weight: 700; }

/* ============ Gallery ============ */
.gallery-section { max-width: 1280px; padding-top: 0; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.gallery img:hover { transform: scale(1.03); filter: brightness(1.1); }
/* Only relevant once .gallery becomes a swipeable strip (see Responsive). */
.gallery-hint { display: none; }

/* ============ Contact ============ */
.contact-section {
  border-top: 1px solid var(--line);
  max-width: none;
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(18, 14, 23, 0.72);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.urgency {
  text-align: center;
  color: var(--brass);
  font-weight: 700;
  margin: -1rem 0 1.6rem;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(18, 14, 23, 0.14);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  width: 100%;
  transition: border-color 0.15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8a7f72; }
/* browsers force tel/email inputs to LTR, which shoves them to the left —
   keep the value LTR (digits/emails read correctly) but anchor to the right */
.contact-form input[type="tel"],
.contact-form input[type="email"] {
  direction: ltr;
  text-align: right;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.2);
}

.contact-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.whatsapp-link {
  color: #25d366;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}
.whatsapp-link:hover { text-decoration: underline; }
.tel-link { color: var(--dim); text-decoration: none; font-size: 0.95rem; }
.tel-link:hover { color: var(--paper); }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 1.25rem 5rem;
  text-align: center;
}
.footer-mark {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin-inline-end: -0.15em;
  direction: ltr;
  color: rgba(255, 255, 255, 0.5);
}
.footer-links {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--dim);
}
.footer-links a { color: var(--dim); }
.footer-links a:hover { color: var(--paper); }

.socials {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin: 1.2rem 0;
}
.socials a { color: var(--dim); transition: color 0.15s ease, transform 0.15s ease; }
.socials a:hover { color: var(--pink-soft); transform: translateY(-2px); }
.copyright { color: #71717d; font-size: 0.88rem; }

/* ============ WhatsApp FAB ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 50;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .marquee-track { animation: none; }
  .hero-scroll { animation: none; }
}

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

/* Visible focus for every interactive element */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}

/* Skip link — hidden until keyboard focus */
.skip-link {
  position: fixed;
  top: -100px;
  right: 1rem;
  z-index: 100;
  background: var(--pink-deep);
  color: var(--white);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }

/* Accessibility menu button (opposite corner from the WhatsApp FAB) */
.a11y-fab {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #005fcc;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease;
}
.a11y-fab:hover { transform: scale(1.08); }

.a11y-panel {
  position: fixed;
  bottom: 6.4rem;
  right: 1.2rem;
  z-index: 60;
  width: min(260px, calc(100vw - 2.4rem));
  background: var(--smoke);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}
.a11y-panel[hidden] { display: none; }

.a11y-panel h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.a11y-panel button {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--smoke-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  text-align: right;
  cursor: pointer;
}
.a11y-panel button:hover { border-color: var(--brass); }
.a11y-panel button[aria-pressed="true"] {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
}

.a11y-panel .a11y-statement-link {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--dim);
  text-align: center;
  text-decoration: underline;
}
.a11y-panel .a11y-statement-link:hover { color: var(--white); }

/* --- Mode: stop movement (also mirrors prefers-reduced-motion) --- */
html.a11y-nomotion *,
html.a11y-nomotion *::before,
html.a11y-nomotion *::after {
  animation: none !important;
  transition: none !important;
}
html.a11y-nomotion { scroll-behavior: auto; }
html.a11y-nomotion .reveal { opacity: 1 !important; transform: none !important; }

/* --- Mode: readable font --- */
html.a11y-readable body,
html.a11y-readable body * {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: normal !important;
}

/* --- Mode: highlight links --- */
html.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* --- Mode: high contrast (black / white / yellow) --- */
html.a11y-contrast body { background: #000; }
html.a11y-contrast body::after { display: none; }
html.a11y-contrast :is(.service-card, .price-card, .extras, .testi-slide,
  .contact-form input, .contact-form textarea, .a11y-panel, .a11y-panel button) {
  background: #000 !important;
  border-color: #fff !important;
}
html.a11y-contrast :is(p, li, span, blockquote, footer, div, label, input, textarea, a) {
  color: #fff !important;
}
html.a11y-contrast :is(h1, h2, h3, .section-title, .accent, .price, .extra-price,
  .hero-sub, .services-tagline strong, .about-signoff, .urgency, .testi-slide footer) {
  color: #ffd83d !important;
}
html.a11y-contrast .btn {
  background: #ffd83d !important;
  color: #000 !important;
  border-color: #ffd83d !important;
  box-shadow: none !important;
}
html.a11y-contrast .btn * { color: #000 !important; }
html.a11y-contrast :is(.hero-overlay, .impact-overlay) {
  background: rgba(0, 0, 0, 0.78) !important;
}
html.a11y-contrast .section-bg-video { display: none !important; }
html.a11y-contrast .section-bg-overlay { background: rgba(0, 0, 0, 0.85) !important; }
html.a11y-contrast :is(.quick-contact-inner, .contact-inner) {
  background: #000 !important;
  backdrop-filter: none !important;
}
html.a11y-contrast .services-section { background: #000 !important; }
html.a11y-contrast .proof { background: #000; border-color: #fff; }
html.a11y-contrast :is(.proof-num, .proof-stars, .testi-stars) { color: #ffd83d !important; }
html.a11y-contrast .testi-audio-wave i { background: #ffd83d !important; }
html.a11y-contrast .ticker { background: #000; border-color: #fff; }
html.a11y-contrast .ticker-track :is(span, i) { color: #ffd83d !important; }
html.a11y-contrast .marquee-track span { color: #ffd83d !important; }
html.a11y-contrast .contact-form input::placeholder,
html.a11y-contrast .contact-form textarea::placeholder { color: #cfcfcf; }
html.a11y-contrast .quick-contact { background: #000 !important; }
html.a11y-contrast .quick-contact-form input {
  background: #000 !important;
  border-color: #fff !important;
}
html.a11y-contrast .quick-contact-form input::placeholder { color: #cfcfcf !important; }
html.a11y-contrast .whatsapp-fab { background: #000; border: 2px solid #fff; }
html.a11y-contrast .a11y-fab { background: #000; border-color: #fff; }
html.a11y-contrast .a11y-panel button[aria-pressed="true"] {
  background: #ffd83d !important;
}
html.a11y-contrast .a11y-panel button[aria-pressed="true"] { color: #000 !important; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  /* keep the saxophonist (upper-left of the photo) in frame on narrow screens */
  .impact { min-height: 44svh; }
  .impact-img { object-position: 24% 0%; }
  .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Three full-height stacked cards read as an oversized wall of text on
     phones — swipe through them one at a time instead, same rail pattern as
     the testimonials/video carousels above. */
  .services {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 1rem;
    margin-top: 1.8rem;
  }
  .services::-webkit-scrollbar { display: none; }
  /* padding-inline widened to clear the 40px arrow buttons inset at each edge */
  .service-card { flex: 0 0 100%; scroll-snap-align: start; padding-inline: 3rem; }
  .services-arrow, .services-dots { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text .section-title { text-align: center; }
  .about-text { text-align: center; }
  /* Stacked above the text now instead of beside it — at its natural portrait
     ratio (2:3) that's ~525px of photo alone before any text. Cropped to a
     shorter ratio instead, still full-bleed and sharp. */
  .about-photo { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 3.2rem 1.1rem; }
  .hero-overlay { background: rgba(242, 236, 226, 0.2); }
  /* 12 photos in a 2-col grid ran ~6 rows tall — swipe through them in one
     row instead, same swipeable-strip idea as the other rails, so no photo
     gets dropped, it just no longer stacks vertically. Sized to show ~4 at
     once with the next one peeking at the edge, so the row visibly continues
     past the screen edge instead of looking like a fixed 4-photo set. */
  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0.6rem;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery img { flex: 0 0 23%; scroll-snap-align: start; }
  .gallery-hint {
    display: block;
    text-align: center;
    color: var(--dim);
    font-size: 0.82rem;
    margin-top: 0.6rem;
  }
  /* The bottom contact form ran taller than the screen — tighten the card
     padding/gaps, shrink the fields a touch, and keep phone/email side by
     side (short values, no need to stack them) instead of one-per-row. */
  .contact-inner { padding: 1.75rem 1.25rem; }
  .contact-section .section-sub { margin-bottom: 1.2rem; }
  .urgency { margin: -0.6rem 0 1rem; }
  .contact-form { gap: 0.65rem; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .contact-form input, .contact-form textarea { padding: 0.7rem 0.9rem; }
  .contact-alt { margin-top: 0.3rem; gap: 0.3rem; }
  .hero-ctas .btn { max-width: 320px; }
  .ticker-track span { font-size: 1.25rem; }
  .proof-track { padding: 1.8rem 0.6rem; }
  .proof-label { font-size: 0.8rem; }
  /* Long quotes at full desktop size + full arrow clearance wrap into a wall
     of lines on a narrow phone screen — tighten the gap under the title, and
     shrink/tighten the text so it wraps into noticeably fewer lines. */
  .testi-carousel { margin-top: 1.4rem; }
  .testi-slide { font-size: 0.92rem; line-height: 1.45; padding: 0 2.5rem; }
}
