/* =========================================================================
   SHARK — Awwwards-grade landing for إقبال عدوي
   Palette derived from the live brand: terracotta #C56363 + mint #8DC9C0
   ========================================================================= */

:root {
  /* Light surfaces */
  --ink: #faf7f4;
  --ink-2: #ffffff;
  --ink-3: #f3ece6;

  /* Dark text on light backgrounds */
  --cream: #2c2220;
  --cream-dim: #5a4a45;
  --muted: #8a7872;

  --rose: #c56363;
  --rose-bright: #d47676;
  --mint: #6db5aa;
  --mint-bright: #8dc9c0;
  --mint-bold: #065a46;
  --gold: #c4925e;

  --line: rgba(44, 34, 32, 0.1);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.94);
  --overlay: rgba(255, 255, 255, 0.9);
  --overlay-nav: rgba(250, 247, 244, 0.94);
  --overlay-media: rgba(44, 34, 32, 0.28);
  --shadow-soft: rgba(44, 34, 32, 0.08);
  --shadow-medium: rgba(44, 34, 32, 0.14);

  --font-display: "IBM Plex Sans Arabic", "Heebo", "Tajawal", sans-serif;
  --font-kufi: "IBM Plex Sans Arabic", "Heebo", sans-serif;
  --font-body: "IBM Plex Sans Arabic", "Heebo", "Tajawal", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--rose-bright); }
strong { font-weight: 700; color: var(--cream); }

::selection { background: var(--rose); color: #fff; }

html[lang="he"] body {
  font-family: "Heebo", "IBM Plex Sans Arabic", system-ui, sans-serif;
}

/* cinematic 3D background */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .nav, .footer { position: relative; z-index: 2; }

/* optional legacy layers — keep hidden */
.cursor, .scroll-progress { display: none !important; }

/* ------------------------------- preloader ------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }

/* Storefront iframe — show content immediately; defer heavy effects in JS */
html.storefront-embed .preloader { display: none !important; }
html.storefront-embed .reveal-up { opacity: 1 !important; transform: none !important; }
html.storefront-embed #bg-canvas { opacity: 0; transition: opacity 0.6s ease; }
html.storefront-embed.scene-ready #bg-canvas { opacity: 1; }
html.storefront-embed #storyVideo { opacity: 1; }
html.storefront-embed .story__pin {
  position: sticky;
  top: 0;
}

.preloader__inner { text-align: center; width: min(78vw, 420px); }
.preloader__brand {
  font-family: var(--font-kufi);
  font-size: clamp(2.4rem, 9vw, 5rem);
  letter-spacing: 0.4em;
  padding-right: 0.4em;
  color: var(--cream);
  opacity: 0.92;
}
.preloader__bar {
  height: 2px;
  background: var(--line);
  margin: 1.4rem 0 0.7rem;
  overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--rose), var(--mint));
}
.preloader__count { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.2em; }

/* --------------------------------- nav ---------------------------------- */
.nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  z-index: 80;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: var(--overlay-nav);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.nav__wordmark { font-family: var(--font-kufi); font-size: 1.25rem; letter-spacing: 0.28em; padding-right: 0.28em; }
.nav__links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.nav__actions { display: flex; align-items: center; gap: 0.65rem; }
.nav__lang {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.nav__lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 999px;
  cursor: pointer;
}
.nav__lang-btn.is-active { background: var(--rose); color: #fff; }
.nav__links a { font-size: 0.92rem; color: var(--cream-dim); position: relative; transition: color 0.3s; }
.nav__links a::after {
  content: ""; position: absolute; bottom: -6px; right: 0;
  width: 0; height: 1px; background: var(--rose-bright); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.9rem; font-weight: 700;
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--rose), #a94f4f);
  color: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(197, 99, 99, 0.35); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav__burger span { position: absolute; right: 0; height: 2px; width: 100%; background: var(--cream); transition: 0.35s var(--ease); }
.nav__burger span:first-child { top: 4px; }
.nav__burger span:last-child { bottom: 4px; }
.nav.is-open .nav__burger span:first-child { top: 10px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:last-child { bottom: 10px; transform: rotate(-45deg); }

/* --------------------------------- buttons ------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s;
  isolation: isolate;
}
.btn span { position: relative; z-index: 2; }
.btn--primary { background: linear-gradient(120deg, var(--rose), #a94f4f); color: #fff; box-shadow: 0 14px 40px rgba(197, 99, 99, 0.32); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, var(--mint), #5fa79c);
  transform: translateY(101%); transition: transform 0.45s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(141, 201, 192, 0.34); }
.btn--primary:hover::before { transform: translateY(0); }
.btn--ghost { background: var(--glass); color: var(--cream); border-color: var(--line); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--rose); color: var(--rose); background: #fff; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ------------------------------- typography ------------------------------ */
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem); text-align: center; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  font-size: 0.82rem; color: var(--mint); text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.4vw, 4rem);
  line-height: 1.18;
  color: var(--cream);
}
.section-title span {
  color: transparent;
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.55) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(180deg, var(--cream) 60%, var(--cream-dim));
  background-size: 240% 100%, 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sectionTitleShine 4.8s ease-in-out infinite;
}
.section-title--mint span {
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.65) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.65) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(
      115deg,
      var(--mint-bold) 0%,
      var(--mint) 35%,
      var(--mint-bright) 65%,
      var(--mint-bold) 100%
    );
  filter: drop-shadow(0 2px 12px rgba(109, 181, 170, 0.28));
}
.section-title--rose span {
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.7) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.7) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(
      115deg,
      #a94f4f 0%,
      var(--rose) 35%,
      var(--rose-bright) 65%,
      var(--rose) 100%
    );
  filter: drop-shadow(0 2px 12px rgba(197, 99, 99, 0.32));
}
@keyframes sectionTitleShine {
  0%, 100% { background-position: -130% 0, 0 0; }
  50% { background-position: 230% 0, 0 0; }
}
.section-sub { color: var(--cream-dim); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 640px; margin: 1rem auto 0; }

/* reveal helper — flat fade-up */
.reveal-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.reveal-up.is-visible { opacity: 1; transform: none; }

/* ================================= HERO ================================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6rem clamp(1.2rem, 6vw, 6rem) 3rem;
  overflow: hidden;
}
.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__content { max-width: min(760px, 100%); }

/* --- hero visual (left in RTL): floating portrait + glass badges --- */
.hero__visual {
  position: relative;
  height: clamp(420px, 58vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual::before {
  content: "";
  position: absolute;
  width: clamp(280px, 34vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 99, 99, 0.07) 0%, rgba(141, 201, 192, 0.05) 42%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  width: 120%; height: 120%;
  background: radial-gradient(circle at 50% 42%, rgba(197, 99, 99, 0.12), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(141, 201, 192, 0.08), transparent 58%);
  filter: blur(60px);
  pointer-events: none;
}
.hero__ring {
  position: absolute;
  width: clamp(330px, 40vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(141, 201, 192, 0.28);
  animation: spin 38s linear infinite;
}
.hero__ring::after {
  content: "";
  position: absolute; inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(197, 99, 99, 0.22);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__portrait {
  position: relative;
  z-index: 1;
  width: clamp(250px, 30vw, 360px);
  aspect-ratio: 3 / 4;
  border-radius: 190px 190px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(44, 34, 32, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  background: var(--ink-2);
}
.hero__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 12%;
  filter: contrast(1.03) saturate(1.02);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(44, 34, 32, 0.18)),
    linear-gradient(120deg, rgba(197, 99, 99, 0.03), transparent 48%);
}
.hero__badge {
  position: absolute;
  z-index: 2;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  background: var(--overlay);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px var(--shadow-soft);
  animation: floaty 6s ease-in-out infinite;
}
.hero__badge--name { bottom: 12%; right: -4%; }
.hero__badge--name strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); }
.hero__badge--name span { font-size: 0.76rem; color: var(--muted); }
.hero__badge--stat { top: 14%; left: -6%; text-align: center; animation-delay: -2s; }
.hero__badge--stat em {
  display: block; font-family: var(--font-kufi); font-size: 1.9rem; line-height: 1; font-style: normal;
  background: linear-gradient(120deg, var(--rose-bright), var(--mint-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__badge--stat span { font-size: 0.72rem; color: var(--cream-dim); max-width: 12rem; line-height: 1.45; display: block; white-space: pre-line; }
.hero__badge--rate { top: 2%; right: 4%; display: flex; flex-direction: column; gap: 0.25rem; animation-delay: -4s; }
.hero__stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.9rem; }
.hero__badge-cap { font-size: 0.72rem; color: var(--cream-dim); max-width: 150px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  color: var(--mint-bold);
  margin-bottom: 0.65rem;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; }
.hero__chips span {
  font-size: 0.82rem;
  color: var(--cream-dim);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.55rem, 8.5vw, 5.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.hero__title em { font-style: normal; }
.hero__title-shine {
  color: transparent;
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.55) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(
      115deg,
      #2c2220 0%,
      #5a4a45 28%,
      #2c2220 55%,
      #3d322f 78%,
      #2c2220 100%
    );
  background-size: 240% 100%, 340% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(44, 34, 32, 0.18));
  animation: heroTitleShine 4.2s ease-in-out infinite;
}
.hero__title-accent.hero__title-shine {
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.65) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.65) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(
      115deg,
      var(--mint-bold) 0%,
      var(--mint) 28%,
      var(--mint-bright) 52%,
      #5fa79c 78%,
      var(--mint-bold) 100%
    );
  filter: drop-shadow(0 2px 14px rgba(109, 181, 170, 0.35));
}
.hero__title-rose.hero__title-shine {
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.7) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.7) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(
      115deg,
      #a94f4f 0%,
      var(--rose) 28%,
      var(--rose-bright) 52%,
      #d47676 78%,
      var(--rose) 100%
    );
  filter: drop-shadow(0 2px 14px rgba(197, 99, 99, 0.4));
}
@keyframes heroTitleShine {
  0%, 100% { background-position: -130% 0, 0% 50%; }
  50% { background-position: 230% 0, 100% 50%; }
}
.hero__sub {
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--cream-dim);
  max-width: 640px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.hero__scroll {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.25em;
}
.hero__mouse { width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 14px; position: relative; }
.hero__mouse i { position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; background: var(--mint); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, -4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } }

/* ================================ TICKER ================================= */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
  background: linear-gradient(90deg, #ebe3db, #f0e8e0 50%, #ebe3db);
}
.ticker__track { display: flex; gap: 3rem; width: max-content; animation: ticker 36s linear infinite; will-change: transform; }
.ticker__track span { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 3vw, 2rem); color: var(--cream); display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.ticker__track span::after { content: "✦"; color: var(--rose); }
@keyframes ticker { to { transform: translateX(50%); } }

/* ================================ STORY ================================== */
.story { position: relative; color: #f4ece3; padding-top: clamp(2.5rem, 6vh, 4rem); }
.story__pin {
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(6.5rem, 14vh, 8.5rem);
  position: relative;
  overflow: hidden;
  gap: 0.75rem;
}
.story__progress {
  position: absolute; top: 0; right: 0; left: 0; height: 2px;
  background: rgba(244, 236, 227, 0.12);
}
.story__progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--rose), var(--mint)); }
.story__stage {
  position: relative;
  width: min(92vw, 880px);
  min-height: clamp(200px, 30vh, 340px);
  text-align: center;
  z-index: 3;
  flex-shrink: 0;
}
.story__stage::before {
  content: "";
  position: absolute;
  inset: -0.75rem -1.25rem 0.25rem;
  background: rgba(250, 247, 244, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  z-index: -1;
  pointer-events: none;
}
.chapter {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: 0.35rem;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.chapter.is-active { opacity: 1; transform: none; pointer-events: auto; }
.story .chapter__index {
  font-family: var(--font-kufi);
  font-size: clamp(3.5rem, 14vw, 9rem);
  line-height: 1;
  margin-bottom: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(
    115deg,
    var(--rose-bright) 0%,
    #e8a4a4 14%,
    var(--mint-bright) 32%,
    #5ec4b4 48%,
    var(--gold) 62%,
    var(--rose) 78%,
    var(--mint-bold) 92%,
    var(--rose-bright) 100%
  );
  background-size: 320% 320%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  paint-order: stroke fill;
  -webkit-text-stroke: 1.5px rgba(44, 34, 32, 0.08);
  filter: drop-shadow(0 4px 14px rgba(197, 99, 99, 0.22));
  animation: storyYearWave 6s ease-in-out infinite;
}
@keyframes storyYearWave {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.story .chapter__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 0.85rem;
  color: transparent;
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.55) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(
      115deg,
      #c56363 0%,
      #d47676 22%,
      #8dc9c0 50%,
      #a5d9d0 78%,
      #c56363 100%
    );
  background-size: 240% 100%, 340% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(197, 99, 99, 0.3));
  animation: storyTitleShine 4.2s ease-in-out infinite;
}
@keyframes storyTitleShine {
  0%, 100% { background-position: -130% 0, 0% 50%; }
  50% { background-position: 230% 0, 100% 50%; }
}
.story .chapter__text {
  color: rgba(44, 34, 32, 0.92);
  font-weight: 700;
  font-size: clamp(1.02rem, 2.35vw, 1.28rem);
  line-height: 1.8;
  max-width: 620px;
}
.story__video {
  position: absolute;
  top: clamp(42%, 50vh, 56%);
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(320px, 58vw, 680px);
  height: clamp(195px, 32vh, 340px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(244, 236, 227, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #000;
  opacity: 0;
  z-index: 4;
}
.story__video video { display: block; width: 100%; height: 100%; object-fit: contain; }
.story__video-mute {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 236, 227, 0.22);
  border-radius: 50%;
  background: rgba(12, 10, 12, 0.72);
  color: #f4ece3;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.story__video-mute:hover {
  background: rgba(12, 10, 12, 0.9);
  transform: scale(1.05);
}
.story__video-mute:focus-visible {
  outline: 2px solid var(--mint-bright);
  outline-offset: 2px;
}
.story__video-mute svg {
  width: 20px;
  height: 20px;
}
.story__video-mute-icon--on { display: none; }
.story__video-mute.is-unmuted .story__video-mute-icon--off { display: none; }
.story__video-mute.is-unmuted .story__video-mute-icon--on { display: block; }
.story__video figcaption {
  position: absolute; bottom: 0; right: 0; left: 0;
  padding: 0.5rem; font-size: 0.72rem; text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); color: #c9bcb1;
}
.story__depth {
  position: absolute; bottom: 8%; right: 6%;
  font-size: 0.75rem; color: #9a8a82; letter-spacing: 0.2em; text-align: center; z-index: 4;
}
.story__depth em { display: block; font-family: var(--font-kufi); font-size: 1.6rem; color: var(--mint-bright); font-style: normal; }

/* ================================ ABOUT ================================= */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__quote {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--ink-2);
  box-shadow: 0 20px 50px var(--shadow-medium);
}
.about__quote-media {
  aspect-ratio: 5 / 4;
  max-height: 300px;
  background: var(--ink-3) center 15% / cover no-repeat;
}
.about__quote-panel {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: linear-gradient(180deg, #fff 0%, var(--ink) 100%);
}
.about__mark {
  position: absolute;
  top: 0.4rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--rose);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.about__quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  line-height: 1.85;
  white-space: pre-line;
  color: var(--cream);
  font-weight: 600;
}
.about__sign {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.about__sign strong {
  display: block;
  font-size: 1.05rem;
  color: var(--mint-bold);
  font-weight: 800;
}
.about__sign span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}
.about__body .section-title,
.about__body .section-title span { font-weight: 800; }
.about__body { text-align: center; }
.about__lead {
  color: var(--cream);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  margin: 1rem 0 1.6rem;
  font-weight: 800;
  line-height: 1.65;
}
.about__content {
  color: var(--cream-dim);
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.95;
  max-width: 720px;
  margin: 0 auto;
}
.about__content p { margin-bottom: 1rem; }
.about__content p strong { color: var(--rose); font-weight: 800; }

/* ================================ STATS ================================= */
.stats { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem); text-align: center; }
.stats__head p { color: var(--cream-dim); max-width: 700px; margin: 1rem auto 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 2rem;
}
.stat {
  padding: 2.2rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, var(--glass-strong), transparent);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.stat:hover { transform: translateY(-8px); border-color: var(--rose); }
.stat__num {
  position: relative;
  display: inline-block;
  font-family: var(--font-kufi);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: transparent;
  background-image:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 38%,
      rgba(255, 255, 255, 0.55) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0.55) 54%,
      transparent 62%,
      transparent 100%
    ),
    linear-gradient(
      115deg,
      #c56363 0%,
      #d47676 22%,
      #8dc9c0 50%,
      #a5d9d0 78%,
      #c56363 100%
    );
  background-size: 240% 100%, 340% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 2px 12px rgba(197, 99, 99, 0.38))
    drop-shadow(0 0 22px rgba(141, 201, 192, 0.28));
  animation: statNumShine 3.6s ease-in-out infinite;
  transition: filter 0.35s var(--ease);
}
.stat:hover .stat__num {
  filter:
    drop-shadow(0 4px 22px rgba(197, 99, 99, 0.48))
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 28px rgba(141, 201, 192, 0.32));
}
@keyframes statNumShine {
  0%, 100% {
    background-position: -130% 0, 0% 50%;
  }
  50% {
    background-position: 230% 0, 100% 50%;
  }
}
.stat__label { color: var(--cream-dim); font-size: 0.95rem; margin-top: 0.7rem; white-space: pre-line; line-height: 1.55; }
.stats__note { color: var(--muted); font-style: italic; max-width: 720px; margin: 0 auto; }

/* =============================== SERVICES =============================== */
.services { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.svc {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--ink-2);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.svc:hover { border-color: var(--rose); box-shadow: 0 30px 70px var(--shadow-medium); }
.svc__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.08); }
.svc__badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-size: 0.75rem; padding: 0.35rem 0.9rem; border-radius: 999px;
  background: var(--overlay); border: 1px solid var(--line); color: var(--mint);
  backdrop-filter: blur(6px);
}
.svc__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, var(--overlay-media)); }
.svc__body { padding: 1.6rem clamp(1.2rem, 3vw, 2rem) 1.8rem; }
.svc__title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-bottom: 0.7rem; }
.svc__desc { color: var(--cream-dim); font-size: 0.98rem; white-space: pre-line; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.svc__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap; }
.svc__price { font-family: var(--font-kufi); font-size: 1.5rem; color: var(--cream); }
.svc__price small { font-size: 0.8rem; color: var(--muted); }
.svc__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-inline-start: 0.35rem;
  vertical-align: middle;
}
.svc__duration svg {
  width: 0.95em;
  height: 0.95em;
  flex: none;
}

/* =============================== ACADEMY ================================ */
.academy { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem); }
.academy__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.academy__grid--single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
  margin-inline: auto;
}
.course {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 26px; overflow: hidden;
  background: var(--ink-2);
  transition: transform 0.5s var(--ease), border-color 0.5s;
}
.course:hover { transform: translateY(-8px); border-color: var(--mint); }
.course__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0c0809; }
.course__media-link { display: block; width: 100%; height: 100%; color: inherit; text-decoration: none; }
.course__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.8s var(--ease); }
.course:hover .course__media img { transform: scale(1.07); }
.course__tag { position: absolute; top: 1rem; right: 1rem; font-size: 0.74rem; padding: 0.3rem 0.85rem; border-radius: 999px; font-weight: 700; z-index: 1; }
.course__tag--free { background: var(--mint); color: var(--ink); }
.course__tag--paid,
.course__tag--online { background: var(--glass-strong); border: 1px solid var(--line); color: var(--cream); backdrop-filter: blur(6px); }
.course__body { padding: 1.5rem clamp(1.2rem, 3vw, 1.8rem) 1.8rem; display: flex; flex-direction: column; flex: 1; }
.course__title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.6rem; }
.course__title-link { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
.course__title-link:hover { color: var(--rose); }
.course--confidence { cursor: pointer; }
.course__desc { color: var(--cream-dim); font-size: 0.96rem; white-space: pre-line; flex: 1; }
.course__meta { display: flex; align-items: center; gap: 0.8rem; margin: 1.2rem 0; color: var(--muted); font-size: 0.85rem; }
.course__meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.course__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.course__price { font-family: var(--font-kufi); font-size: 1.3rem; }
.course__price del { color: var(--muted); font-size: 0.95rem; margin-right: 0.4rem; }

/* =============================== CTA BAND =============================== */
.cta-band { padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem); }
.cta-band__inner {
  max-width: 1000px; margin: 0 auto; text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid var(--line); border-radius: 32px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(197, 99, 99, 0.16), transparent 60%), var(--ink-2);
}
.cta-band__inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.6rem); line-height: 1.4; margin-bottom: 2rem; }

/* ================================ WORK ================================= */
.work { padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }
.work__viewport { padding: 0 clamp(1.2rem, 5vw, 3rem); overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; }
.work__viewport::-webkit-scrollbar { display: none; }
.work__viewport.is-marquee { overflow: hidden; scroll-snap-type: none; }
.work__track { display: flex; gap: clamp(1rem, 2.5vw, 1.8rem); width: max-content; will-change: transform; }
.work__card { scroll-snap-align: center; }
.work__card {
  position: relative;
  flex: 0 0 clamp(280px, 80vw, 420px);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #1a1412;
}
.work__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); filter: grayscale(0.12); }
.work__card:hover .work__media img { transform: scale(1.06); filter: grayscale(0); }
.work__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 8, 9, 0.45) 72%, rgba(12, 8, 9, 0.92) 100%);
  pointer-events: none;
}
.work__info {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 0.85rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(12, 8, 9, 0) 0%, rgba(12, 8, 9, 0.92) 35%, rgba(12, 8, 9, 0.98) 100%);
}
.work__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.work__role {
  color: #b8ebe3;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.work__text {
  color: #f3ece6;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-line;
}
.work__nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2.4rem; }
.work__nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--glass); color: var(--cream); font-size: 1.4rem; cursor: pointer; transition: 0.3s var(--ease); }
.work__nav button:hover { background: var(--rose); border-color: var(--rose); color: #fff; transform: translateY(-2px); }
.work__dots { display: flex; gap: 0.5rem; }
.work__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; transition: 0.3s; }
.work__dots i.is-active { background: var(--rose); width: 26px; border-radius: 999px; }

/* ============================= TESTIMONIALS ============================= */
.quotes { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }
.quotes__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.08; filter: blur(2px); }
.quotes__marquee { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 3rem; -webkit-mask-image: linear-gradient(90deg, transparent, #2c2220 12%, #2c2220 88%, transparent); mask-image: linear-gradient(90deg, transparent, #2c2220 12%, #2c2220 88%, transparent); }
/* Spacing lives on each card (not a track `gap`) so the duplicated halves tile
   perfectly and the xPercent:-50 marquee loops with no jump/empty sliver. */
.quotes__track { display: flex; width: max-content; will-change: transform; }
.qcard {
  flex: 0 0 clamp(280px, 70vw, 420px);
  margin-inline-end: 1.4rem;
  padding: 1.8rem;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(160deg, var(--glass-strong), transparent);
  backdrop-filter: blur(10px);
}
.qcard__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.9rem; }
.qcard__text { color: var(--cream); font-size: 1rem; line-height: 1.8; }

/* =============================== SOCIAL ================================= */
.social { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem); text-align: center; }
.social__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 1.8rem); margin-top: 3rem; justify-items: center; }
.platform {
  display: flex; flex-direction: column; text-align: right;
  width: 100%; max-width: 340px;
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  background: var(--ink-2);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.platform:hover { transform: translateY(-8px); border-color: var(--mint); }
.platform__media { position: relative; width: 100%; aspect-ratio: 9 / 16; background: var(--ink-3); }
.platform__media .reel,
.platform__media .reel--lazy { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.platform__info { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.2rem; }
.platform__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--line); color: var(--mint-bright); }
.platform__icon svg { width: 22px; height: 22px; }
.platform__meta { display: flex; flex-direction: column; min-width: 0; }
.platform__name { font-family: var(--font-display); font-size: 1.15rem; }
.platform__cap { color: var(--cream-dim); font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.platform__link { margin-inline-start: auto; flex: none; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--cream); text-decoration: none; transition: background 0.3s, color 0.3s; }
.platform__link:hover { background: var(--mint); color: var(--ink); }

/* =============================== BOOKING =============================== */
.booking { position: relative; padding: clamp(5rem, 11vw, 9rem) clamp(1.2rem, 5vw, 3rem); overflow: hidden; }
.booking__glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90vw; max-width: 1100px; height: 600px; background: radial-gradient(circle at 50% 0%, rgba(141, 201, 192, 0.18), transparent 60%); pointer-events: none; }
.booking__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
.booking__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 7vw, 5rem); line-height: 1.1; margin: 0.8rem 0 1.2rem; }
.booking__sub { color: var(--cream-dim); font-size: 1.1rem; max-width: 640px; margin: 0 auto 2.8rem; }
.booking__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-bottom: 2.6rem; }
.bcard {
  text-align: right; padding: 1.6rem;
  border: 1px solid var(--line); border-radius: 22px; background: var(--ink-2);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.bcard:hover { transform: translateY(-6px); border-color: var(--rose); }
.bcard__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.bcard__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--line); color: var(--mint-bright); }
.bcard__title { font-family: var(--font-display); font-size: 1.2rem; }
.bcard__desc { color: var(--cream-dim); font-size: 0.92rem; margin-bottom: 1.2rem; }
.bcard .btn { width: 100%; }
.booking__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================== CONTACT =============================== */
.contact {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__lead { color: var(--cream-dim); margin: 1.2rem 0 2rem; }
.contact__methods { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact__methods a { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 16px; background: var(--ink-2); transition: 0.35s var(--ease); }
.contact__methods a:hover { border-color: var(--rose); transform: translateX(-6px); }
.contact__methods .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--line); color: var(--mint-bright); flex-shrink: 0; }
.contact__methods .ico svg { width: 20px; height: 20px; }
.contact__methods b { display: block; font-size: 0.78rem; color: var(--muted); font-weight: 400; }
.contact__methods span { font-size: 1rem; color: var(--cream); }
.contact__form { padding: clamp(1.6rem, 4vw, 2.6rem); border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(160deg, var(--glass-strong), transparent); backdrop-filter: blur(12px); }
.contact__fields { display: grid; gap: 1.1rem; margin-bottom: 1.5rem; }
.field { position: relative; }
.field label { display: block; font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 0.5rem; }
.field label .req { color: var(--rose-bright); }
.field input, .field textarea {
  width: 100%; padding: 0.9rem 1.1rem;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px;
  color: var(--cream); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s, background 0.3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--mint); background: #fff; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.contact__hint { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; text-align: center; }
.contact__hint.is-ok { color: var(--mint-bright); }

/* ================================ FOOTER =============================== */
.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 247, 244, 0.35) 0%, transparent 28%),
    linear-gradient(135deg, #efe6de 0%, var(--ink-3) 42%, #ebe3db 100%);
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.2rem, 5vw, 3rem) 1.75rem;
}
.footer__glow {
  position: absolute;
  inset-inline-start: -12%;
  bottom: -35%;
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 201, 192, 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.footer__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.85fr));
  gap: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}
.footer__col--brand { max-width: 28rem; }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  text-decoration: none;
}
.footer__logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px var(--shadow-soft);
  transition: transform 0.45s var(--ease);
}
.footer__logo:hover img { transform: scale(1.04); }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cream);
  line-height: 1;
}
.footer__tagline {
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 26rem;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.15rem;
}
.footer__links {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.footer__links a {
  position: relative;
  display: inline-block;
  color: var(--cream-dim);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__links a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform 0.35s var(--ease);
}
.footer__links a:hover {
  color: var(--cream);
  transform: translateX(-2px);
}
html[lang="he"] .footer__links a:hover { transform: translateX(2px); }
.footer__links a:hover::after { transform: scaleX(1); }
.footer__connect-lead {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
  max-width: 16rem;
}
.footer__social { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--cream-dim);
  transition: 0.35s var(--ease);
}
.footer__social a:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(197, 99, 99, 0.28);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer__credit a {
  color: var(--mint-bold);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.footer__credit a:hover { color: var(--rose); }

/* =============================== RESPONSIVE ============================= */
@media (max-width: 980px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem 1.75rem;
  }
  .footer__col--brand { grid-column: 1 / -1; max-width: 32rem; }

  .nav__links,
  .nav__actions,
  .nav__cta { display: none; }

  .nav__burger {
    display: block;
    z-index: 2;
    flex-shrink: 0;
  }

  .nav__brand { flex-shrink: 0; }

  .nav.is-open {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand burger"
      "menu menu"
      "footer footer";
    inset: 0;
    height: 100dvh;
    min-height: 100svh;
    align-items: stretch;
    gap: 0;
    padding:
      max(0.85rem, env(safe-area-inset-top))
      max(1rem, env(safe-area-inset-right))
      max(0.85rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
    background: var(--overlay-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: transparent;
    overflow: hidden;
  }

  .nav.is-open .nav__brand { grid-area: brand; align-self: center; }
  .nav.is-open .nav__burger { grid-area: burger; align-self: center; justify-self: end; }

  .nav.is-open .nav__links {
    grid-area: menu;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    position: static;
    inset: auto;
    margin: 0.85rem 0 0;
    padding: 0.25rem 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    font-size: 1.05rem;
    background: transparent;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav__links a {
    padding: 0.95rem 0.75rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .nav.is-open .nav__links a::after { display: none; }

  .nav.is-open .nav__actions {
    grid-area: footer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0;
  }

  .nav.is-open .nav__cta {
    display: inline-flex;
    position: static;
    transform: none;
    flex: 1;
    justify-content: center;
    max-width: none;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .about, .contact { grid-template-columns: 1fr; }
  .services__grid, .academy__grid, .booking__cards { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .social__grid { grid-template-columns: 1fr; }
  .hero { text-align: center; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__content {
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__actions { justify-content: center; }
  .hero__chips { justify-content: center; }
  .hero__visual { height: clamp(360px, 48vh, 460px); margin-top: 0.5rem; }
  .hero__badge--name { right: 0; }
  .hero__badge--stat { left: 0; }
  .hero__badge--rate { right: 2%; }
}
/* tablet & down: tame the pinned story so chapter text + video never collide */
@media (max-width: 980px) {
  .story { padding-top: clamp(3rem, 9vh, 5rem); }
  .story__pin {
    padding-top: clamp(6.5rem, 15vh, 9rem);
    gap: 1rem;
    justify-content: flex-start;
  }
  .story__stage {
    width: min(90vw, 620px);
    min-height: auto;
    flex-shrink: 0;
  }
  .chapter {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
  }
  .chapter.is-active {
    position: relative;
    inset: auto;
  }
  .story .chapter__index {
    font-size: clamp(2.75rem, 12vw, 5.5rem);
    margin-bottom: 0.5rem;
  }
  .story .chapter__title { margin-bottom: 0.45rem; }
  .story .chapter__text {
    font-size: clamp(0.98rem, 3.8vw, 1.12rem);
    line-height: 1.65;
    margin-bottom: 0;
    padding-bottom: 0.25rem;
  }
  .story__video {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    flex-shrink: 0;
    width: min(94vw, 500px);
    height: clamp(175px, 26vh, 240px);
  }
  .story__depth { display: none; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5.25rem; padding-bottom: 2.25rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__col--brand { grid-column: auto; max-width: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .section-head { margin-bottom: clamp(2rem, 8vw, 3rem); }
  /* keep floating badges from spilling over the portrait edges on phones */
  .hero__badge { padding: 0.7rem 0.95rem; }
  .hero__badge--name strong { font-size: 0.98rem; }
  .hero__badge--stat em { font-size: 1.65rem; }
  .hero__badge-cap { max-width: 120px; }
  .hero__badge--stat span { max-width: 10rem; }
  .hero__chips span { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
  .chapter__index { font-size: clamp(3rem, 16vw, 5rem); }
  .booking__cards { gap: 1rem; }
  /* comfortable tap targets */
  .contact__methods a { padding: 1.1rem 1.2rem; }
}

@media (max-width: 380px) {
  .nav { padding-left: 0.9rem; padding-right: 0.9rem; }
  .about__mark { font-size: 4.5rem; }
}

/* QA preview: cap svh-based heights so a single capture shows real flow */
.preview .hero { min-height: 760px; }
.preview .story__pin { height: 760px; }

/* ========================= WA TESTIMONIALS ============================ */
.wa-testimonials { padding: clamp(4rem, 9vw, 7rem) 0; background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.wa-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 3rem);
}
.wa-shot { margin: 0; }
.wa-shot__phone {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ece5dd;
  box-shadow: 0 20px 50px var(--shadow-medium);
}
.wa-shot__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: #075e54;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}
.wa-shot__header span:first-child {
  width: 8px; height: 8px; border-radius: 50%; background: #25d366;
}
.wa-shot__phone img { display: block; width: 100%; height: auto; }

.academy__more { text-align: center; margin-top: 2rem; padding: 0 1rem; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1 !important; transform: none !important; }
  .ticker__track, .hero__mouse i { animation: none; }
  .story .chapter__index { animation: none; background-position: 50% 50%; }
  .story .chapter__title { animation: none; background-position: 50% 0, 50% 50%; }
  .stat__num { animation: none; background-position: 50% 0, 50% 50%; }
  .footer__logo:hover img,
  .footer__links a:hover,
  .footer__social a:hover { transform: none; }
}
