/* ============================================================
   משה — אתר תדמית | מערכת עיצוב כהה-יוקרתית
   Dark / Champagne-Gold premium theme · RTL · Fully responsive
   ============================================================ */

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --bg:          #0a0a0c;
  --bg-soft:     #101013;
  --surface:     #151518;
  --surface-2:   #1c1c21;
  --surface-3:   #26262d;
  --line:        rgba(212,178,110,0.16);
  --line-strong: rgba(212,178,110,0.34);
  --line-soft:   rgba(255,255,255,0.07);
  --gold:        #c9a24b;
  --gold-bright: #e7c98a;
  --gold-deep:   #9c7a30;
  --gold-glow:   rgba(201,162,75,0.30);
  --text:        #f3f0e8;
  --text-soft:   #b4b1a8;
  --text-dim:    #807d75;
  --white:       #ffffff;
  --wa:          #25d366;
  --wa-dark:     #1da851;
  --maxw:        1240px;
  --radius:      18px;
  --radius-sm:   12px;
  --ease:        cubic-bezier(.22,.68,.18,1);
  --shadow:      0 30px 70px -30px rgba(0,0,0,0.85);
  --header-h:    78px;
  --font-display:'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-body:   'Heebo', 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  opacity: 0;
  transition: opacity .6s ease;
}
body.loaded { opacity: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold); color: #1a1407; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-deep), var(--gold));
  border-radius: 99px;
  border: 3px solid var(--bg);
}

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}
.section { padding-block: clamp(68px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  color: var(--white);
  letter-spacing: -.01em;
}
.section-title .gold { color: var(--gold); }
.section-lead {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--text-soft);
  max-width: 62ch;
}
.head-center { text-align: center; }
.head-center .section-lead { margin-inline: auto; }

.signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .3s ease;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: #1a1407;
  box-shadow: 0 16px 36px -14px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px var(--gold-glow); }
.btn-ghost {
  border: 1.5px solid var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-wa {
  background: linear-gradient(135deg, #2ee06f, var(--wa) 60%, var(--wa-dark));
  color: #04210f;
  box-shadow: 0 16px 36px -14px rgba(37,211,102,0.4);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px rgba(37,211,102,0.5); }
.btn--lg { padding: 19px 44px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height .4s ease;
}
.site-header.scrolled .nav { height: 66px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.42rem;
  color: var(--white);
  letter-spacing: .02em;
}
.brand-tag {
  font-size: .62rem;
  letter-spacing: .26em;
  color: var(--gold);
  font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .98rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 9px 16px;
  border-radius: 99px;
  transition: color .25s ease, background .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; font-size: .95rem; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  inset-inline: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s ease;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 880;
  background: linear-gradient(180deg, #0c0c0f, #050506);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 96px 32px 48px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-soft);
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: color .25s ease, padding .3s ease;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); padding-inline-start: 14px; }
.mobile-menu .btn { margin-top: 26px; border-bottom: none; }
.mobile-menu .mm-contact {
  margin-top: 28px;
  color: var(--text-dim);
  font-size: .9rem;
}
.mobile-menu .mm-contact a { font-family: var(--font-body); font-size: .95rem; border: none; padding: 0; color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video,
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 66% 30%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,10,0.62) 0%, rgba(8,8,10,0.42) 40%, rgba(8,8,10,0.92) 100%),
    linear-gradient(270deg, rgba(8,8,10,0.25), rgba(8,8,10,0.78));
}
.hero-inner { position: relative; z-index: 2; padding-block: 150px 110px; max-width: 920px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 5.3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.015em;
}
.hero h1 .gold {
  color: transparent;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
}
.hero-quote {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
}
.hero-quote::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--gold);
}
.hero-lead {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--text-soft);
  max-width: 60ch;
}
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute;
  inset-block-end: 30px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: .72rem;
  letter-spacing: .2em;
}
.hero-scroll .mouse {
  width: 26px; height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 16px;
  position: relative;
}
.hero-scroll .mouse::after {
  content: "";
  position: absolute;
  inset-block-start: 7px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.7s var(--ease) infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translate(50%,0);} 40%{opacity:1;} 80%{opacity:0;transform:translate(50%,12px);} 100%{opacity:0;} }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  padding-block: calc(var(--header-h) + 92px) 92px;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 15%; }
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.78), rgba(8,8,10,0.93));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
}
.page-hero p {
  margin: 18px auto 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: clamp(1.02rem,1.5vw,1.18rem);
}
.crumb {
  display: flex; justify-content: center; gap: 10px;
  font-size: .85rem; color: var(--text-dim);
  margin-top: 26px;
}
.crumb a:hover { color: var(--gold); }
.crumb span { color: var(--gold); }

.bg-soft { background: var(--bg-soft); }
.bg-surface { background: var(--surface); }
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}
.split--reverse { direction: ltr; }
.split--reverse > * { direction: rtl; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--surface-2), var(--bg));
  box-shadow: var(--shadow);
}
.split-media .ph { position: absolute; inset: 0; background-size: cover; background-position: center 14%; }
.split-media .ph::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,0.65)); }
.split-media .frame {
  position: absolute; inset: 14px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}
.split-badge {
  position: absolute;
  inset-block-end: 22px; inset-inline-start: 22px;
  background: rgba(10,10,12,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 16px 22px;
  z-index: 2;
}
.split-badge b { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); display: block; }
.split-badge span { font-size: .82rem; color: var(--text-soft); }

.lead-list { margin-top: 28px; display: grid; gap: 16px; }
.lead-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--text-soft);
}
.lead-list li svg { width: 24px; height: 24px; flex: none; color: var(--gold); margin-top: 3px; }
.lead-list li b { color: var(--text); font-weight: 600; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.pillar {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.pillar:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.pillar-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,75,0.22), rgba(201,162,75,0.05));
  border: 1px solid var(--line-strong);
  margin-bottom: 22px;
}
.pillar-icon svg { width: 30px; height: 30px; color: var(--gold); }
.pillar h3 { font-size: 1.32rem; color: var(--white); margin-bottom: 10px; }
.pillar p { font-size: .98rem; color: var(--text-soft); }
.pillar .num {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ---------- Media band ---------- */
.media-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 560px;
}
.media-band-bg { position: absolute; inset: 0; z-index: 0; }
.media-band-bg video,
.media-band-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 14%; }
.media-band-bg.parallax { inset: -16% 0; height: auto; background-size: cover; background-position: center 14%; will-change: transform; }
.media-band::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(270deg, rgba(8,8,10,0.94) 8%, rgba(8,8,10,0.6) 55%, rgba(8,8,10,0.86));
}
.media-band .container { position: relative; z-index: 2; }
.media-band-quote {
  max-width: 760px;
}
.media-band-quote .mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .6;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.media-band-quote h2 {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  color: var(--white);
  font-weight: 700;
}
.media-band-quote .by {
  margin-top: 22px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
}
.media-band-quote .by small { display: block; color: var(--text-dim); font-weight: 400; letter-spacing: .12em; font-size: .78rem; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.stat {
  padding: 44px 22px;
  text-align: center;
  border-inline-start: 1px solid var(--line);
}
.stat:first-child { border-inline-start: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.6vw, 3.7rem);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  line-height: 1;
}
.stat .label { margin-top: 10px; color: var(--text-soft); font-size: .96rem; }

/* ---------- Programs ---------- */
.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.program {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
  overflow: hidden;
}
.program::before {
  content: "";
  position: absolute;
  inset-block-start: 0; inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}
.program:hover { transform: translateY(-10px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.program:hover::before { opacity: 1; }
.program.featured { border-color: var(--line-strong); }
.program.featured::before { opacity: 1; }
.program-tag {
  position: absolute;
  inset-block-start: 18px; inset-inline-end: 18px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #1a1407;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  padding: 6px 13px;
  border-radius: 99px;
}
.program-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,75,0.22), rgba(201,162,75,0.04));
  border: 1px solid var(--line-strong);
  margin-bottom: 22px;
}
.program-icon svg { width: 32px; height: 32px; color: var(--gold); }
.program h3 { font-size: 1.46rem; color: var(--white); margin-bottom: 6px; }
.program .kicker { color: var(--gold); font-size: .86rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 14px; }
.program p { color: var(--text-soft); font-size: .98rem; }
.program-features { margin: 20px 0 26px; display: grid; gap: 11px; }
.program-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .94rem; color: var(--text-soft);
}
.program-features li svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: 4px; }
.program .btn { margin-top: auto; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 52px;
}
.tcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.tcard:hover { transform: translateY(-7px); border-color: var(--line-strong); background: var(--surface-2); }
.tcard .tnum {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.tcard h3 { font-size: 1.24rem; color: var(--white); margin-bottom: 10px; }
.tcard p { font-size: .96rem; color: var(--text-soft); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px;
  margin-top: 48px;
}
.feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.feature svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.feature h4 { font-size: 1.08rem; color: var(--white); margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.feature p { font-size: .9rem; color: var(--text-soft); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.testi {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.testi .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold); }
.testi .stars svg { width: 17px; height: 17px; }
.testi p { color: var(--text); font-size: 1.02rem; flex: 1; }
.testi .who {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 13px;
}
.testi .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep));
  color: #1a1407;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  flex: none;
}
.testi .who b { color: var(--white); font-weight: 700; display: block; font-size: 1rem; }
.testi .who span { color: var(--text-dim); font-size: .84rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 52px auto 0; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item.open { border-color: var(--line-strong); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  text-align: right;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
}
.faq-q .ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  flex: none;
  transition: transform .35s var(--ease), background .3s ease;
  position: relative;
}
.faq-q .ico::before,
.faq-q .ico::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}
.faq-q .ico::before { width: 12px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 12px; transition: transform .35s var(--ease); }
.faq-item.open .faq-q .ico { background: rgba(201,162,75,0.12); }
.faq-item.open .faq-q .ico::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--text-soft); font-size: 1rem; }

/* ---------- Events ---------- */
.events { display: grid; gap: 16px; margin-top: 52px; }
.event {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .35s ease, transform .35s var(--ease);
}
.event:hover { border-color: var(--line-strong); transform: translateX(-6px); }
.event-date {
  text-align: center;
  border-inline-end: 1px solid var(--line);
  padding-inline-end: 22px;
}
.event-date .d { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.event-date .m { font-size: .82rem; letter-spacing: .14em; color: var(--text-soft); text-transform: uppercase; }
.event-info h3 { font-size: 1.24rem; color: var(--white); margin-bottom: 5px; }
.event-info .meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--text-dim); font-size: .9rem; }
.event-info .meta span { display: flex; align-items: center; gap: 6px; }
.event-info .meta svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 15%; }
.cta-band-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.9), rgba(8,8,10,0.96));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  color: var(--white);
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band p { margin: 20px auto 36px; color: var(--text-soft); max-width: 54ch; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 50px;
}
.gitem {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(150deg, var(--surface-2), var(--bg));
  aspect-ratio: 4 / 3;
  border: none;
  padding: 0;
}
.gitem.tall { aspect-ratio: 3 / 4; }
.gitem.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.gitem .ph { position: absolute; inset: 0; background-size: cover; background-position: center 12%; transition: transform .8s var(--ease); }
.gitem::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,0.85));
  opacity: .55;
  transition: opacity .4s ease;
}
.gitem:hover .ph { transform: scale(1.07); }
.gitem:hover::after { opacity: .8; }
.gitem .cap {
  position: absolute;
  inset-block-end: 0; inset-inline: 0;
  z-index: 2;
  padding: 18px 20px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s ease;
  text-align: right;
}
.gitem:hover .cap { transform: translateY(0); opacity: 1; }
.gitem .cap b { color: var(--white); font-family: var(--font-display); font-size: 1.1rem; }
.gitem .cap span { display: block; color: var(--gold); font-size: .8rem; letter-spacing: .08em; }
.gitem .zoom {
  position: absolute;
  inset-block-start: 14px; inset-inline-end: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10,10,12,0.7);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .35s ease;
}
.gitem .zoom svg { width: 17px; height: 17px; color: var(--gold); }
.gitem:hover .zoom { opacity: 1; }
.gitem.video-tile .play {
  position: absolute;
  inset: 0; z-index: 2;
  display: grid; place-items: center;
}
.gitem.video-tile .play span {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,162,75,0.92);
  display: grid; place-items: center;
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: pulse 2.4s infinite;
}
.gitem.video-tile .play svg { width: 26px; height: 26px; color: #1a1407; margin-inline-start: 3px; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(201,162,75,.5);} 70%{box-shadow:0 0 0 20px rgba(201,162,75,0);} 100%{box-shadow:0 0 0 0 rgba(201,162,75,0);} }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,5,7,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  max-width: 1000px;
  width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-strong);
}
.lightbox-stage.is-video { aspect-ratio: 16 / 9; background: #000; }
.lightbox-stage video { width: 100%; height: 100%; object-fit: contain; background: #000; }
.lb-btn {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(20,20,24,0.85);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.lb-btn:hover { background: var(--gold); }
.lb-btn:hover svg { color: #1a1407; }
.lb-btn svg { width: 22px; height: 22px; color: var(--gold); }
.lb-close { inset-block-start: 22px; inset-inline-end: 22px; }
.lb-prev { inset-inline-end: 22px; inset-block-start: 50%; transform: translateY(-50%); }
.lb-next { inset-inline-start: 22px; inset-block-start: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  inset-block-end: 24px; inset-inline-start: 50%;
  transform: translateX(50%);
  color: var(--text-dim);
  font-size: .9rem;
  letter-spacing: .1em;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.form-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 9px;
}
.field label .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.13);
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a24b' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  background-size: 14px;
  padding-inline-start: 42px;
}
.field select option { background: #15151a; color: var(--text); }
.field.error input,
.field.error select,
.field.error textarea { border-color: #d9534f; }
.field .err-msg { display: none; color: #e8908d; font-size: .82rem; margin-top: 6px; }
.field.error .err-msg { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(37,211,102,0.10);
  border: 1px solid rgba(37,211,102,0.42);
  border-radius: 11px;
  color: #6ee79b;
  font-size: .92rem;
}
.form-success svg { width: 20px; height: 20px; flex: none; }

.form-note {
  margin-top: 16px;
  font-size: .86rem;
  color: var(--text-dim);
  display: flex; gap: 8px; align-items: flex-start;
}
.form-note svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }

.contact-aside { display: grid; gap: 16px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.contact-card .ico {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,75,0.2), rgba(201,162,75,0.04));
  border: 1px solid var(--line-strong);
  margin-bottom: 16px;
}
.contact-card .ico svg { width: 25px; height: 25px; color: var(--gold); }
.contact-card h3 { font-size: 1.18rem; color: var(--white); margin-bottom: 6px; }
.contact-card p { color: var(--text-soft); font-size: .95rem; }
.contact-card a.line { color: var(--gold); font-weight: 600; font-size: 1.05rem; }
.contact-steps { counter-reset: step; display: grid; gap: 16px; margin-top: 8px; }
.contact-steps li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--text-soft); font-size: .96rem;
}
.contact-steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep));
  color: #1a1407;
  font-weight: 800;
  display: grid; place-items: center;
  font-size: .9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding-block: 64px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--text-soft); max-width: 38ch; font-size: .96rem; }
.footer-quote {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: var(--text-soft); font-size: .96rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col .line-link { display: flex; align-items: center; gap: 9px; }
.footer-col .line-link svg { width: 17px; height: 17px; color: var(--gold); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: .85rem;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-meta .sep { color: var(--text-dim); }
.footer-meta a { transition: color .2s ease; }
.footer-meta .credit b { color: var(--gold); font-weight: 700; }

/* ---------- Legal / privacy ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal .updated {
  color: var(--gold);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  margin: 40px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--text-soft); margin-bottom: 14px; }
.legal a { color: var(--gold); }
.legal ul.bullets { margin: 4px 0 16px; display: grid; gap: 9px; }
.legal ul.bullets li {
  color: var(--text-soft);
  padding-inline-start: 22px;
  position: relative;
}
.legal ul.bullets li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 11px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.legal ul.bullets li b { color: var(--text); font-weight: 600; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 0;
}
.wa-float-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(150deg, #2ee06f, var(--wa-dark));
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,0.55);
  position: relative;
  transition: transform .3s var(--ease);
}
.wa-float-btn:hover { transform: scale(1.07); }
.wa-float-btn svg { width: 34px; height: 34px; color: #fff; }
.wa-float-btn::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--wa);
  z-index: -1;
  animation: waPulse 2.6s infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.6;} 70%{transform:scale(1.6);opacity:0;} 100%{opacity:0;} }
.wa-bubble {
  position: absolute;
  inset-block-end: 78px;
  inset-inline-end: 0;
  background: #fff;
  color: #16331f;
  border-radius: 14px 14px 2px 14px;
  padding: 13px 16px;
  width: 232px;
  font-size: .9rem;
  line-height: 1.5;
  box-shadow: var(--shadow);
  transform: translateY(10px) scale(.92);
  transform-origin: bottom left;
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s ease;
}
.wa-bubble b { display: block; color: #0c1f13; }
.wa-bubble .close-bub {
  position: absolute;
  inset-block-start: 6px; inset-inline-start: 8px;
  color: #9aa39d;
  font-size: 1rem;
  line-height: 1;
}
.wa-float.show-bubble .wa-bubble { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-zoom { opacity: 0; transform: scale(.94); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d,0s); }
.reveal-zoom.in-view { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .nav-cta .btn, .nav-toggle { display: none; }
  .nav { flex-wrap: wrap; height: auto; min-height: var(--header-h); padding-block: 9px; gap: 6px 14px; justify-content: center; }
  .site-header.scrolled .nav { height: auto; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1.22rem; }
  .nav-links { display: flex; flex-wrap: wrap; flex-basis: 100%; gap: 2px; justify-content: center; }
  .nav-links a { padding: 6px 6px; font-size: clamp(.68rem, 2.3vw, .92rem); }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: rtl; }
  .split-media { aspect-ratio: 16 / 11; max-width: 560px; margin-inline: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-inline-start: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .media-band { min-height: 480px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { padding-inline: 20px; }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-inline-start: none; border-bottom: 1px solid var(--line); padding-block: 34px; }
  .stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-inner { padding-block: 128px 120px; }
  .event { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .event-date { border-inline-end: none; border-bottom: 1px solid var(--line); padding-inline-end: 0; padding-bottom: 14px; display: flex; gap: 10px; justify-content: center; align-items: baseline; }
  .event-info .meta { justify-content: center; }
  .event .btn { width: 100%; }
  .event:hover { transform: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gitem.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .gitem.tall { aspect-ratio: 4 / 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .lb-prev { inset-inline-end: 14px; }
  .lb-next { inset-inline-start: 14px; }
  .lb-btn { width: 46px; height: 46px; }
  .wa-bubble { width: 210px; }
  .media-band-quote .mark { font-size: 3.6rem; }
  .btn { padding: 15px 28px; }
  .gitem .cap { transform: translateY(0); opacity: 1; }
  .split-media { aspect-ratio: 5 / 4; }
  .split-badge { inset-block-end: 12px; inset-inline-start: 12px; padding: 9px 13px; border-radius: 11px; }
  .split-badge b { font-size: 1.2rem; }
  .split-badge span { font-size: .68rem; }
}

@media (max-width: 420px) {
  .brand-name { font-size: 1.1rem; }
  .brand-tag { font-size: .58rem; letter-spacing: .2em; }
  .nav-links a { padding: 5px 6px; }
  .hero-quote { font-size: .95rem; }
  .wa-float { inset-block-end: 18px; inset-inline-end: 18px; }
  .wa-float-btn { width: 58px; height: 58px; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-zoom { opacity: 1; transform: none; }
}
