/* ============================================================
   Tatava Studio — Homepage styles
   Tokens come from _ds/.../styles.css (cream/navy/orange system).
   Display type is switchable: Instrument Serif (hybrid default)
   or Poppins (brand book) via .type-serif / .type-poppins on body.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-secondary); }

html { overflow-x: clip; }
.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---- Display-type switch ---- */
body { --font-headline: "Instrument Serif", Georgia, serif; --fw-headline: 400; --ls-headline: -0.015em; --lh-headline: 1.02; }
body.type-poppins { --font-headline: var(--font-display); --fw-headline: 800; --ls-headline: -0.02em; --lh-headline: 1.08; }

.headline {
  font-family: var(--font-headline);
  font-weight: var(--fw-headline);
  letter-spacing: var(--ls-headline);
  line-height: var(--lh-headline);
  color: var(--color-secondary);
  margin: 0;
  text-wrap: balance;
}
.headline .hl { color: var(--color-primary); font-style: italic; }
body.type-poppins .headline .hl { font-style: italic; font-weight: 800; }

/* ---- Eyebrow ---- */
.eyebrow {
  white-space: nowrap;
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow--band {
  display: inline-block;
  background: var(--blush-100);
  color: var(--color-secondary);
  padding: 7px 16px;
  border-radius: var(--radius-pill, 999px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 15px;
  border-radius: var(--radius-md, 12px); border: 0; cursor: pointer;
  padding: 15px 28px; min-height: 44px; text-decoration: none;
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.btn--primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-warm); }
.btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(2px); }
.btn--outline { background: transparent; color: var(--color-secondary); border: 1.5px solid var(--color-secondary); }
.btn--outline:hover { background: var(--color-secondary-soft); }
.btn--on-navy { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-warm); }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--cream-300);
}
.nav__inner { display: flex; align-items: center; gap: 28px; padding: 14px 0; }
.nav__logo { margin-right: auto; display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__logo img { height: 40px; }
.logoType { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.logoType strong {
  font-family: var(--font-logo); font-weight: 400; font-size: 26px;
  letter-spacing: 0.04em; color: var(--color-secondary);
}
.logoType small {
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: 8.5px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-500); margin-top: 4px;
}
.nav__links { display: flex; gap: clamp(14px, 2vw, 28px); align-items: center; }
.nav__link {
  font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 14px;
  color: var(--ink-900); text-decoration: none; cursor: pointer; padding: 10px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__link.is-active { color: var(--color-primary); }
.nav__link:hover { color: var(--color-primary); }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 14px;
  color: var(--color-secondary); text-decoration: none; padding: 10px 0;
}
.nav__phone svg { width: 16px; height: 16px; stroke-width: 1.75; }
.nav__phone:hover { color: var(--color-primary); }

/* mobile-only header controls */
.nav__mobile { display: none; align-items: center; gap: 6px; margin-left: auto; }
.nav__phoneBtn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  color: var(--color-secondary); text-decoration: none;
}
.nav__phoneBtn svg { width: 20px; height: 20px; stroke-width: 1.75; }
.nav__burger {
  width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  display: grid; place-items: center; gap: 5px; padding: 0;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--color-secondary); border-radius: 2px; }

/* ---- mobile drawer ---- */
.navDrawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; overflow: hidden; }
.navDrawer.is-open { visibility: visible; }
.navDrawer__scrim {
  position: absolute; inset: 0; background: rgba(26, 31, 43, 0.4);
  opacity: 0; transition: opacity var(--dur-base) var(--ease-out);
}
.navDrawer.is-open .navDrawer__scrim { opacity: 1; }
.navDrawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 86vw);
  background: var(--cream-50); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 20px 24px 28px;
  transform: translateX(100%); transition: transform var(--dur-base) var(--ease-out);
}
.navDrawer.is-open .navDrawer__panel { transform: translateX(0); }
.navDrawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.navDrawer__close {
  width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  display: grid; place-items: center; color: var(--color-secondary);
}
.navDrawer__close svg { width: 24px; height: 24px; }
.navDrawer__links { display: flex; flex-direction: column; padding: 12px 0; border-top: 1px solid var(--cream-300); margin-top: 8px; }
.navDrawer__links .nav__link {
  font-family: var(--font-display); font-size: 19px; font-weight: var(--fw-medium);
  color: var(--color-secondary); padding: 15px 0; border-bottom: 1px solid var(--cream-200); text-decoration: none;
}
.navDrawer__links .nav__link.is-active { color: var(--color-primary); }
.navDrawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 20px; }
.navDrawer__foot .btn { width: 100%; }
.navDrawer__foot .nav__phone { font-size: 16px; }

/* ============================================================
   HERO — shared copy block
   ============================================================ */
.heroCopy { display: flex; flex-direction: column; align-items: center; text-align: center; }
.heroCopy--left { align-items: flex-start; text-align: left; }
.heroCopy .headline { font-size: clamp(44px, 6.2vw, 88px); max-width: 16ch; margin-top: 22px; }
.heroCopy--left .headline { font-size: clamp(40px, 4.6vw, 64px); }
.heroCopy .lead {
  font-size: clamp(16px, 1.4vw, 18px); line-height: var(--lh-relaxed);
  color: var(--ink-700); max-width: 56ch; margin: 24px 0 0;
}
.heroCopy--left .lead { max-width: 48ch; }
.heroCtas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; align-items: center; }
.heroNote { font-style: italic; color: var(--color-secondary); font-size: 14px; margin: 18px 0 0; }
.heroBadges {
  display: flex; flex-wrap: wrap; gap: 10px 0; align-items: center; margin-top: 30px;
  font-family: var(--font-display); font-size: 12px; font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--color-secondary);
}
.heroBadges span { display: inline-flex; align-items: center; }
.heroBadges span + span::before { content: "·"; margin: 0 14px; color: var(--color-primary); font-size: 16px; }

/* cinematic copy — soft shadow keeps text legible against visible video */
.heroCine .headline {
  text-shadow: 0 2px 24px rgba(255, 251, 246, 0.9), 0 1px 8px rgba(255, 251, 246, 0.9);
}
.heroCine .heroCopy .headline {
  max-width: none;
  width: 100%;
  font-size: clamp(40px, 5.2vw, 72px);
}
.heroCine .lead {
  text-shadow: 0 1px 16px rgba(255, 251, 246, 0.95);
}
.heroCine .eyebrow { isolation: isolate; }

/* entrance: .fade-rise / .fade-rise-1/2/3 are driven by js/rise.js
   (rAF-based — base state stays fully visible without JS) */

/* ---- Variant A: Cinematic (video bleeds behind copy) ---- */
.heroCine { position: relative; overflow: hidden; min-height: 94vh; display: flex; flex-direction: column; }
.heroCine__inner {
  position: relative; z-index: 10;
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: clamp(48px, 7vh, 84px) 24px 320px;
}
.heroCine__videoWrap { position: absolute; inset: auto 0 0 0; top: 160px; z-index: 0; }

/* videoLoop — fallback photo layered under the fading video */
.videoLoop { position: relative; width: 100%; height: 100%; overflow: hidden; }
.videoLoop img, .videoLoop video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.posterFrame .frame .videoLoop { border-radius: 16px; }
.heroCine__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 246, 0.72) 0%,
    rgba(255, 251, 246, 0.28) 22%,
    rgba(255, 251, 246, 0.0)  42%,
    rgba(255, 251, 246, 0.0)  68%,
    rgba(255, 251, 246, 0.45) 100%
  );
}

/* ---- Variant B: Editorial split (video in poster frame) ---- */
.heroSplit { position: relative; padding: 72px 0 96px; overflow: hidden;
  background:
    radial-gradient(circle at 8% 110%, var(--blush-100) 0%, transparent 40%),
    radial-gradient(circle at 92% -10%, var(--cream-200) 0%, transparent 50%),
    var(--cream-50);
}
.heroSplit__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.posterFrame { position: relative; justify-self: end; width: min(420px, 100%); aspect-ratio: 4/5; }
.posterFrame--wide { aspect-ratio: 16/10; width: 100%; justify-self: stretch; }
.posterFrame .block {
  position: absolute; inset: 0; background: var(--color-primary);
  border-radius: var(--radius-xl, 24px); transform: rotate(-3deg);
}
.posterFrame--navy .block { background: var(--color-secondary); }
.posterFrame .frame {
  position: absolute; inset: 0; background: var(--paper);
  border-radius: var(--radius-xl, 24px); padding: 10px; transform: rotate(2.5deg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.posterFrame .frame > video, .posterFrame .frame > img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
}
.posterFrame .tag {
  position: absolute; bottom: 16px; left: -28px; z-index: 2;
  background: var(--color-secondary); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-md, 12px);
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 13px;
  box-shadow: var(--shadow-md);
}

/* ---- Variant C: Poster band (copy above, wide video poster below) ---- */
.heroBand { position: relative; padding: clamp(48px, 7vh, 80px) 0 110px; overflow: hidden; }
.heroBand__poster { margin-top: 56px; }
.heroBand__poster .posterFrame { aspect-ratio: 21/9; width: 100%; }
.heroBand__poster .posterFrame .block { transform: rotate(-1.2deg); }
.heroBand__poster .posterFrame .frame { transform: rotate(0.8deg); }

/* video fallback photo */
.videoFallback { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.sec { padding: 96px 0; }
.sec--cream { background: var(--color-bg-alt); }
.sec__head { text-align: center; max-width: 720px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sec__head .headline { font-size: clamp(32px, 3.8vw, 48px); }
.sec__head p { color: var(--ink-700); font-size: 17px; margin: 0; max-width: 56ch; }

/* ---- Proof strip ---- */
.proof { background: var(--color-surface); border-top: 1px solid var(--cream-300); border-bottom: 1px solid var(--cream-300); }
.proof__inner { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 4vw, 56px); padding: 26px 0; flex-wrap: wrap; }
.proof__label {
  font-family: var(--font-display); font-size: 11px; font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--ink-500);
  white-space: nowrap;
}
.proof__item { display: flex; align-items: center; gap: 10px; color: var(--ink-700); white-space: nowrap; }
.proof__item img { height: 26px; }
.proof__wordmark { font-family: var(--font-headline); font-size: 21px; color: var(--color-secondary); }
.proof__item small { font-size: 12px; color: var(--ink-500); }

/* ---- We Help You When strip (auto-scroll marquee) ---- */
.whlyw__inner {
  display: flex; flex-direction: row; align-items: center; justify-content: flex-start;
  gap: 24px; padding: 22px max(calc((100vw - 1180px) / 2), 4vw) 22px max(calc((100vw - 1180px) / 2), 4vw);
  flex-wrap: nowrap;
}
.whlyw__heading { white-space: nowrap; flex: 0 0 auto; }
.whlyw__viewport {
  flex: 1 1 auto; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.whlyw__track {
  display: flex; gap: 8px; width: max-content;
  animation: whlyw-scroll 36s linear infinite;
}
.whlyw__viewport:hover .whlyw__track { animation-play-state: paused; }
@keyframes whlyw-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 4px)); }
}
@media (prefers-reduced-motion: reduce) {
  .whlyw__track { animation: none; flex-wrap: wrap; width: auto; }
  .whlyw__chip[aria-hidden="true"] { display: none; }
}
.whlyw__chip {
  font-family: var(--font-display); font-size: 13px; font-weight: var(--fw-medium);
  color: var(--color-secondary); background: var(--cream-100);
  border: 1px solid var(--cream-300); border-radius: var(--radius-pill, 999px);
  padding: 5px 14px; white-space: nowrap; flex: 0 0 auto;
}

/* ---- Services ---- */
.services { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.service {
  flex: 0 1 calc((100% - 60px) / 4); min-width: 240px;
  background: var(--color-surface); border-radius: var(--radius-lg, 16px); padding: 26px;
  border: 1px solid var(--color-border-warm); text-align: left;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md, 12px);
  background: var(--tatava-orange-100); color: var(--color-primary);
  display: grid; place-items: center; margin-bottom: 18px;
}
.service__icon svg { width: 26px; height: 26px; stroke-width: 1.6; }
.service h3 { font-family: var(--font-display); font-size: 17px; font-weight: var(--fw-semibold); margin: 0 0 8px; color: var(--ink-900); }
.service p { margin: 0; font-size: 14px; color: var(--ink-500); line-height: 1.55; }
.service__more {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 16px;
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 13px;
  color: var(--color-primary); text-decoration: none;
}
.service__more svg { width: 14px; height: 14px; stroke-width: 2; transition: transform var(--dur-base) var(--ease-out); }
.service__more:hover svg { transform: translateX(3px); }

/* ---- Founder bio ---- */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about__photo { position: relative; width: min(360px, 100%); justify-self: center; }
.about__photo .ring { position: absolute; inset: -12px; border-radius: 50%; border: 6px solid var(--color-primary); }
.about__photo .img { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; position: relative; background: var(--cream-200); }
.about__photo .img img { width: 100%; height: 100%; object-fit: cover; object-position: 46% 18%; }
.about__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.about__copy .headline { font-size: clamp(30px, 3.4vw, 44px); }
.about__copy p { margin: 0; font-size: 16.5px; line-height: var(--lh-relaxed); color: var(--ink-700); max-width: 56ch; }
.about__creds { display: flex; flex-wrap: wrap; gap: 8px; }
.about__creds span {
  background: var(--color-surface); border: 1px solid var(--color-border-warm);
  border-radius: var(--radius-pill, 999px); padding: 7px 14px;
  font-size: 13px; font-weight: var(--fw-medium); font-family: var(--font-display); color: var(--ink-700);
}
.textlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 15px;
  color: var(--color-secondary); text-decoration: none;
  border-bottom: 2px solid var(--tatava-orange-200);
  padding-bottom: 2px; transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.textlink:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* ---- How sessions work ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--cream-200); border-radius: var(--radius-lg, 16px);
  padding: 30px 28px; position: relative;
}
.step__num {
  font-family: var(--font-headline); font-size: 44px; line-height: 1;
  color: var(--color-primary); display: block; margin-bottom: 16px;
}
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: var(--fw-semibold); margin: 0 0 8px; color: var(--color-secondary); }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-700); line-height: 1.6; }

/* ---- Booking CTA band ---- */
.bookband { background: var(--color-secondary); color: var(--color-fg-on-navy); }
.bookband__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 96px 0; }
.bookband .headline { color: #fff; font-size: clamp(34px, 4.2vw, 56px); max-width: 18ch; }
.bookband .headline .hl { color: var(--tatava-orange-300); }
.bookband p { margin: 0; color: rgba(255, 251, 246, 0.82); font-size: 17px; max-width: 48ch; line-height: var(--lh-relaxed); }
.bookband__contacts { display: flex; gap: 26px; align-items: center; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.bookband__contacts a { color: rgba(255, 251, 246, 0.9); text-decoration: none; font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.bookband__contacts a:hover { color: var(--tatava-orange-300); }
.bookband__contacts svg { width: 16px; height: 16px; stroke-width: 1.75; }
.bookband .heroNote { color: rgba(255, 251, 246, 0.66); }

/* ---- Footer ---- */
.footer { background: var(--cream-200); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer h4 {
  font-family: var(--font-display); font-size: 12px; color: var(--ink-500);
  letter-spacing: var(--ls-wider); text-transform: uppercase; font-weight: var(--fw-semibold); margin: 0 0 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 2px; }
.footer__col a { color: var(--ink-700); display: block; text-decoration: none; font-size: 14px; padding: 5px 0; }
.footer__col a:hover { color: var(--color-primary); }
.footer__brand .nav__logo { margin-right: 0; }
.footer__brand img { height: 46px; }
.footer__brand p { color: var(--ink-700); font-size: 14px; margin: 18px 0 0; max-width: 280px; line-height: 1.6; }
.footer__bhf { font-size: 14px; color: var(--ink-700); line-height: 1.65; margin: 0; }
.footer__bhf a { color: var(--color-secondary); font-weight: var(--fw-semibold); }
.footer__legal {
  border-top: 1px solid var(--cream-300);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; font-size: 12.5px; color: var(--ink-500); flex-wrap: wrap;
}
.footer__legal .links { display: flex; gap: 20px; }
.footer__legal a { color: var(--ink-500); text-decoration: none; }
.footer__legal a:hover { color: var(--color-primary); }

/* saffron contact strip */
.contactstrip { background: var(--color-primary); color: #fff; }
.contactstrip__inner {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  padding: 16px 0; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: var(--fw-medium); font-size: 14px;
}
.contactstrip a { color: #fff; text-decoration: none; white-space: nowrap; }
.contactstrip a:hover { text-decoration: underline; }
.contactstrip .dot { opacity: 0.7; }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(26, 31, 43, 0.22);
  transition: transform var(--dur-base) var(--ease-out);
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 28px; height: 28px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav__phone span { display: none; }
}

/* tablet / mobile: switch to hamburger drawer */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__mobile { display: flex; }
  .sec { padding: 64px 0; }
  .sec__head { margin-bottom: 40px; }
  .heroSplit { padding: 48px 0 64px; }
  .heroSplit__grid, .about { grid-template-columns: 1fr; gap: 40px; }
  .heroCopy--left { align-items: center; text-align: center; }
  .heroCopy--left .headline, .heroCopy--left .lead { max-width: 100%; }
  .heroCtas { justify-content: center; }
  .posterFrame { justify-self: center; }
  .about__copy { align-items: center; text-align: center; }
  .about__copy .lead, .about__copy p { max-width: 100%; }
  .about__creds { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bookband__inner { padding: 64px 0; }
}

/* phones */
@media (max-width: 560px) {
  .eyebrow { white-space: normal; max-width: 100%; line-height: 1.8; }
  .heroCopy, .heroCopy > * { max-width: 100%; }
  .heroCine { min-height: 100vh; }
  .heroCine__inner { padding-top: 40px; padding-bottom: 220px; }
  .heroCine__videoWrap { top: 38%; }
  .heroCtas { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
  .heroCtas .btn { width: 100%; }
  .heroBadges { font-size: 11px; }
  .heroBadges span + span::before { margin: 0 8px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 10px; }
  .contactstrip__inner { font-size: 13px; gap: 8px; }
  .proof__inner { gap: 18px; }
  .btn { padding: 14px 22px; }

  /* section rhythm — a touch tighter on phones */
  .sec { padding: 52px 0; }
  .sec__head { margin-bottom: 28px; }
  .sec__head .headline { font-size: clamp(28px, 8vw, 38px); }

  /* "We help you when" — stack heading above the marquee */
  .whlyw__inner { flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 18px; padding-bottom: 18px; }
  .whlyw__viewport { width: 100%; }

  /* booking / footer CTA headline scales down cleanly */
  .bookband .headline,
  .vfooter__cta .headline { font-size: clamp(28px, 8.5vw, 38px); line-height: 1.1; }
  .bookband p, .vfooter__cta > p { font-size: 15px; }
  .bookband__contacts { flex-direction: column; gap: 12px; }

  /* footer card — comfortable padding + bigger tap targets */
  .vfooter__card { padding: 22px 18px; }
  .vfooter__cols { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .vfooter__cols a { padding: 8px 0; font-size: 13px; }
  .vfooter__bottom { gap: 18px; }
  .vfooter__social { gap: 20px; }
  .vfooter__social a { padding: 6px; margin: -6px; }
  .vfooter__social svg { width: 20px; height: 20px; }
}


/* ============================================================
   LIQUID GLASS FOOTER — video backdrop + glass card
   (replaces the cream .footer; old rules left inert above)
   ============================================================ */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vfooter { position: relative; overflow: hidden; padding: clamp(140px, 20vh, 260px) 0 28px; background: var(--tatava-navy-900); }
.vfooter--cta { padding-top: clamp(96px, 12vh, 150px); }
.vfooter__bg { position: absolute; inset: 0; z-index: 0; }
.vfooter__bg img, .vfooter__bg video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vfooter__tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33, 54, 108, 0.20) 0%, rgba(26, 43, 87, 0.30) 50%, rgba(11, 18, 39, 0.50) 100%);
}
.vfooter__wrap { position: relative; z-index: 10; }

.vfooter__card {
  border-radius: var(--radius-2xl, 32px);
  padding: clamp(24px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(42, 68, 134, 0.34) 0%, rgba(26, 43, 87, 0.42) 100%);
}

/* CTA combined into the footer, over the video backdrop */
.vfooter__cta {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
  padding-bottom: clamp(56px, 8vh, 96px); color: var(--color-fg-on-navy);
}
.vfooter__cta .headline { color: #fff; font-size: clamp(34px, 4.2vw, 56px); max-width: 18ch; }
.vfooter__cta .headline .hl { color: var(--tatava-orange-300); }
.vfooter__cta > p { margin: 0; color: rgba(255, 251, 246, 0.86); font-size: 17px; max-width: 48ch; line-height: var(--lh-relaxed); }
.vfooter__cta .heroNote { color: rgba(255, 251, 246, 0.7); }
/* white text overrides inside glass card */
.vfooter__card .vfooter__brand > p { color: #fff; }
.vfooter__card .vfooter__bottom > p,
.vfooter__card .vfooter__social > span { color: #fff; }

.vfooter__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; margin-bottom: 40px; }
.vfooter__logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-bottom: 16px; }
.vfooter__logo img { height: 34px; }
.vfooter__logo span {
  font-family: var(--font-logo); font-size: 22px; letter-spacing: 0.06em; color: #fff; white-space: nowrap;
}
.vfooter__brand p { margin: 0 0 14px; font-size: 14px; line-height: 1.65; max-width: 34ch; }
.vfooter__bhf { font-size: 12.5px; opacity: 0.85; }
.vfooter__bhf a { color: var(--tatava-orange-300); text-decoration: none; }
.vfooter__bhf a:hover { color: #fff; }

.vfooter__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vfooter__cols h4 {
  font-family: var(--font-display); font-size: 12px; text-transform: uppercase;
  letter-spacing: var(--ls-wider); color: #fff; font-weight: var(--fw-medium); margin: 0 0 16px;
}
.vfooter__cols > div { display: flex; flex-direction: column; }
.vfooter__cols a {
  font-size: 12.5px; color: rgba(255, 255, 255, 0.72); text-decoration: none;
  padding: 4px 0; transition: color var(--dur-fast) var(--ease-out);
}
.vfooter__cols a:hover { color: #fff; }
.vfooter__addr { font-size: 12px; line-height: 1.6; margin-top: 8px; opacity: 0.7; }

.vfooter__bottom {
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.vfooter__bottom p {
  margin: 0; font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.55;
}
.vfooter__bottom p a { color: inherit; }
.vfooter__bottom p a:hover { color: #fff; }
.vfooter__social { display: flex; align-items: center; gap: 16px; }
.vfooter__social > span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.55; }
.vfooter__social a {
  display: inline-flex; color: rgba(255, 255, 255, 0.72); opacity: 0.7;
  transition: opacity var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.vfooter__social a:hover { opacity: 1; color: #fff; }
.vfooter__social svg { width: 16px; height: 16px; stroke-width: 1.75; }

@media (max-width: 860px) {
  .vfooter { padding-top: 100px; }
  .vfooter__grid { grid-template-columns: 1fr; gap: 36px; }
  .vfooter__cols { grid-template-columns: 1fr 1fr; }
  .vfooter__bottom { flex-direction: column; align-items: flex-start; }
}
