/* ==========================================================================
   ישראל פיגא טורס — מערכת עיצוב
   שני עולמות: ים קריבי (דיו + טורקיז) ואדמת ישראל (אבן + אוקר)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&family=Frank+Ruhl+Libre:wght@400;500;700;900&family=Heebo:wght@400;500;700&display=swap');

:root {
  /* --- צבע --- */
  --ink:        #071F30;   /* דיו ימי עמוק */
  --ink-2:      #0C3049;
  --sea:        #12938F;   /* טורקיז לגונה */
  --foam:       #7FD6C9;   /* קצף */
  --sand:       #E8D6BC;   /* אבן ירושלמית */
  --sand-deep:  #D2B991;
  --ochre:      #B35426;   /* אוקר מדברי — צבע הפעולה */
  --ochre-hi:   #CE6A38;
  --paper:      #FBF7F1;
  --paper-2:    #F3EBDF;

  --text:       #10293A;
  --text-mute:  #4A6274;
  --on-dark:    #EAF4F4;
  --on-dark-mute: #9DBAC4;

  /* --- טיפוגרפיה --- */
  --display: 'Frank Ruhl Libre', Georgia, serif;
  --body:    'Assistant', system-ui, -apple-system, sans-serif;
  --util:    'Heebo', system-ui, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1.05rem, 1rem + 0.25vw, 1.18rem);
  --step-1:  clamp(1.3rem, 1.18rem + 0.5vw, 1.6rem);
  --step-2:  clamp(1.65rem, 1.4rem + 1.1vw, 2.3rem);
  --step-3:  clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem);
  --step-4:  clamp(2.7rem, 1.7rem + 4.4vw, 5.6rem);

  /* --- מרחב --- */
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --shell: 1220px;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 26px;

  --shadow-sm: 0 2px 8px rgba(7,31,48,.07);
  --shadow-md: 0 14px 40px -18px rgba(7,31,48,.32);
  --shadow-lg: 0 34px 70px -34px rgba(7,31,48,.5);

  --ease: cubic-bezier(.22,.61,.36,1);

  /* --- שכבות --- */
  --z-scene: 0;
  --z-body: 10;
  --z-sticky: 30;
  --z-nav: 50;
  --z-overlay: 70;
}

/* ---------- בסיס ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/*
  במובייל אין מקום לשמש ולאונייה. נמדד בפריים של 375: פסקת הפתיחה תופסת
  32%-47% מגובה ההירו, הכפתורים 51%-64%, והגלים מתחילים ב-67.5%. חלון של
  5% הוא פחות מחצי מקוטר הזוהר, ולכן הוא נפל על הטקסט והבליע אותו.
  שכבות הגלים והשמיים נושאות את האווירה לבדן.
*/
@media (max-width: 900px) {
  .hero__sun,
  .hero__vessel { display: none; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

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

a { color: inherit; }

button, input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--foam); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
  border-radius: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: absolute; inset-inline-start: 1rem; top: -100px;
  z-index: var(--z-overlay);
  background: var(--ochre); color: #fff;
  padding: .7rem 1.2rem; border-radius: var(--r-sm);
  font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- תווית / eyebrow ---------- */
.eyebrow {
  font-family: var(--util);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--sea);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .3;
  max-width: 80px;
}
.eyebrow--dark { color: var(--foam); }
.eyebrow--sand { color: var(--ochre); }

/* ---------- כפתורים ---------- */
.btn {
  --btn-bg: var(--ochre);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.8rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: var(--util);
  font-weight: 500;
  font-size: var(--step-0);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 10px 26px -14px rgba(179,84,38,.85);
}
.btn:hover { --btn-bg: var(--ochre-hi); box-shadow: 0 14px 34px -14px rgba(179,84,38,.95); }
.btn:active { --btn-bg: #9C481F; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  border-color: rgba(234,244,244,.35);
  box-shadow: none;
}
.btn--ghost:hover {
  --btn-bg: rgba(234,244,244,.1);
  --btn-fg: #fff;
  border-color: rgba(234,244,244,.7);
  box-shadow: none;
}

.btn--line {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: rgba(16,41,58,.28);
  box-shadow: none;
}
.btn--line:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); border-color: var(--ink); box-shadow: none; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ==========================================================================
   ניווט + קו האופק (אלמנט החתימה)
   ========================================================================== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.nav.is-stuck { background: rgba(7,31,48,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-md); }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--on-dark); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.16rem; line-height: 1.05; }
.brand__sub {
  font-family: var(--util); font-size: .66rem; font-weight: 500;
  letter-spacing: .22em; color: var(--foam); display: block; margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block;
  padding: .62rem .95rem;
  font-family: var(--util);
  font-size: .95rem;
  color: var(--on-dark);
  text-decoration: none;
  border-radius: 100px;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.nav__links a:hover { background: rgba(234,244,244,.14); }
.nav__links a.is-active { color: var(--foam); }

.nav__cta { display: inline-flex; }
.nav__cta .btn { min-height: 46px; padding: .6rem 1.35rem; font-size: .95rem; }

/* קו האופק — מד גלילה עם אונייה מפליגה */
.horizon {
  position: relative;
  height: 26px;
  pointer-events: none;
}
.horizon__rule {
  position: absolute;
  inset-inline: 0;
  top: 13px;
  height: 1px;
  background: linear-gradient(to left, rgba(127,214,201,0), rgba(127,214,201,.55), rgba(127,214,201,0));
}
.horizon__fill {
  position: absolute;
  inset-block-start: 12px;
  /* מעוגן בהתחלה הלוגית, כלומר בימין בעברית, וגדל שמאלה עם הגלילה */
  inset-inline-start: 0;
  height: 3px;
  width: var(--progress, 0%);
  background: var(--foam);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(127,214,201,.8);
}
.horizon__ship {
  position: absolute;
  top: 0;
  /* נצמדת לקצה המתקדם של הפס, בלי לחרוג מהמסך בשני הקצוות */
  inset-inline-start: clamp(0px, calc(var(--progress, 0%) - 13px), calc(100% - 26px));
  width: 26px; height: 26px;
  color: var(--foam);
  transition: none;
}
.horizon__ship svg { width: 100%; height: 100%; }

/* תפריט מובייל */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(234,244,244,.3);
  border-radius: 100px;
  color: var(--on-dark);
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.nav__toggle:hover { background: rgba(234,244,244,.12); }
.nav__toggle svg { width: 20px; height: 20px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }
.nav__toggle[aria-expanded="true"] .icon-menu { display: none; }

.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--ink);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.nav__drawer[data-open="true"] { transform: translateY(0); }
.nav__drawer a {
  font-family: var(--display);
  font-size: var(--step-2);
  color: var(--on-dark);
  text-decoration: none;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(234,244,244,.1);
  transition: color .2s var(--ease);
}
.nav__drawer a:hover { color: var(--foam); }
.nav__drawer .btn { margin-top: 1.6rem; align-self: flex-start; }

@media (max-width: 950px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* ==========================================================================
   HERO — נוף ים בנוי SVG
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, #04141F 0%, #071F30 34%, #0C3049 62%, #12545E 100%);
  color: var(--on-dark);
  overflow: hidden;
  padding-block: 9rem 0;
  isolation: isolate;
}

.hero__scene { position: absolute; inset: 0; z-index: var(--z-scene); }

/* שמש/ירח נמוכים על האופק */
.hero__sun {
  position: absolute;
  inset-inline-end: 17%;
  top: 39%;
  width: clamp(120px, 20vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,158,.95) 0%, rgba(226,140,72,.45) 45%, rgba(226,140,72,0) 70%);
  filter: blur(2px);
}

/* כוכבים */
.hero__stars { position: absolute; inset: 0 0 55% 0; opacity: .7; }

/* שכבות גלים */
.hero__waves { position: absolute; inset-inline: -10%; bottom: -2px; width: 120%; }
.hero__waves svg { width: 100%; height: auto; }
.wave-layer { animation: drift 26s linear infinite; }
.wave-layer--2 { animation-duration: 19s; animation-direction: reverse; }
.wave-layer--3 { animation-duration: 13s; }
@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-60px); }
}

/* אונייה על האופק */
.hero__vessel {
  position: absolute;
  inset-inline-end: 20%;
  top: 47.5%;
  width: clamp(52px, 7vw, 92px);
  color: rgba(4,20,31,.72);
  animation: bob 7s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50%      { transform: translateY(-7px) rotate(.6deg); }
}

.hero__inner {
  position: relative;
  z-index: var(--z-body);
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  width: 100%;
}

.hero__title {
  font-size: var(--step-4);
  font-weight: 900;
  line-height: .98;
  max-width: 15ch;
  margin-bottom: 1.4rem;
}
.hero__title em {
  font-style: normal;
  display: block;
  color: var(--foam);
  font-weight: 400;
}

.hero__lead {
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--on-dark-mute);
  max-width: 46ch;
  margin-bottom: 2.4rem;
  line-height: 1.55;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 3.5rem; }

/* פס נתונים בתחתית ההירו */
.hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(234,244,244,.16);
  border-block: 1px solid rgba(234,244,244,.16);
}
.hero__fact {
  background: rgba(4,20,31,.35);
  backdrop-filter: blur(6px);
  padding: 1.15rem 1.35rem;
}
.hero__fact dt {
  font-family: var(--util);
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--foam);
  margin-bottom: .3rem;
}
.hero__fact dd {
  margin: 0;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

/* ==========================================================================
   מבנה סקציות
   ========================================================================== */
.section { padding-block: var(--section-y); position: relative; }
.section--ink { background: var(--ink); color: var(--on-dark); }
.section--sand { background: var(--paper-2); }
.section--paper { background: var(--paper); }

.section__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__title { font-size: var(--step-3); margin-bottom: 1rem; }
.section__lead { font-size: var(--step-1); font-weight: 300; color: var(--text-mute); line-height: 1.6; }
.section--ink .section__lead { color: var(--on-dark-mute); }

/* ---------- שני עולמות ---------- */
.worlds { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 800px) { .worlds { grid-template-columns: 1fr; } }

.world {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(360px, 46vw, 500px);
  padding: clamp(1.6rem, 3.5vw, 2.8rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  transition: box-shadow .35s var(--ease);
}
.world:hover { box-shadow: var(--shadow-lg); }
.world__art { position: absolute; inset: 0; z-index: -1; }
.world__art svg { width: 100%; height: 100%; object-fit: cover; }
.world__num {
  font-family: var(--util);
  font-size: .72rem;
  letter-spacing: .2em;
  margin-bottom: auto;
}
.world__title { font-size: var(--step-2); margin-bottom: .6rem; }
.world__text { font-size: var(--step-0); margin-bottom: 1.4rem; max-width: 34ch; }
.world__link {
  font-family: var(--util);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.world__link svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.world:hover .world__link svg { transform: translateX(-6px); }

.world--sea { background: var(--ink-2); color: var(--on-dark); }
.world--sea .world__num { color: var(--foam); }
.world--sea .world__text { color: var(--on-dark-mute); }
.world--sea .world__link { color: var(--foam); }

.world--land { background: var(--sand); color: var(--ink); }
.world--land .world__num { color: var(--ochre); }
.world--land .world__text { color: #4A3A28; }
.world--land .world__link { color: var(--ochre); }

/* ---------- יעדים (גלילה אופקית) ---------- */
.ports {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(266px, 300px);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: .5rem 1.6rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: rgba(127,214,201,.5) transparent;
}
.ports::-webkit-scrollbar { height: 6px; }
.ports::-webkit-scrollbar-track { background: rgba(234,244,244,.08); border-radius: 3px; }
.ports::-webkit-scrollbar-thumb { background: rgba(127,214,201,.5); border-radius: 3px; }

.port {
  scroll-snap-align: start;
  background: linear-gradient(160deg, rgba(18,147,143,.16), rgba(12,48,73,.5));
  border: 1px solid rgba(127,214,201,.22);
  border-radius: var(--r-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease);
}
.port:hover { border-color: rgba(127,214,201,.6); transform: translateY(-4px); }
.port__coord {
  font-family: var(--util);
  font-size: .7rem;
  letter-spacing: .13em;
  color: var(--foam);
  opacity: .8;
  margin-bottom: 1.7rem;
  direction: ltr;
  text-align: right;
}
.port__name { font-size: var(--step-1); margin-bottom: .55rem; }
.port__text { font-size: .96rem; color: var(--on-dark-mute); margin: 0; }
.port__tag {
  margin-top: 1.3rem;
  font-family: var(--util);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--foam);
  border-top: 1px solid rgba(127,214,201,.2);
  padding-top: .9rem;
}

.scroll-hint {
  font-family: var(--util);
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--on-dark-mute);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.scroll-hint svg { width: 16px; height: 16px; }

/* ---------- רשת "מה כלול" ---------- */
.included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: rgba(127,214,201,.18);
  border: 1px solid rgba(127,214,201,.18);
  border-radius: var(--r-md);
  overflow: hidden;
}
.included__item { background: var(--ink); padding: 1.9rem 1.6rem; }
.included__icon {
  width: 30px; height: 30px;
  color: var(--foam);
  margin-bottom: 1.1rem;
}
.included__item h3 { font-size: 1.16rem; margin-bottom: .45rem; }
.included__item p { font-size: .95rem; color: var(--on-dark-mute); margin: 0; }

/* ---------- טיולים בארץ — ציר טיפוסים ---------- */
.tours { display: flex; flex-direction: column; }
.tour {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr minmax(150px, auto);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding-block: clamp(1.8rem, 3.5vw, 2.8rem);
  border-top: 1px solid rgba(16,41,58,.16);
  transition: background-color .3s var(--ease);
}
.tour:last-child { border-bottom: 1px solid rgba(16,41,58,.16); }
.tour:hover { background: rgba(232,214,188,.4); }

.tour__meta { font-family: var(--util); font-size: .8rem; letter-spacing: .1em; color: var(--ochre); }
.tour__meta span { display: block; color: var(--text-mute); letter-spacing: normal; font-size: .92rem; margin-top: .35rem; }

.tour__title { font-size: var(--step-2); margin-bottom: .7rem; }
.tour__body { color: var(--text-mute); max-width: 56ch; margin-bottom: 1.1rem; }
.tour__stops { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.tour__stops li {
  font-family: var(--util);
  font-size: .82rem;
  padding: .3rem .8rem;
  background: rgba(179,84,38,.09);
  color: #7C3A1A;
  border-radius: 100px;
}
.tour__action { display: flex; justify-content: flex-start; padding-top: .3rem; }

@media (max-width: 860px) {
  .tour { grid-template-columns: 1fr; gap: 1rem; }
  .tour__action { justify-content: flex-start; }
}

/* ---------- אודות ---------- */
.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 880px) { .about { grid-template-columns: 1fr; } }

.about__text p { color: var(--text-mute); }
.about__text p:first-of-type {
  font-family: var(--display);
  font-size: var(--step-1);
  color: var(--text);
  line-height: 1.5;
}
.about__quote {
  margin: 2rem 0 0;
  padding-inline-start: 1.4rem;
  border-inline-start: 3px solid var(--ochre);
  font-family: var(--display);
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--ink);
}
.about__quote footer {
  font-family: var(--util);
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--ochre);
  margin-top: .8rem;
}
.about__art { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ---------- תהליך (רצף אמיתי → מספור מוצדק) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.2rem, 3vw, 2.2rem); }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  content: attr(data-step);
  position: absolute;
  top: 0; inset-inline-start: 0;
  font-family: var(--util);
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--foam);
}
.step::after {
  content: '';
  position: absolute;
  top: 1.5rem; inset-inline: 0;
  height: 1px;
  background: rgba(127,214,201,.28);
}
.step h3 { font-size: var(--step-1); margin-bottom: .55rem; }
.step p { font-size: .97rem; color: var(--on-dark-mute); margin: 0; }

/* ---------- שאלות נפוצות ---------- */
.faq { max-width: 800px; }
.faq__item { border-bottom: 1px solid rgba(16,41,58,.15); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  background: none;
  border: 0;
  text-align: start;
  font-family: var(--display);
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.faq__q:hover { color: var(--ochre); }
.faq__q svg { width: 20px; height: 20px; flex: none; transition: transform .3s var(--ease); }
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__a {
  height: 0;
  overflow: hidden;
  transition: height .35s var(--ease);
}
.faq__a p { color: var(--text-mute); padding-bottom: 1.4rem; max-width: 68ch; }

/* ---------- טופס ---------- */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.contact__aside p { color: var(--on-dark-mute); }
.contact__points { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact__points li { display: flex; gap: .85rem; align-items: flex-start; font-size: .98rem; color: var(--on-dark-mute); }
.contact__points svg { width: 20px; height: 20px; flex: none; color: var(--foam); margin-top: 3px; }

.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .45rem; }
.field label {
  font-family: var(--util);
  font-size: .84rem;
  letter-spacing: .06em;
  color: var(--foam);
}
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1.1rem;
  background: rgba(234,244,244,.06);
  border: 1px solid rgba(234,244,244,.22);
  border-radius: var(--r-sm);
  color: #fff;
  transition: border-color .22s var(--ease), background-color .22s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; line-height: 1.6; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237FD6C9' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 18px;
  padding-inline-start: 3rem;
}
.field select option { background: var(--ink); color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: rgba(157,186,196,.65); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(234,244,244,.4); }
.field input:focus, .field textarea:focus, .field select:focus {
  background: rgba(234,244,244,.1);
  border-color: var(--foam);
  outline: none;
}
.field--error input, .field--error textarea, .field--error select { border-color: #F08A6A; }
.field__error { font-family: var(--util); font-size: .84rem; color: #F5A88C; min-height: 0; }

.form__consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--on-dark-mute); }
.form__consent input { width: 20px; height: 20px; min-height: 0; accent-color: var(--ochre); margin-top: 3px; flex: none; }

.form__submit { justify-self: start; }
.form__submit[data-loading="true"] { opacity: .65; pointer-events: none; }

.form__status {
  font-family: var(--util);
  font-size: .96rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  display: none;
}
.form__status[data-state="ok"] { display: block; background: rgba(18,147,143,.2); border: 1px solid var(--foam); color: var(--foam); }
.form__status[data-state="err"] { display: block; background: rgba(240,138,106,.14); border: 1px solid #F08A6A; color: #F5A88C; }

/* ---------- כותרת תחתונה ---------- */
.footer { background: #04141F; color: var(--on-dark-mute); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(234,244,244,.12); }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 2rem; } }
.footer h4 { font-family: var(--util); font-size: .78rem; letter-spacing: .17em; color: var(--foam); margin-bottom: 1.1rem; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: var(--foam); }
.footer__blurb { max-width: 44ch; font-size: .95rem; margin-top: 1.1rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.6rem; font-size: .86rem;
}

/* ---------- הופעה בגלילה ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/*
  במובייל אין מקום לשמש ולאונייה. נמדד בפריים של 375: פסקת הפתיחה תופסת
  32%-47% מגובה ההירו, הכפתורים 51%-64%, והגלים מתחילים ב-67.5%. חלון של
  5% הוא פחות מחצי מקוטר הזוהר, ולכן הוא נפל על הטקסט והבליע אותו.
  שכבות הגלים והשמיים נושאות את האווירה לבדן.
*/
@media (max-width: 900px) {
  .hero__sun,
  .hero__vessel { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .wave-layer, .hero__vessel { animation: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
