/* Yaniv Elbaz — theme matched to original Elementor page */

:root {
  --yaniv-gold: #beab73;
  --yaniv-gold-bright: #cfa53f;
  --yaniv-gold-hover: #d3b663;
  --yaniv-gold-glow: rgba(190, 171, 115, 0.55);
  --yaniv-gold-glow-soft: rgba(207, 165, 63, 0.35);
  --yaniv-white-glow: rgba(255, 255, 255, 0.32);
  --yaniv-blue: #1569ae;
  --yaniv-dark: #262628;
  --yaniv-dark-2: #3e3e41;
  --yaniv-black: #000000;
  --yaniv-text: #545454;
  --yaniv-text-light: #d6d6d6;
  --yaniv-white: #ffffff;
  --yaniv-off-white: #fcfcfc;
  --yaniv-panel: rgba(255, 255, 255, 0.92);
  --yaniv-font: "Assistant", "Segoe UI", Tahoma, Arial, sans-serif;
  --yaniv-bullet: #7d7d7d;
}

body.yaniv-page {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-family: var(--yaniv-font);
  color: var(--yaniv-text);
  background: var(--yaniv-dark);
  line-height: 1.65;
}

html:has(body.yaniv-page) {
  overflow-x: clip;
  max-width: 100%;
}

/* Scoped link colors */
body.yaniv-page .section--white a,
body.yaniv-page .legal-page a {
  color: var(--yaniv-blue);
}
body.yaniv-page .section--white a:hover,
body.yaniv-page .legal-page a:hover {
  color: var(--yaniv-gold);
}

body.yaniv-page .section--dark a,
body.yaniv-page .hero-dark a {
  color: var(--yaniv-white);
}
body.yaniv-page .section--dark a:hover,
body.yaniv-page .hero-dark a:hover {
  color: var(--yaniv-gold);
}

body.yaniv-page .accordion__panel a,
body.yaniv-page .press-list a {
  color: var(--yaniv-blue);
}
body.yaniv-page .accordion__panel a:hover,
body.yaniv-page .press-list a:hover {
  color: var(--yaniv-gold);
}

body.yaniv-page .quick-actions__link,
body.yaniv-page .quick-actions__label {
  color: var(--yaniv-white);
}
body.yaniv-page .quick-actions__link:hover,
body.yaniv-page .quick-actions__link:focus {
  color: var(--yaniv-white);
}

body.yaniv-page .btn--vcf,
body.yaniv-page .btn--vcf:hover,
body.yaniv-page .btn--vcf:focus {
  color: var(--yaniv-white);
}

body.yaniv-page .form-field--checkbox a {
  color: var(--yaniv-white);
  text-decoration: underline;
}
body.yaniv-page .form-fallback a {
  color: var(--yaniv-gold);
}

/* ── Reveal animations ── */
@keyframes yaniv-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes yaniv-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes yaniv-grow {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.reveal {
  opacity: 0;
}
.reveal.is-visible.reveal--fade {
  animation: yaniv-fade-in 1.25s ease both;
}
.reveal.is-visible.reveal--fade-up {
  animation: yaniv-fade-in-up 0.9s ease both;
}

.btn--grow:hover,
.btn--grow:focus {
  animation: yaniv-grow 0.3s ease forwards;
}

/* ── Shape dividers (Elementor shapes.min.css + post-323771) ── */
.shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  direction: ltr;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.shape-divider svg {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 1.3px);
  height: 100%;
  margin: 0;
}
.shape-divider--bottom {
  bottom: -1px;
  height: 70px;
}
.shape-divider--bottom svg {
  width: calc(177% + 1.3px);
  height: 70px;
}
.shape-divider--top {
  top: 0;
  height: 55px;
}
.shape-divider--fan {
  height: 55px;
}
.shape-divider--split {
  height: 28px;
}

/* ── Hero stack: image band + dark band with overlapping logo ── */
.hero-stack {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.hero-top {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  min-height: 33vh;
  background: var(--yaniv-dark) center / cover no-repeat;
}
.hero-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(1.12) contrast(1.06) saturate(1.1);
  pointer-events: none;
  z-index: 0;
}
.hero-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.14) 45%,
    rgba(0, 0, 0, 0.22) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-top .shape-divider {
  z-index: 2;
}

.hero-dark {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--yaniv-black) center / cover no-repeat;
  margin-top: -1px;
  padding: 3.125rem 1rem 4rem;
}
.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.34) 0%,
    rgba(0, 0, 0, 0.42) 55%,
    rgba(0, 0, 0, 0.48) 100%
  );
  pointer-events: none;
}
.hero-dark > *:not(.shape-divider) {
  position: relative;
  z-index: 1;
}
.hero-dark .shape-divider--fan {
  z-index: 1;
}

.card-page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: transparent;
  box-shadow: none;
}

.card-header {
  text-align: center;
  padding: 0 0 0.5rem;
  border: none;
}

.card-header__logo {
  position: relative;
  z-index: 5;
  display: block;
  width: 358px;
  max-width: 22%;
  height: auto;
  aspect-ratio: 1;
  margin: -127px auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  filter: brightness(1.06) contrast(1.04);
  box-shadow:
    0 -10px 10px -9px rgba(0, 0, 0, 0.59),
    0 0 24px var(--yaniv-gold-glow-soft),
    0 0 48px rgba(190, 171, 115, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.38);
}

.card-header__title {
  font-size: clamp(1.625rem, 5vw, 3.375rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding-top: 1.75rem;
  line-height: 1.2;
  text-shadow:
    0 0 16px var(--yaniv-white-glow),
    0 0 6px rgba(255, 255, 255, 0.2),
    0 2px 12px rgba(0, 0, 0, 0.55);
}

.card-header__subtitle {
  font-size: clamp(1.1rem, 3vw, 1.8125rem);
  font-weight: 400;
  color: #ffffff;
  margin: 1rem 0 0;
  padding: 0;
  line-height: 1.2;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.24),
    0 1px 8px rgba(0, 0, 0, 0.45);
}

.quick-actions {
  text-align: center;
  margin-top: 2.25rem;
  padding: 0.875rem 0 0.75rem;
}

@media (max-width: 900px) {
  .quick-actions__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0.35rem;
  }
}

.quick-actions__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem 0.35rem;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.quick-actions__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.15rem 0.75rem;
  text-decoration: none;
  color: var(--yaniv-white);
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 400;
  min-height: auto;
}
.quick-actions__link:hover,
.quick-actions__link:focus {
  text-decoration: none;
  color: var(--yaniv-white);
}
.quick-actions__label {
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.quick-actions__link:hover .quick-actions__icon,
.quick-actions__link:focus .quick-actions__icon {
  animation: yaniv-grow 0.3s ease forwards;
}

.quick-actions__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  border: 2px solid var(--yaniv-gold);
  font-size: 1.5625rem;
  color: var(--yaniv-gold-bright);
  flex-shrink: 0;
  box-shadow:
    0 0 14px var(--yaniv-gold-glow-soft),
    0 0 6px rgba(190, 171, 115, 0.28);
}
.quick-actions__icon i {
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(207, 165, 63, 0.75));
}

.btn--vcf {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin: 2.5rem auto 0.25rem;
  padding: 0.625rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.46);
  border: none;
  border-radius: 30px;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.44),
    0 0 18px rgba(255, 255, 255, 0.12);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.22);
}
.btn--vcf:hover,
.btn--vcf:focus {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.52),
    0 0 22px rgba(255, 255, 255, 0.16);
}
.btn--vcf i {
  font-size: 1rem;
  line-height: 1;
}

/* ── Dark content sections ── */
.section--dark {
  background: var(--yaniv-black) center / cover no-repeat;
  position: relative;
  padding: 2rem 1.25rem;
  color: var(--yaniv-white);
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.section--dark > *:not(.shape-divider) { position: relative; z-index: 1; }

.section--dark .section__title {
  color: var(--yaniv-white);
  font-size: 1.9375rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.section--dark p,
.section--dark .quote {
  color: var(--yaniv-white);
  text-align: center;
}

.section--about {
  padding: 1.5rem clamp(1rem, 8vw, 6.25rem) 2rem;
}

.quote {
  margin: 1.5rem auto 0;
  padding: 0;
  background: transparent;
  border: none;
  font-style: italic;
  font-size: 1rem;
  max-width: 36rem;
}

/* ── White gallery section ── */
.section--white {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background: var(--yaniv-off-white);
  color: var(--yaniv-text);
  padding: 0 0 2.5rem;
}
.section--white__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 0;
}

.rotating-headline {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 100%;
  overflow: hidden;
  padding: 0 0.5rem;
}

.rotating-headline__title {
  margin: 0;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--yaniv-black);
  line-height: 1.2;
}

.rotating-headline__clip {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
  height: 1.25em;
  max-width: 100%;
  min-width: 0;
}

.rotating-headline__line {
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.45s ease, transform 0.45s ease;
  white-space: nowrap;
}
.rotating-headline__line.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.section-divider-line {
  width: 36%;
  height: 1px;
  margin: -0.85rem auto 0;
  background: var(--yaniv-gold);
}

/* ── YouTube embed ── */
.video-embed {
  margin-top: -1rem;
  padding: 0 0.5rem;
}
.video-embed__wrapper {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-embed__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Photo carousel ── */
.photo-carousel {
  margin-top: 1.5rem;
}

.photo-carousel__viewport {
  position: relative;
  overflow: hidden;
  padding: 0 2.75rem;
}

.photo-carousel__track {
  position: relative;
  height: 878px;
  perspective: 1200px;
}

@media (max-width: 767px) {
  .hero-top {
    min-height: 20vh;
  }
  .shape-divider--bottom {
    height: 28px;
  }
  .shape-divider--bottom svg {
    width: calc(133% + 1.3px);
    height: 28px;
  }
  .shape-divider--top,
  .shape-divider--fan {
    height: 19px;
  }
  .hero-dark {
    padding: 1.5rem 1.25rem 3.25rem;
  }
  .card-header {
    padding-bottom: 0.75rem;
  }
  .card-header__logo {
    width: 100%;
    max-width: 43%;
    margin: -43px auto 1.25rem;
  }
  .card-header__title {
    font-size: 1.625rem;
    padding-top: 0.25rem;
    line-height: 1.25;
  }
  .card-header__subtitle {
    font-size: 1.25rem;
    margin-top: 1rem;
    line-height: 1.3;
  }
  .quick-actions {
    margin-top: 2.5rem;
    padding: 0.875rem 0 0.625rem;
  }
  .quick-actions__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem 0.35rem;
    max-width: 100%;
  }
  .quick-actions__link {
    gap: 0.65rem;
    padding: 0.45rem 0.1rem 0.85rem;
    font-size: 1rem;
  }
  .quick-actions__icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
  }
  .btn--vcf {
    display: flex;
    width: min(100%, 22rem);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
  .rotating-headline__title {
    font-size: 1.875rem;
  }
  .rotating-headline {
    margin-bottom: 0.5rem;
  }
  .section-divider-line {
    width: 92%;
  }
  .photo-carousel__track {
    height: 320px;
  }
  .photo-carousel__viewport {
    padding: 0 2rem;
  }
  .section--white__inner {
    padding-top: 1.75rem;
  }
  .section--about {
    padding: 0.75rem 1rem 1.5rem;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .card-header__title {
    font-size: 2.8125rem;
  }
  .photo-carousel__track {
    height: min(62vw, 640px);
  }
}

.photo-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(calc(var(--offset, 0) * 105%)) scale(0.82);
  transition:
    opacity var(--transition-ms, 1000ms) ease,
    transform var(--transition-ms, 1000ms) ease;
  pointer-events: none;
}
.photo-carousel__slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}
.photo-carousel__slide:not(.is-active) {
  filter: brightness(0.72);
}

.photo-carousel__image {
  width: 100%;
  height: 100%;
  background: var(--yaniv-white) center / contain no-repeat;
  border-radius: 2px;
}

.photo-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(38, 38, 40, 0.72);
  color: var(--yaniv-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}
.photo-carousel__arrow:hover {
  background: var(--yaniv-dark);
}
.photo-carousel__arrow--prev { right: 0; }
.photo-carousel__arrow--next { left: 0; }

.photo-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--yaniv-bullet);
  opacity: 0.45;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.carousel__dot.is-active {
  opacity: 1;
  transform: scale(1.15);
}

/* ── Accordion (practice areas + press) ── */
.accordion {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 0.5rem 2rem;
}

.accordion__item {
  border: 1px solid var(--yaniv-white);
  margin-bottom: 0;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--yaniv-black);
  color: var(--yaniv-gold);
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  text-shadow: 0 0 10px var(--yaniv-gold-glow-soft);
}
.accordion__trigger:hover,
.accordion__trigger[aria-expanded="true"] {
  color: var(--yaniv-gold);
}

.accordion__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--yaniv-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion__icon::before { width: 100%; height: 2px; }
.accordion__icon::after { width: 2px; height: 100%; transition: transform 0.2s; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.accordion__panel {
  display: none;
  padding: 1rem 1.1rem;
  background: var(--yaniv-panel);
  color: var(--yaniv-black);
  border-top: 1px solid var(--yaniv-white);
}
.accordion__panel.is-open { display: block; }
.accordion__panel p { text-align: right; color: var(--yaniv-black); }

.bullet-list {
  margin: 0.5rem 0;
  padding-right: 1.25rem;
  text-align: right;
}
.bullet-list li { margin-bottom: 0.35rem; }

.subsection__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--yaniv-black);
}

/* Press inside accordion */
.press-list { list-style: none; padding: 0; margin: 0; }
.press-list li {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dotted #ccc;
}
.press-list a {
  text-decoration: none;
}
.press-list a:hover {
  text-decoration: underline;
}
.press-list__cta { color: var(--yaniv-text); }

/* ── Contact block ── */
.section--contact {
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}

.contact-block__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--yaniv-white);
  margin: 0 0 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
@media (max-width: 560px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.contact-item__label {
  font-size: 0.95rem;
  color: var(--yaniv-white);
  opacity: 0.9;
}
.contact-item a {
  color: var(--yaniv-white);
  text-decoration: underline;
  font-size: 1rem;
}
.contact-item a:hover {
  color: var(--yaniv-gold);
}

.contact-hours {
  margin-top: 1rem;
}
.contact-hours__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--yaniv-white);
  margin: 0 0 0.5rem;
}
.contact-hours p {
  margin: 0.25rem 0;
  font-size: 1rem;
}

/* ── CTA WhatsApp (stacked icon like original) ── */
.section--cta {
  text-align: center;
  padding: 1rem 1.25rem 1.5rem;
}
.section--cta .section__title {
  color: var(--yaniv-white);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.btn--whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0;
  color: var(--yaniv-white);
  background: var(--yaniv-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.44);
  text-decoration: none;
  border: none;
  transition: background 0.2s;
}
.btn--whatsapp-cta__icon {
  font-size: 2rem;
  line-height: 1;
}
.btn--whatsapp-cta:hover {
  background: var(--yaniv-gold-hover);
  color: var(--yaniv-white);
  text-decoration: none;
}

/* ── Lead form on dark ── */
.section--form {
  padding: 1.5rem 1.25rem 2rem;
  max-width: 28rem;
  margin: 0 auto;
}
.section--form .section__title {
  color: var(--yaniv-white);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.lead-form .form-field label {
  color: var(--yaniv-text-light);
  font-weight: 400;
}
.lead-form input,
.lead-form textarea {
  background: var(--yaniv-white);
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form-field--checkbox label {
  color: var(--yaniv-text-light);
}
.form-field--checkbox a {
  color: var(--yaniv-white);
  text-decoration: underline;
}
.form-field--checkbox a:hover {
  color: var(--yaniv-gold);
}

.btn--primary {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--yaniv-gold);
  color: var(--yaniv-white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn--primary:hover { background: var(--yaniv-gold-hover); }

.form-fallback { color: var(--yaniv-text-light); text-align: center; }
.form-fallback a { color: var(--yaniv-gold); }
.form-status--error { color: #ff8a8a; }
.form-status--success { color: #8dffb0; }

/* ── Share ── */
.section--share {
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.section--share .section__title {
  color: var(--yaniv-white);
  font-size: 1.1rem;
  font-weight: 600;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn--share {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--yaniv-gold);
  color: var(--yaniv-white);
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}
.btn--share:hover {
  background: var(--yaniv-gold-hover);
  color: var(--yaniv-white);
  text-decoration: none;
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 1.25rem 1rem 2rem;
  font-size: 0.85rem;
  color: var(--yaniv-text-light);
  background: var(--yaniv-black);
}
.site-footer a { color: var(--yaniv-text-light); }
.site-footer__nav { display: flex; gap: 1rem; justify-content: center; margin-top: 0.5rem; }

/* ── Accessibility FAB (match original gray) ── */
body.yaniv-page .a11y-fab {
  background: #515151;
}
body.yaniv-page .a11y-panel { border-color: #515151; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; }
  .reveal.is-visible.reveal--fade,
  .reveal.is-visible.reveal--fade-up {
    animation: none;
  }
  .photo-carousel__slide,
  .rotating-headline__line {
    transition: none;
  }
}
