/* ==========================================================================
   חנניה בן שמעון — דף נחיתה
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts (FontBit — Anomalia for display, Almoni for text)
   -------------------------------------------------------------------------- */
@font-face { font-family: "Anomalia"; src: url("../fonts/anomalia-ultrabold.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Anomalia"; src: url("../fonts/anomalia-bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Anomalia Hollow"; src: url("../fonts/anomalia-hollow.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Almoni"; src: url("../fonts/almoni-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Almoni"; src: url("../fonts/almoni-medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Almoni"; src: url("../fonts/almoni-bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --paper: #FAF8F4;
  --paper-2: #F0ECE4;
  --ink: #14202B;
  --ink-2: #4A5866;
  --line: rgba(20, 32, 43, .14);
  --navy: #0E2237;
  --blue: #1F4E79;
  --blue-2: #2C6AA6;
  --blue-tint: #DCE7F2;
  --amber: #E9A23B;
  --wa: #25D366;
  --wa-dark: #1DA851;

  --font-display: "Anomalia", "Heebo", system-ui, sans-serif;
  --font-hollow: "Anomalia Hollow", "Anomalia", system-ui, sans-serif;
  --font-body: "Almoni", "Heebo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --nav-h: 72px;
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius-btn: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  /* no CSS scroll-behavior: smooth — it breaks ScrollTrigger's measurements; nav links animate via JS */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: var(--navy);
}
h2 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -.005em; }
h3 { font-size: clamp(26px, 3vw, 34px); }
p { margin: 0; }

.wrap {
  width: min(var(--wrap), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.skip {
  position: absolute; inset-inline-start: 16px; top: -60px;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100;
}
.skip:focus { top: 12px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font: 500 17px/1 var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, border-color .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 22px; height: 22px; flex: none; }

.btn--wa { background: var(--wa); color: #06301a; }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }

.btn--primary { background: var(--amber); color: var(--navy); }
.btn--primary:hover { background: #f2b14f; }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }

.btn--xl { padding: 20px 34px; font-size: 20px; }
.btn--xl svg { width: 28px; height: 28px; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  height: var(--nav-h);
  transition: background-color .35s, box-shadow .35s;
}
.nav::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(250, 248, 244, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity .35s;
}
body.is-scrolled .nav::before { opacity: 1; }
body.is-scrolled .nav { box-shadow: 0 1px 0 var(--line); }

.nav__inner {
  position: relative;
  height: 100%;
  display: flex; align-items: center; gap: 28px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  text-decoration: none;
  margin-inline-end: auto;
  transition: color .35s;
}
.nav__logo {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px var(--line);
  flex: none;
}
.nav__logo img { width: 34px; height: 34px; display: block; transform: translateY(2px); }

/* over the dark hero the nav is transparent with light text */
body.nav-dark .nav::before { opacity: 1; background: linear-gradient(to bottom, rgba(11,27,45,.92) 0%, rgba(11,27,45,.55) 60%, rgba(11,27,45,0) 100%); backdrop-filter: none; -webkit-backdrop-filter: none; }
body.nav-dark .nav { box-shadow: none; }
body.nav-dark .nav__brand, body.nav-dark .nav__links a { color: #fff; }
body.nav-dark .nav__links a::after { background: var(--amber); }
body.nav-dark .nav__burger span { background: #fff; }
body.nav-dark .nav__logo { box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  position: relative;
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 17px;
  padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__wa { padding: 11px 20px; font-size: 16px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav__burger span { width: 26px; height: 2px; background: var(--navy); transition: transform .3s var(--ease), opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--nav-h) var(--gutter) 40px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .5s var(--ease), visibility 0s .5s;
}
.mobile-menu.is-open { transform: none; visibility: visible; transition: transform .5s var(--ease); }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 9vw, 52px);
  color: #fff; text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-menu .btn { align-self: flex-start; margin-top: 28px; }

@media (max-width: 860px) {
  .nav__links, .nav__wa { display: none; }
  .nav__burger { display: flex; }
}
body.menu-open .nav::before { opacity: 0; }
body.menu-open .nav { box-shadow: none; }
body.menu-open .nav__brand { color: #fff; }
body.menu-open .nav__burger span { background: #fff; }

/* --------------------------------------------------------------------------
   Hero — dark stage, giant words, him standing in front of them
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 32% 100%, rgba(233,162,59,.62) 0%, rgba(233,162,59,.18) 40%, rgba(233,162,59,0) 70%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(44,106,166,.45) 0%, rgba(44,106,166,0) 60%),
    linear-gradient(180deg, #0B1B2D 0%, var(--navy) 60%, #13294A 100%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__stage {
  position: relative; z-index: 1;
  padding-top: var(--nav-h);
}
.hero__inner {
  position: relative;
  width: min(var(--wrap), 100% - 2 * var(--gutter));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 30%);
  align-items: end;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  padding-bottom: clamp(28px, 5vh, 56px);
}

.hero__title {
  position: relative; z-index: 1;
  font-size: clamp(64px, 18vh, 200px);
  line-height: .92;
  color: #F6F2EA;
  margin: 0 0 clamp(32px, 8vh, 80px);
  letter-spacing: -.01em;
}
.hero__title .w { display: block; will-change: transform, opacity, filter; }
.hero__title .w3 { position: relative; display: inline-block; }
.hero__title .w3__hollow { font-family: var(--font-hollow); font-weight: 400; color: #F6F2EA; }
.hero__title .w3__fill { position: absolute; inset: 0; color: #F6F2EA; }

.hero__copy { position: relative; z-index: 3; }
.hero__lede {
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  max-width: 30em;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(20px, 3vh, 28px); }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.hero__figure {
  position: absolute; z-index: 2;
  bottom: 0; left: 9%;
  height: min(94vh, 94svh);
  aspect-ratio: 804 / 1809;   /* the cutout's own ratio — width follows height, never squashed */
  pointer-events: none;
  will-change: transform;
}
.hero__figure picture { display: block; width: 100%; height: 100%; }
.hero__figure img {
  width: 100%; height: 100%; max-width: none; display: block;
  object-fit: contain; object-position: center bottom;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}

.hero__scroll {
  position: absolute; z-index: 3; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 56px; background: rgba(255,255,255,.18); overflow: hidden; border-radius: 2px;
}
.hero__scroll span {
  position: absolute; inset: 0; background: var(--amber); transform-origin: top;
  animation: scroll-cue 2.2s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes scroll-cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* the "בקצרה" grid now sits right under the hero, on paper */
.facts { padding: clamp(28px, 4vw, 48px) 0 0; }
.hero__facts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.hero__facts li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px; font-weight: 500; color: var(--blue);
  line-height: 1.35;
  padding-inline-end: 12px;
}

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 22%); }
  .hero__title { font-size: clamp(64px, 15vh, 170px); }
  .hero__figure { left: 4%; }
}
@media (max-width: 960px) {
  /* mobile order: words → text → buttons → him (small, at the very bottom of the dark stage) */
  .hero__inner { display: block; min-height: 0; padding-bottom: 0; }
  .hero__title {
    min-height: 0; padding-top: 5vh; margin: 0 0 22px;
    font-size: clamp(56px, 17vw, 120px);
  }
  .hero__copy { padding: 0; }
  .hero__figure {
    position: relative; top: auto; bottom: auto; left: auto;
    height: min(40vh, 340px);
    margin: 28px auto 0;
  }
  .hero__figure img { filter: drop-shadow(0 16px 32px rgba(0,0,0,.5)); }
  .hero__scroll { display: none; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(52px, 17vw, 96px); }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__facts li { font-size: 14px; }
}

/* --------------------------------------------------------------------------
   Story — sticky media + scrolling chapters
   -------------------------------------------------------------------------- */
.story { padding: clamp(72px, 10vw, 140px) 0 clamp(40px, 6vw, 80px); scroll-margin-top: var(--nav-h); }
.story__head { margin-bottom: clamp(40px, 6vw, 80px); max-width: 30em; }
.story__head p { margin-top: 14px; font-size: 20px; color: var(--ink-2); }

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.story__media {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  height: calc(100vh - var(--nav-h) - 32px);
  height: calc(100svh - var(--nav-h) - 32px);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
}
.story__frame {
  position: relative; overflow: hidden;
  background: var(--navy);
  height: 100%;
}
.story__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: transform, opacity;
}
.story__img.is-current { opacity: 1; }

.story__rail {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.story__counter {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .04em;
  direction: ltr;
  margin-bottom: 14px;
}
.story__counter .story__num { color: var(--amber); }
.story__progress {
  flex: 1; width: 2px; background: var(--line); position: relative;
}
.story__progress i {
  position: absolute; inset: 0;
  background: var(--amber);
  transform: scaleY(0); transform-origin: top;
}

.story__chapters { display: flex; flex-direction: column; }
.chapter {
  min-height: 74vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vh 0;
  transition: opacity .5s;
}
.chapter:first-child { padding-top: 0; min-height: 60vh; }
.chapter.is-dim { opacity: .28; }
.chapter__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; color: var(--amber);
  margin-bottom: 8px;
}
.chapter h3 { margin-bottom: 18px; }
.chapter p { max-width: 34em; color: var(--ink); }
.chapter p + p { margin-top: 1em; }
.chapter__img { display: none; }

@media (max-width: 960px) {
  .story__grid { grid-template-columns: 1fr; gap: 0; }
  .story__media { display: none; }
  .chapter { min-height: 0; padding: 0 0 clamp(48px, 10vw, 80px); justify-content: flex-start; }
  .chapter.is-dim { opacity: 1; }
  .chapter__img {
    display: block; margin: 0 0 22px; overflow: hidden;
    aspect-ratio: 4 / 3.4; background: var(--navy);
  }
  .chapter__img img { width: 100%; height: 100%; object-fit: cover; }
  .chapter--noimg .chapter__img { display: none; }
}

/* --------------------------------------------------------------------------
   Bridge — quote over photo
   -------------------------------------------------------------------------- */
.bridge {
  position: relative; overflow: hidden;
  min-height: 72vh;
  display: grid; align-items: center;
  color: #fff;
}
.bridge__bg { position: absolute; inset: 0; }
.bridge__bg img {
  width: 100%; height: 130%; object-fit: cover; object-position: 35% 50%;
  position: absolute; top: -15%;
}
.bridge__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(14,34,55,.88) 0%, rgba(14,34,55,.62) 55%, rgba(14,34,55,.3) 100%);
}
.bridge__text { position: relative; padding: clamp(72px, 10vw, 120px) 0; }
.bridge__quote {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  max-width: 22ch;
}
.bridge__quote + p { margin-top: 20px; font-size: 19px; color: rgba(255,255,255,.8); max-width: 34em; }

/* --------------------------------------------------------------------------
   Lectures
   -------------------------------------------------------------------------- */
.lectures { padding: clamp(80px, 10vw, 150px) 0 clamp(64px, 8vw, 110px); scroll-margin-top: var(--nav-h); }
.lectures__head { max-width: 36em; margin-bottom: clamp(40px, 6vw, 72px); }
.lectures__head p { margin-top: 14px; font-size: 20px; color: var(--ink-2); }

.lectures__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 48px);
}
.lecture { display: flex; flex-direction: column; }
.lecture__poster {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  text-decoration: none;
  color: #fff;
}
.lecture__poster img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.lecture__poster:hover img { transform: scale(1.04); }
.lecture__poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,34,55,.9) 0%, rgba(14,34,55,.35) 40%, rgba(14,34,55,0) 65%);
}
.lecture__poster h3 {
  position: absolute; inset-inline: 22px; bottom: 20px; z-index: 1;
  color: #fff; font-size: clamp(28px, 2.6vw, 38px);
}
.lecture__body { padding-top: 22px; display: flex; flex-direction: column; flex: 1; }
.lecture__desc { color: var(--ink); }
.lecture__fit { margin-top: 16px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.lecture__fit strong { color: var(--navy); font-weight: 700; }
.lecture .btn { align-self: flex-start; margin-top: auto; padding-top: 12px; padding-bottom: 12px; }
.lecture__body .btn { margin-top: 24px; }
.lectures__note { margin-top: clamp(40px, 5vw, 64px); color: var(--ink-2); max-width: 44em; border-top: 1px solid var(--line); padding-top: 24px; }

@media (max-width: 960px) {
  .lectures__grid { grid-template-columns: 1fr; gap: 56px; }
  .lecture__poster { aspect-ratio: 4 / 3.6; }
}

/* --------------------------------------------------------------------------
   Photo strip
   -------------------------------------------------------------------------- */
.strip { overflow: hidden; padding: 0 0 clamp(64px, 8vw, 110px); }
.strip__track {
  display: flex; gap: 14px;
  width: max-content;
  padding-inline-start: var(--gutter);
  will-change: transform;
}
.strip__track img {
  height: clamp(200px, 34vw, 380px); width: auto;
  flex: none;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  background: var(--navy); color: #fff;
  padding: clamp(72px, 10vw, 140px) 0;
  scroll-margin-top: var(--nav-h);
}
.contact h2 { color: #fff; }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.contact__intro p { margin-top: 16px; font-size: 19px; color: rgba(255,255,255,.82); max-width: 30em; }
.contact__intro .btn--wa { margin-top: 28px; }
.contact__phone {
  display: block; margin-top: 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff; text-decoration: none;
  direction: ltr; text-align: right;
  unicode-bidi: isolate;
}
.contact__mail { display: inline-block; margin-top: 10px; color: var(--blue-tint); font-size: 17px; }
.social { list-style: none; margin: 32px 0 0; padding: 0; display: flex; gap: 14px; }
.social a {
  display: grid; place-items: center; width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%;
  color: #fff; transition: background-color .25s, border-color .25s, transform .25s var(--ease);
}
.social a:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.form__row--full { grid-column: 1 / -1; }
.form label { display: block; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  color: #fff;
  font: 400 17px/1.4 var(--font-body);
  padding: 13px 14px;
  transition: border-color .2s, background-color .2s;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,.4); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--amber); background: rgba(255,255,255,.1);
}
.form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: left 14px center; padding-inline-start: 40px; }
.form select option { color: var(--ink); }
.form textarea { min-height: 130px; resize: vertical; }
.form input[type="tel"], .form input[type="email"] { direction: ltr; text-align: right; }
.form__submit { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 4px; }
.form__status { font-size: 16px; color: rgba(255,255,255,.85); }
.form__status.is-error { color: #ffb4a8; }
.form__status.is-ok { color: #9be7b5; }
.form__status a { color: #fff; }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form { grid-template-columns: 1fr; }
  .contact__intro .btn--wa { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { padding: 28px 0 100px; font-size: 15px; color: var(--ink-2); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; justify-content: space-between; }
.footer a { color: var(--ink-2); text-decoration: none; }
.footer a:hover { color: var(--blue); }
.footer__brand { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 18px; display: inline-flex; align-items: center; gap: 10px; }
.footer__brand img { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   Floating WhatsApp
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; inset-inline-end: auto; left: 20px; bottom: 20px; z-index: 45;
  display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: transform .25s var(--ease), background-color .25s;
}
.wa-float:hover { transform: scale(1.06); background: var(--wa-dark); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* --------------------------------------------------------------------------
   Motion setup — hide only when JS is present and motion allowed
   -------------------------------------------------------------------------- */
.js.motion .hero__title .w { opacity: 0; }
.js.motion .hero__copy, .js.motion .hero__figure, .js.motion .hero__scroll { opacity: 0; }
.js.motion .lecture__poster { clip-path: inset(0% 0% 100% 0%); }
.js.motion .lecture__body { opacity: 0; }
