/* =========================================================
   לבחור נכון — סיגלית שושן
   Soft cream redesign
   ========================================================= */

@font-face {
  font-family: "Gveret Levin";
  src: url("assets/GveretLevin-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Cream palette */
  --cream:        #FBF6EC;   /* base background */
  --cream-2:      #F4ECDC;   /* tinted sections */
  --cream-3:      #EFE4D0;
  --ivory:        #FFFDF8;   /* cards */
  --sand:         #E7D9BF;
  --line:         #E8DCC4;   /* hairlines */

  /* Ink */
  --ink:          #463E31;   /* headings */
  --ink-soft:     #5A5044;
  --muted:        #8C8170;   /* secondary text */

  /* Accent — soft warm gold / taupe */
  --gold:         #C2A36B;
  --gold-deep:    #A9874E;
  --gold-soft:    #D8C39A;

  /* Elegant display font */
  --font-hand:    "Bellefair", "Frank Ruhl Libre", serif;

  --radius:       22px;
  --radius-sm:    14px;
  --shadow-sm:    0 4px 18px rgba(120, 96, 56, .07);
  --shadow:       0 18px 50px rgba(120, 96, 56, .12);
  --maxw:         1160px;
  --ease:         cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section-tint { background: var(--cream-2); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-family: var(--font-hand);
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.35;
  letter-spacing: 0;
}
.section-title em {
  font-style: normal;
  color: var(--gold-deep);
}
.section-title.center { text-align: center; }

.section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head .eyebrow { justify-content: center; }

.mini-title {
  font-family: "Frank Ruhl Libre", serif;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 600;
  margin: 30px 0 14px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: 16px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad);
  border-radius: 999px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn-sm { --btn-pad: 11px 22px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(169, 135, 78, .28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(169, 135, 78, .36); }

.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--ivory); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.btn-outline {
  background: transparent;
  color: var(--gold-deep);
  border-color: var(--gold-soft);
}
.btn-outline:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(251, 246, 236, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-icon { display: none; }
.nav-label { display: inline; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 48px; height: 48px; object-fit: contain; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: 5px; }
.logo-title { font-family: "Gveret Levin", "Frank Ruhl Libre", serif; font-weight: 400; color: var(--gold); font-size: 1.18rem; }
.logo-sub { font-size: .72rem; letter-spacing: .18em; color: var(--muted); }

.nav { display: flex; gap: 30px; }
.nav a { color: var(--ink-soft); font-weight: 500; font-size: .98rem; position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; bottom: 0; right: 0; left: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--ivory); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(120px, 16vw, 168px) 0 clamp(56px, 8vw, 90px);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, var(--cream-3) 0%, var(--cream) 55%);
}
.hero-glow {
  position: absolute; inset: auto 0 -40% 0; height: 70%;
  background: radial-gradient(60% 100% at 70% 0%, rgba(194,163,107,.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}
.hero-copy { max-width: 600px; }

.hero-title {
  font-family: var(--font-hand);
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  line-height: 1.32;
  letter-spacing: 0;
  margin-bottom: 24px;
  padding-top: .12em;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.3vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero photo */
.hero-media { position: relative; }
.hero-photo {
  border-radius: 28px 28px 120px 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 7px solid var(--ivory);
  background: var(--cream-3);
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-badge {
  position: absolute;
  inset-block-end: -20px;
  inset-inline-start: -16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(169,135,78,.32);
}
.hero-badge-num { display: block; font-family: "Frank Ruhl Libre", serif; font-weight: 700; font-size: 1.6rem; line-height: 1; }
.hero-badge-text { display: block; font-size: .78rem; opacity: .92; margin-top: 4px; }

/* Stats */
.stats {
  margin-top: clamp(56px, 8vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin-inline: auto;
}
.stat {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 18px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  display: block;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--gold-deep);
  line-height: 1;
}
.stat-label { display: block; margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-media { position: relative; }
.portrait {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--ivory);
  background: var(--cream-3);
  aspect-ratio: 4 / 5;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait--wide { aspect-ratio: 1 / 1; border-radius: 28px 120px 28px 28px; }
.portrait--wide img { object-position: center center; }
.portrait-badge {
  position: absolute;
  inset-block-end: -22px;
  inset-inline-start: -18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(169,135,78,.32);
}
.portrait-badge-num { display: block; font-family: "Frank Ruhl Libre", serif; font-weight: 700; font-size: 1.7rem; line-height: 1; }
.portrait-badge-text { display: block; font-size: .8rem; opacity: .9; margin-top: 4px; }

.about-text p { font-family: "Gveret Levin", serif; color: var(--ink-soft); margin-bottom: 18px; max-width: 56ch; }

.creds { list-style: none; display: grid; gap: 12px; }
.creds li {
  position: relative;
  padding-inline-start: 26px;
  color: var(--ink-soft);
}
.creds li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 13px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Services ---------- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-tag {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--gold-deep);
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: "Frank Ruhl Libre", serif;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card > p { color: var(--ink-soft); margin-bottom: 22px; }

.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li {
  position: relative;
  padding-inline-start: 30px;
  color: var(--ink-soft);
}
.ticks li::before {
  content: "✦";
  position: absolute;
  inset-inline-start: 0; top: 0;
  color: var(--gold);
  font-size: .9rem;
}

/* ---------- Tracks ---------- */
.track-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.track-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 38px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.track-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.track-card--featured {
  background: linear-gradient(165deg, #fffaf0 0%, #f6ead2 100%);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow);
}
.track-flag {
  position: absolute;
  top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--gold-deep);
  color: #fff;
  font-size: .76rem;
  letter-spacing: .06em;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(169,135,78,.32);
}
.track-kind { color: var(--gold-deep); font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.track-name {
  font-family: var(--font-hand);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}
.track-desc { color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.track-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.track-meta > div {
  flex: 1;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
}
.track-card--featured .track-meta > div { background: rgba(255,255,255,.6); }
.track-meta dt { font-size: .76rem; color: var(--muted); letter-spacing: .06em; }
.track-meta dd { font-weight: 600; color: var(--ink); margin-top: 4px; }

/* ---------- Quote band ---------- */
.quote-band {
  background: linear-gradient(135deg, var(--ink) 0%, #5a4d3a 100%);
  color: var(--cream);
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
}
.quote-band .quote-mark,
.testimonial .quote-mark {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 5rem;
  line-height: .3;
  color: var(--gold);
  display: block;
  margin-bottom: 26px;
}
.quote-band blockquote {
  font-family: var(--font-hand);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--gold-deep);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}
.why-item h3 {
  font-family: "Frank Ruhl Libre", serif;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-item p { color: var(--ink-soft); }

/* ---------- Speaker ---------- */
.speaker-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}
.speaker-copy .section-title { text-align: start; }
.speaker-copy p { color: var(--ink-soft); margin: 18px 0 28px; max-width: 44ch; }

.speaker-gallery { display: grid; gap: 18px; }
.speaker-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--ivory);
  background: var(--cream-3);
}
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.speaker-photo--lg { aspect-ratio: 16 / 10; }
.speaker-photo--sm { aspect-ratio: 16 / 9; width: 82%; margin-inline-start: auto; margin-top: -56px; position: relative; z-index: 2; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.t-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--ivory);
  background: var(--cream-3);
  aspect-ratio: 4 / 5;
}
.t-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.testimonial {
  margin: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 52px);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 4px; }
.t-name { font-weight: 700; color: var(--ink); font-size: 1.1rem; }
.t-role { color: var(--muted); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: start;
}
.faq-intro { position: sticky; top: 110px; }
.faq-intro p { color: var(--ink-soft); margin: 16px 0 24px; }
.faq-intro .section-title { text-align: start; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--gold-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 400;
  transition: transform .3s var(--ease);
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 26px 24px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}
.contact-text .section-title { text-align: start; }
.contact-lead { color: var(--ink-soft); margin: 18px 0 30px; max-width: 46ch; }

.contact-details { list-style: none; display: grid; gap: 18px; }
.contact-details li {
  display: flex; flex-direction: column; gap: 3px;
  border-inline-start: 3px solid var(--gold-soft);
  padding-inline-start: 16px;
}
.cd-label { font-size: .8rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.cd-value { font-weight: 600; color: var(--ink); font-size: 1.1rem; }
a.cd-value:hover { color: var(--gold-deep); }

.contact-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b3a892; font-weight: 400; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194,163,107,.16);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #d9cfbd; padding-top: clamp(56px, 7vw, 84px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-mark { width: 52px; height: 52px; object-fit: contain; flex: none; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.footer-title { font-family: "Frank Ruhl Libre", serif; color: #fff; font-size: 1.35rem; font-weight: 700; }
.footer-sub { color: var(--gold-soft); font-size: .8rem; letter-spacing: .04em; }
.footer-brand p { color: #b8ad98; max-width: 40ch; }
.footer-phone { display: inline-block; margin-top: 14px; color: var(--gold-soft); font-weight: 600; font-size: 1.05rem; letter-spacing: .02em; }
.footer-phone:hover { color: #fff; }
.footer-h { display: block; color: #fff; font-weight: 600; margin-bottom: 16px; letter-spacing: .04em; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #c7bca7; transition: color .25s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-cta p { color: #b8ad98; margin-bottom: 18px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .85rem;
  color: #a89d88;
}
.footer-tag { letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .header-cta { display: none; }
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 90;
    background: #FBF6EC;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    pointer-events: none;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    font-family: var(--font-hand);
    font-size: 1.45rem;
    letter-spacing: .02em;
    color: var(--ink-soft);
    width: 230px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 13px 0;
    border: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease, color .2s;
  }
  .nav a::before { display: none; }
  .nav a::after { display: none; }
  .nav-icon { display: flex; }
  .nav-icon {
    width: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
  }
  .nav-icon svg { width: 20px; height: 20px; }
  .nav-label { flex: 1; text-align: right; }
  .nav a:hover { color: var(--ink); }
  .nav a:hover .nav-icon { color: var(--gold-deep); }
  .nav a:hover { color: var(--gold-deep); }
  .nav.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav.open a:nth-child(1) { transition-delay: .07s; }
  .nav.open a:nth-child(2) { transition-delay: .12s; }
  .nav.open a:nth-child(3) { transition-delay: .17s; }
  .nav.open a:nth-child(4) { transition-delay: .22s; }
  .nav.open a:nth-child(5) { transition-delay: .27s; }
  .nav.open a:nth-child(6) { transition-delay: .32s; }
  .nav-toggle { display: flex; position: relative; z-index: 110; }

  .hero-grid,
  .about-grid,
  .service-cards,
  .track-cards,
  .why-grid,
  .speaker-grid,
  .testimonial-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-media { order: -1; max-width: 380px; margin-inline: auto; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .speaker-copy .section-title,
  .contact-text .section-title { text-align: start; }
  .t-photo { max-width: 360px; margin-inline: auto; }
  .speaker-photo--sm { width: 90%; }

  .why-grid { gap: 18px; }
  .track-card--featured { order: -1; }
  .faq-intro { position: static; }
  .portrait-badge { inset-inline-start: auto; inset-inline-end: -8px; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; max-width: 320px; }
  .hero-actions .btn { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  inset-block-end: 22px;
  inset-inline-start: 22px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 32px rgba(37,211,102,.55); }
@media (max-width: 560px) { .wa-float { width: 52px; height: 52px; } .wa-float svg { width: 29px; height: 29px; } }

/* ---------- New content blocks ---------- */
.section-lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.intro { text-align: center; }
.intro-inner { max-width: 820px; margin-inline: auto; }
.intro-inner .section-title { margin-bottom: 26px; }
.intro-inner p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.intro-inner p:last-child { margin-bottom: 0; }

.service-sub {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px !important;
}
.service-how-title {
  font-family: var(--font-hand);
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 22px 0 10px;
}
