/* ═══════════════════════════════════════════════
   חזקה מהרוח — Stronger Than Wind
   ember-black · amber · flame · crimson
   ═══════════════════════════════════════════════ */

:root {
  --ink: #0b0908;
  --coal: #16110e;
  --coal-2: #1e1713;
  --bone: #f2eae0;
  --smoke: #a89f96;
  --amber: #f5a83c;
  --amber-soft: #fbc575;
  --flame: #e8541d;
  --crimson: #c8102e;
  --ember-grad: linear-gradient(90deg, var(--amber) 0%, var(--flame) 55%, var(--crimson) 100%);
  --font-display: "Karantina", system-ui, sans-serif;
  --font-body: "Heebo", system-ui, sans-serif;
  --font-hand: "Amatic SC", cursive;
  --wrap: min(1320px, calc(100% - 48px));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: var(--wrap); margin-inline: auto; }

::selection { background: var(--crimson); color: var(--bone); }

/* ─────────── buttons ─────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-ember {
  background: var(--ember-grad);
  color: #fff;
  box-shadow: 0 6px 24px rgba(200, 16, 46, .35);
}
.btn-ember:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232, 84, 29, .45); }
.btn-ghost {
  border: 1px solid rgba(245, 168, 60, .5);
  color: var(--amber);
}
.btn-ghost:hover { background: rgba(245, 168, 60, .1); border-color: var(--amber); }

/* ─────────── nav ─────────── */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 36px;
  background: linear-gradient(180deg, rgba(11, 9, 8, .92), rgba(11, 9, 8, .75));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 168, 60, .12);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-phoenix { height: 40px; width: auto; }
.nav-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: .02em;
  color: var(--bone);
}
.nav-links { display: flex; gap: 26px; justify-content: center; }
.nav-links a {
  font-size: .95rem;
  font-weight: 400;
  color: var(--smoke);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.on { color: var(--amber); }
.nav-cta { padding: 9px 22px; font-size: .92rem; justify-self: start; }
.nav-burger { display: none; }

/* ─────────── hero ─────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/img/hero-armenia-1.jpg") center 60% / cover no-repeat;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200, 16, 46, .18), transparent 55%),
    linear-gradient(180deg, rgba(11, 9, 8, .78) 0%, rgba(11, 9, 8, .35) 42%, rgba(11, 9, 8, .55) 70%, var(--ink) 100%);
}
.hero-inner { padding: 120px 24px 80px; max-width: 860px; }
.hero-phoenix {
  height: clamp(72px, 11vh, 110px);
  width: auto;
  margin-inline: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 24px rgba(200, 16, 46, .55));
  animation: phoenix-rise 1.2s cubic-bezier(.19, 1, .22, 1) both;
}
.hero-eyebrow {
  font-size: clamp(.85rem, 1.6vw, 1.05rem);
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--amber-soft);
  animation: rise .9s .25s cubic-bezier(.19, 1, .22, 1) both;
}
.hero-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: .95;
  color: var(--bone);
  margin: 18px 0 8px;
}
.hero-words .hw { animation: rise 1s cubic-bezier(.19, 1, .22, 1) both; }
.hero-words .hw:nth-child(1) { animation-delay: .40s; }
.hero-words .hw:nth-child(2) { animation-delay: .62s; }
.hero-words .hw:nth-child(3) { animation-delay: .84s; }
.hw-ember {
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hw-red { color: #e02133; text-shadow: 0 2px 24px rgba(200, 16, 46, .35); }
.hw-orange { color: var(--flame); text-shadow: 0 2px 24px rgba(232, 84, 29, .3); }
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--bone);
  opacity: .88;
  animation: rise 1s 1.05s cubic-bezier(.19, 1, .22, 1) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  animation: rise 1s 1.25s cubic-bezier(.19, 1, .22, 1) both;
}
.hero-scroll {
  position: absolute;
  bottom: 26px;
  inset-inline: 0;
  display: grid;
  justify-items: center;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--amber), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes phoenix-rise {
  from { opacity: 0; transform: translateY(16px) scale(.92); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(.4); opacity: .4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ─────────── manifesto ─────────── */
.manifest { padding: 110px 0 90px; }
.manifest-grid { max-width: 780px; text-align: center; }
.manifest-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: .04em;
  color: #e0433b;
  transform: rotate(-2deg);
  margin-bottom: 20px;
}
.manifest-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--bone);
}
.manifest-quote em {
  font-style: normal;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifest-quote footer {
  margin-top: 22px;
  font-size: 1rem;
  color: var(--smoke);
}

/* ─────────── sections ─────────── */
.section { padding: 90px 0; }
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: #e0433b;
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-bottom: 6px;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  color: var(--amber);
}
.sec-lede { margin-top: 14px; color: var(--smoke); font-size: 1.1rem; }

/* ─────────── destinations ─────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .08);
}
.dest-lg { grid-row: span 2; aspect-ratio: auto; }
.dest-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.19, 1, .22, 1), filter .4s;
  filter: saturate(.92) contrast(1.02);
}
.dest-card:hover > img { transform: scale(1.06); filter: saturate(1.05); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(11, 9, 8, .55) 68%, rgba(11, 9, 8, .92) 100%);
}
.dest-meta {
  position: absolute;
  z-index: 1;
  bottom: 0;
  inset-inline: 0;
  padding: 22px 24px;
}
.dest-meta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--bone);
}
.dest-tag { color: var(--amber); font-size: 1rem; font-weight: 400; }
.dest-line { color: var(--smoke); font-size: .9rem; margin-top: 4px; }
.dest-soon {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(200, 16, 46, .16), transparent 60%),
    var(--coal-2);
}
.dest-emblem img {
  height: 96px;
  opacity: .35;
  margin-top: -40px;
  filter: grayscale(.2);
}
.dest-soon .dest-meta::before {
  content: "לכל פרטי הטיול ←";
  display: block;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--smoke);
  margin-bottom: 4px;
}

/* ─────────── bands (israel / mothers) ─────────── */
.band {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 520px;
  align-items: stretch;
}
.band-flip { grid-template-columns: 1fr 1.15fr; }
.band-flip .band-media { order: 2; }
.band-media { position: relative; overflow: hidden; clip-path: inset(0); }
.band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 30%, transparent 70%, var(--ink) 100%);
  opacity: .55;
}
.band-body {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.band-list { list-style: none; }
.band-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 168, 60, .15);
  font-size: 1.15rem;
  font-weight: 400;
}
.band-list li::before {
  content: "‹";
  color: var(--flame);
  margin-inline-end: 10px;
  font-weight: 700;
}
.band-text { color: var(--smoke); font-size: 1.1rem; max-width: 46ch; }
.band .btn { align-self: flex-start; }

/* ─────────── why ─────────── */
.why { background: var(--coal); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: rgba(245, 168, 60, .12);
  border: 1px solid rgba(245, 168, 60, .12);
  border-radius: 16px;
  overflow: hidden;
}
.why-item { background: var(--coal); padding: 30px 26px; grid-column: span 3; }
.why-item:nth-child(n+5) { grid-column: span 4; }
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--amber);
  margin-bottom: 6px;
}
.why-item p { color: var(--smoke); font-size: .98rem; }
.why-item.why-full { grid-column: 1 / -1; background: linear-gradient(90deg, rgba(200, 16, 46, .12), var(--coal) 55%); }
.why-full p { color: var(--bone); }

/* ─────────── moments ─────────── */
.moments { padding: 90px 0 0; }
.moments-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 24px 90px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.moments-track::-webkit-scrollbar { display: none; }
.moments-track img {
  height: 340px;
  width: auto;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
  scroll-snap-align: center;
  filter: saturate(.95);
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}
.moments-track img:hover { transform: translateY(-6px); }

/* ─────────── story ─────────── */
.story {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 16, 46, .2), transparent 55%),
    linear-gradient(180deg, rgba(11, 9, 8, .88), rgba(11, 9, 8, .82)),
    url("../assets/img/hero-armenia-cliff.jpg") center / cover no-repeat;
  text-align: center;
}
.story-inner { max-width: 700px; }
.story-phoenix {
  height: 86px;
  margin-inline: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 20px rgba(200, 16, 46, .5));
}
.story .sec-title { color: var(--bone); }
.story-text {
  margin: 28px 0 36px;
  font-size: 1.15rem;
  color: var(--smoke);
  display: grid;
  gap: 16px;
}
.story-text strong { color: var(--amber); font-weight: 500; }

/* ─────────── voices ─────────── */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.voice {
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .1);
  border-radius: 16px;
  padding: 32px 30px;
}
.voice blockquote {
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--bone);
}
.voice blockquote::before { content: "״"; color: var(--flame); font-size: 1.6rem; }
.voice figcaption {
  margin-top: 18px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--amber);
}
.voice figcaption::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--ember-grad);
  vertical-align: middle;
  margin-inline-end: 10px;
}

/* ─────────── roei ─────────── */
.roei {
  background: var(--coal);
  border-block: 1px solid rgba(245, 168, 60, .1);
  padding: 70px 0;
  text-align: center;
}
.roei-inner { max-width: 640px; }
.roei-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 2.6rem;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.roei-text { color: var(--smoke); font-size: 1.02rem; }
.roei-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--amber);
  font-size: .95rem;
  border-bottom: 1px solid rgba(245, 168, 60, .4);
  transition: color .2s, border-color .2s;
}
.roei-link:hover { color: var(--bone); border-color: var(--bone); }

/* ─────────── contact ─────────── */
.contact { padding: 90px 0 40px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 168, 60, .12);
}
.contact-phoenix { height: 72px; }
.contact-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--bone);
  margin-top: 10px;
  line-height: 1;
}
.contact-slogan { font-family: var(--font-hand); font-weight: 700; color: var(--amber); font-size: 1.7rem; letter-spacing: .05em; }
.contact-logo { max-width: 190px; }
.contact-sub { margin-top: 22px; }
.contact-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--amber);
  margin-bottom: 12px;
}
.contact-block p { color: var(--smoke); margin-bottom: 6px; }
.contact-block a:hover { color: var(--amber); }
.contact-block .btn { margin-top: 14px; }
.contact-social { display: flex; gap: 18px; }
.contact-social a { color: var(--bone); border-bottom: 1px solid rgba(245, 168, 60, .35); }
.contact-fine {
  text-align: center;
  color: var(--smoke);
  font-size: .85rem;
  padding-top: 28px;
  opacity: .7;
}

/* ─────────── dropdown nav ─────────── */
.nav-item { position: relative; }
.nav-item > a {
  font-size: .95rem;
  font-weight: 400;
  color: var(--smoke);
  transition: color .2s;
  white-space: nowrap;
  display: inline-block;
  padding: 8px 0;
}
.nav-item > a:hover, .nav-item > a.on { color: var(--amber); }
.caret { font-size: .6rem; opacity: .7; }
.sub {
  position: absolute;
  top: 100%;
  inset-inline-start: 50%;
  translate: 50% 0;
  min-width: 250px;
  background: rgba(16, 12, 10, .97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 168, 60, .2);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .55);
  z-index: 50;
}
.nav-item:hover .sub, .nav-item:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.sub a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--bone);
  font-size: .95rem;
  font-weight: 400;
  transition: background .15s, color .15s;
}
.sub a small {
  display: block;
  color: var(--smoke);
  font-size: .78rem;
}
.sub a:hover { background: rgba(245, 168, 60, .1); color: var(--amber); }
.sub a:hover small { color: var(--amber-soft); }
.sub .sub-all { color: var(--amber); font-weight: 500; border-top: 1px solid rgba(245, 168, 60, .15); margin-top: 4px; }

/* ─────────── section photo backgrounds ─────────── */
.why-bg { position: relative; overflow: hidden; isolation: isolate; }
.why-bg-img {
  position: absolute;
  inset: -60px 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.why-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 16, 46, .16), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, rgba(13, 10, 8, .93) 18%, rgba(13, 10, 8, .93) 82%, var(--ink) 100%);
}
.why-bg .why-item { background: rgba(16, 12, 10, .97); }
.why-bg .why-item.why-full { background: linear-gradient(90deg, rgba(200, 16, 46, .22), rgba(16, 12, 10, .97) 55%); }
.why-bg .sec-hand { text-shadow: 0 1px 12px rgba(11, 9, 8, .9); }
.why-bg .sec-title {
  text-shadow: 0 2px 18px rgba(11, 9, 8, .8);
}
.why-bg .why-item h3 { text-shadow: 0 1px 8px rgba(11, 9, 8, .6); }
.why-bg .why-item p { color: #c4bab0; }
.page-hero.page-hero-img, .page-hero[style*="background-image"] {
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─────────── stats band ─────────── */
.stats { padding: 0 0 70px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245, 168, 60, .14);
  border-block: 1px solid rgba(245, 168, 60, .14);
}
.stat { background: var(--ink); text-align: center; padding: 28px 12px; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--smoke); font-size: .95rem; }

/* ─────────── phoenix band ─────────── */
.phoenix-band {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 56px;
  max-width: 980px;
  margin-inline: auto;
  padding: 90px 24px;
}
.phoenix-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 16, 46, .16), transparent 60%),
    linear-gradient(180deg, var(--ink), transparent 30%, transparent 70%, var(--ink));
  pointer-events: none;
}
.phoenix-big {
  height: clamp(220px, 34vw, 360px);
  width: auto;
  filter: drop-shadow(0 0 46px rgba(232, 84, 29, .55));
  animation: phoenix-glow 4s ease-in-out infinite;
}
@keyframes phoenix-glow {
  0%, 100% { filter: drop-shadow(0 0 26px rgba(232, 84, 29, .35)); }
  50% { filter: drop-shadow(0 0 60px rgba(232, 84, 29, .65)); }
}
.phoenix-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}
.phoenix-copy p { font-size: 1.2rem; color: var(--smoke); max-width: 44ch; }
.ember-text {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: .05em;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* ─────────── page hero (inner pages) ─────────── */
.page-hero {
  padding: 170px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(200, 16, 46, .22), transparent 60%),
    var(--ink);
}
.sec-title.xl { font-size: clamp(3.2rem, 8vw, 5.4rem); }
.page-hero .sec-lede { max-width: 560px; margin-inline: auto; }
.sec-more { margin-top: 36px; text-align: center; }

/* ─────────── tour page ─────────── */
.tp-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  background-size: cover;
  background-position: center 35%;
  isolation: isolate;
  overflow: hidden;
}
.tp-hero-ember {
  background:
    radial-gradient(ellipse at 75% 15%, rgba(200, 16, 46, .35), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(232, 84, 29, .18), transparent 55%),
    var(--coal-2);
}
.tp-hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 9, 8, .72) 0%, rgba(11, 9, 8, .25) 40%, rgba(11, 9, 8, .82) 82%, var(--ink) 100%);
}
.tp-hero-ember .tp-hero-veil { background: linear-gradient(180deg, rgba(11, 9, 8, .4), transparent 45%, var(--ink) 100%); }
.tp-hero-phoenix {
  position: absolute;
  top: 90px;
  inset-inline-start: 4vw;
  height: clamp(120px, 20vh, 210px);
  filter: drop-shadow(0 4px 24px rgba(200, 16, 46, .6));
}
.tp-hero-inner { padding: 140px 0 56px; }
.tp-cat {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: .05em;
  color: var(--amber-soft);
}
.tp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.6rem, 9vw, 6.4rem);
  line-height: .95;
  color: var(--bone);
}
.tp-sub { font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--amber); margin-bottom: 20px; }
.tp-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 26px;
}
.tp-chips li {
  background: rgba(11, 9, 8, .6);
  border: 1px solid rgba(245, 168, 60, .3);
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.tp-chips li span {
  display: block;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--amber);
}

.tp-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.tp-lede { font-size: 1.25rem; font-weight: 400; color: var(--bone); margin: 14px 0 16px; }
.tp-intro p { color: var(--smoke); margin-bottom: 12px; }
.tp-facts {
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .14);
  border-radius: 16px;
  padding: 28px 26px;
}
.tp-facts h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--amber);
  margin-bottom: 12px;
}
.tp-facts li {
  list-style: none;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(245, 168, 60, .18);
  color: var(--smoke);
  font-size: .95rem;
}
.tp-facts li:last-child { border-bottom: none; }
.tp-facts li::before { content: "✦"; color: var(--flame); margin-inline-end: 8px; }

.tp-hl { background: var(--coal); }
.tp-hl-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.tp-hl-list.one-col { grid-template-columns: 1fr; }
.tp-hl-list li {
  position: relative;
  padding: 14px 44px 14px 12px;
  background: var(--ink);
  border: 1px solid rgba(245, 168, 60, .1);
  border-radius: 12px;
  font-weight: 400;
}
.tp-hl-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  inset-inline-start: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ember-grad);
  box-shadow: 0 0 12px rgba(232, 84, 29, .5);
}

.tp-days { list-style: none; max-width: 820px; position: relative; }
.tp-days::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  inset-inline-start: 33px;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), var(--crimson));
  opacity: .45;
}
.tp-day {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 18px 0;
  position: relative;
}
.tp-day-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--coal-2);
  border: 1px solid rgba(245, 168, 60, .4);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--amber);
  box-shadow: 0 0 0 6px var(--ink);
  z-index: 1;
}
.tp-day-num span { display: block; font-size: .65rem; font-family: var(--font-body); font-weight: 400; color: var(--smoke); letter-spacing: .1em; }
.tp-day-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--bone);
  margin-bottom: 4px;
}
.tp-day-body p { color: var(--smoke); max-width: 62ch; }
.tp-itin-note { margin-top: 26px; color: var(--amber-soft); font-size: .95rem; }
.tp-itin-secret {
  max-width: 620px;
  font-size: 1.15rem;
  color: var(--smoke);
  background: var(--coal);
  border: 1px dashed rgba(245, 168, 60, .35);
  border-radius: 16px;
  padding: 26px 30px;
}

.tp-inc-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; align-items: start; }
.tp-inc-card {
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .14);
  border-radius: 16px;
  padding: 30px 28px;
}
.tp-inc-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 14px;
}
.tp-inc-card ul { list-style: none; }
.tp-inc-card li { padding: 7px 0; color: var(--smoke); font-size: .98rem; }
.list-yes li::before { content: "✓"; color: var(--amber); font-weight: 700; margin-inline-end: 10px; }
.list-no li::before { content: "✕"; color: var(--crimson); font-weight: 700; margin-inline-end: 10px; }
.tp-inc-no h3 { color: var(--smoke); }

.tp-notes .wrap {
  background: linear-gradient(90deg, rgba(200, 16, 46, .1), var(--coal) 60%);
  border: 1px solid rgba(245, 168, 60, .12);
  border-radius: 16px;
  padding: 30px 32px;
}
.tp-notes h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--amber);
  margin-bottom: 10px;
}
.tp-notes ul { list-style: none; }
.tp-notes li { padding: 5px 0; color: var(--smoke); font-size: .95rem; }
.tp-notes li::before { content: "◆"; font-size: .7rem; color: var(--flame); margin-inline-end: 10px; vertical-align: 2px; }

/* ─────────── cta band ─────────── */
.cta-band {
  text-align: center;
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(200, 16, 46, .25), transparent 60%),
    var(--ink);
}
.cta-phoenix { height: 90px; margin-inline: auto; margin-bottom: 14px; filter: drop-shadow(0 4px 20px rgba(200, 16, 46, .5)); }
.cta-text { color: var(--smoke); font-size: 1.15rem; margin: 10px 0 28px; }
.cta-band .hero-actions { margin-top: 0; }

/* ─────────── grids / cards extras ─────────── */
.dest-grid-3 { grid-template-columns: repeat(3, 1fr); }
.dest-card { display: block; }
.band-list a { display: block; transition: color .2s; }
.band-list a:hover { color: var(--amber); }

/* ─────────── story page ─────────── */
.story-copy { max-width: 720px; margin-inline: auto; }
.story-copy p { color: var(--smoke); font-size: 1.12rem; margin-bottom: 18px; }
.story-copy strong { color: var(--amber); font-weight: 500; }
.story-copy p.story-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--amber);
  line-height: 1.2;
  margin-bottom: 14px;
}
.story-copy p.story-ember {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2;
  background: linear-gradient(180deg, var(--amber) 0%, var(--flame) 55%, var(--crimson) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--amber);
  border-inline-start: 3px solid var(--crimson);
  padding-inline-start: 24px;
  margin: 30px 0;
}
.story-sign { font-family: var(--font-hand); font-weight: 700; font-size: 2.2rem; color: var(--amber); }
.story-tagline {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.9rem !important;
  letter-spacing: .04em;
  color: var(--amber-soft) !important;
}
.story-stanza { line-height: 2.1; }
.story-phoenix-moment {
  text-align: center;
  margin: 46px auto;
  padding: 40px 28px;
  max-width: 560px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 16, 46, .18), transparent 65%),
    var(--coal);
  border: 1px solid rgba(245, 168, 60, .18);
}
.story-phoenix-moment img {
  height: 110px;
  margin-inline: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 24px rgba(232, 84, 29, .6));
  animation: phoenix-glow 4s ease-in-out infinite;
}
.story-phoenix-moment p { color: var(--bone) !important; }
.story-fire {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem !important;
  line-height: 1.25 !important;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  margin-top: 14px;
}
.story-again {
  font-size: 1.3rem !important;
  color: var(--bone) !important;
}
.story-again span {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 2rem;
  color: var(--amber);
  display: inline-block;
  margin-inline-end: 10px;
}
.story-again span:nth-child(2) { font-size: 2.4rem; color: var(--flame); }
.story-again span:nth-child(3) { font-size: 2.8rem; color: var(--crimson); }
.story-cred {
  margin-top: 46px;
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .14);
  border-radius: 16px;
  padding: 28px 30px;
}
.story-cred h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--amber); margin-bottom: 8px; }

/* ─────────── roei page ─────────── */
.roei-title {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 5rem);
  letter-spacing: .05em;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.roei-years { color: var(--smoke); margin-top: 6px; }

/* ─────────── footer (מסודר ונעים) ─────────── */
.footer {
  padding: 80px 0 30px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 16, 46, .1), transparent 55%),
    linear-gradient(180deg, var(--ink), #120d0b);
  border-top: 1px solid rgba(245, 168, 60, .14);
  text-align: center;
}
.f-brand { display: grid; justify-items: center; gap: 2px; margin-bottom: 34px; }
.f-phoenix { height: 84px; filter: drop-shadow(0 4px 20px rgba(200, 16, 46, .5)); margin-bottom: 10px; }
.f-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--bone);
}
.f-slogan {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: .06em;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.f-tagline { color: var(--smoke); font-size: .95rem; }
.f-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 30px;
}
.f-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 168, 60, .25);
  color: var(--bone);
  font-size: .92rem;
  transition: border-color .2s, color .2s, background .2s;
}
.f-chip:hover { border-color: var(--amber); color: var(--amber); background: rgba(245, 168, 60, .08); }
.f-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.f-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .18);
  color: var(--bone);
  font-weight: 500;
  direction: ltr;
  transition: border-color .2s, color .2s;
}
.f-pill:hover { border-color: var(--amber); color: var(--amber); }
.f-wa { margin-bottom: 26px; }
.f-social { display: flex; justify-content: center; gap: 14px; margin-bottom: 18px; }
.f-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 168, 60, .3);
  color: var(--amber);
  transition: background .2s, color .2s, transform .2s;
}
.f-social a:hover { background: var(--ember-grad); color: #fff; transform: translateY(-3px); border-color: transparent; }
.f-social svg { width: 22px; height: 22px; }
.f-address { color: var(--smoke); font-size: .9rem; margin-bottom: 20px; }
.f-credits {
  margin-top: 10px;
  color: #6d645c;
  font-size: .78rem;
  max-width: 560px;
  margin-inline: auto;
}
.f-credits summary { cursor: pointer; color: #8a8178; }

/* ─────────── whatsapp float ─────────── */
.wa-float {
  position: fixed;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); }

/* ═══════════════════════════════════════════════
   מוד תנועה: פרלקס, מרקיזות, איורים, אופי פר-טיול
   ═══════════════════════════════════════════════ */

/* ─────────── grand phoenix entrance ─────────── */
.hero-phoenix-grand {
  height: clamp(150px, 26vh, 260px);
  margin-bottom: 24px;
  animation: phoenix-entrance 2.2s cubic-bezier(.16, 1, .3, 1) both,
             phoenix-hover 5s 2.2s ease-in-out infinite;
}
@keyframes phoenix-entrance {
  0%   { opacity: 0; transform: translateY(90px) scale(.5) rotate(-14deg); filter: drop-shadow(0 0 0 rgba(232, 84, 29, 0)) brightness(2.2); }
  45%  { opacity: 1; transform: translateY(-14px) scale(1.06) rotate(3deg); filter: drop-shadow(0 0 70px rgba(232, 84, 29, .95)) brightness(1.35); }
  70%  { transform: translateY(4px) scale(.99) rotate(-1deg); filter: drop-shadow(0 0 34px rgba(232, 84, 29, .6)) brightness(1.05); }
  100% { opacity: 1; transform: none; filter: drop-shadow(0 6px 30px rgba(200, 16, 46, .55)) brightness(1); }
}
@keyframes phoenix-hover {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 6px 30px rgba(200, 16, 46, .55)); }
  50% { transform: translateY(-10px); filter: drop-shadow(0 14px 46px rgba(232, 84, 29, .7)); }
}

/* ─────────── rising embers ─────────── */
.hero-embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-embers i {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-soft), var(--flame) 60%, transparent);
  opacity: 0;
  animation: ember-rise 9s linear infinite;
}
.hero-embers i:nth-child(1)  { inset-inline-start: 8%;  animation-delay: 0s;   animation-duration: 11s; }
.hero-embers i:nth-child(2)  { inset-inline-start: 18%; animation-delay: 2.2s; width: 3px; height: 3px; }
.hero-embers i:nth-child(3)  { inset-inline-start: 27%; animation-delay: 4.8s; animation-duration: 13s; }
.hero-embers i:nth-child(4)  { inset-inline-start: 36%; animation-delay: 1.1s; width: 4px; height: 4px; }
.hero-embers i:nth-child(5)  { inset-inline-start: 46%; animation-delay: 6.4s; }
.hero-embers i:nth-child(6)  { inset-inline-start: 55%; animation-delay: 3.3s; width: 3px; height: 3px; animation-duration: 12s; }
.hero-embers i:nth-child(7)  { inset-inline-start: 63%; animation-delay: 7.7s; }
.hero-embers i:nth-child(8)  { inset-inline-start: 71%; animation-delay: .6s;  animation-duration: 10s; }
.hero-embers i:nth-child(9)  { inset-inline-start: 79%; animation-delay: 5.2s; width: 4px; height: 4px; }
.hero-embers i:nth-child(10) { inset-inline-start: 87%; animation-delay: 2.9s; animation-duration: 14s; }
.hero-embers i:nth-child(11) { inset-inline-start: 93%; animation-delay: 8.4s; width: 3px; height: 3px; }
.hero-embers i:nth-child(12) { inset-inline-start: 13%; animation-delay: 9.5s; }
@keyframes ember-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: .9; }
  50%  { transform: translateY(-52vh) translateX(14px); opacity: .55; }
  100% { transform: translateY(-104vh) translateX(-10px); opacity: 0; }
}

/* ─────────── parallax ─────────── */
[data-plx] { will-change: transform; }
.hero-bg, .tp-hero-bg { transform: scale(1.18); }
.tp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 35%;
}
.band-media img[data-plx] { height: 130%; top: -15%; }

/* ─────────── marquee (גלריה נעה) ─────────── */
.marquee {
  display: flex;
  overflow: hidden;
  gap: 14px;
  padding: 0 0 90px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
  padding-inline-end: 14px;
  animation: marquee-rtl 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}
.marquee-track img {
  height: 340px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
  filter: saturate(.95);
}
.marquee-voices { padding: 10px 0 60px; }
.marquee-voices .marquee-track { animation-duration: 90s; }
.voice-slide {
  width: min(420px, 78vw);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ─────────── doodles (איורים עדינים) ─────────── */
.has-doodles { position: relative; overflow: hidden; }
.doodle {
  position: absolute;
  color: var(--accent, var(--amber));
  opacity: .13;
  pointer-events: none;
  z-index: 0;
}
.doodle use { transform-origin: center; }
.doodle-sm { width: 84px; height: 84px; }
.doodle-md { width: 140px; height: 140px; }
.doodle-xl { width: 230px; height: 230px; }
.doodle-tl { top: 48px; inset-inline-start: 4vw; }
.doodle-tr { top: 60px; inset-inline-end: 5vw; }
.doodle-bl { bottom: 44px; inset-inline-start: 6vw; }
.doodle-br { bottom: 52px; inset-inline-end: 4vw; }
.doodle svg, .doodle use { width: 100%; height: 100%; }
.float-slow { animation: doodle-float 9s ease-in-out infinite; }
.float-slower { animation: doodle-float 13s ease-in-out infinite reverse; }
@keyframes doodle-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}
.doodle-hero {
  width: clamp(200px, 30vw, 380px);
  height: clamp(200px, 30vw, 380px);
  bottom: 8%;
  inset-inline-end: 3vw;
  opacity: .16;
  position: absolute;
}

/* ─────────── per-tour character (accent) ─────────── */
.tp-cat { color: var(--accent); text-shadow: 0 1px 10px rgba(11, 9, 8, .9); }
.tp-title { text-shadow: 0 2px 22px rgba(11, 9, 8, .65); }
.tp-sub { text-shadow: 0 1px 10px rgba(11, 9, 8, .9); }
.tp-mood {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--bone);
  opacity: .85;
}
.tp-sub { color: var(--accent); }
.tp-chips li { border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.tp-chips li span { color: var(--accent); }
.tp-hero-ember {
  background:
    radial-gradient(ellipse at 75% 15%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 55%),
    radial-gradient(ellipse at 20% 90%, color-mix(in srgb, var(--accent2) 22%, transparent), transparent 55%),
    var(--coal-2);
}
.tp-intro .sec-hand { color: var(--accent); }
.tp-facts { border-color: color-mix(in srgb, var(--accent) 25%, transparent); }
.tp-facts h3 { color: var(--accent); }
.tp-facts li::before { color: var(--accent); }
.tp-hl-list li::before { background: linear-gradient(135deg, var(--accent), var(--accent2)); box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 55%, transparent); }
.tp-days::before { background: linear-gradient(180deg, var(--accent), var(--accent2)); }
.tp-day-num { border-color: color-mix(in srgb, var(--accent) 55%, transparent); color: var(--accent); }
.tp-itin .sec-hand { color: var(--accent); }
.tp-inc-card h3 { color: var(--accent); }
.list-yes li::before { color: var(--accent); }
.tp-hero .hero-actions .btn-ghost { border-color: color-mix(in srgb, var(--accent) 55%, transparent); color: var(--accent); }

/* ─────────── smoother section transitions ─────────── */
.why, .tp-hl {
  background: linear-gradient(180deg, var(--ink) 0%, var(--coal) 14%, var(--coal) 86%, var(--ink) 100%);
}
.manifest {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 16, 46, .1), transparent 55%),
    linear-gradient(180deg, var(--ink), #120d0b 55%, var(--ink));
}
.moments {
  background: radial-gradient(ellipse at 50% 30%, color-mix(in srgb, var(--accent, #f5a83c) 7%, transparent), transparent 65%);
}
.tp-intro {
  background: linear-gradient(180deg, var(--ink), #140f0c 60%, var(--ink));
}
.roei { background: linear-gradient(180deg, var(--ink) 0%, var(--coal) 22%, var(--coal) 78%, var(--ink) 100%); border-block: none; }
.band { position: relative; }
.band::before, .band::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.band::before { top: 0; background: linear-gradient(180deg, var(--ink), transparent); }
.band::after { bottom: 0; background: linear-gradient(0deg, var(--ink), transparent); }
.band-media { isolation: isolate; }

/* ─────────── contact form ─────────── */
.contact-form-sec { padding-top: 30px; }
.form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.lead-form {
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .16);
  border-radius: 20px;
  padding: 38px 36px;
  display: grid;
  gap: 20px;
}
.ff { display: grid; gap: 8px; }
.ff label { font-weight: 500; color: var(--amber); font-size: .95rem; }
.form-grid > *, .lead-form, .ff { min-width: 0; }
.ff input, .ff select, .ff textarea { width: 100%; max-width: 100%; }
.ff input, .ff select, .ff textarea {
  background: var(--ink);
  border: 1px solid rgba(245, 168, 60, .22);
  border-radius: 12px;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.ff textarea { resize: vertical; }
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 168, 60, .18);
}
.ff input::placeholder, .ff textarea::placeholder { color: #6d645c; }
.ff select { appearance: none; }
.ff-submit { justify-self: start; border: none; cursor: pointer; font-size: 1.05rem; }
.ff-note { color: var(--smoke); font-size: .88rem; }
.ff-note a { color: var(--amber); }
.ff-error { color: #ff7a6e; font-weight: 500; }
.contact-aside {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 16, 46, .16), transparent 60%),
    var(--coal);
  border: 1px solid rgba(245, 168, 60, .16);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.contact-aside-phoenix { height: 80px; filter: drop-shadow(0 4px 18px rgba(200, 16, 46, .5)); }
.contact-aside h3 { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--bone); line-height: 1; }
.contact-aside-sub { color: var(--amber); font-size: .95rem; margin-top: -6px; }
.contact-aside p { color: var(--smoke); }
.contact-aside a:hover { color: var(--amber); }

/* ─────────── polaroids ─────────── */
.polaroid {
  background: #f6efe4;
  padding: 10px 10px 8px;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
  width: 220px;
  transition: transform .4s cubic-bezier(.19, 1, .22, 1);
}
.polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}
.polaroid figcaption {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.3rem;
  color: #4a3b2e;
  text-align: center;
  padding-top: 6px;
}
.tilt-l { transform: rotate(-5deg); }
.tilt-r { transform: rotate(4deg); }
.tilt-l2 { transform: rotate(-2deg); }
.polaroid:hover { transform: rotate(0) scale(1.04); z-index: 3; }
.polaroid-side {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 1;
}
.polaroid-side.polaroid-right { inset-inline-end: 4vw; transform: rotate(5deg); }
.polaroid-side.polaroid-left { inset-inline-start: 4vw; transform: rotate(-6deg); }
.polaroid-side:hover { transform: rotate(0) scale(1.05); }
.collage {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.collage .polaroid { width: 190px; }
.collage-center { margin: 40px 0 10px; }
.tp-side { display: grid; gap: 26px; justify-items: center; }

/* ─────────── interlude (רצועת פרלקס) ─────────── */
.interlude {
  position: relative;
  height: clamp(300px, 44vh, 460px);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.interlude-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  transform: scale(1.35);
}
.interlude::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11, 9, 8, .25) 30%, rgba(11, 9, 8, .25) 70%, var(--ink) 100%);
}
.interlude-hand {
  position: relative;
  z-index: 1;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: .04em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .75);
  transform: rotate(-2deg);
  padding: 0 24px;
  text-align: center;
}

/* ─────────── timeline day photos ─────────── */
.tp-day { grid-template-columns: 68px 1fr auto; }
.tp-day-img {
  width: 190px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
  align-self: center;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}
.tp-day:hover .tp-day-img { transform: scale(1.05) rotate(-1deg); }

/* ─────────── videos ─────────── */
.yt-lite {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 860px;
  margin-inline: auto;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(245, 168, 60, .25);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
  background: var(--coal);
  width: 100%;
}
.yt-lite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transition: filter .3s, transform .6s cubic-bezier(.19, 1, .22, 1);
}
.yt-lite:hover img { filter: brightness(.9); transform: scale(1.03); }
.yt-lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-play {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  translate: 50% -50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--ember-grad);
  box-shadow: 0 10px 34px rgba(200, 16, 46, .55);
  transition: transform .25s ease;
}
.yt-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -40% -50%;
  border-style: solid;
  border-width: 15px 0 15px 24px;
  border-color: transparent transparent transparent #fff;
}
.yt-lite:hover .yt-play { transform: scale(1.1); }
.videos-teaser { background: linear-gradient(180deg, var(--ink), #140f0c 55%, var(--ink)); }
.videos-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.videos-teaser-grid .btn { margin-top: 16px; }
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reel {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--coal);
  border: 1px solid rgba(245, 168, 60, .14);
}
.reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85);
  transition: filter .3s, transform .6s cubic-bezier(.19, 1, .22, 1);
}
.reel:hover img { filter: brightness(1); transform: scale(1.05); }
.reel-play { width: 64px; height: 64px; }
.reel-play::after { border-width: 11px 0 11px 18px; }
.reel-tag {
  position: absolute;
  bottom: 12px;
  inset-inline: 12px;
  text-align: center;
  background: rgba(11, 9, 8, .75);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .82rem;
  color: var(--amber-soft);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}
.reel:hover .reel-tag { opacity: 1; transform: none; }

/* ─────────── reveal on scroll ─────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.19, 1, .22, 1), transform .9s cubic-bezier(.19, 1, .22, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ─────────── focus / a11y ─────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ─────────── responsive ─────────── */
@media (max-width: 1280px) {
  .polaroid-side { display: none; }
}
@media (max-width: 1024px) {
  .dest-grid, .dest-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tp-day { grid-template-columns: 54px 1fr; }
  .tp-day-img { grid-column: 2; width: min(100%, 340px); margin-top: 10px; }
  .tp-intro-grid, .tp-inc-grid, .form-grid, .videos-teaser-grid { grid-template-columns: 1fr; gap: 28px; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .doodle-xl { width: 150px; height: 150px; }
  .doodle-hero { opacity: .1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item, .why-item:nth-child(n+5) { grid-column: span 1; }
  .why-item:nth-child(7), .why-item:nth-child(8) { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav { padding: 12px 20px; gap: 16px; display: flex; }
  .phoenix-band { grid-template-columns: 1fr; text-align: center; gap: 28px; justify-items: center; }
  .tp-hero-phoenix { top: 76px; height: 100px; }
  .tp-hl-list { grid-template-columns: 1fr; }
  .tp-days::before { inset-inline-start: 26px; }
  .tp-day { grid-template-columns: 54px 1fr; gap: 16px; }
  .tp-day-num { width: 54px; height: 54px; font-size: 1.5rem; }
  .nav-links {
    position: fixed;
    top: 64px;
    inset-inline: 0;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(11, 9, 8, .97);
    padding: 18px 0 26px;
    border-bottom: 1px solid rgba(245, 168, 60, .15);
    transform: translateY(-130%);
    transition: transform .4s cubic-bezier(.19, 1, .22, 1);
  }
  .nav-links.open { transform: none; }
  .nav-links { max-height: calc(100svh - 64px); overflow-y: auto; }
  .nav-links a { padding: 10px; font-size: 1.1rem; }
  .nav-item { width: 100%; text-align: center; }
  .nav-item > a { display: block; color: var(--amber); font-weight: 500; }
  .nav-item .caret { display: none; }
  .sub {
    position: static;
    translate: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 8px;
    min-width: 0;
  }
  .sub a { font-size: 1rem; padding: 7px 10px; }
  .sub a small { display: inline; margin-inline-start: 6px; opacity: .7; }
  .nav-cta { margin-inline-start: auto; }
  .nav-burger {
    display: grid;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-burger span { width: 24px; height: 2px; background: var(--amber); border-radius: 2px; }
  .page-hero { padding: 130px 0 36px; }
  .tp-hero { min-height: 72svh; }
  .tp-hero-inner { padding-top: 200px; }
  .band, .band-flip { grid-template-columns: 1fr; min-height: 0; }
  .band-flip .band-media { order: 0; }
  .band-media { aspect-ratio: 16 / 10; position: relative; }
  .band-body { padding: 48px 24px; }
  .voices-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-lg { grid-row: auto; aspect-ratio: 4 / 3; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item, .why-item:nth-child(n+5) { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-words { flex-direction: column; gap: .4rem; }
  .moments-track img, .marquee-track img { height: 240px; }
  .lead-form { padding: 26px 20px; }
  .reels-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }

  /* מרכוז כל הכפתורים במובייל */
  .hero-actions { justify-content: center; }
  .sec-more { text-align: center; }
  .ff-submit { justify-self: stretch; width: 100%; padding-inline: 14px; text-align: center; }
  .videos-teaser-grid > div:first-child { text-align: center; }
  .videos-teaser-grid .btn { margin-inline: auto; }
  .tp-intro .btn, .story-copy .btn, .roei-link { display: inline-block; margin-inline: auto; }
  .story-copy .roei-link { display: block; text-align: center; border-bottom: none; }
  .contact-aside .btn { justify-self: center; }
  .band-list { text-align: center; }

  /* מרכוז כל הכותרות והתת-כותרות במובייל */
  .sec-head { text-align: center; margin-inline: auto; }
  .sec-hand, .sec-title, .sec-lede { text-align: center; display: block; }
  .tp-hero-inner { text-align: center; }
  .tp-cat, .tp-title, .tp-sub { text-align: center; }
  .tp-chips { justify-content: center; }
  .tp-hero .hero-actions { justify-content: center; }
  .band-body { align-items: center; text-align: center; }
  .band .btn { align-self: center; }
  .story-big { text-align: center; }
  .manifest-hand { display: block; text-align: center; }
  .phoenix-copy h2 { text-align: center; }
  .tp-itin-note, .tp-itin-secret { text-align: center; margin-inline: auto; }

  /* הירו מובייל — הכל בקפל הראשון */
  .hero-phoenix-grand { height: 120px; margin-bottom: 12px; }
  .hero-inner { padding: 92px 20px 70px; }
  .hero-eyebrow { font-size: .8rem; letter-spacing: .06em; }
  .hero-words { font-size: clamp(3.2rem, 17vw, 4.2rem); gap: .15rem; margin: 12px 0 6px; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .btn { padding: 12px 24px; font-size: .95rem; }

  /* פוטר מובייל */
  .footer { padding: 56px 0 24px; }
  .f-phoenix { height: 66px; }
  .f-word { font-size: 2rem; }
  .f-chips { gap: 8px; }
  .f-chip { padding: 8px 14px; font-size: .88rem; }
  .f-pill { width: 100%; max-width: 320px; justify-content: center; }
  .f-wa { width: min(100%, 320px); }
}

/* reduced motion: עצירת מרקיזות וגחליליות */
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none !important; }
  .marquee-track[aria-hidden="true"] { display: none; }
  .hero-embers { display: none; }
}

/* ═══════════════════════════════════════════════
   נגישות, מעברים רכים, פריסת כותרת, גלילה לראש
   ═══════════════════════════════════════════════ */

/* ─────────── פריסת כותרת: לוגו ימין, תפריט מרכז, CTA שמאל ─────────── */
.nav { grid-template-columns: 1fr auto 1fr; }
.nav-side {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.lang-switch {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 168, 60, .35);
  color: var(--amber);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: background .2s, color .2s, border-color .2s;
}
.lang-switch:hover { background: rgba(245, 168, 60, .12); color: var(--bone); }

/* ─────────── דילוג לתוכן ─────────── */
.skip-link {
  position: fixed;
  top: -100px;
  inset-inline-start: 50%;
  translate: 50% 0;
  z-index: 200;
  background: var(--ember-grad);
  color: #fff;
  padding: 12px 26px;
  border-radius: 0 0 14px 14px;
  font-weight: 500;
  transition: top .25s ease;
}
.skip-link:focus { top: 0; }
#main { position: relative; scroll-margin-top: 90px; }

/* ─────────── מעברי מקטעים רכים ─────────── */
.roei {
  border-block: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200, 16, 46, .07), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--coal) 26%, var(--coal) 74%, var(--ink) 100%);
  padding: 90px 0 100px;
}
.footer {
  border-top: none;
  padding-top: 96px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 168, 60, .3), transparent);
}
.footer::after {
  content: "";
  position: absolute;
  top: 1px;
  inset-inline: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(200, 16, 46, .07), transparent);
}
.section + .section { padding-top: 40px; }
.moments { padding-bottom: 20px; }
.cta-band { border-block: none; }
.stats-grid { border-block-color: rgba(245, 168, 60, .1); }
.voices, .videos-teaser, .tp-inc, .tp-notes, .tp-itin { position: relative; }
.interlude + .section, .interlude + .moments { padding-top: 70px; }

/* ─────────── כפתור חזרה לראש העמוד ─────────── */
.to-top {
  position: fixed;
  bottom: 88px;
  inset-inline-start: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--amber);
  background: rgba(16, 12, 10, .9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 168, 60, .35);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s, color .2s;
}
.to-top[hidden] { display: none; }
.to-top.show { opacity: 1; transform: none; }
.to-top:hover { background: var(--ember-grad); color: #fff; border-color: transparent; }

/* ─────────── רכזת נגישות ─────────── */
.a11y { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 95; }
.a11y-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #1f6feb, #0b4bb8);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  transition: transform .25s;
}
.a11y-btn:hover { transform: scale(1.06); }
.a11y-panel {
  position: absolute;
  bottom: 66px;
  inset-inline-end: 0;
  width: 250px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(16, 12, 10, .98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 168, 60, .25);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .6);
}
.a11y-panel[hidden] { display: none; }
.a11y-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--amber);
  text-align: center;
  margin-bottom: 4px;
}
.a11y-panel button, .a11y-panel a {
  width: 100%;
  text-align: start;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(245, 168, 60, .18);
  background: var(--coal);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: .95rem;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.a11y-panel button:hover, .a11y-panel a:hover,
.a11y-panel button[aria-pressed="true"] {
  background: rgba(245, 168, 60, .14);
  color: var(--amber);
  border-color: var(--amber);
}
.a11y-panel a { display: block; text-align: center; margin-top: 4px; }
.a11y-reset { border-color: rgba(200, 16, 46, .4) !important; }

/* מצבי נגישות */
html.a11y-contrast { --bone: #ffffff; --smoke: #e8e2dc; --amber: #ffc247; --amber-soft: #ffdb95; }
html.a11y-contrast body { background: #000; }
html.a11y-contrast .dest-card::after,
html.a11y-contrast .tp-hero-veil,
html.a11y-contrast .hero-veil { background: rgba(0, 0, 0, .72) !important; }
html.a11y-contrast .why-bg::before,
html.a11y-contrast .interlude::after { background: rgba(0, 0, 0, .8) !important; }
html.a11y-contrast p, html.a11y-contrast li, html.a11y-contrast .dest-line { color: #f2eae0 !important; }
html.a11y-gray { filter: grayscale(1); }
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; color: var(--amber) !important; }
html.a11y-links .btn { text-decoration: none !important; color: #fff !important; }
html.a11y-readable body,
html.a11y-readable .sec-title,
html.a11y-readable .hero-words,
html.a11y-readable .sec-hand,
html.a11y-readable .f-word,
html.a11y-readable .f-slogan,
html.a11y-readable .tp-title,
html.a11y-readable .story-big,
html.a11y-readable .story-quote,
html.a11y-readable .manifest-quote p {
  font-family: Arial, "Segoe UI", system-ui, sans-serif !important;
  letter-spacing: normal;
}
html.a11y-noanim *, html.a11y-noanim *::before, html.a11y-noanim *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
html.a11y-noanim .marquee-track { transform: none !important; }
html.a11y-noanim .marquee { overflow-x: auto; }
html.a11y-noanim .reveal { opacity: 1 !important; transform: none !important; }

/* ─────────── עמוד הצהרת נגישות ─────────── */
.a11y-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--amber);
  margin: 32px 0 10px;
}
.a11y-page ul { list-style: none; margin: 10px 0; }
.a11y-page li { padding: 7px 0; color: var(--smoke); }
.a11y-page li::before { content: "✓"; color: var(--amber); font-weight: 700; margin-inline-end: 10px; }

@media (max-width: 820px) {
  .nav-side { justify-self: auto; margin-inline-start: auto; }
  .lang-switch { min-width: 40px; height: 34px; padding: 0 10px; font-size: .82rem; }
  .a11y { bottom: 84px; inset-inline-end: 16px; }
  .a11y-btn { width: 48px; height: 48px; }
  .a11y-panel { width: min(260px, 78vw); }
  .to-top { bottom: 150px; inset-inline-start: 16px; }
}

/* היררכיית כותרות: h2 שמעוצב כמו h3 */
.story-cred .story-cred-h,
.contact-aside h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.contact-aside h2 { font-size: 2rem; color: var(--bone); }

/* ═══════════════════════════════════════════════
   מעברים מושלמים: מסכות דהייה + טריזים אלכסוניים
   ═══════════════════════════════════════════════ */

/* ─── רצועת CTA: תמונה עם דהייה מלאה למעלה ולמטה ─── */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink) !important;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 32%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 66%, transparent 96%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 66%, transparent 96%);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(200, 16, 46, .2), transparent 62%),
    linear-gradient(180deg, var(--ink) 0%, rgba(11, 9, 8, .82) 26%, rgba(11, 9, 8, .86) 64%, var(--ink) 94%);
}

/* ─── רצועת פרלקס: דהייה רכה בשני הקצוות ─── */
.interlude-bg {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}
.interlude::after {
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11, 9, 8, .3) 26%, rgba(11, 9, 8, .3) 72%, var(--ink) 100%);
}

/* ─── רקע "למה לטייל איתנו": דהייה במקום חיתוך ─── */
.why-bg-img {
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 80%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 80%, transparent 100%);
}

/* ─── כותרות עמוד עם תמונה: דהייה לשחור בתחתית ─── */
.page-hero-img::after,
.page-hero[style*="background-image"]::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--ink));
}
.page-hero { position: relative; overflow: hidden; }

/* ─── טריז אלכסוני עדין בין מקטעים ─── */
.wedge {
  position: absolute;
  inset-inline: -2%;
  height: 62px;
  pointer-events: none;
  z-index: 3;
  background: var(--ink);
}
.wedge-b {
  bottom: -1px;
  clip-path: polygon(0 46%, 100% 0, 100% 100%, 0 100%);
}
.wedge-b.wedge-flip { clip-path: polygon(0 0, 100% 46%, 100% 100%, 0 100%); }
.wedge-t {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 54%, 0 100%);
}

/* ─── מעברי הירו של עמודי טיול ─── */
.tp-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--ink));
  z-index: 2;
}

@media (max-width: 820px) {
  .wedge { height: 38px; }
  .page-hero-img::after, .tp-hero::after { height: 90px; }
}

/* ═══════════ תיקוני הדר: CTA צמוד לקצה + מובייל ═══════════ */

/* דסקטופ: "דברי איתי" צמוד לקצה השמאלי, במקביל ללוגו מימין */
.nav-side { justify-self: end; }

@media (max-width: 820px) {
  /* מובייל: המבורגר בצד ימין (תחילת השורה ב-RTL), לוגו במרכז, מתג שפה בקצה */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px;
  }
  .nav-burger { order: 1; margin: 0; }
  .nav-brand { order: 2; margin: 0; }
  .nav-side { order: 3; margin: 0; justify-self: auto; }

  /* בלי כפתור "דברי איתי" במובייל */
  .nav-cta { display: none; }

  /* לוגו מעט גדול יותר */
  .nav-phoenix { height: 46px; }
  .nav-word { font-size: 1.95rem; }

  /* התפריט הנפתח נשאר מתחת לכותרת */
  .nav-links { top: 66px; max-height: calc(100svh - 66px); }
}

/* "דברי איתי" הוא האלמנט הקיצוני משמאל, מתג השפה לצידו */
.nav-side { flex-direction: row-reverse; }
@media (max-width: 820px) { .nav-side { flex-direction: row; } }

@media (max-width: 820px) {
  /* התפריט נפתח בדיוק מתחת לכותרת (גובה עודכן בעקבות הלוגו הגדול) */
  .nav-links { top: 76px; max-height: calc(100svh - 76px); }
}

/* ═══════════ עדכוני תוכן: פס אמונה, שאלות ותשובות, סיום ═══════════ */

/* ─── תיאור מקטע עם נקודות מפרידות ─── */
.lede-dots { line-height: 2; }
.lede-soft { color: var(--amber-soft); }

/* ─── פס האמונה ─── */
.creed {
  position: relative;
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200, 16, 46, .12), transparent 62%),
    linear-gradient(180deg, var(--ink), #130e0b 50%, var(--ink));
}
.creed-inner { max-width: 760px; }
.creed-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--smoke);
  margin-bottom: 16px;
}
.creed-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.25;
  color: var(--bone);
}
.creed-main em {
  font-style: normal;
  display: inline-block;
  margin-top: 6px;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── משפט הסיום של "למה לטייל איתנו" ─── */
.why-closing {
  text-align: center;
  margin: 44px auto 0;
  max-width: 640px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--smoke);
}
.why-closing strong {
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
  font-size: 1.3rem;
  background: var(--ember-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── שאלות ותשובות ─── */
.faq { margin-top: 78px; }
.faq .sec-head { margin-inline: auto; text-align: center; margin-bottom: 30px; }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}
.faq-item {
  background: rgba(16, 12, 10, .96);
  border: 1px solid rgba(245, 168, 60, .16);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: rgba(245, 168, 60, .4); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  background: var(--ember-grad);
  transition: transform .3s ease;
}
.faq-item[open] summary::before { content: "−"; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--amber); }
.faq-item p {
  padding-block: 0 20px;
  padding-inline: 64px 24px;
  color: var(--smoke);
  line-height: 1.85;
}
.faq-more { text-align: center; margin-top: 26px; color: var(--smoke); }
.faq-more a { color: var(--amber); border-bottom: 1px solid rgba(245, 168, 60, .4); }
.faq-more a:hover { color: var(--bone); border-color: var(--bone); }

@media (max-width: 820px) {
  .creed { padding: 66px 0; }
  .faq { margin-top: 56px; }
  .faq-item summary { padding: 15px 16px; font-size: 1rem; }
  .faq-item p { padding-block: 0 18px; padding-inline: 52px 16px; }
}

/* ═══════════════════════════════════════════════
   ג'יפ אנד טרוול: מותג אחות באותה שפה עיצובית
   ═══════════════════════════════════════════════ */

/* ─── שער הכניסה בדף הבית ─── */
.jt-entry {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 110px;
  text-align: center;
  background: var(--ink);
}
.jt-entry-bg {
  position: absolute;
  inset: -40px 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 76%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 76%, transparent);
}
.jt-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(232, 178, 59, .12), transparent 62%),
    linear-gradient(180deg, var(--ink), rgba(11, 9, 8, .88) 28%, rgba(11, 9, 8, .9) 72%, var(--ink));
}
.jt-entry-inner { max-width: 700px; }
.jt-entry-logo {
  width: min(360px, 78vw);
  margin: 14px auto 18px;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, .6));
}
.jt-entry-text { color: var(--smoke); font-size: 1.12rem; line-height: 1.9; margin-bottom: 26px; }

/* ─── כותרת עמוד הקטלוג ─── */
.jt-hero { padding-bottom: 78px; }
.jt-hero-brand { width: min(420px, 82vw); margin: 0 auto 18px; }
.jt-hero-lede { max-width: 620px; margin-inline: auto; }

/* ─── לוגו בכותרת עמוד טיול ─── */
.jt-hero-logo {
  height: auto;
  width: clamp(160px, 22vw, 260px);
  filter: drop-shadow(0 4px 22px rgba(0, 0, 0, .7));
}

/* ─── כרטיס המידע הצדדי ─── */
.jt-facts { text-align: center; }
.jt-facts-logo { width: min(230px, 70%); margin: 0 auto 8px; }
.jt-facts-tag {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--accent);
  margin-bottom: 12px;
}
.jt-facts-text { color: var(--smoke); font-size: .98rem; margin-bottom: 18px; }

@media (max-width: 820px) {
  .jt-entry { padding: 68px 0 78px; }
  .jt-entry-logo { width: min(280px, 76vw); }
  .jt-hero-logo { width: 150px; }
}

/* לוגו ג'יפ אנד טרוול ברצועת הסיום */
.cta-jt-logo { height: auto; width: min(230px, 60vw); }

/* ─────────── וידאו רקע בהירו ─────────── */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.tp-hero.has-video .tp-hero-bg { z-index: -3; }
.tp-hero.has-video .tp-hero-veil {
  background: linear-gradient(180deg, rgba(11, 9, 8, .78) 0%, rgba(11, 9, 8, .42) 38%,
              rgba(11, 9, 8, .86) 80%, var(--ink) 100%);
}
html.a11y-noanim .hero-video { display: none; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* ═══════════ מכתבי המלצה מלאים ═══════════ */
.letters-sec {
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(245,168,60,.055), transparent 62%),
    linear-gradient(180deg, transparent, rgba(200,16,46,.035) 45%, transparent);
}
.letters {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  align-items: start;
}
.letter {
  position: relative;
  padding: 46px 44px 38px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(245,168,60,.05), transparent 30%),
    var(--coal);
  border: 1px solid rgba(245,168,60,.16);
  box-shadow: 0 26px 60px rgba(0,0,0,.42);
  overflow: hidden;
}
/* פס להבה עדין בשוליים, בצד שמתאים לכיוון הקריאה */
.letter::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 3px;
  background: var(--ember-grad);
  opacity: .75;
}
/* נייר: קווי כתיבה עדינים מאוד ברקע */
.letter::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 37px, rgba(245,168,60,.035) 37px 38px);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.letter-mark {
  position: absolute;
  inset-block-start: 6px;
  inset-inline-end: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.6rem;
  line-height: 1;
  color: var(--flame);
  opacity: .18;
  user-select: none;
}
.letter-body {
  position: relative;
  z-index: 1;
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--bone);
}
.letter-body p { margin: 0 0 1.15em; }
.letter-body p:last-child { margin-bottom: 0; }
/* השורה הפותחת מובלטת מעט, כמו פתיחה של מכתב */
.letter-body p:first-child {
  font-size: 1.16rem;
  font-weight: 400;
  color: #fff;
}
.letter-sign {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,168,60,.14);
  font-weight: 500;
  font-size: .98rem;
  color: var(--amber);
}
.letter-sign::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--ember-grad);
  vertical-align: middle;
  margin-inline-end: 10px;
}
@media (max-width: 900px) {
  .letters { grid-template-columns: 1fr; gap: 22px; }
  .letter { padding: 38px 24px 30px; border-radius: 16px; }
  .letter-mark { font-size: 4.4rem; inset-inline-end: 16px; }
  .letter-body { font-size: 1rem; line-height: 1.9; }
  .letter-body p:first-child { font-size: 1.08rem; }
  /* לפי בקשת הלקוח: כותרות ותת כותרות ממורכזות במובייל.
     גוף המכתב נשאר מיושר לקריאה נוחה, החתימה ממורכזת. */
  .letter-sign { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   כיול גבהים לדסקטופ בזום 100%
   האתר תוכנן במסכים שהוצגו ב-80%. הבלוק הזה מכייל את גובה
   ההירו והריווח בין המקטעים כך שבזום 100% אמיתי כל קפל
   מציג תוכן ולא שטח ריק. תצוגת המובייל (עד 820px) לא נוגעים בה.
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  /* הירו ראשי: קאנבס מלא, אבל עם תקרה כדי שלא יימתח במסכים גבוהים */
  .hero { min-height: 100svh; }
  .hero-inner { padding: 104px 24px 72px; }
  .hero-phoenix-grand { height: clamp(140px, 22vh, 230px); margin-bottom: 20px; }

  /* הירו של עמוד יעד: היה 88svh ויצר שטח ריק ענק מעל הכותרת */
  .tp-hero { min-height: min(78svh, 700px); }
  .tp-hero-inner { padding: 96px 0 52px; }

  /* הירו של עמודי תוכן */
  .page-hero { padding: 140px 0 54px; }

  /* ריווח בין מקטעים */
  .section { padding: 74px 0; }
  .sec-head { margin-bottom: 40px; }
  .cta-band { padding: 76px 0; }
  .interlude { height: clamp(260px, 34vh, 400px); }
  .interlude + .section, .interlude + .moments { padding-top: 58px; }
}

/* ── הקפל הראשון: ההירו ממלא את המסך בכל עמוד, כמו בעמוד הבית ──
   מדידת פיקסלים הראתה שבעמודים הפנימיים ההירו היה נמוך מהמסך
   ונוצרה רצועה שחורה מתה של 140-146px לפני המקטע הראשון.
   כאן ההירו מקבל את גובה המסך (עם תקרה למסכים גבוהים), התוכן
   מתמרכז אנכית, ודהיית התמונה לשחור מתקצרת. מובייל לא נוגעים. */
@media (min-width: 821px) {
  /* עמודי יעדים: הירו קולנועי מלא מסך */
  .tp-hero { min-height: 100svh; }
  .tp-hero-inner { padding-bottom: 46px; }

  /* עמודי תוכן וקטגוריה: באנר מלא ומאוזן, התוכן במרכז האנכי */
  .page-hero {
    /* מסך מלא: אסור שכותרת המקטע הבא תציץ בקפל הראשון */
    min-height: 100svh;
    display: grid;
    align-content: end;          /* התוכן יושב בתחתית, כמו בעמודי היעדים */
    padding: 150px 0 64px;
  }
  .page-hero.page-hero-slim { align-content: center; padding: 130px 0 56px; }
  /* עמודים משפטיים או קצרים: באנר נמוך יותר, עדיין בלי חלל מת */
  .page-hero.page-hero-slim { min-height: min(56svh, 480px); }

  /* דהייה קצרה יותר, שלא תבלע את תחתית התמונה */
  .page-hero-img::after,
  .page-hero[style*="background-image"]::after,
  .tp-hero::after { height: 76px; }

  /* המקטע שצמוד להירו מתחיל קרוב יותר */
  .tp-hero + .section, .tp-hero + section,
  .page-hero + .section, .page-hero + section,
  .page-hero + .moments { padding-top: 52px; }
}

/* ── לפי בקשת הלקוח: תוכן ההירו ממורכז אנכית בעמודי ג'יפ אנד טרוול
   ובעמודים שתחת תפריט "עלינו". שאר העמודים נשארים כפי שהם.
   הריפוד לא סימטרי בכוונה: ה-header מכסה 70px עליונים,
   ולכן המרכוז האופטי נופל בדיוק באמצע השטח הנראה. ── */
@media (min-width: 821px) {
  .page-hero.page-hero-mid,
  .page-hero.jt-hero {
    align-content: center;
    padding: 140px 0 70px;
  }
  .tp-hero.tp-hero-mid { align-items: center; }
  .tp-hero.tp-hero-mid .tp-hero-inner { padding: 140px 0 70px; }
}

/* ── קרדיט בונה האתר ── */
.f-builtby {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 168, 60, .1);
}
.f-builtby p {
  margin: 0;
  font-size: .84rem;
  letter-spacing: .01em;
  color: rgba(232, 226, 217, .48);
}
.f-builtby a {
  color: var(--amber);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 168, 60, .35);
  transition: color .2s, border-color .2s;
}
.f-builtby a:hover,
.f-builtby a:focus-visible { color: #fff; border-bottom-color: #fff; }
