@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:wght@400;500;600;700&display=swap');

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111;
  background: #000;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: clip;
}
html { overflow-x: clip; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

:root {
  --brand-yellow: #fdcd01;
  --brand-yellow-soft: #fcf5d7;
  --brand-black: #0e0e0e;
  --brand-blue: #01377a;
  --ink: #111;
  --muted: #555;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --page-max: 1440px;
  --content-max: 1000px;
}

/* ============ Header ============ */
.site-header {
  position: relative;
  background: var(--brand-yellow);
  height: 75px;
  z-index: 20;
}
.site-header__inner {
  height: 100%;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  width: 287px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-header__right {
  display: flex;
  align-items: stretch;
  gap: 25px;
}
.site-header__campaign {
  text-align: right;
  display: flex; flex-direction: column; justify-content: center;
  color: #000;
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
}
.site-header__campaign h3 {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.15;
  color: #000;
}
.site-header__campaign p {
  font-weight: 600;
  font-size: 12px;
  color: #000;
  margin-top: 2px;
}
.site-header__divider {
  width: 2px;
  background: #ffe3b2;
  align-self: stretch;
}
.site-header__bologo {
  display: flex;
  align-items: center;
}
.site-header__bologo img {
  width: 41px;
  height: 61px;
  object-fit: contain;
  display: block;
}

/* ============ Intro slides (2026 redesign — full-width, banner-as-slide) ============ */
:root {
  --slide-h: 652px;
  --overlay-h: 239px;   /* Figma progress column height */
}
.intro-slides {
  position: relative;
  background: #000;
}
/* Single overlay progress bar sits outside the swiper so it doesn't
   ride with slide transitions. Diagonal-stripe fill animates the "passed"
   portion, dots mark each slide boundary. */
/* Small "Skip" pill in the bottom-right of the intro-slides section
   that jumps past the entire slide loop to the next section. */
.intro-slides__skip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,.85);
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.intro-slides__skip:hover {
  background: rgba(255,255,255,.24);
  color: #fff;
  transform: translateY(-1px);
}
.intro-slides__overlay-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: calc(50% - 720px + 346px);
  top: calc((var(--slide-h) - var(--overlay-h)) / 2);
  height: var(--overlay-h);
  width: 12px;
  z-index: 4;
  pointer-events: none;
  --dot-size: 9px;
  --line-thick: 2px;
  --line-color: rgba(255,255,255,.65);
  --passed: var(--brand-yellow-soft);
  --active: var(--brand-yellow);
}
@media (max-width: 1500px) {
  .intro-slides__overlay-progress { left: 8vw; }
}
.intro-slides__overlay-progress .dot {
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--line-color);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  flex-shrink: 0;
}
.intro-slides__overlay-progress .dot.is-passed {
  background: var(--passed);
  box-shadow: 0 0 8px 2px rgba(253,205,1,.55);
}
.intro-slides__overlay-progress .dot.is-active {
  background: var(--active);
  transform: scale(1.35);
  box-shadow: 0 0 10px 3px rgba(253,205,1,.75);
}
.intro-slides__overlay-progress .line {
  flex: 1 1 auto;
  width: var(--line-thick);
  background: var(--line-color);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.intro-slides__overlay-progress .line-fill {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0%;
  background: var(--brand-yellow-soft);
  transition: height .5s cubic-bezier(.22,.61,.36,1);
}
.intro-slides__stage {
  position: relative;
  height: var(--slide-h);
  background: #000;
}
.slide {
  position: relative;
  height: var(--slide-h);
  overflow: hidden;
  isolation: isolate;
}
.slide__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}
.slide__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.slide__media video,
.slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
.slide__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 50px 0 calc(50% - 720px + 413px);
}
@media (max-width: 1500px) {
  .slide__content { padding-left: calc(8vw + 67px); }
}
.slide__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 3px 3px rgba(0,0,0,.35);
}
.slide[data-slide="1"] .slide__text { color: var(--brand-yellow-soft); }
.slide[data-slide="4"] .slide__text {
  color: var(--brand-yellow);
  font-weight: 600;
  white-space: nowrap;
}
/* Banner slide (final slide reusing the hero image) — no side gradient
   overlay so the artwork shows edge-to-edge. */
.slide--banner::after { display: none; }

/* ============ Story paragraph ============ */
.story-section {
  background: #fff;
  padding: 80px 24px;
}
.story-section p {
  max-width: 740px;
  margin: 0 auto;
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #000;
  text-align: left;
}
.story-section .hebrew {
  display: block;
  margin: 10px 0;
}

/* ============ Video / lead form ============ */
.video-section {
  background: #fff;
  padding: 20px 24px 60px;
}
.video-section__inner {
  max-width: 750px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.video-container iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.play-area {
  position: absolute; inset: 0;
  cursor: pointer;
  overflow: hidden;
}
.play-area img { width: 100%; height: 100%; object-fit: cover; }
.play-area .play-ico { display: none; }

.watching-information-wrap { position: relative; }
.watching-information-wrap.hide-form .form-group-area { display: none; }
.form-group-area {
  position: absolute;
  inset: 40px;
  z-index: 2;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 32px 44px;
  display: flex;
  align-items: center;
  gap: 44px;
}
/* Close X on the lead / notify form */
.form-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  line-height: 1;
  color: #111;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s ease;
}
.form-close:hover { background: rgba(0,0,0,.08); }
.form-title {
  flex: 0 0 180px;
  text-align: left;
  margin: 0;
}
.form-title span {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #111;
}
.form-field-area {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.fleid-group { position: relative; }
.control-form {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}
.control-form:focus { outline: 2px solid var(--brand-yellow); border-color: var(--brand-yellow); }
.control-form.input-error { border-color: #d63636; }
.form-group-area label.input-error {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  color: #d63636;
}
.fleid-group:has(.btn-wrap),
.fleid-group:has(.cf-turnstile) { grid-column: 1 / -1; }
.btn-wrap {
  width: 100%;
  background: var(--brand-yellow);
  color: #000;
  padding: 13px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
}
.btn-wrap:hover { filter: brightness(.94); }

.click-area-layout {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: center;
  font-size: 14px;
  color: #555;
}
.click-area-layout .click-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px dotted #999;
  padding-bottom: 2px;
}
.click-area-layout .click-btn:hover { color: var(--brand-blue); border-color: var(--brand-blue); }

.video-section__more {
  margin-top: 30px;
  text-align: center;
}
.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: background .2s ease, transform .2s ease;
}
.more-btn:hover { background: var(--brand-blue); transform: translateY(-1px); }
.more-btn .chev { font-size: 12px; line-height: 1; }

/* Pre-launch notify link (below the promo video) */
.video-section__notify {
  margin-top: 18px;
  text-align: left;
}
.notify-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px dotted #999;
  padding-bottom: 2px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.notify-link:hover { color: var(--brand-blue); border-color: var(--brand-blue); }
.notify-link__bell {
  font-size: 16px;
  color: var(--brand-yellow);
  filter: drop-shadow(0 0 1px rgba(0,0,0,.2));
}

/* ============ Promise CTA ============ */
.promise-cta {
  background: #fff;
  padding: 40px 24px;
  color: #000;
}
.promise-cta__card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
  background: url('../images/tishabav-2026/cta-bg.webp') center/cover no-repeat, var(--brand-yellow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}
.promise-cta__card::before {
  content: "";
  position: absolute;
  left: 25%;
  top: -9%;
  width: 33%;
  height: 85%;
  background: url('../images/tishabav-2026/cta-watermark.webp') center/contain no-repeat;
  opacity: 0.1;
  transform: rotate(-20deg);
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
}
.promise-cta__row,
.promise-cta__link { position: relative; z-index: 1; }
.promise-cta__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}
.promise-cta__photo {
  flex: 0 0 156px;
  align-self: stretch;
  min-height: 189px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.promise-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.promise-cta__divider {
  flex: 0 0 2px;
  width: 2px;
  background: #ffe3b2;
  align-self: stretch;
}
.promise-cta__stats {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 21px;
}
.promise-cta__amount {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-weight: bold;
  font-size: 45px;
  line-height: 1;
  color: #000;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.promise-cta__bar {
  position: relative;
  width: 100%;
  height: 35px;
  background: #000;
  border: 4px solid #fff;
  border-radius: 36px;
  overflow: hidden;
  box-sizing: border-box;
}
.promise-cta__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.22) 0,
      rgba(255,255,255,.22) 4px,
      transparent 4px,
      transparent 10px
    ),
    linear-gradient(90deg, #feb812 0%, #fc7f07 100%);
  background-size: 14.14px 14.14px, 100% 100%;
  animation: promiseBarStripes 1s linear infinite;
  transition: width 1.8s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}
@keyframes promiseBarStripes {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 14.14px 0, 0 0; }
}
.promise-cta.is-revealed .promise-cta__bar-fill { width: var(--fill, 0%); }
.promise-cta__bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%, transparent 100%);
  transform: translateX(-100%);
  pointer-events: none;
}
.promise-cta.is-live .promise-cta__bar-fill::after {
  animation: promiseShine 2.6s linear infinite;
}
@keyframes promiseShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.promise-cta__meta {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  text-align: center;
}
.promise-cta__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promise-cta__body h2 {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  margin-bottom: 10px;
}
.promise-cta__body p {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #000;
}
.promise-cta__link {
  height: 75px;
  background: #000;
  color: #fff;
  padding: 0 30px;
  border-radius: 10px;
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.promise-cta__link:hover {
  background: var(--brand-blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.promise-cta__link .arrow {
  flex-shrink: 0;
  transition: transform .2s ease;
}
.promise-cta__link:hover .arrow { transform: translateX(4px); }

/* ============ Nesiah sponsor ============ */
.nesiah {
  background: #fff;
  padding: 20px 24px;
}
.nesiah__card {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffedf1;
  border-radius: 10px;
  padding: 12px 50px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.nesiah__card:hover, .nesiah__card:focus-visible {
  background: #ffe1e8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.nesiah__text {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
  font-style: italic;
}
.nesiah__text span { font-size: 18px; color: #000; }
.nesiah__link {
  font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
  font-style: italic;
  font-size: 30px !important;
  font-weight: 400;
  color: #cf2031 !important;
}
.nesiah__logo img { height: 77px; width: auto; }

/* ============ A Deeper Look ============ */
.deeper {
  background: #fff;
  padding: 30px 24px 20px;
}
.deeper__card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--brand-yellow-soft);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.deeper__head {
  display: flex; align-items: center; gap: 30px;
}
.deeper__avatar {
  width: 161px;
  height: 161px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
  flex-shrink: 0;
  background: #000;
}
.deeper__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deeper__divider {
  width: 2px;
  align-self: stretch;
  background: var(--brand-yellow);
  flex-shrink: 0;
}
.deeper__intro {
  flex: 1 1 auto;
  min-width: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.deeper__intro h2 {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}
.deeper__intro p {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 18px;
  color: #2a2427;
  line-height: 1.4;
}
.deeper__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}
.deeper__card-item { display: flex; flex-direction: column; gap: 10px; }
.deeper__card-item .video-block {
  position: relative;
  aspect-ratio: 534 / 302;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.deeper__card-item { min-width: 0; }
.deeper__card-item .video-block iframe,
.deeper__card-item .video-block video { width: 100%; height: 100%; border: 0; display: block; }
.deeper__card-item .video-title {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* ============ Previous years ============ */
.previous {
  background: #fff;
  padding: 30px 24px 60px;
}
.previous__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.previous__head {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  margin: 0;
}
.previous__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}
.previous__card { display: flex; flex-direction: column; gap: 10px; }
.previous__card .video-block {
  position: relative;
  aspect-ratio: 534 / 302;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.previous__card { min-width: 0; }
.previous__card .video-block iframe,
.previous__card .video-block video { width: 100%; height: 100%; border: 0; display: block; }
.previous__card .video-meta {
  display: flex; align-items: center; gap: 10px;
}
.previous__card .video-meta__logo { height: 32px; width: auto; object-fit: contain; }
.previous__card .video-meta__sep {
  display: block;
  width: 1px;
  align-self: stretch;
  background: #000;
}
.previous__card .video-meta__title {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--brand-yellow);
  padding: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* When Charidy links are hidden, drop the yellow strip so the black
   row sits directly below the preceding section. */
.site-footer--no-amount {
  background: transparent;
  padding-top: 0;
  gap: 0;
}
.site-footer__amount { text-align: center; }
.site-footer__amount a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: #000;
}
.site-footer__amount-big {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.site-footer__amount-sub {
  font-family: 'Avenir Next', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
.site-footer__row {
  background: #000;
  padding: 20px 50px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-footer__logo img { height: 53px; width: auto; }
.site-footer__by {
  display: flex; align-items: center; gap: 5px;
  color: #fff;
}
.site-footer__by span {
  font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  color: #fff;
}
.site-footer__by img { height: 22px; width: auto; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .site-header { height: 64px; }
  .site-header__inner { padding: 0 5px 0 0; }
  .site-header__logo { width: auto; height: 64px; padding: 0; }
  .site-header__logo img { height: 100%; width: auto; object-fit: contain; }
  .site-header__right { gap: 2px; padding-left: 5px; }
  .site-header__campaign h3 { font-size: 15px; }
  .site-header__bologo img { height: 40px; }

  /* Mobile: full-viewport slides. Intro section occupies the full screen
     under the fixed header; each slide fills what's left. Use dvh so
     the section tracks the current visible viewport (Safari's expanding
     URL bar) — otherwise the skip button at the bottom falls off screen
     when the URL bar is expanded. */
  :root { --slide-h: calc(100dvh - 64px); --overlay-h: 60dvh; }
  .intro-slides { padding-top: 0; }
  .intro-slides__stage { height: var(--slide-h); }
  .slide { height: var(--slide-h); }

  /* Overlay pinned to left edge, sized proportional to viewport */
  .intro-slides__overlay-progress {
    left: 26px;
    top: calc((var(--slide-h) - var(--overlay-h)) / 2);
    height: var(--overlay-h);
  }
  .intro-slides__skip { right: 16px; bottom: 20px; font-size: 12px; padding: 7px 14px; }
  .slide::after {
    background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.15) 100%);
  }
  .slide:not(.slide--banner) .slide__media img { object-position: right center; }
  .slide__content {
    padding: 60px 30px 60px 60px;
    align-items: flex-start;
  }
  .slide__text { font-size: 24px; max-width: 100%; }

  .story-section { padding: 50px 20px; }
  .story-section p { font-size: 15px; }

  .promise-cta { padding: 24px 16px; }
  .promise-cta__card { padding: 24px; gap: 24px; border-radius: 10px; }
  .promise-cta__row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .promise-cta__photo {
    width: 156px;
    aspect-ratio: 156 / 189;
    align-self: center;
  }
  .promise-cta__divider {
    width: 100%;
    height: 2px;
    flex: 0 0 2px;
  }
  .promise-cta__amount { font-size: 36px; }
  .promise-cta__body h2 { font-size: 28px; }
  .promise-cta__body p { font-size: 16px; line-height: 24px; }
  .promise-cta__link {
    height: auto;
    padding: 16px 20px;
    font-size: 16px;
    gap: 12px;
  }
  .promise-cta__link .arrow { width: 18px; height: 30px; }

  .nesiah { padding: 16px; }
  .nesiah__card { flex-direction: column; text-align: center; padding: 20px; gap: 16px; }
  .nesiah__text { flex-direction: column; gap: 4px; }
  .nesiah__link { font-size: 24px !important; }
  .nesiah__logo img { height: 60px; }

  .deeper { padding: 20px 16px; }
  .deeper__card { padding: 20px; border-radius: 16px; gap: 20px; }
  .deeper__head { flex-direction: column; text-align: center; gap: 16px; }
  .deeper__divider { width: 60%; height: 2px; align-self: center; }
  .deeper__avatar { width: 130px; height: 130px; }
  .deeper__intro h2 { font-size: 26px; }
  .deeper__intro p { font-size: 15px; }
  .deeper__grid { grid-template-columns: 1fr; }

  .previous { padding: 20px 16px 40px; }
  .previous__head { font-size: 26px; }
  .previous__grid { grid-template-columns: 1fr; }

  /* Mobile: form stacks in natural flow instead of overlaying the video.
     Video is hidden while the form is visible (there's no room to show
     both on a phone). */
  .watching-information-wrap:not(.hide-form) .video-container { display: none; }
  .form-group-area {
    position: relative;
    inset: auto;
    top: auto; left: auto; right: auto; bottom: auto;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    overflow: visible;
  }
  .form-title { flex: 0 0 auto; text-align: center; padding: 0 36px; }
  .form-title span { font-size: 16px; }
  .form-field-area { grid-template-columns: 1fr; gap: 10px; }
  .control-form { padding: 11px 12px; font-size: 16px; } /* 16px prevents iOS zoom-on-focus */
  .site-footer__row { flex-direction: column; gap: 16px; padding: 20px 16px; }
  .site-footer__amount-big { font-size: 18px; }
}
