/* ============================================================
   360 MOMENTS — premium event brand
   Custom luxury visual system · Hebrew RTL · Mobile-first
   ============================================================ */

:root {
  /* surfaces */
  --black:      #060606;
  --black-2:    #0c0c0b;
  --black-3:    #121210;
  --surface:    #0e0e0d;

  /* gold */
  --gold:       #c9a24c;
  --gold-soft:  #e7cd86;
  --gold-deep:  #8f6f2c;
  --gold-ink:   #6f561f;

  /* ink */
  --white:      #f4f1e9;
  --muted:      rgba(244,241,233,0.56);
  --muted-2:    rgba(244,241,233,0.30);

  /* lines & glow */
  --line:       rgba(201,162,76,0.16);
  --line-2:     rgba(201,162,76,0.30);
  --glow:       rgba(201,162,76,0.30);

  /* type */
  --serif-he:   'Frank Ruhl Libre', serif;
  --serif-lat:  'Fraunces', serif;
  --sans:       'Assistant', sans-serif;

  /* type scale (clamp) */
  --fs-display: clamp(2.7rem, 9.5vw, 6rem);
  --fs-h2:      clamp(2.3rem, 7vw, 3.6rem);
  --fs-h3:      clamp(1.2rem, 2.4vw, 1.55rem);
  --fs-lead:    clamp(1.5rem, 5.5vw, 2.5rem);
  --fs-body:    clamp(1rem, 1.15vw, 1.08rem);

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--gold); }
::selection { background: var(--gold); color: var(--black); }

/* brand / numerals — Latin, LTR isolated, refined */
.brand {
  font-family: var(--serif-lat);
  unicode-bidi: isolate;
  letter-spacing: 0.01em;
  font-weight: 500;
}
/* brand-name LTR isolation — keeps "360 Moments" from ever flipping to "Moments 360" */
.ltr {
  direction: ltr;
  unicode-bidi: isolate;
}

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans); /* Hebrew-capable; Fraunces has no Hebrew glyphs */
  font-size: clamp(0.92rem, 3vw, 1.05rem);
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 1.15rem;
  font-weight: 600;
  padding-inline-start: 0.26em; /* compensate tracking on last char */
}

.section-title {
  font-family: var(--serif-he);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.012em;
}
.section-title em {
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.75rem, 6vw, 4.5rem);
}
/* animated brass hairline that draws in beneath the eyebrow */
.section-head .eyebrow { position: relative; }
.section-head .eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  margin: 1rem auto 0;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
  transition: width 1.1s var(--ease) 0.25s;
}
.section-head.is-visible .eyebrow::after { width: 72px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  padding: 1.05rem 2.1rem;
  border-radius: 3px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), filter 0.5s var(--ease), color 0.4s, border-color 0.4s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 52%, var(--gold-deep));
  color: #1a1305;
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.55);
}
.btn--gold:hover {
  box-shadow: 0 16px 40px -14px rgba(0,0,0,0.6);
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn--ghost {
  border-color: var(--line-2);
  color: var(--white);
  background: rgba(255,255,255,0.015);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.btn--lg { padding: 1.2rem 2.7rem; font-size: 0.92rem; }
.btn--block { width: 100%; }
/* pulse removed — restraint over cheap glow (audit issue 2). Class kept as no-op. */
.btn--pulse { position: relative; }

/* ---------- cursor glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,76,0.08), rgba(201,162,76,0.03) 38%, transparent 68%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.18s ease-out;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6,6,6,0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
/* while the menu is open, remove backdrop-filter so .nav doesn't become the
   containing block for the fixed full-screen drawer (would trap it in the header) */
.nav.is-menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav__logo img { height: 48px; width: auto; transition: height 0.5s var(--ease); }
.nav.is-scrolled .nav__logo img { height: 38px; }

.nav__links { display: none; }
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  position: relative;
  transition: color 0.35s;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -7px; right: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.45s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: none;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  color: #1a1305;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: 0.72rem 1.5rem;
  border-radius: 3px;
  transition: all 0.45s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 12px 30px -16px rgba(0,0,0,0.5); }

.nav__burger { display: flex; flex-direction: column; gap: 5px; width: 34px; background: none; border: none; cursor: pointer; padding: 6px 2px; }
.nav__burger span { height: 1.5px; width: 100%; background: var(--white); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__links.is-open {
  display: flex; flex-direction: column; gap: 1.7rem;
  position: fixed; inset: 0;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(10px);
  align-items: center; justify-content: center; z-index: 90;
  overflow-y: auto; overscroll-behavior: contain; /* safe on short screens, no scroll chaining */
}
.nav__links.is-open a { font-size: 1.6rem; font-family: var(--serif-he); font-weight: 400; color: var(--white); }
.nav__links.is-open a::after { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;       /* fallback for browsers without svh */
  min-height: 100svh;      /* safe mobile-friendly full-bleed (excludes dynamic UI bars) */
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.85) contrast(1.08) brightness(0.85);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(125% 95% at 50% 40%, rgba(6,6,6,0.40), rgba(6,6,6,0.82) 62%, rgba(6,6,6,0.97) 100%),
    linear-gradient(to top, var(--black) 2%, transparent 40%);
}
/* faint rotating 360 ring motif behind the headline */
.hero__ring {
  position: absolute; z-index: 1;
  top: 50%; left: 50%;
  width: min(120vw, 760px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201,162,76,0.10);
}
.hero__ring::before {
  content: '';
  position: absolute; inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(201,162,76,0.10);
  /* rotation is driven by scroll (desktop) via --ring-rot; static otherwise */
  transform: rotate(var(--ring-rot, 0deg));
  transition: transform 0.2s linear;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__inner { position: relative; z-index: 3; padding: 0 var(--gutter); max-width: 880px; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--sans); /* Hebrew-capable; matches the section eyebrows (Fraunces has no Hebrew glyphs) */
  font-size: clamp(0.9rem, 2.8vw, 1.05rem);
  letter-spacing: 0.26em;
  font-weight: 600;
  color: var(--gold-soft); margin-bottom: 1.7rem;
  padding-inline-start: 0.26em;
}
.hero__title {
  font-family: var(--serif-he);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-shadow: 0 2px 50px rgba(0,0,0,0.5);
}
.hero__title em {
  font-weight: 900;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 58%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin: 1.7rem auto 2.7rem;
  font-size: clamp(1rem, 3.4vw, 1.22rem);
  color: rgba(244,241,233,0.8);
  max-width: 32ch; font-weight: 300;
}
.hero__actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: center; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px;
  border: 1px solid var(--line-2); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px;
  border-radius: 2px; background: var(--gold);
  animation: scrollDot 1.9s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { padding: clamp(4.5rem, 12vw, 8.5rem) var(--gutter); position: relative; }
.proof, .manifesto, .events, .how, .gallery, .why, .packages, .faq, .social, .cta, .contact { max-width: var(--maxw); margin: 0 auto; }

/* shared section subtitle */
.section-sub { margin: 1.2rem auto 0; max-width: 46ch; color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.12rem); }

/* ---------- TRUST STRIP ---------- */
.proof { padding-top: clamp(3rem, 8vw, 5rem); padding-bottom: clamp(3rem, 8vw, 5rem); }
.proof__row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: clamp(1.2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(1.8rem, 5vw, 2.6rem) 0;
}
.proof__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; min-width: 130px; }
.proof__num {
  font-family: var(--serif-lat);
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 600; line-height: 1;
  color: var(--gold-soft);
}
.proof__num .brand { font-family: var(--serif-lat); }
.proof__label { font-size: 0.95rem; letter-spacing: 0.02em; color: var(--muted); }
.proof__sep { width: 1px; height: 46px; background: var(--line-2); }

/* ---------- MANIFESTO ---------- */
.manifesto { text-align: center; max-width: 780px; }
.manifesto__line {
  font-family: var(--serif-he); font-weight: 400;
  font-size: var(--fs-lead); line-height: 1.32;
}
.manifesto__line em { font-weight: 700; }
.manifesto__text { margin-top: 1.9rem; color: var(--muted); font-size: clamp(1rem, 3.4vw, 1.14rem); max-width: 50ch; margin-inline: auto; }

/* ============================================================
   CARDS — custom, gold hairline, radial glow
   ============================================================ */
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface); /* flat near-black — restraint over glow */
  padding: clamp(1.8rem, 4vw, 2.6rem);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
/* restrained hover: hairline lights up + subtle lift (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .card:hover { border-color: var(--line-2); transform: translateY(-4px); }
}

/* events: 360° circular motif watermark + gold index */
.card--event { min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; }
.card--event::after {
  content: '';
  position: absolute; top: -42px; left: -42px;
  width: 150px; height: 150px; border-radius: 50%;
  border: 1px solid rgba(201,162,76,0.14);
  transition: transform 0.7s var(--ease), border-color 0.5s;
}
.card--event:hover::after { transform: scale(1.12) rotate(18deg); border-color: rgba(201,162,76,0.26); }
.card__num {
  font-family: var(--serif-lat); font-size: 1.05rem; font-weight: 600;
  color: var(--gold-deep); letter-spacing: 0.12em; margin-bottom: 0.7rem; position: relative; z-index: 1;
}
.card--event h3 { font-family: var(--serif-he); font-weight: 500; font-size: var(--fs-h3); margin-bottom: 0.7rem; color: var(--gold-soft); position: relative; z-index: 1; }
.card--event p { color: var(--muted); position: relative; z-index: 1; }

.card--why h3 { font-family: var(--serif-he); font-weight: 500; font-size: var(--fs-h3); margin-bottom: 0.7rem; color: var(--gold-soft); position: relative; z-index: 1; }
.card--why p { color: var(--muted); position: relative; z-index: 1; }

.events__grid, .why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.4rem);
}

/* intentional asymmetry on wide screens for events */
@media (min-width: 900px) {
  .events__grid { grid-template-columns: 1.15fr 0.85fr; grid-auto-rows: 1fr; }
  .card--event:nth-child(1) { grid-row: span 1; }
  .card--event:nth-child(2) { grid-row: span 1; }
  .card--event:nth-child(1) { transform: translateY(0); }
  .events__grid .card--event:nth-child(odd) { margin-top: 0; }
  .events__grid .card--event:nth-child(even) { margin-top: 2.2rem; }
}

/* ---------- HOW ---------- */
.how__steps { display: grid; grid-template-columns: 1fr; gap: 2.6rem; position: relative; }
.how__track { display: none; }
.how__step { text-align: center; position: relative; }
.how__index {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--gold-soft);
  font-family: var(--serif-lat); font-size: 1.7rem; font-weight: 600;
  margin-bottom: 1.3rem;
  background: var(--surface);
  position: relative; z-index: 1;
}
.how__step h3 { font-family: var(--serif-he); font-weight: 500; font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.how__step p { color: var(--muted); }

/* ============================================================
   GALLERY — 3 curated reels
   ============================================================ */
.reels {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 3vw, 1.6rem);
}
.reel { position: relative; }
.reel__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-2); /* flat near-black; poster shows immediately on top */
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,0.9);
  transition: border-color 0.5s var(--ease), transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.reel__frame::after { /* gold inner hairline */
  content: ''; position: absolute; inset: 8px; border-radius: 5px;
  border: 1px solid rgba(201,162,76,0.18);
  pointer-events: none; transition: border-color 0.5s, inset 0.5s var(--ease);
  z-index: 2;
}
.reel:hover .reel__frame { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -40px rgba(0,0,0,0.9); }
.reel:hover .reel__frame::after { border-color: rgba(201,162,76,0.4); inset: 11px; }
.reel video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), opacity 0.6s;
}
.reel:hover video { transform: scale(1.05); }
.reel__play {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(6,6,6,0.42);
  backdrop-filter: blur(4px); cursor: pointer; z-index: 3;
  transition: all 0.45s var(--ease);
}
.reel__play::after {
  content: ''; position: absolute; top: 50%; left: 47%;
  transform: translate(-50%,-50%);
  border-style: solid; border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--gold);
  transition: border-color 0.4s;
}
.reel__play:hover { background: var(--gold); transform: scale(1.08); }
.reel__play:hover::after { border-left-color: #1a1305; }
.reel.is-playing .reel__play { opacity: 0; pointer-events: none; }

/* unmute / sound control — clean custom control (no ugly native UI) */
.reel__sound {
  position: absolute; bottom: 12px; right: 12px; z-index: 4;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(6,6,6,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.reel__sound svg { width: 19px; height: 19px; fill: var(--gold-soft); stroke: var(--gold-soft); }
.reel__sound .reel__wave { fill: none; stroke: var(--gold-soft); stroke-width: 1.6; stroke-linecap: round; opacity: 0; transition: opacity 0.3s; }
.reel__sound::after { /* mute slash, shown by default */
  content: ''; position: absolute; width: 26px; height: 1.6px;
  background: var(--gold-soft); transform: rotate(-45deg); border-radius: 2px;
  transition: opacity 0.3s;
}
.reel__sound:hover { border-color: var(--gold); transform: scale(1.06); }
.reel__sound.is-on { background: var(--gold); border-color: var(--gold); }
.reel__sound.is-on svg { fill: #1a1305; stroke: #1a1305; }
.reel__sound.is-on .reel__wave { stroke: #1a1305; opacity: 1; }
.reel__sound.is-on::after { opacity: 0; }

.reels__hint { text-align: center; margin-top: 1.6rem; font-size: 0.95rem; color: var(--muted); letter-spacing: 0.02em; }
.gallery__cta { text-align: center; margin-top: 1.8rem; }

/* ============================================================
   SOCIAL
   ============================================================ */
.social { text-align: center; }
.social__lead {
  font-family: var(--serif-he); font-weight: 300;
  font-size: clamp(1.2rem, 4vw, 1.7rem); line-height: 1.55;
  color: var(--muted); max-width: 26ch; margin: 0 auto 3rem;
}
.social__links { display: flex; flex-direction: column; gap: 1rem; max-width: 440px; margin: 0 auto; }
.social__link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.5rem; border: 1px solid var(--line);
  border-radius: 8px; background: var(--surface); text-align: right;
  transition: all 0.5s var(--ease);
}
.social__link:hover { border-color: var(--line-2); transform: translateY(-3px); }
.social__icon {
  color: var(--gold);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); border-radius: 50%; flex: none;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.social__icon svg { width: 22px; height: 22px; }
.social__link:hover .social__icon { border-color: var(--gold); color: var(--gold-soft); }
.social__link strong { display: block; font-weight: 600; font-size: 1.05rem; }
.social__link em { font-size: 0.95rem; color: var(--muted); font-style: normal; unicode-bidi: isolate; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { text-align: center; }
.cta__inner {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-2); border-radius: 10px;
  padding: clamp(3.2rem, 10vw, 6rem) var(--gutter);
  background: radial-gradient(90% 130% at 50% -10%, rgba(201,162,76,0.06), transparent 60%), var(--black-2);
}
.cta__ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(90%, 520px); aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(201,162,76,0.14); animation: spin 80s linear infinite; pointer-events: none;
}
.cta__title { font-family: var(--serif-he); font-weight: 500; font-size: clamp(1.9rem, 7vw, 3.3rem); line-height: 1.15; position: relative; z-index: 1; }
.cta__title em { font-weight: 700; }
.cta__title .brand { color: var(--gold-soft); -webkit-text-fill-color: var(--gold-soft); }
.cta__sub { color: var(--muted); margin: 1.3rem 0 2.3rem; position: relative; z-index: 1; }
.cta .btn { position: relative; z-index: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact__text { color: var(--muted); margin: 1.4rem 0 2rem; max-width: 40ch; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.contact__details li { color: var(--muted); font-size: 1.02rem; }
.contact__details a { color: var(--gold-soft); transition: color 0.3s; }
.contact__details a:hover { color: var(--gold); }

.contact__form {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(1.6rem, 4vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); }
.field input, .field select {
  background: var(--black); border: 1px solid var(--line); border-radius: 8px;
  padding: 0.9rem 1rem; color: var(--white); font-family: var(--sans); font-size: 0.98rem;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,76,0.1); }
.field select { appearance: none; cursor: pointer; }
.contact__note { font-size: 0.78rem; color: var(--muted-2); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { text-align: center; padding: clamp(3.5rem, 8vw, 4.5rem) var(--gutter) 3rem; border-top: 1px solid var(--line); background: var(--black-2); }
.footer__logo { height: 84px; width: auto; margin: 0 auto 1.4rem; opacity: 0.95; }
.footer__tag { font-family: var(--serif-he); color: var(--gold-soft); font-size: 1.1rem; margin-bottom: 1.6rem; }
.footer__social { display: flex; gap: 0.8rem; justify-content: center; align-items: center; font-size: 0.85rem; color: var(--muted); }
.footer__social a { color: var(--muted); transition: color 0.3s; }
.footer__social a:hover { color: var(--gold); }
.footer__copy { margin-top: 1.8rem; font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.04em; }
.footer__copy .brand { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 2.5vw, 1.5rem);
  align-items: stretch;
}
.pkg {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line-2);            /* thin matte-gold hairline */
  border-radius: 8px;
  background: rgba(18,18,16,0.58);            /* semi-transparent dark glass (solid-dark fallback if no blur) */
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  backdrop-filter: blur(8px) saturate(1.1);    /* safe: .pkg is not fixed and not a parent of the mobile menu */
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .pkg:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 22px 58px rgba(0,0,0,0.55); }
}
.pkg--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,162,76,0.09), rgba(18,18,16,0.72) 42%);
  box-shadow: 0 18px 52px rgba(0,0,0,0.5);
}
.pkg__badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1305; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  padding: 0.35rem 1.1rem; border-radius: 3px;
}
.pkg__head { margin-bottom: 1rem; }
.pkg__label { display: block; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 0.5rem; }
.pkg__name { font-family: var(--serif-he); font-weight: 600; font-size: clamp(1.45rem, 4vw, 1.8rem); color: var(--white); }
.pkg__name .ltr { font-family: var(--serif-lat); color: var(--gold-soft); }
.pkg__desc { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.4rem; }
.pkg__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; flex: 1; }
.pkg__list li { position: relative; padding-inline-start: 1.6rem; color: rgba(244,241,233,0.82); font-size: 0.96rem; line-height: 1.5; }
.pkg__list li::before {
  content: ''; position: absolute; top: 0.55em; right: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); opacity: 0.85;
}
.pkg .btn { margin-top: auto; }
.packages__note { text-align: center; margin-top: 2.4rem; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   FAQ (native <details> accordion — accessible, keyboard-friendly)
   ============================================================ */
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.4s var(--ease);
}
.faq__item[open] { border-color: var(--line-2); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: var(--serif-he); font-weight: 500;
  font-size: clamp(1.02rem, 2.6vw, 1.15rem); color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; flex: none;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg); transition: transform 0.35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--muted); line-height: 1.7; font-size: 0.98rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 1.3rem; left: 1.3rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #2bd566, #0c9d4f);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  transition: transform 0.45s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); }

/* sticky mobile WhatsApp CTA bar — desktop hidden, mobile shows after hero */
.wa-bar { display: none; }
@media (max-width: 679px) {
  .wa-float { display: none; } /* on mobile the bar replaces the float (no redundancy) */
  .wa-bar {
    display: flex; align-items: center; justify-content: center; gap: 0.55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    padding: 0.95rem 1.1rem;
    padding-bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
    color: #1a1305; font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
    box-shadow: 0 -10px 26px -14px rgba(0,0,0,0.7);
    transform: translateY(110%);
    transition: transform 0.45s var(--ease);
  }
  .wa-bar.is-visible { transform: translateY(0); }
  .wa-bar svg { width: 21px; height: 21px; fill: #1a1305; flex: none; }
}
@media (prefers-reduced-motion: reduce) { .wa-bar { transition: none; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* section reveal — only hidden when JS is active (fail-safe: visible without JS) */
html.js .reveal { opacity: 0; transform: translateY(26px) scale(0.992); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* soft load-in — hero content cascades up on first paint */
html.js .hero__eyebrow,
html.js .hero__title,
html.js .hero__sub,
html.js .hero__actions {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
html.js body.loaded .hero__eyebrow { opacity: 1; transform: none; transition-delay: 0.15s; }
html.js body.loaded .hero__title  { opacity: 1; transform: none; transition-delay: 0.30s; }
html.js body.loaded .hero__sub    { opacity: 1; transform: none; transition-delay: 0.48s; }
html.js body.loaded .hero__actions{ opacity: 1; transform: none; transition-delay: 0.64s; }

/* ---------- mobile-specific refinements (not a shrink) ---------- */
@media (max-width: 679px) {
  .card--event { min-height: auto; }
  .card--event::after { width: 96px; height: 96px; top: -28px; left: -28px; }
  .card { border-radius: 6px; }
  .reel__frame { aspect-ratio: 4 / 5; } /* slightly shorter, fits the thumb scroll */
  .proof__sep { display: none; }
  .proof__row { gap: 1.6rem; }
  .proof__item { min-width: 44%; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .section-head { margin-bottom: 2.4rem; }
  /* lighter, calmer motion on phones (battery + smoothness) */
  .hero__ring::before, .cta__ring { animation: none; }
  .btn--pulse::after { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .hero__eyebrow, html.js .hero__title, html.js .hero__sub, html.js .hero__actions {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .hero__scroll span, .wa-float, .btn--pulse::after, .hero__ring::before, .cta__ring { animation: none; }
  .cursor-glow { display: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE — TABLET / DESKTOP
   ============================================================ */
@media (min-width: 680px) {
  .hero__actions { flex-direction: row; justify-content: center; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .events__grid { grid-template-columns: 1fr 1fr; } /* fill tablets; asymmetric variant takes over at 900px */
  .how__steps { grid-template-columns: repeat(3, 1fr); }
  .how__track { display: block; position: absolute; top: 32px; right: 16%; left: 16%; height: 1px; background: linear-gradient(to left, transparent, var(--line-2), transparent); }
  .social__links { flex-direction: row; justify-content: center; max-width: none; }
  .social__link { flex: 1; max-width: 320px; }
  .reels { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .nav__links { display: flex; gap: 2.4rem; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .contact__intro { position: sticky; top: 120px; }
  .wa-float { width: 62px; height: 62px; bottom: 2rem; left: 2rem; }
  /* premium 3-up service cards; featured one sits forward */
  .pkg__grid { grid-template-columns: 1fr 1.06fr 1fr; gap: 1.2rem; align-items: stretch; }
  .pkg--featured { transform: scale(1.03); }
  .pkg--featured:hover { transform: scale(1.03) translateY(-4px); }
}
