/* ──────────────────────────────────────────────
   יוגה שאלה — Yoga Shala welcome page styles
   RTL · sage-first · calm & minimal
   ────────────────────────────────────────────── */

:root {
  /* Default = SAGE (pulled from the logo background) */
  --cream:      #ebe9df;
  --cream-deep: #dadbcb;
  --ivory:      #faf8f0;
  --ink:        #2a2c25;
  --ink-soft:   #555a4f;
  --mute:       #8c9285;
  --accent:     #7d8d6f;       /* sage-deep */
  --accent-deep:#5d6c50;
  --warm:       #b88663;       /* warm complement (terracotta-sand) */
  --line:       rgba(42, 44, 37, 0.14);
  --hairline:   rgba(42, 44, 37, 0.08);

  --font-display: "Frank Ruhl Libre", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Heebo", "Assistant", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --max:    1240px;
  --pad:    clamp(20px, 4vw, 56px);
  --radius: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* — Typography — */
.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight, 400);
  line-height: var(--display-line, 1.05);
  letter-spacing: var(--display-tracking, -0.005em);
}
.display em {
  /* In Hebrew, italics look bad (synthetic slant). Use color + weight contrast instead. */
  font-style: normal;
  font-weight: var(--display-em-weight, 500);
  color: var(--accent-deep);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ink-soft);
}

.lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 52ch;
  text-wrap: pretty;
}

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { background: var(--accent-deep); }

.btn-accent { background: var(--accent-deep); color: var(--ivory); }
.btn-accent:hover { background: var(--ink); }

.btn-warm { background: var(--warm); color: var(--ivory); }
.btn-warm:hover { filter: brightness(0.92); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }

.btn-lg { padding: 18px 32px; font-size: 16px; }

.btn-arrow::after {
  content: "←";   /* RTL forward arrow */
  display: inline-block;
  transition: transform .2s ease;
  font-weight: 400;
}
.btn-arrow:hover::after { transform: translateX(-3px); }

/* — Layout — */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 { margin: 8px 0 0; font-size: clamp(36px, 5vw, 64px); }
.section-head .lede { margin: 0; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

/* — Nav — */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  background: color-mix(in oklab, var(--cream), transparent 22%);
  border-bottom: 1px solid var(--hairline);
  transition: background .25s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  transition: height .35s cubic-bezier(.4, 0, .2, 1);
}
.nav.compact .nav-inner { height: 72px; }
@media (max-width: 880px) {
  .nav-inner { height: 88px; }
  .nav.compact .nav-inner { height: 64px; }
}

/* Logo mark — small house mark next to wordmark */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  display: inline-block;
  width: 220px;
  height: 96px;
  background-color: var(--ink);
  -webkit-mask: url("assets/yoga-shala-logo-full.png") center / contain no-repeat;
          mask: url("assets/yoga-shala-logo-full.png") center / contain no-repeat;
  transition: width .35s cubic-bezier(.4, 0, .2, 1),
              height .35s cubic-bezier(.4, 0, .2, 1),
              mask-image .25s ease;
}
.nav.compact .brand-logo {
  width: 156px;
  height: 56px;
  -webkit-mask-image: url("assets/yoga-shala-logo.png");
          mask-image: url("assets/yoga-shala-logo.png");
}
@media (max-width: 880px) {
  .brand-logo { width: 168px; height: 72px; }
  .nav.compact .brand-logo { width: 128px; height: 48px; }
}
.brand-mark {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: var(--ink);
  -webkit-mask: var(--mark-svg) center / contain no-repeat;
          mask: var(--mark-svg) center / contain no-repeat;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 14px; color: var(--ink-soft); }
.nav-cta .login:hover { color: var(--ink); }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .login { display: none; }
}

/* — Hero — */
.hero {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(48px, 7.5vw, 104px);
  margin: 0;
  font-weight: 400;
}
.hero .eyebrow { margin-bottom: 28px; display: inline-flex; align-items: center; gap: 10px; }
.hero .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-deep);
  display: inline-block;
}
.hero .lede { margin: 28px 0 36px; font-size: 19px; max-width: 46ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-ctas .helper {
  font-size: 13px; color: var(--mute); letter-spacing: 0.02em; margin-inline-start: 4px;
}
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-art image-slot { width: 100%; height: 100%; }
.hero-art .badge {
  position: absolute;
  inset-inline-start: -18px;
  bottom: 40px;
  background: var(--ink);
  color: var(--ivory);
  padding: 16px 22px 18px;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.01em;
  z-index: 2;
  line-height: 1;
}
.hero-art .badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 6px;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 560px; aspect-ratio: 4 / 4; }
}

/* Hero — full-bleed */
.hero-full {
  position: relative;
  min-height: 86vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-full .bg { position: absolute; inset: 0; }
.hero-full .bg image-slot,
.hero-full .bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-full .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,44,37,0) 30%, rgba(42,44,37,0.72) 100%);
  pointer-events: none;
}
.hero-full .scrim-video {
  background:
    linear-gradient(180deg, rgba(42,44,37,0.25) 0%, rgba(42,44,37,0) 35%,
    rgba(42,44,37,0.55) 65%, rgba(42,44,37,0.88) 100%);
}
.hero-full .inner {
  position: relative;
  width: 100%;
  padding: 0 var(--pad) clamp(56px, 7vw, 88px);
  max-width: var(--max);
  margin: 0 auto;
  color: var(--ivory);
}
.hero-full h1 { color: var(--ivory); font-size: clamp(56px, 10vw, 132px); margin-top: 18px; }
.hero-full .display em { color: var(--ivory); opacity: 0.85; }
.hero-full .lede { color: rgba(250, 248, 240, 0.88); }
.hero-full .eyebrow { color: rgba(250, 248, 240, 0.9); }
.hero-full .btn-ghost { color: var(--ivory); border-color: rgba(250, 248, 240, 0.6); }
.hero-full .btn-ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.hero-full .helper { color: rgba(250, 248, 240, 0.7) !important; }

/* Hero — minimal centered */
.hero-min {
  padding: clamp(96px, 14vw, 200px) 0 clamp(56px, 7vw, 88px);
  text-align: center;
}
.hero-min .lede { margin-inline: auto; }
.hero-min h1 { font-size: clamp(52px, 9vw, 132px); margin: 24px 0; }
.hero-min .hero-ctas { justify-content: center; }

/* — Marquee — */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--ivory);
  direction: ltr; /* keep visual flow predictable */
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-soft);
  font-weight: 400;
}
.marquee-track .sep {
  font-size: 8px;
  color: var(--accent-deep);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 760px) {
  .marquee-track { animation-duration: 15s; }
}

/* — Offer strip — */
.offer-strip {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(32px, 4vw, 52px) 0;
}
.offer-strip .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.offer-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.offer-strip h3 .price {
  color: var(--warm);
  font-style: italic;
  margin: 0 4px;
}
.offer-strip .meta {
  font-size: 14px;
  color: rgba(250, 248, 240, 0.7);
  margin-top: 8px;
  max-width: 56ch;
}
.offer-strip .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  background: rgba(250, 248, 240, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.offer-strip .pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--warm);
}

/* — Classes — */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 760px) { .classes-grid { grid-template-columns: 1fr; } }

.class-card {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.class-card .art {
  aspect-ratio: 5 / 4;
  position: relative;
  overflow: hidden;
}
.class-card .art image-slot { width: 100%; height: 100%; }
.class-card .label {
  position: absolute; top: 14px; inset-inline-end: 14px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.class-card .body {
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.class-card h3 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 400;
}
.class-card p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.class-card .types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.class-card .types span {
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}
.class-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.class-card .more::after { content: "←"; transition: transform .2s; }
.class-card:hover .more::after { transform: translateX(-4px); }

/* — How it works — */
.how { background: var(--cream-deep); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}
.step .num {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--accent-deep);
  margin-bottom: 14px;
  display: block;
  letter-spacing: 0.18em;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.1;
}
.step p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* — Quiz (Find your class) — */
.quiz {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .quiz { grid-template-columns: 1fr; } }

.quiz-aside h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  margin: 8px 0 16px;
  line-height: 1.05;
}
.quiz-aside p { color: var(--ink-soft); font-size: 15.5px; margin: 0; max-width: 38ch; }
.quiz-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.quiz-stepper .bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.quiz-stepper .bar i {
  position: absolute;
  inset-block: 0; inset-inline-start: 0;
  background: var(--accent-deep);
  transition: width .35s ease;
}

.quiz-main { min-height: 320px; display: flex; flex-direction: column; }
.quiz-q {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin: 0 0 28px;
  line-height: 1.2;
}
.quiz-options { display: grid; gap: 12px; }
.quiz-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  text-align: start;
  transition: background .2s, border-color .2s, transform .15s;
}
.quiz-opt:hover { background: var(--cream-deep); border-color: var(--line); transform: translateY(-1px); }
.quiz-opt.selected { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.quiz-opt .desc { font-size: 13px; color: var(--ink-soft); font-weight: 400; margin-top: 2px; display: block; }
.quiz-opt.selected .desc { color: rgba(250,248,240,0.65); }
.quiz-opt .pick {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-deep);
}
.quiz-opt.selected .pick { color: var(--warm); }

.quiz-nav {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.quiz-back {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-size: 14px;
  padding: 8px 4px;
}
.quiz-back:hover { color: var(--ink); }
.quiz-back:disabled { opacity: 0.3; cursor: not-allowed; }

/* Quiz result */
.quiz-result h4 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.1;
}
.quiz-result .lede { font-size: 15.5px; margin: 0 0 28px; max-width: 56ch; }
.quiz-rec-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.quiz-rec-list li {
  padding: 18px 22px;
  background: var(--cream);
  border-inline-start: 3px solid var(--accent-deep);
  display: grid;
  gap: 6px;
}
.quiz-rec-list .name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}
.quiz-rec-list .why { font-size: 14px; color: var(--ink-soft); }
.quiz-disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: normal;
  margin: 0 0 24px;
  padding-inline-start: 16px;
  border-inline-start: 1px solid var(--accent-deep);
}

/* — Schedule — */
#schedule .iframe-wrap {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 12px;
  margin-top: 24px;
}
#schedule .iframe-wrap iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  background: var(--ivory);
}
.sched-foot {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
}

/* — Gallery — */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.gallery image-slot { width: 100%; height: 100%; display: block; }
.g-1 { grid-column: span 2; grid-row: span 3; }
.g-2 { grid-column: span 2; grid-row: span 2; }
.g-3 { grid-column: span 2; grid-row: span 2; }
.g-4 { grid-column: span 2; grid-row: span 2; }
.g-5 { grid-column: span 2; grid-row: span 3; }
.g-6 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 { grid-column: span 1; grid-row: span 1; }
}

/* — Teachers — */
.teachers { background: var(--cream-deep); }
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 880px) { .teachers-grid { grid-template-columns: repeat(2, 1fr); } }

.teacher {
  display: flex;
  flex-direction: column;
}
.teacher .portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.teacher .portrait image-slot,
.teacher .portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.teacher h5 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 18px 0 4px;
  font-weight: 400;
}
.teacher .role {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* Featured founders (Shir & Alona) */
.teacher-featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .teacher-featured { grid-template-columns: 1fr; } }

.teacher-featured .portrait {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.teacher-featured .portrait image-slot,
.teacher-featured .portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.founders-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.founder-card {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.founder-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.founder-card figcaption {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 14px;
  background: var(--ivory);
  color: var(--ink);
  padding: 5px 11px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 2px;
}
.founder-card:nth-child(2) {
  margin-top: 32px;
}
@media (max-width: 560px) {
  .founder-card:nth-child(2) { margin-top: 0; }
}

.teacher-featured h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  margin: 8px 0 16px;
  line-height: 1.05;
}
.teacher-featured h3 em { font-style: normal; font-weight: 500; color: var(--accent-deep); }
.teacher-featured p { color: var(--ink-soft); font-size: 16px; margin: 0 0 14px; }
.teacher-featured .sig {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-deep);
}

/* — Pricing — */
.price-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 38px 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.price-card .tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--ink-soft);
}
.price-card.featured .tag { color: var(--warm); }
.price-card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  margin: 14px 0 8px;
  line-height: 1.05;
}
.price-card .sub {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 24px;
  max-width: 32ch;
}
.price-card.featured .sub { color: rgba(250,248,240,0.72); }
.price-card .price {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  margin: 8px 0 6px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-card .price .unit {
  font-size: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 400;
}
.price-card.featured .price .unit { color: rgba(250,248,240,0.6); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex; flex-direction: column; gap: 11px;
}
.price-card li {
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
}
.price-card.featured li { color: rgba(250,248,240,0.88); }
.price-card li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent-deep);
  border-radius: 50%;
  margin-top: 9px;
  flex: none;
}
.price-card.featured li::before { background: var(--warm); }
.price-card .price-cta { margin-top: auto; }
.price-card .badge-fav {
  position: absolute;
  top: -12px; inset-inline-end: 32px;
  background: var(--warm);
  color: var(--ivory);
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  border-radius: 999px;
}

/* — Testimonials — */
.testi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 760px) { .testi-wrap { grid-template-columns: 1fr; } }

.testi {
  padding: 36px 34px 32px;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testi .quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 72px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 4px;
  height: 24px;
}
.testi blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: pretty;
  font-weight: 400;
}
.testi .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testi .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: grid; place-items: center;
  font-family: var(--font-display);
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 500;
}
.testi .who .name { font-weight: 500; font-size: 14.5px; }
.testi .who .role { font-size: 13px; color: var(--mute); }

.review-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
}
.review-strip .item { display: flex; align-items: center; gap: 8px; }
.review-strip .stars { color: var(--warm); letter-spacing: 1.5px; }
.review-strip .rating { font-weight: 700; color: var(--ink); }
.review-strip .sep { width: 1px; height: 20px; background: var(--line); }

/* — FAQ — */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
}
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: default;
  user-select: none;
}
.faq-q h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  display: grid; place-items: center;
  font-size: 16px;
  flex: none;
  transition: background .2s, color .2s, transform .2s;
}
.faq-item.open .faq-toggle { background: var(--ink); color: var(--ivory); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin-top .35s ease;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 480px;
  margin-top: 16px;
}

/* — Final CTA — */
.final-cta {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(80px, 12vw, 160px) 0;
}
.final-cta .grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 880px) { .final-cta .grid { grid-template-columns: 1fr; } }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  margin: 16px 0 0;
  letter-spacing: -0.015em;
}
.final-cta h2 em { color: var(--warm); font-style: normal; font-weight: 500; }
.final-cta .lede { color: rgba(250, 248, 240, 0.78); margin: 28px 0 36px; font-size: 18px; }
.final-cta .cta-meta {
  font-size: 13px;
  color: rgba(250, 248, 240, 0.55);
  margin-top: 18px;
}
.final-cta .info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 14.5px;
  color: rgba(250, 248, 240, 0.8);
}
.final-cta .info .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(250, 248, 240, 0.5);
  margin-bottom: 6px;
  font-weight: 500;
}
.final-cta .info p { margin: 0; }
.final-cta .info strong { color: var(--ivory); font-weight: 500; }
.final-cta .eyebrow { color: rgba(250,248,240,0.65); }

/* — Footer — */
.foot {
  background: var(--ink);
  color: rgba(250, 248, 240, 0.6);
  padding: 28px 0 36px;
  border-top: 1px solid rgba(250, 248, 240, 0.08);
  font-size: 13px;
}
.foot .row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot .row a { color: rgba(250, 248, 240, 0.6); }
.foot .row a:hover { color: var(--ivory); }
.foot-links { display: flex; gap: 24px; }

/* — Schedule hint (mobile only) — */
.schedule-hint {
  display: none;
  font-size: 12px;
  color: var(--mute);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  margin-top: 4px;
}
@media (max-width: 760px) {
  .schedule-hint { display: block; }
}

/* — Phone call button — */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(250,248,240,0.35);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.btn-call:hover {
  background: rgba(250,248,240,0.1);
  border-color: rgba(250,248,240,0.6);
}

/* — image-slot polish — */
image-slot {
  --is-empty-bg: linear-gradient(135deg, var(--cream-deep) 0%, color-mix(in oklab, var(--cream-deep), var(--ink) 8%) 100%);
  --is-empty-fg: rgba(42, 44, 37, 0.5);
  --is-empty-border: rgba(42, 44, 37, 0.12);
}

/* — Section-headings utilities — */
h2.display em { font-style: normal; font-weight: 500; }

.hidden { display: none !important; }

/* Tweaks panel — make it RTL-safe */
.twk-panel { direction: rtl; right: auto; left: 16px; }
.twk-panel .twk-hd { padding-inline-start: 8px; padding-inline-end: 14px; }
