/* ========== Tokens ========== */
:root {
  --bg: #FFF6E5;
  --bg-alt: #FFFFFF;
  --bg-warm: #FFE8C7;
  --primary: #E76F51;
  --primary-dark: #C9583B;
  --primary-50: #FBE6DD;
  --accent: #C5B4E3;
  --accent-dark: #9B82C9;
  --accent-50: #EEE9F7;
  --yellow: #E8B547;
  --yellow-deep: #D4A23A;
  --yellow-50: #FBF1D8;
  --ink: #3D2858;
  --ink-soft: #4A3F36;
  --muted: #5C5247;
  --line: #E8DCC9;
  --shadow-sm: 0 2px 8px rgba(61, 40, 88, 0.08);
  --shadow-md: 0 8px 24px rgba(61, 40, 88, 0.12);
  --shadow-lg: 0 16px 48px rgba(61, 40, 88, 0.18);
  --shadow-paper: -6px 6px 0 rgba(231, 111, 81, 0.15);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-display: 'Suez One', 'Heebo', serif;
  --font-display-en: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Heebo', 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Reusable inline SVG decorations */
  --bg-squiggle-coral: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 Q30 2, 60 7 T120 8 T180 6 T198 9' stroke='%23E76F51' stroke-width='3' stroke-linecap='round' fill='none'/></svg>");
}

/* WhatsApp floating button — Israeli UX standard */
.wa-float {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45), 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  background: #128C7E;
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6), 0 4px 8px rgba(0, 0, 0, 0.18);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  pointer-events: none;
  animation: wa-pulse 3s ease-out infinite;
  animation-delay: 2s;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float__pulse { animation: none; }
}
@media (max-width: 768px) {
  .wa-float { display: none; }
}

/* Mobile sticky bottom CTA — only on phones, reveals after hero */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(231, 111, 81, 0.18);
  padding: 10px 12px 12px;
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(61, 40, 88, 0.08);
  animation: mobile-cta-slide 0.35s ease;
}
.mobile-cta[hidden] { display: none !important; }
.mobile-cta.is-visible {
  display: flex;
}
@keyframes mobile-cta-slide {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 12px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.mobile-cta__btn:active { transform: scale(0.98); }
.mobile-cta__btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.mobile-cta__btn--wa svg { width: 18px; height: 18px; }
.mobile-cta__btn--form {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(231, 111, 81, 0.4);
}
@media (max-width: 768px) {
  body.has-mobile-cta { padding-bottom: 80px; }
}

/* Language toggle (fixed top-left, RTL-aware) */
.lang-toggle {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.lang-toggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 480px) {
  .lang-toggle { top: 10px; left: 10px; padding: 6px 10px; font-size: 12px; }
}

/* ===== Accessibility widget ===== */
.a11y-toggle {
  position: fixed;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  width: 46px;
  height: 46px;
  border: none;
  border-start-end-radius: var(--radius-sm);
  border-end-end-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, transform 0.2s;
}
.a11y-toggle:hover { background: var(--accent-dark); }
.a11y-toggle svg { fill: currentColor; }
.a11y-panel {
  position: fixed;
  inset-inline-start: 54px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 81;
  width: 230px;
  max-width: calc(100vw - 70px);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.a11y-panel[hidden] { display: none; }
.a11y-panel__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  text-align: start;
}
.en-body .a11y-panel__title { font-family: var(--font-body-en); }
.a11y-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: start;
}
.a11y-opt:hover { border-color: var(--accent); }
.a11y-opt[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.a11y-opt--reset {
  justify-content: center;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}
.a11y-opt--reset:hover { color: var(--primary); }

/* Font scaling (whole-page zoom, works on the px-based layout) */
html[data-a11y-font="1"] { zoom: 1.12; }
html[data-a11y-font="2"] { zoom: 1.25; }
html[data-a11y-font="3"] { zoom: 1.4; }

/* High contrast — overrides the design tokens so the whole token-based
   palette recolors cleanly without touching layout */
html.a11y-contrast {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --bg-warm: #ffffff;
  --ink: #000000;
  --ink-soft: #141414;
  --muted: #2b2b2b;
  --primary: #98290b;
  --primary-dark: #7a2008;
  --accent: #4a2e7c;
  --accent-dark: #3a2466;
  --line: #000000;
}
html.a11y-contrast .hero,
html.a11y-contrast .section--cta-band,
html.a11y-contrast .section--form,
html.a11y-contrast .section--workshop { background: #fff; }

/* Highlight links */
html.a11y-links a:not(.btn):not(.lang-toggle):not(.wa-float):not(.mobile-cta__btn) {
  text-decoration: underline !important;
  text-underline-offset: 2px;
  font-weight: 700 !important;
}

/* ========== Animation system ========== */
/* Standard easing curves */
:root {
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Page-level fade-in on load + fade-out on internal navigation */
@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
body { animation: page-fade-in 0.4s var(--ease-standard); }
body.is-leaving {
  opacity: 0;
  transition: opacity 0.22s var(--ease-standard);
}

/* Scroll-triggered reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-standard), transform 0.7s var(--ease-standard);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  body { animation: none; }
  body.is-leaving { transition: none; }
}

/* === Anim 2: Staggered card reveals === */
.feature.reveal { transition-duration: 0.65s; }
.feature.reveal:nth-of-type(1).is-visible { transition-delay: 0ms; }
.feature.reveal:nth-of-type(2).is-visible { transition-delay: 130ms; }
.feature.reveal:nth-of-type(3).is-visible { transition-delay: 260ms; }
.for-whom__card.reveal { transition-duration: 0.65s; }
.for-whom__card.reveal:nth-of-type(1).is-visible { transition-delay: 0ms; }
.for-whom__card.reveal:nth-of-type(2).is-visible { transition-delay: 160ms; }
.what-list li.reveal { transition-duration: 0.65s; }
.what-list li.reveal:nth-of-type(1).is-visible { transition-delay: 0ms; }
.what-list li.reveal:nth-of-type(2).is-visible { transition-delay: 130ms; }
.what-list li.reveal:nth-of-type(3).is-visible { transition-delay: 260ms; }
.howitworks__step.reveal { transition-duration: 0.65s; }
.howitworks__step.reveal:nth-of-type(1).is-visible { transition-delay: 0ms; }
.howitworks__step.reveal:nth-of-type(2).is-visible { transition-delay: 130ms; }
.howitworks__step.reveal:nth-of-type(3).is-visible { transition-delay: 260ms; }

/* === Anim 1: Squiggle draw-in === */
@keyframes squiggle-draw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* SVG noise texture — adds tactile warmth to flat backgrounds.
   position: absolute (not fixed) — paints once instead of on every scroll
   frame, which the mix-blend-mode would otherwise force on mobile.
   Disabled on phones entirely: the texture is too subtle to register on
   small screens and the blend cost still hurts mid-range Android. */
body::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
@media (max-width: 768px) {
  body::before { display: none; }
}

/* ========== Base ========== */
* { box-sizing: border-box; }

html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
section[id] { scroll-margin-top: 24px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  direction: rtl;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Keep page content above the noise overlay */
body > * { position: relative; z-index: 2; }

img { max-width: 100%; height: auto; display: block; }

/* Reserve space for images to prevent CLS (Cumulative Layout Shift) */
.hero__image img { aspect-ratio: 4/5; }
.about__image img { aspect-ratio: 3/4; }
.workshop__showcase img { aspect-ratio: 4/5; }
.video-poster img { aspect-ratio: 9/16; }

a { color: var(--primary-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

h1, h2 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.6em;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
}
h3, h4 {
  font-family: var(--font-body);
  color: var(--ink);
  margin: 0 0 0.6em;
  line-height: 1.25;
  font-weight: 700;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 720px; }

.section {
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(231, 111, 81, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin: 0 0 18px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 700px;
  margin: -8px auto 36px;
  font-weight: 500;
}
.section--why .section__lead { text-align: center; }
@media (max-width: 720px) {
  .section__lead { font-size: 16.5px; margin-bottom: 28px; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--large { font-size: 19px; padding: 18px 40px; }
.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--full { width: 100%; padding: 18px; }
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Marker highlight — hand-drawn emphasis on key words.
   Pairs with the squiggle on .accent-word: same "ink on paper" family,
   different tool. Bottom 42% of the line is brushed with brand yellow. */
.marker {
  background-image: linear-gradient(180deg, transparent 58%, rgba(232, 181, 71, 0.42) 58%);
  background-repeat: no-repeat;
  padding: 0 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Global keyboard focus ring — WCAG 2.4.7, web.dev best practice */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible,
.lang-toggle:focus-visible,
.wa-float:focus-visible,
.mobile-cta__btn:focus-visible {
  outline-offset: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-offset: 0;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 185, 66, 0.18), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(197, 180, 227, 0.25), transparent 50%),
    var(--bg);
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--primary-dark);
  background: var(--primary-50);
  border: 1px solid rgba(231, 111, 81, 0.25);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero__eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: eyebrow-pulse 2.6s var(--ease-standard) infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.6vw, 88px);
  line-height: 1.0;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  font-family: 'Suez One', Georgia, serif;
  color: var(--primary);
}
.hero__title .accent-word {
  position: relative;
  display: inline-block;
  color: var(--primary);
}
.hero__title .accent-word::after {
  content: '';
  position: absolute;
  inset: auto -4% -8px;
  width: auto;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 Q30 2, 60 7 T120 8 T180 6 T198 9' stroke='%23E76F51' stroke-width='3' stroke-linecap='round' fill='none'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  /* Anim 1: draw in from the start of the word (right side in RTL) */
  transform: scaleX(0);
  transform-origin: right center;
  animation: squiggle-draw 1.1s var(--ease-standard) 0.9s forwards;
}
.en-body .hero__title .accent-word::after { transform-origin: left center; }
@media (prefers-reduced-motion: reduce) {
  .hero__title .accent-word::after { animation: none; transform: scaleX(1); }
}
.hero__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 560px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  font-size: clamp(17px, 1.8vw, 21px);
  margin: 14px 0 24px;
  letter-spacing: -0.01em;
}
.en-body .hero__tagline { font-family: var(--font-display-en); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__bullets li {
  position: relative;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--ink);
  padding: 8px 16px;
  padding-inline-start: 34px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease-standard), box-shadow 0.2s, border-color 0.2s;
}
.hero__bullets li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
}
.hero__bullets li:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.hero__image {
  position: relative;
}
/* Yellow blob removed by request — kept marker for layout context */
.hero__image::before { content: none; }
@media (prefers-reduced-motion: reduce) {
  .hero__image::before { animation: none; }
}
/* Coral square accent — geometric counterpoint to the blob */
.hero__image::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 12px;
  bottom: -16px;
  left: -16px;
  z-index: 2;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
}
.hero__image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(255, 255, 255, 0.92), 0 0 0 9px rgba(197, 180, 227, 0.45);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  animation: img-float 8s ease-in-out 1.3s infinite;
}
/* Year badge — sits on top of the hero image, signals authority */
.hero__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 8px 14px 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.hero__badge strong {
  color: var(--yellow);
  font-weight: 900;
  font-size: 14px;
  margin-inline-start: 4px;
}

/* === Hero elevation: atmospheric depth + orchestrated page-load entrance === */
.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__decor span {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  will-change: transform;
}
.hero__decor span:nth-child(1) {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.30), transparent 70%);
  top: -70px;
  inset-inline-end: 6%;
  animation: orb-float 19s ease-in-out infinite;
}
.hero__decor span:nth-child(2) {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(197, 180, 227, 0.42), transparent 70%);
  bottom: 4%;
  inset-inline-start: 1%;
  animation: orb-float 23s ease-in-out infinite reverse;
}
.hero__decor span:nth-child(3) {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(232, 181, 71, 0.26), transparent 70%);
  bottom: -60px;
  inset-inline-start: 44%;
  animation: orb-float 16s ease-in-out infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-26px); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-image-in {
  from { opacity: 0; transform: translateY(26px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes eyebrow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(231, 111, 81, 0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(231, 111, 81, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 111, 81, 0); }
}
@keyframes img-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Staggered reveal on load — one orchestrated entrance */
.hero__eyebrow  { animation: hero-rise 0.75s var(--ease-standard) 0.05s both; }
.hero__title    { animation: hero-rise 0.80s var(--ease-standard) 0.16s both; }
.hero__subtitle { animation: hero-rise 0.75s var(--ease-standard) 0.30s both; }
.hero__tagline  { animation: hero-rise 0.75s var(--ease-standard) 0.42s both; }
.hero__actions  { animation: hero-rise 0.75s var(--ease-standard) 0.54s both; }
.hero__bullets  { animation: hero-rise 0.75s var(--ease-standard) 0.66s both; }
.hero__image    { animation: hero-image-in 0.95s var(--ease-standard) 0.12s both; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__tagline,
  .hero__actions,
  .hero__bullets,
  .hero__image,
  .hero__image img,
  .hero__decor span,
  .hero__eyebrow::before {
    animation: none !important;
  }
}

/* ========== About ========== */
.section--about {
  background: var(--bg-alt);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__image {
  position: relative;
}
.about__image::before {
  content: '';
  position: absolute;
  inset: 24px -20px -20px 24px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: 0;
}
/* Floating gold squircle — echoes the hero's playful accent */
.about__image::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 16px;
  top: -18px;
  inset-inline-end: -14px;
  z-index: 2;
  transform: rotate(8deg);
  box-shadow: var(--shadow-md);
}
.about__image img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

/* Stat strip — 2-fact authority signal */
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px dashed var(--line);
}
.about__stat {
  text-align: start;
}
.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1;
  color: var(--primary);
  margin-bottom: 6px;
}
.about__stat:nth-of-type(2) .about__stat-num { color: var(--accent-dark); }
.about__stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ========== What you get (10-item list) ========== */
.section--what-you-get {
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Soft brand atmosphere behind the cards — depth, not a flat white slab */
.section--what-you-get::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 6%, rgba(231, 111, 81, 0.06), transparent 42%),
    radial-gradient(circle at 90% 94%, rgba(197, 180, 227, 0.11), transparent 46%);
  pointer-events: none;
}
.section--what-you-get .container { position: relative; z-index: 1; }
.section--what-you-get .section__title { margin-bottom: 40px; }
.what-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: right;
  max-width: 1080px;
  margin: 0 auto;
}
.what-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 26px 28px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease-standard), transform 0.25s var(--ease-standard), box-shadow 0.25s var(--ease-standard);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
/* Per-card brand accent — rotates coral → lavender → gold */
.what-list li:nth-of-type(1) { --card-accent: var(--primary);     --card-tint: var(--primary-50); --card-glow: rgba(231, 111, 81, 0.18); }
.what-list li:nth-of-type(2) { --card-accent: var(--accent-dark); --card-tint: var(--accent-50);  --card-glow: rgba(155, 130, 201, 0.20); }
.what-list li:nth-of-type(3) { --card-accent: var(--yellow-deep); --card-tint: var(--yellow-50);  --card-glow: rgba(212, 162, 58, 0.18); }
/* Top accent bar — visible by default; draws in when scroll-reveal is active */
.what-list li::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 5px;
  background: var(--card-accent);
  transform: scaleX(1);
  transform-origin: right center;
}
.en-body .what-list li::before { transform-origin: left center; }
.what-list li.reveal::before {
  transform: scaleX(0);
  transition: transform 0.55s var(--ease-standard) 0.15s;
}
.what-list li.reveal.is-visible::before { transform: scaleX(1); }
/* Oversized ghost numeral — editorial character in the far corner */
.what-list li::after {
  position: absolute;
  top: 14px;
  inset-inline-start: 20px;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  color: var(--card-accent);
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.what-list li:nth-of-type(1)::after { content: '01'; }
.what-list li:nth-of-type(2)::after { content: '02'; }
.what-list li:nth-of-type(3)::after { content: '03'; }
.what-list li:hover {
  border-color: var(--card-accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px var(--card-glow);
}
.what-list__icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--card-tint);
  color: var(--card-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 21px;
  line-height: 1;
  transition: transform 0.3s var(--ease-bounce);
}
.what-list li:hover .what-list__icon { transform: rotate(-6deg) scale(1.08); }
.what-list__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.what-list__body strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.what-list__body span {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ========== Why / Features ========== */
.section--why {
  background: var(--bg);
  text-align: center;
}
.section--why .section__title { margin-bottom: 48px; }
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
/* Editorial feature blocks — replaces generic card-with-shadow with numbered paper-stack effect */
.feature {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: right;
}
.feature:hover {
  transform: translate(2px, -4px);
  box-shadow: -10px 10px 0 rgba(231, 111, 81, 0.2);
}
.feature__num {
  position: absolute;
  top: -18px;
  inset-inline-end: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  box-shadow: var(--shadow-sm);
}
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(231, 111, 81, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature__icon svg {
  width: 30px;
  height: 30px;
}
.feature h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--ink);
}
.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}

/* ========== Video ========== */
.section--video {
  background: var(--bg-alt);
  text-align: center;
}
.section--video-secondary {
  background: var(--bg);
}
.section--video-secondary .section__title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 32px auto 0;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-wrapper--vertical {
  max-width: 380px;
  aspect-ratio: 9/16;
}
.video-wrapper--square {
  max-width: 480px;
  aspect-ratio: 804 / 720;
}

/* Click-to-play poster (hides YouTube branding overlay until clicked) */
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}
.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.video-poster:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.video-poster__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-poster__play svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease;
}
.video-poster:hover .video-poster__play svg {
  transform: scale(1.08);
}
.video-poster:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrapper video.video-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

/* ========== Certification ========== */
.section--certification {
  background: var(--bg);
  text-align: center;
}
.certification__subtitle {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 14px auto 4px;
  max-width: 620px;
  font-weight: 500;
}
.certification__institution {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 4px auto;
  max-width: 620px;
}
.certification__institution strong {
  color: var(--primary);
  font-weight: 700;
}
.certification__dates {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 6px auto 0;
}
.certification__card {
  max-width: 720px;
  margin: 36px auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease-standard), box-shadow 0.3s var(--ease-standard);
}
.certification__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(61, 40, 88, 0.22);
}
.certification__card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Method explanation block — sits between dates and certificate image */
.certification__about {
  max-width: 660px;
  margin: 36px auto 0;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
  text-align: right;
}
.certification__about p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.certification__about p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .certification__about { padding-top: 22px; margin-top: 26px; }
  .certification__about p { font-size: 15.5px; }
}

/* Volunteer / community service note — sits under the certification card */
.volunteer-note {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 20px 26px;
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.10), rgba(197, 180, 227, 0.08));
  border: 1.5px solid rgba(232, 181, 71, 0.28);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: right;
}
.en-body .volunteer-note { text-align: left; }
.volunteer-note__icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1.4;
}
.volunteer-note p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.volunteer-note strong {
  color: var(--ink);
  font-weight: 700;
}
@media (max-width: 640px) {
  .volunteer-note { padding: 18px 20px; gap: 12px; }
  .volunteer-note p { font-size: 14.5px; }
}

/* ========== For whom / not for whom ========== */
.section--for-whom {
  background: var(--bg-alt);
  text-align: center;
}
.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  text-align: right;
}
.for-whom__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.for-whom__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.for-whom__card--yes {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff 0%, rgba(197, 180, 227, 0.08) 100%);
}
.for-whom__card--no {
  background: #fafafa;
}
.for-whom__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}
.for-whom__card--yes .for-whom__icon {
  background: var(--accent);
  color: #fff;
}
.for-whom__card--no .for-whom__icon {
  background: var(--line);
  color: var(--muted);
}
.for-whom__card h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--ink);
}
.for-whom__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.for-whom__card li {
  position: relative;
  padding: 8px 24px 8px 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.for-whom__card--yes li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 8px;
  color: var(--accent-dark);
  font-weight: 700;
}
.for-whom__card--no li::before {
  content: '–';
  position: absolute;
  right: 0;
  top: 8px;
  color: var(--muted);
}

/* ========== Testimonials ========== */
.section--testimonials {
  background: var(--bg);
  text-align: center;
}
.section--testimonials .section__title { margin-bottom: 12px; }
.testimonials {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: right;
  align-items: start;
}
.testimonial {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.testimonial__quote {
  width: 30px;
  height: 22px;
  color: var(--accent);
  opacity: 0.85;
  margin: 0 0 14px;
  flex-shrink: 0;
}
.testimonial__text {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
  flex: 1;
}
.testimonial__author {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.testimonial.reveal { transition-duration: 0.65s; }
.testimonial.reveal:nth-of-type(1).is-visible { transition-delay: 0ms; }
.testimonial.reveal:nth-of-type(2).is-visible { transition-delay: 90ms; }
.testimonial.reveal:nth-of-type(3).is-visible { transition-delay: 180ms; }
.testimonial.reveal:nth-of-type(4).is-visible { transition-delay: 270ms; }

/* WhatsApp screenshot variant — image at natural height, no inner padding */
.testimonial--screenshot {
  padding: 0;
  overflow: hidden;
  background: #ECE5DD;
  border: 1.5px solid var(--line);
}
.testimonial__screenshot-link {
  display: block;
  line-height: 0;
  border-radius: inherit;
  overflow: hidden;
}
.testimonial__screenshot-link:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.testimonial__screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.testimonial--screenshot:hover .testimonial__screenshot {
  transform: scale(1.02);
}

/* WhatsApp CSS-built variant — for text testimonials without screenshot */
.testimonial--whatsapp {
  padding: 28px 22px 22px;
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(0,0,0,0.04) 1px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.04) 1px, transparent 2px),
    radial-gradient(circle at 45% 90%, rgba(0,0,0,0.04) 1px, transparent 2px),
    radial-gradient(circle at 65% 30%, rgba(0,0,0,0.04) 1px, transparent 2px);
  background-size: 120px 120px;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.testimonial__wa-date {
  align-self: center;
  background: #fff;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 18px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.testimonial__wa-bubble {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px 10px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  position: relative;
  margin: 0;
}
.testimonial__wa-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: #111b21;
  margin: 0 0 6px;
  text-align: right;
  font-weight: 400;
}
.testimonial__wa-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 0;
  font-size: 12px;
  color: #667781;
}
.testimonial__wa-meta .testimonial__wa-author {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.testimonial__wa-meta .testimonial__wa-time {
  opacity: 0.85;
}

/* English LTR overrides for WhatsApp bubbles */
.testimonials--en {
  text-align: left;
}
.testimonials--en .testimonial__wa-text {
  text-align: left;
}

@media (max-width: 720px) {
  .testimonials { grid-template-columns: 1fr; gap: 16px; }
  .testimonial { padding: 26px 22px 22px; }
  .testimonial__text { font-size: 15.5px; }
  .testimonial--screenshot { padding: 0; }
  .testimonial--whatsapp { padding: 22px 16px 18px; }
  .testimonial__wa-text { font-size: 15.5px; }
}

/* ========== FAQ ========== */
.section--faq {
  background: var(--bg-alt);
}
.section--faq .container--narrow { text-align: center; }
.faq {
  margin-top: 32px;
  text-align: right;
  display: grid;
  gap: 12px;
}
/* FAQ — refined editorial accordion with custom indicator */
.faq__item {
  background: #fff;
  border-bottom: 1.5px solid var(--line);
  padding: 0;
  overflow: hidden;
  transition: background 0.25s;
}
.faq__item:first-child { border-top: 1.5px solid var(--line); }
.faq__item[open] { background: var(--bg); }
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  padding: 22px 26px 22px 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-50);
  background-image:
    linear-gradient(var(--primary), var(--primary)),
    linear-gradient(var(--primary), var(--primary));
  background-size: 12px 2.5px, 2.5px 12px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, background-color 0.2s;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  background-size: 12px 2.5px, 0 0;
  transform: rotate(180deg);
  background-color: var(--primary);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
}
.faq__item p {
  margin: 0;
  padding: 0 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  /* Anim 6: smooth open/close via max-height + opacity */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease-standard),
              opacity 0.3s ease,
              padding 0.4s var(--ease-standard);
}
.faq__item[open] p {
  max-height: 320px;
  opacity: 1;
  padding-bottom: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .faq__item p { transition: none; }
}

/* ========== Authority strip (trust anchors after hero) ========== */
.authority-strip {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
  padding: 22px 20px;
}
.authority-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.authority-strip__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-standard), border-color 0.2s var(--ease-standard);
}
.authority-strip__list li:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.authority-strip__icon {
  font-size: 14px;
  line-height: 1;
}
/* Rotate the glyph colours through the brand palette */
.authority-strip__list li:nth-child(1) .authority-strip__icon { color: var(--primary); }
.authority-strip__list li:nth-child(2) .authority-strip__icon { color: var(--accent-dark); }
.authority-strip__list li:nth-child(3) .authority-strip__icon { color: var(--yellow-deep); }
.authority-strip__list li:nth-child(4) .authority-strip__icon { color: var(--primary); }
@media (max-width: 600px) {
  .authority-strip__list { gap: 8px 10px; font-size: 12.5px; }
  .authority-strip__list li { padding: 7px 13px; }
}

/* ========== How it works — 3-step process ========== */
.section--how {
  background: var(--bg-alt);
  text-align: center;
}
.section--how .container--narrow { max-width: 880px; }
.howitworks {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: howitworks-step;
}
.howitworks__step {
  position: relative;
  padding: 36px 24px 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-standard), border-color 0.25s var(--ease-standard), box-shadow 0.25s var(--ease-standard);
}
/* Per-step brand accent — coral → lavender → gold */
.howitworks__step:nth-of-type(1) { --step-accent: var(--primary);     --step-glow: rgba(231, 111, 81, 0.18); }
.howitworks__step:nth-of-type(2) { --step-accent: var(--accent-dark); --step-glow: rgba(155, 130, 201, 0.20); }
.howitworks__step:nth-of-type(3) { --step-accent: var(--yellow-deep); --step-glow: rgba(212, 162, 58, 0.18); }
.howitworks__step:hover {
  transform: translateY(-6px);
  border-color: var(--step-accent);
  box-shadow: 0 16px 36px var(--step-glow);
}
.howitworks__num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--step-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-bounce);
}
.howitworks__step:hover .howitworks__num { transform: translateX(-50%) scale(1.1); }
.en-body .howitworks__num { font-family: var(--font-display-en); }
.howitworks__step h3 {
  font-size: 19px;
  margin: 12px 0 8px;
  color: var(--ink);
}
.howitworks__step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .howitworks { grid-template-columns: 1fr; gap: 36px; margin-top: 30px; }
}

/* ========== Pricing — lesson packages ========== */
.section--pricing {
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 162, 58, 0.10), transparent 42%),
    radial-gradient(circle at 8% 96%, rgba(231, 111, 81, 0.07), transparent 46%);
  pointer-events: none;
}
.section--pricing .container { position: relative; z-index: 1; }
.section--pricing .section__title { margin-bottom: 8px; }
.section--pricing .section__lead { margin-bottom: 44px; }

.pricing {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 26px 30px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s var(--ease-standard), border-color 0.25s var(--ease-standard), box-shadow 0.25s var(--ease-standard);
}
/* Per-card brand accent — coral → lavender → gold */
.pricing__card:nth-of-type(1) { --tier-accent: var(--primary);     --tier-tint: var(--primary-50); --tier-glow: rgba(231, 111, 81, 0.18); }
.pricing__card:nth-of-type(2) { --tier-accent: var(--accent-dark); --tier-tint: var(--accent-50);  --tier-glow: rgba(155, 130, 201, 0.22); }
.pricing__card:nth-of-type(3) { --tier-accent: var(--yellow-deep); --tier-tint: var(--yellow-50);  --tier-glow: rgba(212, 162, 58, 0.18); }

/* Top accent bar — same convention as the "what you get" cards */
.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 5px;
  background: var(--tier-accent);
  transform: scaleX(1);
  transform-origin: right center;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.en-body .pricing__card::before { transform-origin: left center; }
.pricing__card.reveal::before {
  transform: scaleX(0);
  transition: transform 0.55s var(--ease-standard) 0.15s;
}
.pricing__card.reveal.is-visible::before { transform: scaleX(1); }
.pricing__card:hover {
  transform: translateY(-6px);
  border-color: var(--tier-accent);
  box-shadow: 0 18px 40px var(--tier-glow);
}

/* Featured (middle) card — elevated visual weight */
.pricing__card--featured {
  background: linear-gradient(180deg, #fff 0%, var(--tier-tint) 100%);
  border-color: var(--tier-accent);
  box-shadow: 0 10px 28px var(--tier-glow);
  transform: translateY(-8px);
}
.pricing__card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 22px 50px var(--tier-glow);
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tier-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.pricing__name {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 22px;
}
.pricing__price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  direction: ltr;
  color: var(--tier-accent);
}
.pricing__currency {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.pricing__price {
  font-family: var(--font-display);
  font-size: clamp(54px, 6.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing__per {
  margin: 8px 0 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
  min-height: 38px;
}
.pricing__perks {
  list-style: none;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.pricing__perks li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pricing__perks li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--tier-accent);
  font-weight: 900;
}

.pricing__validity {
  margin: 36px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* Staggered reveal — same pattern as feature/what-list/howitworks */
.pricing__card.reveal { transition-duration: 0.65s; }
.pricing__card.reveal:nth-of-type(1).is-visible { transition-delay: 0ms; }
.pricing__card.reveal:nth-of-type(2).is-visible { transition-delay: 130ms; }
.pricing__card.reveal:nth-of-type(3).is-visible { transition-delay: 260ms; }

@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; gap: 28px; max-width: 460px; }
  .pricing__card--featured { transform: none; }
  .pricing__card--featured:hover { transform: translateY(-6px); }
  .pricing__policy { padding: 20px 22px; }
}

/* ========== CTA band (after the video) ========== */
.section--cta-band {
  background:
    radial-gradient(circle at 20% 30%, rgba(197, 180, 227, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244, 185, 66, 0.12), transparent 50%),
    var(--bg-warm);
  padding: 64px 20px;
  text-align: center;
  border-top: 1px solid rgba(231, 111, 81, 0.12);
  border-bottom: 1px solid rgba(231, 111, 81, 0.12);
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-band__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.cta-band__note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.section--cta-band .btn {
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.35);
}
.section--cta-band .btn:hover {
  box-shadow: 0 14px 32px rgba(231, 111, 81, 0.45);
}

/* ========== Standalone thank-you page ========== */
.section--thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 185, 66, 0.18), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(197, 180, 227, 0.25), transparent 50%),
    var(--bg);
}
.thanks-card--standalone {
  max-width: 720px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.thanks-card__signature {
  margin: 24px 0 0;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}
.thanks-card__back {
  margin-top: 28px;
}

/* ========== Fearless Wall (yellow band) ========== */
.fearless-wall {
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.45), transparent 40%),
    radial-gradient(circle at 88% 70%, rgba(231, 111, 81, 0.18), transparent 50%),
    var(--yellow);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fearless-wall::before,
.fearless-wall::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(40px);
}
.fearless-wall::before { top: -60px; right: -40px; }
.fearless-wall::after { bottom: -80px; left: -40px; background: rgba(231, 111, 81, 0.22); }
.fearless-wall__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fearless-wall__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink);
  opacity: 0.55;
  margin: 0 0 28px;
}
.fearless-wall__quote {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.0;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.fearless-wall__accent {
  position: relative;
  display: inline-block;
  color: var(--primary);
  transform: rotate(-3deg);
}
.fearless-wall__squiggle {
  display: block;
  width: clamp(180px, 30vw, 320px);
  height: 24px;
  margin: 32px auto 0;
}

/* ========== Workshop showcase — pinned-flyer aesthetic ========== */
.section--workshop {
  background:
    radial-gradient(circle at 85% 15%, rgba(244, 185, 66, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(197, 180, 227, 0.22), transparent 45%),
    var(--bg);
  text-align: center;
}
.workshop__intro { max-width: 720px; margin: 0 auto 40px; }
.workshop__lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  margin: 0;
}
.workshop__showcase {
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  transform: rotate(-1.5deg);
}
.workshop__showcase img {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(61, 40, 88, 0.18),
    0 24px 48px rgba(61, 40, 88, 0.14);
  width: 100%;
  display: block;
  border: 8px solid #fff;
}
/* Coral pushpin SVG fixed to the top of the flyer */
.workshop__pushpin {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%) translateY(-32px) rotate(2deg);
  opacity: 0;
  z-index: 3;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  transition: transform 0.8s var(--ease-bounce), opacity 0.4s ease;
}
/* Anim 3: pushpin drops with bounce when workshop section enters viewport */
.section--workshop.is-visible .workshop__pushpin {
  transform: translateX(-50%) translateY(0) rotate(2deg);
  opacity: 1;
  transition-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .workshop__pushpin {
    transform: translateX(-50%) translateY(0) rotate(2deg);
    opacity: 1;
    transition: none;
  }
}
/* Upcoming workshop date badge */
.workshop__date {
  max-width: 460px;
  margin: 56px auto 0;
  padding: 22px 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.07), rgba(232, 181, 71, 0.12));
  border: 1.5px solid rgba(231, 111, 81, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.workshop__date::before {
  content: '📅';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1.5px solid rgba(231, 111, 81, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.workshop__date-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 6px;
  margin-bottom: 8px;
}
.workshop__date-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.en-body .workshop__date-value { font-family: var(--font-display-en); }
.workshop__date-note {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
}

.workshop__cta {
  margin-top: 32px;
  text-align: center;
}

/* ========== Form ========== */
.section--form {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.form-card,
.thanks-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}
/* Brand gradient accent across the top of the conversion card */
.form-card::before,
.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent-dark) 55%, var(--yellow));
}
.form-card__lead,
.thanks-card__lead {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 32px;
}
.contact-form {
  display: grid;
  gap: 18px;
  text-align: right;
}
@media (min-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
  .contact-form > .btn,
  .contact-form > .form-card__note {
    grid-column: 1 / -1;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.field .req { color: var(--primary); }
.field input,
.field select {
  font-family: inherit;
  font-size: 16px;
  padding: 13px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #FFFCF7;
  color: var(--ink-soft);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s, transform 0.15s;
  direction: rtl;
}
.field input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.field input:hover,
.field select:hover {
  border-color: var(--accent);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(231, 111, 81, 0.15);
}
.field input.invalid,
.field select.invalid {
  border-color: #d94545;
  background: #FFF5F5;
}
.field input.invalid:focus,
.field select.invalid:focus {
  box-shadow: 0 0 0 4px rgba(217, 69, 69, 0.15);
}
.field label {
  transition: color 0.2s;
}
.field:focus-within label {
  color: var(--primary);
}
.contact-form .btn {
  margin-top: 12px;
}
.form-card__note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
  line-height: 1.7;
}
.form-card__privacy-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.form-card__privacy-link:hover {
  color: var(--accent);
}

/* ========== Legal pages (privacy policy, terms) ========== */
.section--legal {
  padding: 60px 0 80px;
  background: var(--bg);
}
.legal-doc {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}
.legal-doc .section__eyebrow { margin-bottom: 12px; }
.legal-doc .section__title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 6px;
}
.legal-doc__updated {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 28px;
  letter-spacing: 0.04em;
}
.legal-doc h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin: 32px 0 10px;
  color: var(--ink);
}
.legal-doc p, .legal-doc ul {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.legal-doc ul {
  padding-inline-start: 22px;
}
.legal-doc li {
  margin-bottom: 6px;
}
.legal-doc a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-doc a:hover { color: var(--accent); }
.legal-doc strong { color: var(--ink); font-weight: 700; }
.legal-doc__back {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  text-align: center;
}
@media (max-width: 640px) {
  .legal-doc { padding: 32px 22px; }
  .legal-doc h2 { font-size: 19px; margin-top: 24px; }
  .legal-doc p, .legal-doc ul { font-size: 15.5px; }
}

/* Thank-you */
.thanks-card {
  animation: fadeInUp 0.5s ease;
}
.thanks-card__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 38px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== Footer ========== */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 30px;
}
.footer h3, .footer h4 { color: #fff; }
.footer h3 { font-size: 24px; }
.footer h4 { font-size: 16px; margin-bottom: 12px; opacity: 0.9; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer p { color: rgba(255,255,255,0.78); margin: 0 0 6px; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--yellow); }
.footer__social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.social-icons {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.social-icons li { display: inline-flex; }
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.social-icons a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.social-icons svg {
  width: 22px;
  height: 22px;
  display: block;
}
.footer__copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ========== Responsive ========== */
@media (max-width: 880px) {
  .hero { padding: 40px 0 60px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image { max-width: 380px; margin: 0 auto; }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__image { max-width: 320px; margin: 0 auto; }
  .features { grid-template-columns: 1fr; gap: 16px; }
  .what-list { grid-template-columns: 1fr; gap: 12px; }
  .for-whom__grid { grid-template-columns: 1fr; gap: 16px; }
  .for-whom__card { padding: 24px 22px; }
  .faq__item summary { font-size: 16px; padding: 16px 18px; }
  .faq__item p { padding: 0 18px 18px; font-size: 15px; }
  .form-card, .thanks-card { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .btn--large { font-size: 17px; padding: 16px 28px; }
  .hero__bullets li { font-size: 13px; padding: 7px 14px; padding-inline-start: 32px; }
  .hero__bullets li::before { inset-inline-start: 6px; width: 18px; height: 18px; }
}
