/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #0E0E0E;
  --white:        #FAFAF8;
  --rose:         #C49080;
  --rose-light:   #EDD8D0;
  --purple:       #8B7BA8;
  --purple-light: #EAE4F2;
  --gray:         #6B6B6B;
  --border:       #E2DDD8;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Heebo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
.reveal, .reveal-up, .reveal-delay-1, .reveal-delay-2,
.reveal-delay-3, .reveal-delay-4, .reveal-delay-5 {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hero elements animate on load */
.hero .reveal        { animation: fadeUp 1s ease 0.2s forwards; }
.hero .reveal-delay-1 { animation: fadeUp 1s ease 0.5s forwards; }
.hero .reveal-delay-2 { animation: fadeUp 1s ease 0.8s forwards; }
.hero .reveal-delay-3 { animation: fadeUp 1s ease 1.1s forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 40px;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  height: 40px;
  filter: brightness(10) saturate(0);  /* white on hero */
  transition: filter 0.4s;
}

.nav.scrolled .nav-logo {
  filter: invert(1) brightness(0.15);  /* dark after scroll */
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.35) 50%,
    rgba(10,10,10,0.70) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 24px 80px;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(72px, 12vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  direction: ltr;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 440px;
  margin: 0 auto 12px;
  line-height: 1.8;
}

.hero-balance {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin: -8px auto 28px;
  letter-spacing: 0.04em;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 48px;
  letter-spacing: 0.02em;
  line-height: 1.9;
}

.hero-tagline-he {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  letter-spacing: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.3); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--rose);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-ghost:hover {
  border-color: white;
  color: white;
  background: rgba(255,255,255,0.08);
}

.btn-small {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid var(--border);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.2s, color 0.2s;
}

.btn-small:hover { background: var(--black); color: white; }

/* ===== CONTAINER ===== */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LABELS ===== */
.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.label.light { color: rgba(255,255,255,0.45); }

/* ===== STORY ===== */
.story {
  padding: 120px 24px;
  background: var(--black);
  color: var(--white);
}

.story-sequence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.story-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-milestone-img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(196,144,128,0.2);
}

.story-reveal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.story-reveal .story-milestone {
  min-width: 0;
  flex: 1 1 0;
}

.story-reveal .story-milestone-img {
  max-width: 380px;
}

.story-reveal-arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  align-self: center;
  margin-top: -24px;
}

@media (max-width: 560px) {
  .story-reveal { gap: 14px; }
  .story-reveal .story-milestone-img { max-width: 170px; }
  .story-reveal-arrow { font-size: 14px; margin-top: -16px; }
}

.story-milestone-caption {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

.story-milestone-caption--after {
  color: rgba(255,255,255,0.4);
}

.story-text {
  max-width: 640px;
  margin: 0 auto;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 28px;
  color: var(--white);
}

.story-text h2 em {
  font-style: italic;
  color: var(--rose);
}

.story-text p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.85;
}

.story-closing {
  color: rgba(255,255,255,0.85) !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.story-sig {
  font-family: var(--font-serif);
  font-size: 28px !important;
  font-style: italic;
  color: var(--rose) !important;
  margin-top: 8px !important;
  font-weight: 400;
}

/* ===== BONUSES ===== */
.bonuses {
  padding: 120px 24px;
  background: #F5F2EF;
}

.section-title-dark {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.2;
  color: var(--black);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.bonus-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.65;
}

.bonus-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--black);
}

.bonus-card p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== HOOK ===== */
.hook {
  padding: 64px 24px;
  background: var(--white);
  text-align: center;
}

.hook-inner { max-width: 680px; margin: 0 auto; }

.hook h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.2;
  font-style: italic;
}

.hook p {
  color: var(--gray);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 16px;
}

/* ===== ATMOSPHERE BREAKS ===== */
.atmo-break-img {
  width: 100%;
  line-height: 0;
}

.atmo-break-img img {
  width: 100%;
  height: auto;
  display: block;
}


.atmo-break {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.atmo-break-short {
  height: 45vh;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 24px;
  background: #F5F2EF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-text h2 em { font-style: italic; color: var(--rose); }

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 300;
}

.about-badges { display: flex; flex-direction: column; gap: 10px; }

.badge {
  padding: 14px 20px;
  background: var(--white);
  border-right: 3px solid var(--border);
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.2s;
}

.badge:hover { border-color: var(--rose); }
.accent-badge { border-color: var(--purple) !important; color: var(--purple); }

/* ===== SCHEDULE ===== */
.schedule {
  padding: 120px 24px;
  background: #1A1208;
  background-image: url('images/animations.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
}

.schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 4, 0.58);
  z-index: 0;
}

.schedule .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 56px;
  line-height: 1.2;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: 48px;
}

@media (max-width: 900px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

.schedule-note {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-top: -36px;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.class-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.frontal-tag {
  background: var(--rose);
  color: white;
}

.zoom-tag {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.12);
}

.schedule-card {
  background: #161616;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s;
  cursor: default;
}

.schedule-card:hover { background: #1e1e1e; }

.accent-card  { border-top: 2px solid var(--rose); }
.free-card    { border-top: 2px solid var(--purple); }

.day {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.time {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin: 6px 0;
}

.class-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.class-type {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
}

.free-label {
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 24px;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* WhatsApp bubble style */
.wa-bubble {
  background: #1F1F1F;
  border-radius: 4px 16px 16px 16px;
  padding: 20px 24px 14px;
  position: relative;
  max-width: 100%;
}

.wa-text {
  color: #E9E9E9;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  direction: rtl;
}

.wa-time {
  text-align: left;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* Quote style */
.testimonial-quote {
  background: var(--purple-light);
  padding: 32px 28px;
  border-right: 3px solid var(--purple);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tquote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-quote cite {
  font-size: 12px;
  color: var(--gray);
  font-style: normal;
  letter-spacing: 0.08em;
}

.testimonials-note {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
}

.testimonials-note a {
  color: var(--rose);
  text-decoration: underline;
}

/* ===== TRIAL ===== */
.trial {
  padding: 100px 24px;
  background: var(--rose-light);
  background-image: url('images/gallery-5.png');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.trial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 4, 0.52);
  z-index: 0;
}

.trial .container {
  position: relative;
  z-index: 1;
}

.trial-inner { max-width: 560px; margin: 0 auto; }

.trial .label { color: rgba(255, 255, 255, 0.5); }

.trial h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--white);
}

.trial p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 36px;
}

.trial .btn-primary {
  background: var(--white);
  color: var(--black);
}

.trial .btn-primary:hover { background: var(--rose); color: white; }

/* ===== PRICING ===== */
.pricing {
  padding: 120px 24px;
  background: var(--white);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 80px;
}

.price-card {
  padding: 48px 32px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
}

.price-card-featured {
  border: 2px solid var(--rose);
  background: #FDF8F6;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(196,144,128,0.12);
}

.featured-tag {
  position: absolute;
  top: -15px;
  right: 50%;
  transform: translateX(50%);
  background: var(--rose);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}

.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.price-amount-first {
  font-size: 14px;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 12px;
}

.price-desc {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
}

.price-card .btn-small,
.price-card .btn-primary {
  margin-top: auto;
}

/* CLASSES VISUAL LIST */
.classes-visual {
  margin: 24px 0 20px;
  border-top: 1px solid var(--border);
}

.class-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.01em;
}

.class-heb {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-right: 4px;
}

.meditation-note {
  font-size: 14px;
  color: var(--rose);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 4px !important;
}

/* CANCEL NOTE */
.cancel-note {
  font-size: 12px !important;
  color: rgba(255,255,255,0.4) !important;
  margin-top: 12px !important;
  letter-spacing: 0.02em;
}

.price-card .cancel-note {
  color: var(--gray) !important;
}

/* FOUNDERS EN */
.founders-en {
  font-size: 11px !important;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 8px !important;
  text-transform: uppercase;
}

/* FOUNDERS */
.founders-block {
  max-width: 600px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.founders-tag {
  display: inline-block;
  background: var(--rose);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  margin-bottom: 28px;
}

.founders-block h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
}

.founders-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.8;
}

.founders-block strong { color: var(--rose); font-weight: 600; }

.founders-note {
  margin-top: 20px !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
  margin-bottom: 0 !important;
}

.founders-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 24px;
}

.founders-price-big {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.founders-price-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.founders-crossed {
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.founders-period {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.pricing-separator {
  text-align: center;
  margin: 56px 0 40px;
  position: relative;
}

.pricing-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.pricing-separator span {
  position: relative;
  background: var(--white);
  padding: 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.bonus-sub {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  color: var(--rose) !important;
  margin-bottom: 8px !important;
}

/* ===== CLASSES SECTION ===== */
.classes-section {
  padding: 100px 24px;
  background: var(--white);
}

.classes-section .section-title-dark {
  margin-bottom: 60px;
}

.classes-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.class-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.3s;
}

.class-card:hover {
  background: #F7F3F0;
}

.class-card-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.class-card-heb {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 6px;
}

.class-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* FLIP CARDS */
.classes-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 48px;
  margin-top: -24px;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* FRONTAL PRICING */
.pricing-frontal {
  padding: 120px 24px;
  background: #F5F2EF;
  text-align: center;
}

.frontal-pricing-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 56px;
  margin-top: -32px;
}

.class-frontal-mark {
  color: var(--rose) !important;
  font-weight: 500 !important;
}

.flip-card {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: default;
}

.flip-default,
.flip-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.flip-default {
  background: var(--white);
  opacity: 1;
  transform: scale(1);
}

.flip-hover {
  background: var(--black);
  opacity: 0;
  transform: scale(0.97);
}

.flip-card:hover .flip-default,
.flip-card.touch-flipped .flip-default {
  opacity: 0;
  transform: scale(1.03);
}

.flip-card:hover .flip-hover,
.flip-card.touch-flipped .flip-hover {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 56px rgba(0,0,0,0.18);
}

.flip-en {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.flip-hook {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--gray);
}

.flip-en-dark {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.flip-hover p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 18px;
}

.flip-benefits {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.flip-benefits li {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 5px 12px;
}

/* ===== CYCLE-BASED TRAINING ===== */
.cycle-section {
  padding: 60px 24px 100px;
  background: #F8F5F2;
  background-image: url('images/animations.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}

.cycle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 245, 242, 0.88);
  z-index: 0;
}

.cycle-section .container {
  position: relative;
  z-index: 1;
}

.cycle-section .section-title-dark {
  margin-bottom: 16px;
}

.cycle-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 8px;
  line-height: 1.8;
}

.cycle-hint {
  font-size: 14px;
  font-weight: 400;
  color: var(--rose);
  max-width: 520px;
  margin-bottom: 32px;
}

/* --- DIAGRAM --- */
.cycle-diagram {
  position: relative;
  width: 720px;
  height: 720px;
  margin: 0 auto;
}

.cycle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Arrows at diagonal positions (clockwise flow) */
.cycle-arrow {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: rgba(0,0,0,0.13);
  pointer-events: none;
  line-height: 1;
  font-style: normal;
}

/* Center default text */
.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 240px;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cycle-center p {
  font-family: var(--font-serif);
  font-size: 23px;
  font-style: italic;
  font-weight: 300;
  color: rgba(0,0,0,0.45);
  line-height: 1.5;
  direction: ltr;
  margin: 0 0 8px;
}

.cycle-center span {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0,0,0,0.22);
  direction: ltr;
  display: block;
  letter-spacing: 0.04em;
}

/* Center info panels */
.cycle-center-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cycle-info-phase {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  direction: ltr;
}

.cycle-center-info p {
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 14px;
  direction: rtl;
}

.cycle-center-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  direction: ltr;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.cycle-center-info li {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  padding: 5px 0;
  letter-spacing: 0.02em;
}

.cycle-center-info a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none;
  direction: ltr;
  display: inline-block;
}

/* :has() — show info on node hover */
.cycle-diagram:has(.cycle-node--top:hover)    .cycle-center,
.cycle-diagram:has(.cycle-node--right:hover)   .cycle-center,
.cycle-diagram:has(.cycle-node--bottom:hover)  .cycle-center,
.cycle-diagram:has(.cycle-node--left:hover)    .cycle-center  { opacity: 0; }

.cycle-diagram:has(.cycle-node--top:hover)    .cycle-info--1 { opacity: 1; }
.cycle-diagram:has(.cycle-node--right:hover)  .cycle-info--2 { opacity: 1; }
.cycle-diagram:has(.cycle-node--bottom:hover) .cycle-info--3 { opacity: 1; }
.cycle-diagram:has(.cycle-node--left:hover)   .cycle-info--4 { opacity: 1; }

/* --- NODES --- */
.cycle-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
  z-index: 2;
}

/* top: label above, dot below */
.cycle-node--top {
  top: calc(50% - 210px);
  left: 50%;
  flex-direction: column;
  align-items: center;
}

/* right: dot left, label right */
.cycle-node--right {
  top: 50%;
  left: calc(50% + 210px);
  flex-direction: row;
}

/* bottom: dot above, label below */
.cycle-node--bottom {
  top: calc(50% + 210px);
  left: 50%;
  flex-direction: column;
  align-items: center;
}

/* left: label left, dot right */
.cycle-node--left {
  top: 50%;
  left: calc(50% - 210px);
  flex-direction: row-reverse;
}

/* DOT */
.cycle-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.2);
  background: #F8F5F2;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.cycle-node--top:hover    .cycle-dot { background: var(--rose);    border-color: var(--rose);    transform: scale(1.6); }
.cycle-node--right:hover  .cycle-dot { background: #7A9E7E;        border-color: #7A9E7E;        transform: scale(1.6); }
.cycle-node--bottom:hover .cycle-dot { background: #C4944A;        border-color: #C4944A;        transform: scale(1.6); }
.cycle-node--left:hover   .cycle-dot { background: var(--purple);  border-color: var(--purple);  transform: scale(1.6); }

/* NODE LABEL */
.cycle-node-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.cycle-node--right .cycle-node-label,
.cycle-node--left  .cycle-node-label {
  align-items: flex-start;
  text-align: left;
}

.cycle-icon {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
  filter: grayscale(0.15);
}

.cycle-node-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  direction: ltr;
  white-space: nowrap;
  transition: letter-spacing 0.3s, opacity 0.3s;
}

.cycle-node:hover .cycle-node-name { letter-spacing: 0.3em; }

.cycle-node-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--gray);
  direction: ltr;
  white-space: nowrap;
}

/* Focus state: fade all nodes, highlight hovered */
.cycle-diagram:has(.cycle-node:hover) .cycle-node {
  opacity: 0.2;
  transition: opacity 0.35s ease;
}

.cycle-diagram:has(.cycle-node:hover) .cycle-node:hover {
  opacity: 1;
}

/* --- MOBILE LIST --- */
.cycle-mobile-list { display: none; }

.cycle-mobile-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.cycle-mobile-item:last-child { border-bottom: none; }

.cycle-mobile-phase {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  direction: ltr;
}

.cycle-mobile-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 10px;
  direction: ltr;
}

.cycle-mobile-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 12px;
  direction: rtl;
}

.cycle-mobile-classes {
  list-style: none;
  padding: 0;
  margin: 0;
  direction: ltr;
}

.cycle-mobile-classes li {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cycle-mobile-classes li::before {
  content: '·';
  color: var(--rose);
  font-size: 16px;
}

@media (max-width: 768px) {
  .cycle-diagram { display: none; }
  .cycle-mobile-list { display: block; }
}

.cycle-mobile-icon {
  font-size: 16px;
  margin-right: 8px;
  filter: grayscale(0.15);
}

/* ABOUT PUNCH */
.about-punch {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-top: 20px !important;
  line-height: 1.7;
}

.about-punch em {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--rose);
  font-style: italic;
}

/* FOUNDERS STATUS */
.founders-status {
  font-family: var(--font-serif);
  font-size: 20px !important;
  font-style: italic;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 8px !important;
}

@media (max-width: 900px) {
  .classes-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .classes-cards { grid-template-columns: 1fr; }
}

/* ===== PHOTO BREAK ===== */
.photo-break {
  height: 480px;
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.btn-photo-cta {
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: white;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}

.btn-photo-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.photo-break-tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin: 0;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: white;
  text-align: center;
  max-width: 700px;
  padding: 0 40px;
  line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 56px 24px;
  font-size: 13px;
  font-weight: 300;
  line-height: 2.2;
}

.footer a { color: var(--rose); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.footer-logo {
  height: 36px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .price-card-featured { transform: none; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: 280px; }
  .story-sequence { gap: 48px; }
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .classes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 64px; }
  .photo-break { background-attachment: scroll; }
  .founders-block { padding: 40px 24px; }
  .hero-scroll { display: none; }
}

/* Short viewports (resized desktop windows): scroll cue can overlap the hero CTAs */
@media (max-height: 1000px) {
  .hero-scroll { display: none; }
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: 220px; }
  .hero-title { font-size: 52px; }
  .nav { padding: 14px 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .classes-grid { grid-template-columns: 1fr; }
  .flip-card { min-height: 190px; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .founders-price-big { font-size: 56px; }
  .founders-block { padding: 32px 20px; }
  .founders-price-row { gap: 12px; }
  .pricing-frontal { padding: 80px 24px; }
}

/* iOS fix: background-attachment:fixed breaks on mobile Safari */
@media (max-width: 768px) {
  .atmo-break { background-attachment: scroll; }
  .schedule { background-attachment: scroll; }
  .trial { background-attachment: scroll; }
  .cycle-section { background-attachment: scroll; }
}
