/* ============================================================
   DESIGN SYSTEM — SivaNiassa
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500&family=Frank+Ruhl+Libre:wght@300;400;500&family=Amatic+SC:wght@400;700&display=swap');

:root {
  --bg:          #FAF7F5;
  --bg-alt:      #F3EDEB;
  --rose:        #D4A8A0;
  --rose-light:  #F0E8E6;
  --sage:        #B8C4C2;
  --sage-light:  #E2ECEA;
  --text:        #4A3F3F;
  --text-muted:  #8A7E7E;
  --white:       #FFFFFF;

  --font-body:   'Heebo', sans-serif;
  --font-title:  'Frank Ruhl Libre', serif;
  --font-script: 'Amatic SC', cursive;

  --radius:      16px;
  --radius-md:   12px;
  --radius-lg:   28px;
  --transition:  0.4s ease;
  --shadow:      0 4px 32px rgba(74, 63, 63, 0.08);
}

/* ── Logo ── */
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
  mix-blend-mode: multiply; /* removes white bg from logo on light nav */
}
.nav-logo-img:hover { opacity: 0.8; }

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.9);
  margin-bottom: 4px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

.script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--rose);
  font-weight: 700;
}

p { font-weight: 300; color: var(--text-muted); font-size: 1.05rem; }

/* ── Layout ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 20px; }

.section-intro {
  max-width: 640px;
  margin: 28px auto 64px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}

/* ── Animate on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

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

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose);
}
.btn-outline:hover { background: var(--rose-light); }

.btn-wa {
  background: #25D366;
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 40px;
}
.btn-wa:hover { background: #1ebe5b; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 247, 245, 0.82);
  backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(250, 247, 245, 0.97);
  box-shadow: 0 1px 24px rgba(74,63,63,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }

.nav-cta { display: flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 247, 245, 0.92) 0%,
    rgba(240, 232, 230, 0.70) 45%,
    rgba(184, 196, 194, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 24px;
  margin-right: auto;
  margin-left: 8vw;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  margin-bottom: 28px;
  color: var(--text);
  line-height: 1.2;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* Hero context: outline button needs more contrast on washed bg */
.hero-actions .btn-outline {
  border-color: var(--text);
  color: var(--text);
  font-weight: 500;
}
.hero-actions .btn-outline:hover {
  background: rgba(74,63,63,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   PHILOSOPHY — האני מאמין
   ============================================================ */
#philosophy {
  background: var(--white);
}

/* Beliefs grid (replaces pillars) */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.belief-item {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border-top: 3px solid var(--rose-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.belief-item:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow);
}

.belief-mark {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--rose-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.belief-item h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 16px;
}

.belief-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT — הסיפור שלי
   ============================================================ */
#about {
  background: var(--bg);
}

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

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--rose-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.about-badge .script { font-size: 1.3rem; }
.about-badge p { font-size: 0.85rem; margin-top: 4px; }

.about-text .divider { margin: 24px 0; }
.about-text p { margin-bottom: 16px; }

.about-quote {
  border-right: 3px solid var(--rose);
  padding-right: 20px;
  margin: 32px 0;
}
.about-quote .script {
  font-size: 1.75rem;
  color: var(--text);
  display: block;
  line-height: 1.3;
}

/* ============================================================
   PROCESS — היוגה ככלי
   ============================================================ */
#process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-card {
  border: 1.5px solid var(--rose-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--rose);
}

.process-number {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--rose-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}
.process-card p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }

.process-card-link {
  font-size: 0.85rem;
  color: var(--rose);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 8px;
  transition: color var(--transition);
}
.process-card-link:hover { color: var(--text); }

/* ============================================================
   SERVICES — איך מתרגלים
   ============================================================ */
#services {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(74,63,63,0.12);
}

.service-image {
  height: 240px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.05); }

.service-body { padding: 32px 28px; }
.service-number {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--rose-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.service-body h3 { margin-bottom: 12px; }
.service-body p  { font-size: 0.95rem; margin-bottom: 24px; }

/* ============================================================
   PRICING — מחירים
   ============================================================ */
#pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  border: 1.5px solid var(--rose-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pricing-card-featured {
  background: var(--text);
  border-color: var(--text);
  transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-card-featured h3,
.pricing-card-featured .pricing-price,
.pricing-card-featured .pricing-per,
.pricing-card-featured .pricing-count,
.pricing-card-featured .pricing-label-text { color: var(--white); }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.8); }

.pricing-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.pricing-badge-featured {
  background: var(--rose);
  color: var(--white);
}

.pricing-hero-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.pricing-count {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.pricing-label-text {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-price {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--rose);
  margin: 16px 0 4px;
}
.pricing-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: right;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--rose-light);
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-btn {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.pricing-note a {
  color: var(--rose);
  font-weight: 500;
}

/* ── Free trial CTA (replaces pricing cards) ── */
.free-trial {
  max-width: 620px;
  margin: 0 auto;
  padding: 64px 40px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.free-trial-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.free-trial-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 0;
}

/* ── About read-more expand ── */
.about-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.about-more.open { max-height: 400px; }

.about-read-more-btn {
  background: none;
  border: none;
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin: 8px 0 20px;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.about-read-more-btn:hover { color: var(--text); }

/* ============================================================
   SCHEDULE — לוח שיעורים
   ============================================================ */
#schedule {
  background: var(--white);
}

.schedule-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.gcal-placeholder {
  background: var(--bg);
  border: 2px dashed var(--rose-light);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px;
  text-align: center;
}
.gcal-icon { font-size: 3rem; }
.gcal-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 400;
}
.gcal-sub { font-size: 0.95rem; color: var(--text-muted); }
.gcal-sub a { color: var(--rose); font-weight: 500; }

/* ── Live schedule list ── */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.schedule-week-label {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rose-light);
}

.schedule-events {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-event {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  transition: box-shadow var(--transition);
}
.schedule-event:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.schedule-event-day {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--rose);
  min-width: 80px;
  text-align: center;
}

.schedule-event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.schedule-event-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  direction: ltr;
  display: inline-block;
}

.schedule-event-title {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.schedule-event-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.schedule-book-btn {
  background: var(--rose);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.schedule-book-btn:hover {
  background: var(--rose-dark, #b5726e);
  transform: translateY(-1px);
}

.schedule-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .schedule-event {
    flex-wrap: wrap;
    gap: 10px;
  }
  .schedule-event-day { min-width: auto; }
  .schedule-book-btn { width: 100%; text-align: center; }
}

/* ============================================================
   TESTIMONIALS — המלצות
   ============================================================ */
#testimonials {
  background: var(--bg-alt);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  flex: 0 0 calc(33.33% - 18px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #F5C842;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  font-family: var(--font-title);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-info strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   BLOG — מילים מהמזרן
   ============================================================ */
#blog {
  background: var(--white);
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.blog-card {
  flex: 0 0 calc(33.33% - 20px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-body { padding: 28px 24px; }
.blog-tag {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body p  { font-size: 0.9rem; margin-bottom: 20px; line-height: 1.65; }
.blog-read-more {
  font-size: 0.85rem;
  color: var(--rose);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 10px; }

/* ============================================================
   CONTACT — צרו קשר
   ============================================================ */
#contact {
  background: var(--bg-alt);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner > p { margin-bottom: 40px; font-size: 1.05rem; line-height: 1.8; }

/* Contact Form */
.contact-form {
  text-align: right;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--rose-light);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  direction: rtl;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 168, 160, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.contact-or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.contact-or::before,
.contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rose-light);
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-item span { font-size: 1.3rem; }
.contact-item a { color: var(--rose); transition: opacity var(--transition); }
.contact-item a:hover { opacity: 0.7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 56px 24px 40px;
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  color: var(--rose-light);
  display: block;
  font-size: 1.5rem;
}

.footer-quote {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
  width: 100%;
}
.footer-quote-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--rose-light);
  line-height: 1.5;
  display: block;
  margin-bottom: 12px;
}
.footer-quote-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
}

footer p { font-size: 0.82rem; }
footer a { color: var(--rose); transition: opacity var(--transition); }
footer a:hover { opacity: 0.7; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  .about-grid,
  .process-grid { grid-template-columns: 1fr; gap: 40px; }

  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .about-image-wrap { order: -1; }
  .about-image-wrap img { height: 360px; }
  .about-badge { bottom: -16px; left: 12px; }

  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card-featured { transform: scale(1); }
  .pricing-card-featured:hover { transform: translateY(-6px); }

  .testimonial-card { flex: 0 0 calc(50% - 12px); }

  .blog-card { flex: 0 0 calc(50% - 14px); }

  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   GALLERY — גלריה
   ============================================================ */
#gallery {
  background: var(--bg-alt);
}

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

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-placeholder {
  background: var(--bg);
  border: 2px dashed var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-title);
}

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

/* ============================================================
   BLOG CARD LINKS
   ============================================================ */
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.blog-card-link:hover .blog-read-more {
  color: var(--rose);
}

.blog-card-link:hover .blog-image img {
  transform: scale(1.04);
}

/* ============================================================
   ARTICLE PAGES — blog posts
   ============================================================ */
.article-hero {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  margin-top: 72px; /* nav height */
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}

.article-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.article-breadcrumb {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.article-breadcrumb:hover { color: var(--rose); }

.article-header {
  margin-bottom: 48px;
}

.article-header h1 {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  margin: 16px 0 12px;
}

.article-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.article-body {
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--text);
}

.article-body h2 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin: 48px 0 16px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul {
  margin: 0 24px 20px 0;
  padding: 0;
  list-style: none;
}

.article-body ul li {
  padding: 6px 0 6px 0;
  padding-right: 20px;
  position: relative;
}

.article-body ul li::before {
  content: '—';
  position: absolute;
  right: 0;
  color: var(--rose);
}

.article-body blockquote {
  border-right: 3px solid var(--rose);
  margin: 36px 0;
  padding: 16px 24px;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Author card */
.article-author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 64px 0 48px;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
}

.article-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 6px;
}

.article-author strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.article-author p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* More articles */
.article-more {
  border-top: 1px solid var(--rose-light);
  padding-top: 48px;
}

.article-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.article-more-card {
  display: block;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: box-shadow var(--transition);
}

.article-more-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.article-more-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 10px;
  line-height: 1.4;
}

/* Article CTA section */
.article-cta {
  background: var(--bg-alt);
  padding: 80px 0;
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  section { padding: 64px 0; }

  /* Hero */
  .hero-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0 24px;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Philosophy */
  .beliefs-grid { grid-template-columns: 1fr; }

  /* About */
  .about-badge { left: 12px; bottom: -12px; }

  /* Free trial */
  .free-trial { padding: 40px 20px; }

  /* Section intro */
  .section-intro { margin-bottom: 40px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Blog */
  .blog-card { flex: 0 0 100%; }

  /* Contact */
  .contact-details { flex-direction: column; align-items: center; gap: 20px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Article pages */
  .article-hero { height: 260px; }
  .article-wrap { padding: 40px 20px 60px; }
  .article-more-grid { grid-template-columns: 1fr; }
}

/* ── Mobile menu links ── */
#mobile-menu a {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
#mobile-menu a:hover,
#mobile-menu a:focus { color: var(--rose); }

/* ── Service expand ── */
.service-expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rose);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 4px 0 8px;
  font-family: var(--font-body);
  display: block;
  transition: opacity var(--transition);
}
.service-expand-btn:hover { opacity: 0.7; }

.service-expand-content {
  display: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  padding: 10px 0 4px;
  border-top: 1px solid var(--border);
}
.service-expand-content.open { display: block; }

/* ── Narrow CTA button variant ── */
.btn-narrow { padding: 10px 20px !important; font-size: 0.85rem !important; }

/* ── Blog card as link ── */
a.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
a.blog-card:hover .blog-read-more { color: var(--rose); }
a.blog-card:hover .blog-image img { transform: scale(1.04); }

.blog-read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

/* ── Form consent checkbox ── */
.form-consent {
  margin: 8px 0 20px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--rose);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
