/* ==========================================================================
   LAOR TRAVELS — ענת גרוס לאור
   v2 — editorial luxury. Photography-first, one gold accent, deep navy ink.
   Studied against Black Tomato / Scott Dunn: restraint is the design.
   Palette honours the brief — gold, blue, sky, warm paper. No black anywhere:
   the darkest tone is navy #0C1B3A.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0C1B3A;   /* deep navy — the "black" that isn't black */
  --ink-2:      #1B2F5C;
  --ink-soft:   #46587E;
  --paper:      #FBF9F4;   /* warm gallery white */
  --white:      #FFFFFF;
  --cream:      #F4EFE4;

  --gold:       #B08A3C;   /* matte antique gold — the single accent */
  --gold-soft:  #CFB068;
  --sky:        #7FB6D9;   /* quiet steel-sky, used sparingly */

  --line:       rgba(12,27,58,.14);
  --line-light: rgba(255,255,255,.25);

  --serif: "Frank Ruhl Libre", "Times New Roman", serif;
  --sans:  "Assistant", system-ui, sans-serif;

  --nav-h: 84px;
  --ease: cubic-bezier(.25,.6,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow: 0 20px 60px -30px rgba(12,27,58,.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* An author-level `display` beats the browser's [hidden] rule, so any element
   given display:grid/flex would stay on screen when hidden. Force it once. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(15.5px, 1.02vw, 17.5px);
  line-height: 1.8;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold-soft); color: var(--ink); }

/* ---------- Type ---------- */
.h1, .h2, .display, .hero__title, .cover__title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.12;
}
.display { font-size: clamp(2.6rem, 5.8vw, 5rem); line-height: 1.04; }
.h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.h2 { font-size: clamp(1.6rem, 2.7vw, 2.4rem); }
.h3 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); font-weight: 600; font-family: var(--sans); }
.lede { font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.85; color: var(--ink-soft); font-weight: 400; }

/* Small-caps eyebrow — the site's signature detail. */
.eyebrow {
  display: inline-flex; align-items: center; gap: .9em;
  font-size: .72rem; font-weight: 700; letter-spacing: .34em;
  color: var(--gold);
}
.eyebrow::before { content: ""; inline-size: 40px; block-size: 1px; background: var(--gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; inline-size: 40px; block-size: 1px; background: var(--gold); }

.latin { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: .05em; }

/* legacy hooks kept so nothing breaks — now quiet */
.foil, .sea-text { color: var(--gold); background: none; -webkit-text-fill-color: currentColor; }

/* ---------- Layout ---------- */
.wrap { inline-size: min(1240px, 91vw); margin-inline: auto; }
.wrap-narrow { inline-size: min(820px, 91vw); margin-inline: auto; }
.section { padding-block: clamp(76px, 9vw, 148px); position: relative; }
.section--tight { padding-block: clamp(52px, 6vw, 90px); }
.stack > * + * { margin-block-start: 1.4rem; }
.section-head { max-inline-size: 720px; margin-block-end: clamp(38px, 4.5vw, 64px); }
.section-head .h1, .section-head .h2 { margin-block: 1rem 1.1rem; }
.center { text-align: center; margin-inline: auto; }
.mt-lg { margin-block-start: clamp(2.2rem, 3.5vw, 3.4rem); }

/* ---------- Buttons — rectangular, letterspaced, quiet ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  padding: 1.05em 2.3em;
  font-size: .8rem; font-weight: 700; letter-spacing: .22em;
  color: var(--white); background: var(--ink);
  border-radius: 2px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn--gold { background: var(--gold); }
.btn--gold:hover { background: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--clear { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.65); }
.btn--clear:hover { background: var(--white); color: var(--ink); }
.btn--sun { background: var(--gold); }
.btn .arrow { font-size: 1.05em; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(-6px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 90;
  block-size: var(--nav-h); display: flex; align-items: center;
  color: var(--white);
  transition: background .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease), block-size .45s var(--ease);
}
.nav.is-stuck {
  background: rgba(251,249,244,.92); color: var(--ink);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 1px 0 var(--line);
  block-size: 68px;
}
body.light-nav .nav { color: var(--ink); }  /* pages without a dark hero */
.nav__inner { inline-size: min(1400px, 94vw); margin-inline: auto; display: flex; align-items: center; gap: 1.8rem; }

.brand { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
/* Her own globe emblem, lifted out of the full logo lock-up so it reads at
   small sizes — the phone number and English strapline live in the footer now. */
.brand__mark {
  inline-size: 58px; block-size: 58px; border-radius: 50%;
  background: var(--white); object-fit: cover;
  box-shadow: 0 0 0 1px var(--gold-soft), 0 2px 14px rgba(12,27,58,.24);
  transition: transform .4s var(--ease);
}
.brand:hover .brand__mark { transform: scale(1.06); }
/* The emblem is the way home, so say so on hover instead of leaving people hunting. */
.brand { position: relative; }
.brand::after {
  content: "לדף הבית";
  position: absolute; inset-block-start: calc(100% + 6px); inset-inline-end: 0;
  padding: .3em .7em; border-radius: 2px;
  background: var(--ink); color: var(--white);
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; white-space: nowrap;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.brand:hover::after { opacity: 1; transform: none; }
@media (max-width: 1080px) { .brand::after { display: none; } .brand__mark { inline-size: 50px; block-size: 50px; } }
.brand__txt { display: grid; line-height: 1.25; }
.brand__txt b { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; letter-spacing: .01em; }
.brand__txt small { font-size: .62rem; letter-spacing: .3em; color: var(--gold); font-weight: 700; }

.nav__links { display: flex; align-items: center; gap: .1rem; margin-inline-start: auto; }
.nav__links a {
  position: relative; padding: .6em .8em;
  font-size: .86rem; font-weight: 600; letter-spacing: .02em;
  opacity: .85; transition: opacity .3s;
  white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; inset-inline: .8em; inset-block-end: .25em;
  block-size: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: right; transition: transform .35s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { opacity: 1; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

/* WhatsApp CTA — on every page, in the header */
/* The two ways to reach Anat sit together and are the loudest thing in the bar. */
.nav__contact { display: flex; align-items: center; gap: .5rem; margin-inline-start: 1rem; }
.nav__tel {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .82em 1.15em; border-radius: 2px;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em; white-space: nowrap;
  box-shadow: inset 0 0 0 1px currentColor; opacity: .9;
  transition: background .3s var(--ease), color .3s var(--ease), opacity .3s;
}
.nav__tel:hover { opacity: 1; background: var(--gold); color: var(--ink); box-shadow: inset 0 0 0 1px var(--gold); }
.nav__tel svg { inline-size: 15px; block-size: 15px; }

.nav__cta.btn {
  padding: .86em 1.5em; font-size: .84rem; font-weight: 700;
  background: #23A455; color: #fff; border-radius: 2px;
  box-shadow: 0 6px 20px -6px rgba(18,80,45,.55);
}
.nav__cta.btn:hover { background: #1B8544; transform: translateY(-1px); box-shadow: 0 10px 26px -6px rgba(18,80,45,.6); }
.nav__cta .wa-ic { inline-size: 18px; block-size: 18px; }
@media (max-width: 1320px) { .nav__tel span { display: none; } .nav__tel { padding: .82em .95em; } }

.nav__burger { display: none; margin-inline-start: auto; padding: .5em; }
.nav__burger i { display: block; inline-size: 24px; block-size: 2px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.nav__burger i + i { margin-block-start: 6px; }
.nav.is-open .nav__burger i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__burger i:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1120px) {
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; inset-block-start: 0; inset-inline: 0; block-size: 100dvh;
    flex-direction: column; justify-content: center; gap: .4rem;
    background: var(--ink); color: var(--white);
    opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
  }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1.3rem; font-family: var(--serif); }
  .nav__cta { margin: 1.4rem 0 0; }
  .nav.is-open .nav__burger { position: relative; z-index: 2; color: var(--white); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-block-size: 100svh;
  display: grid; align-items: center; justify-items: center;
  /* היה 150px כדי לפנות מקום לכרטיס החיפוש שרכב על תחתית ההירו.
     עכשיו הוא יושב מתחת, אז הריפוד מאוזן והתוכן ממורכז באמת. */
  padding-block: calc(var(--nav-h) + 40px) calc(var(--nav-h) + 40px);
  overflow: hidden; color: var(--white); text-align: center;
}
.hero__stage { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero__video { position: absolute; inset: 0; inline-size: 100%; block-size: 100%; object-fit: cover; display: none; }
.hero.has-video .hero__video { display: block; }
.hero.has-video .hero__slides { display: none; }
.hero__slides { position: absolute; inset: 0; }
.hero__slides .slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.07);
  transition: opacity 2s var(--ease), transform 9s linear;
}
.hero__slides .slide.is-on { opacity: 1; transform: scale(1); }
/* Two layers: a vertical wash for the bar and nav, plus a soft pool behind the
   type so gold small-caps stay legible even over a bright sky. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 58% 52% at 50% 46%, rgba(12,27,58,.62) 0%, rgba(12,27,58,.28) 55%, transparent 100%),
    linear-gradient(to top, rgba(12,27,58,.78) 0%, rgba(12,27,58,.22) 42%, rgba(12,27,58,.44) 100%);
}

.hero__inner { position: relative; z-index: 2; inline-size: min(880px, 92vw); display: grid; justify-items: center; }
.hero__eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .38em; color: #E7CF95;
  text-shadow: 0 1px 3px rgba(12,27,58,.85), 0 2px 20px rgba(12,27,58,.6);
}
.hero__title {
  margin-block: 1.4rem .2rem;
  font-size: clamp(2.7rem, 6.6vw, 6rem);
  text-shadow: 0 4px 44px rgba(12,27,58,.5);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); transition: transform 1.2s var(--ease-out); }
.hero.is-ready .line > span { transform: none; }
.hero.is-ready .line:nth-child(2) > span { transition-delay: .15s; }

/* Her name is the brand — give it real presence, both scripts.
   The emblem lives in the nav only; repeating it large in the hero read as clutter. */
.hero__sig { display: grid; justify-items: center; gap: .35rem; margin-block-start: 1.8rem; }
.hero__sig::before {
  content: ""; inline-size: 60px; block-size: 1px; background: var(--gold-soft);
  margin-block-end: .9rem;
}
.hero__sig-he {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.1; color: var(--white);
  text-shadow: 0 2px 22px rgba(12,27,58,.5);
}
.hero__sig-en {
  font-size: clamp(.72rem, 1.05vw, .88rem); font-weight: 700;
  letter-spacing: .42em; color: #E7CF95;
  text-shadow: 0 1px 3px rgba(12,27,58,.85), 0 2px 20px rgba(12,27,58,.6);
}

.hero__sub {
  max-inline-size: 56ch; margin-block-start: 1.5rem;
  font-size: clamp(.98rem, 1.2vw, 1.12rem); line-height: 1.85;
  color: rgba(255,255,255,.88);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-block-start: 2.4rem; justify-content: center; }

.hero__bar {
  position: absolute; inset-block-end: 0; inset-inline: 0; z-index: 2;
  border-block-start: 1px solid var(--line-light);
  background: linear-gradient(to top, rgba(12,27,58,.5), rgba(12,27,58,.12));
  backdrop-filter: blur(10px);
}
.hero__bar-in { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem clamp(2.5rem, 6vw, 6rem); padding-block: 1.25rem; }
/* On narrow screens the bar grows taller than the reserved space and covers
   the CTAs — drop it into the flow below the content instead. */
@media (max-width: 760px) {
  .hero { padding-block-end: 48px; }
  .hero__bar {
    position: static; margin-block-start: 2.6rem;
    background: none; backdrop-filter: none;
  }
  .hero__bar-in {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 2rem; padding-block: 1.4rem 0;
  }
}
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 2.3vw, 2rem); line-height: 1.15; color: var(--white);
}
.stat span { font-size: .72rem; font-weight: 600; letter-spacing: .16em; color: rgba(255,255,255,.65); }

/* stats reused on light background */
.statband { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem clamp(2.5rem, 6vw, 6rem); }
.statband .stat b { color: var(--ink); }
.statband .stat span { color: var(--ink-soft); }

/* ---------- Page banner (inner pages) — photo, not gradient ---------- */
.pagehead {
  position: relative; overflow: hidden; color: var(--white);
  padding-block: calc(var(--nav-h) + clamp(64px,9vw,130px)) clamp(56px,7vw,100px);
  background: var(--ink);
}
.pagehead__img { position: absolute; inset: 0; }
.pagehead__img img { inline-size: 100%; block-size: 100%; object-fit: cover; opacity: .55; }
.pagehead__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,27,58,.82), rgba(12,27,58,.28)); }
.pagehead__bg { display: none; }
.pagehead__inner { position: relative; z-index: 1; }
.pagehead .h1 { text-shadow: 0 3px 30px rgba(12,27,58,.5); }
.pagehead .lede { color: rgba(255,255,255,.82); }
.pagehead .eyebrow { color: var(--gold-soft); }
.pagehead .eyebrow::before { background: var(--gold-soft); }

/* ---------- Country portals — photography with serif naming ---------- */
.portal-rail { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.portal {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--ink-2);
  isolation: isolate;
}
.portal__img {
  position: absolute; inset: 0; z-index: -2;
  inline-size: 100%; block-size: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out), opacity .6s;
  opacity: .92;
}
.portal:hover .portal__img { transform: scale(1.06); opacity: 1; }
.portal__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,27,58,.75) 0%, rgba(12,27,58,.18) 45%, rgba(12,27,58,.05) 70%);
  transition: background .5s;
}
.portal__body {
  position: relative; block-size: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; gap: .2rem;
  padding: 1.6rem 1.5rem; color: var(--white);
}
.portal__latin { font-size: .66rem; letter-spacing: .34em; font-weight: 700; color: var(--gold-soft); }
.portal__name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2vw, 1.9rem); line-height: 1.1; }
.portal__meta { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.75); margin-block-start: .3rem; }
.portal__meta b { font-weight: 600; }
.portal__go {
  position: absolute; inset-block-start: 1.3rem; inset-inline-start: 1.3rem;
  font-size: 1.1rem; color: var(--white);
  opacity: 0; transform: translateX(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.portal:hover .portal__go { opacity: 1; transform: none; }
/* thin gold frame appears on hover */
.portal::after {
  content: ""; position: absolute; inset: 12px; z-index: 1; pointer-events: none;
  border: 1px solid transparent; transition: border-color .5s var(--ease);
}
.portal:hover::after { border-color: rgba(207,176,104,.55); }
.portal--wide { grid-column: span 2; aspect-ratio: auto; }
@media (max-width: 640px) { .portal--wide { grid-column: span 1; aspect-ratio: 4/3; } }

/* ---------- Cards — flat, hairline, editorial ---------- */
.cards { display: grid; gap: clamp(20px, 2.4vw, 34px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.card { position: relative; display: flex; flex-direction: column; background: transparent; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.card__media img {
  inline-size: 100%; block-size: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute; inset-block-start: 0; inset-inline-start: 0;
  padding: .45em 1em; background: var(--paper);
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; color: var(--ink);
}
.card__body { display: flex; flex-direction: column; gap: .5rem; padding-block: 1.15rem .4rem; flex: 1; }
.card__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.22rem; line-height: 1.32;
  transition: color .3s;
}
.card:hover .card__title { color: var(--gold); }
.card__excerpt { font-size: .92rem; color: var(--ink-soft); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__foot {
  display: flex; align-items: center; gap: .7rem; margin-block-start: auto; padding-block-start: .8rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: var(--gold);
}
.card__foot::after { content: ""; flex: 1; block-size: 1px; background: var(--line); }

/* ---------- Story / About ---------- */
.story { background: var(--white); }
.story__grid {
  display: grid; gap: clamp(2.4rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center;
}
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; } }
.portrait { position: relative; }
.portrait__frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream); }
.portrait__frame img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.portrait__frame::after { content: none; }
.portrait__ring {
  position: absolute; inset-block-start: 22px; inset-inline-end: -22px; inset-block-end: -22px; inset-inline-start: 22px;
  border: 1px solid var(--gold-soft); z-index: -1;
}
.portrait__badge {
  position: absolute; inset-block-end: -18px; inset-inline-start: 26px;
  padding: .9em 1.5em; background: var(--ink); color: var(--white);
  font-family: var(--serif); font-size: 1rem;
}
.portrait__badge small { display: block; font-family: var(--sans); font-size: .64rem; letter-spacing: .26em; color: var(--gold-soft); margin-block-start: .2em; }

.quote {
  margin: 2.2rem 0 0; padding: 0;
  border: 0; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem); line-height: 1.55; color: var(--ink);
}
.quote::before { content: ""; display: block; inline-size: 54px; block-size: 1px; background: var(--gold); margin-block-end: 1.1rem; }

.chips { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin-block-start: 1.8rem; }
.chip {
  padding: 0; background: none; box-shadow: none; border-radius: 0;
  font-size: .88rem; font-weight: 600; color: var(--ink-soft);
  border-block-end: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.chip:hover { color: var(--ink); border-color: var(--gold); transform: none; box-shadow: none; }

/* ---------- Photo interlude band ---------- */
.interlude {
  position: relative; min-block-size: 62vh; display: grid; place-items: center;
  background-attachment: fixed; background-size: cover; background-position: center;
  color: var(--white); text-align: center; overflow: hidden;
}
@media (hover: none) { .interlude { background-attachment: scroll; } }
.interlude::before { content: ""; position: absolute; inset: 0; background: rgba(12,27,58,.45); }
.interlude__in { position: relative; z-index: 1; inline-size: min(760px, 90vw); padding-block: clamp(64px, 10vw, 120px); }
.interlude .h1 { color: var(--white); text-shadow: 0 3px 30px rgba(12,27,58,.55); }

/* ---------- Workshops — photo cards, numbered ---------- */
.workshops { background: var(--white); }
.workshops::before { content: none; }
.ws-grid { display: grid; gap: 0; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); border: 1px solid var(--line); }
/* fixed column counts so rows always land full */
.ws-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ws-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1060px) { .ws-grid--3, .ws-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .ws-grid--3, .ws-grid--4 { grid-template-columns: 1fr; } }
.ws {
  padding: 0; background: var(--white); overflow: hidden;
  border-inline-start: 1px solid var(--line); border-block-start: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  transition: background .4s var(--ease);
}
.ws:hover { background: var(--paper); transform: none; box-shadow: none; }
.ws__img {
  display: block; inline-size: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  filter: saturate(.92);
  transition: transform 1.1s var(--ease-out), filter .5s;
}
.ws:hover .ws__img { transform: scale(1.04); filter: saturate(1.05); }
.ws__wrap { overflow: hidden; }
.ws__body { padding: 1.5rem 1.7rem 1.9rem; }
.ws__icon {
  inline-size: auto; block-size: auto; border-radius: 0; background: none; box-shadow: none;
  font-family: var(--serif); font-size: .95rem; color: var(--gold);
  display: block; margin-block-end: .9rem; letter-spacing: .1em;
}
.ws__icon::after { content: ""; display: block; inline-size: 30px; block-size: 1px; background: var(--gold); margin-block-start: .7rem; }
.ws h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-block-end: .6rem; }
.ws p { font-size: .92rem; color: var(--ink-soft); line-height: 1.75; }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink); color: var(--white); }
.reviews::before, .reviews::after { content: none; }
.reviews .lede { color: rgba(255,255,255,.7); }
.reviews .eyebrow { color: var(--gold-soft); }
.reviews .eyebrow::before { background: var(--gold-soft); }
.rev-grid { display: grid; gap: clamp(18px, 2vw, 30px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.rev {
  padding: 2rem 1.9rem; background: transparent;
  border: 1px solid var(--line-light); border-radius: 0;
  backdrop-filter: none;
  transition: border-color .4s;
}
.rev:hover { transform: none; background: rgba(255,255,255,.04); border-color: rgba(207,176,104,.5); }
.rev__stars { color: var(--gold-soft); letter-spacing: .3em; font-size: .8rem; margin-block-end: 1rem; }
.rev__text { font-family: var(--serif); font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,.92); }
.rev__who { display: flex; align-items: center; gap: .8rem; margin-block-start: 1.4rem; }
.rev__av {
  inline-size: 36px; block-size: 36px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--gold-soft); color: var(--gold-soft);
  font-size: .9rem; background: none;
}
.rev__who b { font-size: .9rem; font-weight: 600; }
.rev__who small { display: block; font-size: .74rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.reviews-page .rev { border-color: var(--line); }
.reviews-page .rev__text { color: var(--ink); }
.reviews-page .rev__who small { color: var(--ink-soft); }
.reviews-page .rev__av { border-color: var(--gold); color: var(--gold); }

/* ---------- Private-group invitation ---------- */
.private {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.6rem; margin-block-start: clamp(3rem, 5vw, 4.5rem);
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  background: var(--ink); color: var(--white);
}
.private .eyebrow { color: var(--gold-soft); }
.private .eyebrow::before { background: var(--gold-soft); }
.private .lede { color: rgba(255,255,255,.78); }
.private .btn { flex-shrink: 0; }

/* ---------- Communities ---------- */
.communities { display: grid; gap: 0; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
@media (max-width: 940px) { .communities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .communities { grid-template-columns: 1fr; } }
.community {
  display: flex; flex-direction: column; gap: .55rem;
  padding: 2rem 1.8rem 2.2rem; background: var(--white);
  border-inline-start: 1px solid var(--line); border-block-start: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  transition: background .4s var(--ease);
}
.community:hover { background: var(--paper); }
.community__kind {
  font-size: .62rem; font-weight: 700; letter-spacing: .3em; color: var(--gold);
}
.community h3 { font-family: var(--serif); font-weight: 500; font-size: 1.24rem; line-height: 1.3; }
.community p { font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }
.community__go {
  margin-block-start: auto; padding-block-start: 1rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: var(--ink);
  display: flex; align-items: center; gap: .6rem;
}
.community__go::after { content: "←"; transition: transform .35s var(--ease); }
.community:hover .community__go::after { transform: translateX(-5px); }
.community--yt .community__kind { color: #C4302B; }

/* ---------- Videos ---------- */
.videos { display: grid; gap: clamp(18px, 2.2vw, 30px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 310px), 1fr)); }
.video { display: flex; flex-direction: column; }
.video__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--cream); }
.video__thumb img { inline-size: 100%; block-size: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.video:hover .video__thumb img { transform: scale(1.05); }
.video__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(12,27,58,.28); transition: background .4s;
}
.video:hover .video__play { background: rgba(12,27,58,.12); }
.video__play span {
  inline-size: 56px; block-size: 56px; border-radius: 50%;
  background: rgba(255,255,255,.94); color: var(--ink);
  display: grid; place-items: center; font-size: 1.1rem; padding-inline-start: 3px;
  box-shadow: 0 6px 24px rgba(12,27,58,.3);
  transition: transform .4s var(--ease);
}
.video:hover .video__play span { transform: scale(1.1); }
.video__title {
  font-family: var(--serif); font-weight: 500; font-size: 1.08rem; line-height: 1.4;
  padding-block-start: 1rem; transition: color .3s;
}
.video:hover .video__title { color: var(--gold); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-stagger].is-in > * { opacity: 1; transform: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--white); padding-block: clamp(64px, 7vw, 100px) 2rem; }
.footer__grid { display: grid; gap: clamp(2.2rem, 4vw, 3.6rem); grid-template-columns: minmax(0, 1.3fr) repeat(auto-fit, minmax(150px, 1fr)); }
.footer h4 { font-size: .68rem; letter-spacing: .32em; color: var(--gold-soft); margin-block-end: 1.2rem; font-weight: 700; }
.footer a { display: block; padding-block: .34em; font-size: .92rem; color: rgba(255,255,255,.72); transition: color .3s; }
.footer a:hover { color: var(--white); transform: none; }
.footer .lede { color: rgba(255,255,255,.65); }
.footer .brand__txt b { color: var(--white); }
.socials { display: flex; gap: 1.4rem; margin-block-start: 1.4rem; }
.socials a {
  inline-size: auto; block-size: auto; border-radius: 0; background: none; box-shadow: none;
  padding: 0; font-size: .8rem; letter-spacing: .16em; font-weight: 700;
  color: rgba(255,255,255,.7); border-block-end: 1px solid transparent;
}
.socials a:hover { color: var(--gold-soft); border-color: var(--gold-soft); transform: none; box-shadow: none; }
/* Every page in one row — a visible sitemap, good for visitors and for crawlers. */
.footer__map {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.6rem;
  margin-block-start: clamp(2.4rem, 4vw, 3.4rem); padding-block-start: 1.6rem;
  border-block-start: 1px solid var(--line-light);
}
.footer__map b {
  font-size: .66rem; font-weight: 700; letter-spacing: .3em; color: var(--gold-soft);
  margin-inline-end: .4rem;
}
.footer__map a {
  display: inline; padding: 0; font-size: .86rem; color: rgba(255,255,255,.72);
  border-block-end: 1px solid transparent;
}
.footer__map a:hover { color: var(--white); border-color: var(--gold-soft); }

.footer__bar {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  margin-block-start: clamp(1.8rem, 3vw, 2.6rem); padding-block-start: 1.6rem;
  border-block-start: 1px solid var(--line-light);
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer__bar a { display: inline; padding: 0; color: rgba(255,255,255,.6); }

/* ---------- WhatsApp — the only floating element, done properly ---------- */
.fab { position: fixed; inset-block-end: 26px; inset-inline-start: 26px; z-index: 100; display: grid; gap: .7rem; justify-items: start; }
/* Phone as a second floating action — some of her audience would rather call. */
.fab .tel {
  display: inline-flex; align-items: center; gap: .7em;
  padding: .9em 1.5em .9em 1.7em; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: .88rem; font-weight: 700;
  box-shadow: 0 10px 30px -8px rgba(12,27,58,.55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.fab .tel:hover { transform: translateY(-2px); background: var(--gold); color: var(--ink); }
.fab .tel svg { inline-size: 19px; block-size: 19px; }
/* On a phone the pills eat the screen — shrink to icon-only circles. */
@media (max-width: 720px) {
  .fab { inset-block-end: 14px; inset-inline-start: 14px; gap: .5rem; }
  .fab .wa-btn, .fab .tel {
    inline-size: 48px; block-size: 48px; padding: 0;
    justify-content: center; border-radius: 50%; gap: 0;
  }
  .fab .wa-btn span, .fab .tel span,
  .fab .wa-btn > :not(svg), .fab .tel > :not(svg) { display: none; }
  .fab .wa-btn { font-size: 0; }
  .fab .tel { font-size: 0; }
  .fab .wa-btn svg, .fab .tel svg { inline-size: 22px; block-size: 22px; }
}

.wa-btn {
  display: inline-flex; align-items: center; gap: .7em;
  padding: 1em 1.6em 1em 1.8em;
  background: #23A455; color: #fff; border-radius: 999px;
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 12px 34px -8px rgba(18,80,45,.55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.wa-btn:hover { transform: translateY(-3px); background: #1E9049; box-shadow: 0 16px 40px -10px rgba(18,80,45,.6); }
.wa-btn svg { inline-size: 20px; block-size: 20px; flex-shrink: 0; }
.wa-ic { inline-size: 18px; block-size: 18px; }

/* ---------- Filters / forms ---------- */
.filterbar { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-block-end: 1.6rem; }
.filterbar__count { font-size: .8rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-soft); white-space: nowrap; }
.filterbar__count b { color: var(--gold); }
.field {
  inline-size: 100%; flex: 1 1 280px; min-inline-size: 0;
  padding: .95em 1.1em; border: 0; border-block-end: 1px solid var(--line);
  border-radius: 0; font: inherit; font-size: .98rem; color: var(--ink);
  background: transparent;
  transition: border-color .35s;
}
.field::placeholder { color: var(--ink-soft); opacity: .7; }
.field:focus { outline: 0; border-color: var(--gold); box-shadow: none; }
textarea.field, select.field { border: 1px solid var(--line); flex: none; background: var(--white); }
textarea.field:focus, select.field:focus { border-color: var(--gold); }
textarea.field { resize: vertical; }

.pills { display: flex; flex-wrap: wrap; gap: .3rem 1.6rem; }
.pill {
  padding: .4em 0; border-radius: 0; background: none; box-shadow: none;
  font-size: .86rem; font-weight: 600; color: var(--ink-soft);
  border-block-end: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.pill:hover { color: var(--ink); box-shadow: none; }
.pill.is-on { color: var(--ink); background: none; border-color: var(--gold); box-shadow: none; }
.pill b { color: var(--gold); font-weight: 600; margin-inline-start: .3em; }

.backlink { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .2em; color: var(--gold); }
.backlink:hover { color: var(--ink); transform: none; }

/* ---------- Country cover ---------- */
.cover {
  position: relative; min-block-size: 78svh; display: grid; align-items: end;
  padding-block: calc(var(--nav-h) + 60px) clamp(48px, 6vw, 80px);
  overflow: hidden; color: var(--white);
}
.cover__bg { position: absolute; inset: 0; background: var(--ink); }
.cover__bg img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.cover__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,27,58,.85) 0%, rgba(12,27,58,.32) 45%, rgba(12,27,58,.2) 100%);
}
.cover__inner { position: relative; z-index: 1; }
.cover__motif { display: none; }
.cover__title { font-size: clamp(3rem, 8vw, 7rem); line-height: 1; margin-block-start: 1.4rem; text-shadow: 0 4px 44px rgba(12,27,58,.5); }
.cover__latin { display: block; font-size: clamp(.85rem, 1.4vw, 1.1rem); letter-spacing: .4em; color: var(--gold-soft); margin-block-start: .8rem; text-transform: uppercase; }
.cover__meta { margin-block: 1.4rem 2rem; font-size: .95rem; color: rgba(255,255,255,.85); }

/* ---------- Article ---------- */
.article { padding-block: calc(var(--nav-h) + 52px) clamp(48px, 6vw, 88px); background: var(--white); }
.article__meta { font-size: .8rem; font-weight: 600; letter-spacing: .08em; color: var(--ink-soft); }
.article__cover { margin-block: 2.2rem; overflow: hidden; }
.article__cover img { inline-size: 100%; }
.article__body { margin-block-start: 2.2rem; font-size: 1.08rem; line-height: 1.95; }
.article__body p { margin-block-end: 1.3em; }
.article__body h2, .article__body h3 {
  font-family: var(--serif); font-weight: 500; margin-block: 2em .7em; font-size: 1.55rem;
}
.article__body img { margin-block: 2em; }
.article__cta {
  margin-block-start: 3.4rem; padding: 2.4rem; border: 1px solid var(--line);
  background: var(--paper); border-radius: 0; box-shadow: none;
}
.article__cta .hero__actions { justify-content: flex-start; margin-block-start: 1.4rem; }

/* ---------- Forms ---------- */
.formcard { padding: clamp(1.8rem, 3vw, 2.8rem); background: var(--white); border: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.form { display: grid; gap: 1.3rem; }
.lbl { display: grid; gap: .5rem; font-size: .74rem; font-weight: 700; letter-spacing: .18em; color: var(--ink); }
.form__note { padding: 1em 1.3em; background: var(--cream); font-weight: 600; font-size: .92rem; border-radius: 0; }
.rating { display: flex; gap: .3rem; }
.star { font-size: 1.6rem; line-height: 1; color: var(--line); transition: color .2s, transform .2s var(--ease); }
.star:hover { transform: scale(1.12); }
.star.is-on { color: var(--gold); }

.review-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
  padding: clamp(1.8rem, 3vw, 2.6rem); background: var(--ink); color: var(--white);
  border-radius: 0; box-shadow: none;
}
.review-cta .eyebrow { color: var(--gold-soft); }
.review-cta .eyebrow::before { background: var(--gold-soft); }
.review-cta .lede { color: rgba(255,255,255,.75); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; gap: clamp(2.2rem, 4vw, 3.8rem); grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); align-items: start; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__row {
  display: flex; align-items: baseline; gap: 1.1rem;
  padding: 1.15rem 0; border-block-end: 1px solid var(--line);
  background: none; box-shadow: none; border-radius: 0;
}
.contact__ic {
  inline-size: auto; block-size: auto; border-radius: 0; background: none;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; color: var(--gold);
  min-inline-size: 86px;
}
.contact__row b { display: none; }
.contact__row a { font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.contact__row a:hover { color: var(--gold); }

/* ---------- Trips ---------- */
.trips { display: grid; gap: clamp(22px, 2.6vw, 38px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.trip {
  position: relative; display: flex; flex-direction: column; text-align: start;
  background: none; border-radius: 0; box-shadow: none; overflow: visible;
}
.trip:hover { transform: none; box-shadow: none; }
.trip__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.trip__media img { inline-size: 100%; block-size: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.trip:hover .trip__media img { transform: scale(1.05); }
.trip__open {
  position: absolute; inset-block-end: 0; inset-inline: 0; padding: 2rem 1.3rem .9rem;
  background: linear-gradient(to top, rgba(12,27,58,.8), transparent);
  color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transition: opacity .4s var(--ease);
}
.trip:hover .trip__open { opacity: 1; }
.trip__body { padding-block: 1.2rem 0; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.trip__when { font-size: .68rem; font-weight: 700; letter-spacing: .26em; color: var(--gold); }
.trip__title { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; line-height: 1.25; }
.trip__lede { font-size: .93rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Itinerary sheet ---------- */
.sheet { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 3vh 3vw; }
.sheet[hidden], .lightbox[hidden] { display: none; }
.sheet__scrim { position: absolute; inset: 0; background: rgba(12,27,58,.65); backdrop-filter: blur(6px); animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; } }
.sheet__panel {
  position: relative; inline-size: min(920px, 100%); max-block-size: 94svh; overflow-y: auto;
  background: var(--paper); border-radius: 0; box-shadow: var(--shadow);
  animation: rise .5s var(--ease-out);
}
@keyframes rise { from { opacity: 0; transform: translateY(26px); } }
.sheet__x {
  position: sticky; inset-block-start: 14px; inset-inline-start: 14px; z-index: 2; float: inline-start;
  inline-size: 40px; block-size: 40px; display: grid; place-items: center;
  background: var(--paper); font-size: .9rem; box-shadow: 0 4px 18px rgba(12,27,58,.2);
}
.sheet__media { aspect-ratio: 21/9; overflow: hidden; background: var(--cream); }
.sheet__media img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.sheet__body { padding: clamp(1.7rem, 3.4vw, 3rem); }
.sheet__facts { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; margin-block-start: 1.4rem; }
.sheet__facts span {
  padding: 0; border-radius: 0; background: none; box-shadow: none;
  font-size: .8rem; font-weight: 600; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .5em;
}
.sheet__facts span::before { content: ""; inline-size: 5px; block-size: 5px; background: var(--gold); rotate: 45deg; }
.itin { display: grid; gap: 0; counter-reset: day; border-block-start: 1px solid var(--line); }
.itin li {
  position: relative; padding: 1.15rem 3.6rem 1.15rem .6rem;
  border-block-end: 1px solid var(--line); border-radius: 0; background: none; box-shadow: none;
  font-size: .95rem; line-height: 1.7;
}
.itin li::before {
  counter-increment: day; content: counter(day, decimal-leading-zero);
  position: absolute; inset-block-start: 1.2rem; inset-inline-start: .4rem;
  inline-size: auto; block-size: auto; border-radius: 0; background: none;
  font-family: var(--serif); font-size: 1rem; color: var(--gold);
}
.itin li b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.08rem; color: var(--ink); }
.sheet__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-block-start: 2.2rem; }

/* ---------- Accessibility widget ----------
   Israeli sites are required to offer accessibility adjustments; this covers
   the common ones without a third-party script. */
.a11y-btn {
  position: fixed; inset-block-end: 26px; inset-inline-end: 26px; z-index: 100;
  inline-size: 46px; block-size: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(12,27,58,.5);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.a11y-btn:hover { transform: scale(1.08); background: var(--gold); }
.a11y-btn svg { inline-size: 24px; block-size: 24px; }

.a11y-panel {
  position: fixed; inset-block-end: 84px; inset-inline-end: 26px; z-index: 100;
  inline-size: min(270px, calc(100vw - 40px));
  background: var(--white); padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 24px 60px -24px rgba(12,27,58,.45);
  display: grid; gap: .5rem;
}
.a11y-panel[hidden] { display: none; }
.a11y-panel h3 { font-family: var(--serif); font-size: 1.05rem; margin-block-end: .3rem; }
.a11y-panel button {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .6em .8em; font-size: .88rem; font-weight: 600; text-align: start;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: background .25s, box-shadow .25s;
}
.a11y-panel button:hover { background: var(--paper); }
.a11y-panel button[aria-pressed="true"] { box-shadow: inset 0 0 0 1.5px var(--gold); background: #FFF7E3; }
.a11y-panel button[aria-pressed="true"]::after { content: "✓"; color: var(--gold); font-weight: 700; }
.a11y-panel .a11y-reset { justify-content: center; color: var(--ink-soft); box-shadow: none; text-decoration: underline; font-size: .82rem; }

@media (max-width: 720px) {
  .a11y-btn { inset-block-end: 14px; inset-inline-end: 14px; inline-size: 44px; block-size: 44px; }
  .a11y-panel { inset-block-end: 68px; inset-inline-end: 14px; }
}

/* --- the adjustments themselves --- */
html.a11y-contrast body { background: #fff; }
html.a11y-contrast { --ink-soft: #1B2F5C; --line: rgba(12,27,58,.4); }
html.a11y-contrast .hero__scrim,
html.a11y-contrast .cover__veil { background: rgba(12,27,58,.78) !important; }
html.a11y-contrast .lede, html.a11y-contrast p { color: var(--ink); }

html.a11y-links a:not(.btn):not(.brand) { text-decoration: underline; text-underline-offset: 3px; }

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

html.a11y-big { font-size: 118%; }

/* ---------- Hero trip finder ----------
   A white card sitting below the hero, not straddling it — the hero stays a
   clean full-bleed image and the finder is the first thing under it. */
/* Above the hero, but below the fixed contact buttons — those must always win. */
.finder-wrap { position: relative; z-index: 5; margin-block-start: clamp(2.2rem, 4vw, 3.4rem); }
.finder {
  display: grid; align-items: end;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  padding: 1.5rem 1.6rem;
  background: var(--white);
  box-shadow: 0 30px 70px -30px rgba(12,27,58,.4), 0 2px 0 rgba(12,27,58,.04);
}
.finder__field { min-inline-size: 0; padding-inline: 1.4rem; border-inline-start: 1px solid var(--line); }
.finder__field:first-child { border-inline-start: 0; padding-inline-start: .4rem; }
.finder__field label {
  display: block; margin-block-end: .45rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; color: var(--gold);
}
.finder__control { position: relative; display: flex; align-items: center; }
.finder__control svg {
  position: absolute; inset-inline-start: 0; inline-size: 18px; block-size: 18px;
  color: var(--gold); pointer-events: none;
}
.finder__control select {
  inline-size: 100%; min-inline-size: 0;
  /* logical, not the physical `padding` shorthand — that breaks in RTL */
  padding-block: .55em;
  padding-inline-start: 1.85rem;
  padding-inline-end: 1.5rem;
  border: 0; background: none; font: inherit; font-size: .95rem; color: var(--ink);
  appearance: none; cursor: pointer;
  text-overflow: ellipsis;
}
.finder__control select:focus { outline: 0; }
.finder__control::after {
  content: ""; position: absolute; inset-inline-end: 2px; inset-block-start: 50%;
  inline-size: 6px; block-size: 6px; pointer-events: none;
  border-inline-end: 1.5px solid var(--ink-soft); border-block-end: 1.5px solid var(--ink-soft);
  rotate: 45deg; translate: 0 -60%;
}
.finder__field:focus-within label { color: var(--ink); }

.finder__go {
  display: inline-flex; align-items: center; gap: .6em;
  margin-inline-start: 1.2rem; padding: 1.05em 2.2em;
  background: var(--gold); color: var(--ink);
  font-size: .92rem; font-weight: 700; letter-spacing: .04em;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.finder__go svg { inline-size: 17px; block-size: 17px; }
.finder__go:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }

.finder__hint {
  margin-block-start: 1rem; text-align: center;
  font-size: .88rem; color: var(--ink-soft);
}
.finder__hint a { color: var(--gold); font-weight: 700; border-block-end: 1px solid transparent; }
.finder__hint a:hover { border-color: var(--gold); }

@media (max-width: 900px) {
  .finder-wrap { margin-block-start: 1.8rem; }
  .finder { grid-template-columns: 1fr 1fr; gap: 1.1rem 0; padding: 1.3rem; }
  .finder__field { padding-inline: .9rem; }
  .finder__field:nth-child(odd) { border-inline-start: 0; padding-inline-start: 0; }
  .finder__go { grid-column: 1 / -1; margin: .4rem 0 0; justify-content: center; }
}
@media (max-width: 560px) {
  .finder { grid-template-columns: 1fr; }
  .finder__field { border-inline-start: 0; padding-inline: 0; }
  .finder__field + .finder__field { border-block-start: 1px solid var(--line); padding-block-start: 1rem; }
}

/* ---------- Stats strip ---------- */
.statstrip { padding-block: clamp(2.4rem, 4vw, 3.6rem); background: var(--paper); }
.statstrip__in {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.6rem clamp(2.5rem, 7vw, 6rem);
}
.statstrip .stat { text-align: center; }

/* ---------- FAQ ---------- */
.faq { border-block-start: 1px solid var(--line); }
.faq__item { border-block-end: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.5rem; cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex-shrink: 0;
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold); line-height: 1;
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.45; margin: 0;
}
.faq__item summary:hover h2 { color: var(--gold); }
.faq__item p { padding-block-end: 1.7rem; font-size: 1rem; line-height: 1.85; color: var(--ink-soft); max-inline-size: 68ch; }

/* ---------- Search field ---------- */
.searchbox { position: relative; display: flex; flex: 1 1 320px; min-inline-size: 0; }
.searchbox svg {
  position: absolute; inset-inline-start: 1.1rem; inset-block-start: 50%; translate: 0 -50%;
  inline-size: 18px; block-size: 18px; color: var(--gold); pointer-events: none;
}
.searchbox .field { padding-inline-start: 3rem; }
.searchbox .field::-webkit-search-cancel-button { cursor: pointer; }

/* ---------- Brand icons ---------- */
.socials a { display: inline-flex; align-items: center; gap: .55em; }
.socials svg { inline-size: 19px; block-size: 19px; flex-shrink: 0; }
.community__kind svg { inline-size: 15px; block-size: 15px; vertical-align: -2px; margin-inline-end: .35em; }

/* ---------- Price ---------- */
.trip__price {
  display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
  margin-block-start: auto; padding-block-start: 1rem;
  border-block-start: 1px solid var(--line);
}
.trip__price b { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--gold); }
.trip__price i { font-style: normal; font-size: .78rem; color: var(--ink-soft); }

.pricebox {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem; margin-block-start: 1.8rem; padding: 1.4rem 1.6rem;
  background: var(--ink); color: var(--white);
}
.pricebox__main { display: grid; gap: .25rem; }
.pricebox__label { font-size: .64rem; font-weight: 700; letter-spacing: .3em; color: var(--gold-soft); }
.pricebox__num { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; line-height: 1; }
.pricebox__note { font-size: .82rem; color: rgba(255,255,255,.72); }

.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-block-start: 1.6rem; border: 1px solid var(--line); }
@media (max-width: 620px) { .incl-grid { grid-template-columns: 1fr; } }
.incl { padding: 1.4rem 1.5rem 1.6rem; border-inline-start: 1px solid var(--line); margin-inline-start: -1px; }
.incl h4 { font-size: .66rem; font-weight: 700; letter-spacing: .26em; color: var(--gold); margin-block-end: .9rem; }
.incl--out h4 { color: var(--ink-soft); }
.incl ul { display: grid; gap: .5rem; }
.incl li { position: relative; padding-inline-start: 1.4rem; font-size: .9rem; line-height: 1.6; }
.incl li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--gold); font-weight: 700; }
.incl--out li::before { content: "×"; color: var(--ink-soft); }

.sheet__foot { margin-block-start: 1.2rem; font-size: .85rem; color: var(--ink-soft); }
.sheet__foot b { color: var(--ink); }

/* ---------- Review screenshots ---------- */
.shots { columns: 4 250px; column-gap: 14px; }
.shots button {
  display: block; inline-size: 100%; margin-block-end: 14px;
  overflow: hidden; background: var(--white); border: 1px solid var(--line);
  break-inside: avoid; border-radius: 0;
  transition: border-color .35s;
}
.shots button:hover { transform: none; box-shadow: none; border-color: var(--gold); }
.shots img { inline-size: 100%; display: block; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 4vh 6vw; background: rgba(12,27,58,.88); animation: fade .3s var(--ease); }
.lightbox img { max-block-size: 92svh; max-inline-size: 100%; }
.lightbox__x, .lightbox__nav {
  position: absolute; z-index: 2; inline-size: 46px; block-size: 46px;
  display: grid; place-items: center; font-size: 1.3rem;
  background: var(--paper); color: var(--ink);
}
.lightbox__x { inset-block-start: 18px; inset-inline-start: 18px; font-size: .95rem; }
.lightbox__nav { inset-block-start: 50%; translate: 0 -50%; }
.lightbox__nav--prev { inset-inline-end: 14px; }
.lightbox__nav--next { inset-inline-start: 14px; }

/* ---------- Legacy shims (old classes now invisible or neutral) ---------- */
.marquee, .marquee--gold { display: none; }
.aurora, .rays, .hero__grid, #dust, .scroll-hint, .hero__kicker { display: none; }
.grad-rule { block-size: 1px; border: 0; background: var(--gold); inline-size: 60px; }
.divider { block-size: 1px; background: var(--line); border: 0; }
.hero__name { display: block; }
.pagehead--gold { background: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
