/* שלום ואורי הפקות — dark luxury theme */
:root {
  --bg: #0d0a08;
  --bg-2: #14100d;
  --bg-3: #1c1712;
  --ink: #f5efe6;
  --ink-dim: #b6ab9a;
  --gold: #c9a35c;
  --gold-light: #e8cf9b;
  --gold-deep: #9a7635;
  --line: rgba(201, 163, 92, 0.18);
  --serif: 'Frank Ruhl Libre', Georgia, serif;
  --sans: 'Assistant', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.skip-link {
  position: fixed; top: -60px; inset-inline-start: 1rem; z-index: 200;
  background: var(--gold); color: #1a1206; padding: 0.6rem 1.2rem; border-radius: 0 0 8px 8px;
  font-weight: 600; transition: top 0.25s;
}
.skip-link:focus { top: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
[dir="ltr"] body { letter-spacing: 0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

::selection { background: var(--gold); color: var(--bg); }

/* ---------- preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-logo {
  max-height: 64px; max-width: 70vw; width: auto;
  animation: mark-breathe 1.6s ease-in-out infinite;
}
@keyframes mark-breathe { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- announcement banner ---------- */
.announce-banner {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
  color: #1a1206; text-align: center; font-weight: 500; font-size: 0.9rem;
  padding: 0.55rem 1rem;
}

/* ---------- header ---------- */
#site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 50;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
}
#site-header.scrolled {
  background: rgba(13, 10, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
#site-header.hidden-up { transform: translateY(-100%); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; letter-spacing: 0.02em; }
.brand-name em { font-style: normal; color: var(--gold); font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.95rem; font-weight: 400; color: var(--ink-dim);
  position: relative; transition: color 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; inset-inline-start: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 0.45rem 1.2rem; color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }
.nav-cta::after { display: none; }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.lang-toggle {
  background: none; border: 1px solid var(--line); color: var(--ink-dim);
  border-radius: 999px; padding: 0.35rem 0.85rem; font-family: var(--sans);
  font-size: 0.82rem; letter-spacing: 0.12em; cursor: pointer; transition: all 0.3s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  margin: 5px 0; transition: transform 0.35s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -1px 0;
  background-size: cover; background-position: center 30%;
  opacity: 0; transition: opacity 1.6s ease;
  will-change: transform;
}
.hero-bg.on { opacity: 1; animation: hero-zoom 7s var(--ease); }
@keyframes hero-zoom { from { scale: 1.08; } to { scale: 1; } }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 2%, rgba(13, 10, 8, 0.62) 40%, rgba(13, 10, 8, 0.55) 70%, rgba(13, 10, 8, 0.75)),
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(13, 10, 8, 0.55));
}
#particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 62%, rgba(201, 163, 92, 0.13), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(201, 163, 92, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-kicker {
  color: var(--gold); letter-spacing: 0.35em; font-size: 0.8rem; font-weight: 400;
  text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  line-height: 1.12; margin-bottom: 1.4rem;
  background: linear-gradient(180deg, var(--ink) 55%, var(--gold-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subtitle {
  max-width: 620px; margin-inline: auto; color: var(--ink-dim);
  font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 2.6rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.reveal-hero { opacity: 0; transform: translateY(28px); }
body.loaded .reveal-hero {
  animation: hero-up 1s var(--ease) forwards;
}
body.loaded .reveal-hero:nth-child(1) { animation-delay: 0.15s; }
body.loaded .reveal-hero:nth-child(2) { animation-delay: 0.3s; }
body.loaded .reveal-hero:nth-child(3) { animation-delay: 0.5s; }
body.loaded .reveal-hero:nth-child(4) { animation-delay: 0.7s; }
@keyframes hero-up { to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 8px; z-index: 2;
}
.scroll-cue span {
  width: 3px; height: 8px; border-radius: 3px; background: var(--gold);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 0.85rem 2.2rem; border-radius: 999px;
  font-size: 1rem; font-weight: 500; font-family: var(--sans);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s, color 0.3s;
  cursor: pointer; border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #1a1206;
  box-shadow: 0 6px 24px rgba(201, 163, 92, 0.25);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(201, 163, 92, 0.4); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ---------- sections base ---------- */
section { padding: 6.5rem 0; }
.section-kicker {
  color: var(--gold); letter-spacing: 0.3em; font-size: 0.78rem;
  text-transform: uppercase; margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.2; margin-bottom: 2.8rem;
}

/* scroll reveal */
.reveal, .reveal-item {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in, .reveal-item.in { opacity: 1; transform: none; }

/* section titles: masked line reveal (not a plain fade) */
.section-title { position: relative; }
.section-title .st-mask {
  display: inline-block;
  clip-path: inset(0 0 102% 0);
  transform: translateY(0.35em);
  transition: clip-path 1s var(--ease), transform 1s var(--ease);
}
.section-title.in .st-mask { clip-path: inset(-0.2em 0 -0.25em 0); transform: none; }
.section-title::after {
  content: ''; position: absolute; bottom: -0.35em; inset-inline-start: 0;
  width: 52px; height: 1.5px; background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: 0 0; transition: transform 0.9s var(--ease) 0.35s;
}
.section-title.in::after { transform: scaleX(1); }

/* gallery entrance: soft scale */
.gitem.reveal-item { transform: translateY(26px) scale(0.965); }
.gitem.reveal-item.in { transform: none; }

/* ---------- stats ---------- */
.stats { padding: 4.5rem 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-value {
  font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; color: var(--gold-light); line-height: 1;
}
.stat-label { color: var(--ink-dim); margin-top: 0.5rem; font-size: 0.95rem; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.marquee-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: marquee 30s linear infinite;
}
[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
.marquee-track span {
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink-dim);
  display: flex; align-items: center; gap: 3.5rem; white-space: nowrap;
}
.marquee-track span::after { content: '✦'; color: var(--gold); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center;
}
.about-body { color: var(--ink-dim); font-size: 1.08rem; max-width: 56ch; }
.about-signature {
  margin-top: 2rem; font-family: var(--serif); font-size: 1.3rem; color: var(--gold);
}
.about-frame {
  aspect-ratio: 4 / 5; border: 1px solid var(--line); border-radius: 4px;
  padding: 1.2rem; position: relative;
}
.about-frame::before {
  content: ''; position: absolute; inset: -14px;
  border: 1px solid rgba(201, 163, 92, 0.09); border-radius: 6px;
}
.about-frame-inner {
  height: 100%; border-radius: 2px; overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(201, 163, 92, 0.22), transparent 55%),
    linear-gradient(160deg, var(--bg-3), var(--bg-2));
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 4.5rem; font-weight: 900; color: var(--ink);
}
.about-frame-inner img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 6s var(--ease);
}
.about-frame:hover .about-frame-inner img { transform: scale(1.05); }
.service-ico svg { display: block; }
.about-frame-inner span { color: var(--gold); font-weight: 300; padding-inline: 0.4rem; }

/* ---------- services ---------- */
.services { background: var(--bg-2); border-block: 1px solid var(--line); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem;
}
.service-card {
  border: 1px solid var(--line); border-radius: 6px; padding: 2.2rem 1.8rem;
  background: linear-gradient(170deg, rgba(201, 163, 92, 0.045), transparent 45%);
  transition: transform 0.45s var(--ease), border-color 0.4s, background 0.4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201, 163, 92, 0.45); }
.service-card:hover::before { transform: scaleX(1); }
.service-ico { font-size: 2rem; margin-bottom: 1rem; }
.service-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-desc { color: var(--ink-dim); font-size: 0.97rem; }

/* ---------- gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.gfilter {
  background: none; border: 1px solid var(--line); color: var(--ink-dim);
  border-radius: 999px; padding: 0.6rem 1.3rem; min-height: 44px; font-family: var(--sans);
  font-size: 0.9rem; cursor: pointer; transition: all 0.3s;
}
.gfilter:hover { color: var(--gold); border-color: var(--gold); }
.gfilter.active { background: var(--gold); border-color: var(--gold); color: #1a1206; font-weight: 500; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.1rem;
}
.gitem {
  position: relative; border-radius: 6px; overflow: hidden; cursor: pointer;
  aspect-ratio: 9 / 7; border: 1px solid var(--line);
}
.gitem img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.gitem:hover img { transform: scale(1.07); }
.gitem figcaption {
  position: absolute; inset-inline: 0; bottom: 0; padding: 2.2rem 1.1rem 0.9rem;
  background: linear-gradient(0deg, rgba(10, 8, 6, 0.88), transparent);
  font-size: 0.95rem; opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.gitem:hover figcaption { opacity: 1; transform: none; }
.gitem .gcat { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.15em; display: block; }
.gitem.hide { display: none; }

/* lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(8, 6, 4, 0.94);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: lb-in 0.3s ease;
}
@keyframes lb-in { from { opacity: 0; } }
.lightbox figure { max-width: min(1000px, 86vw); text-align: center; }
.lightbox img { max-height: 78vh; margin-inline: auto; border-radius: 4px; }
.lightbox figcaption { margin-top: 1rem; color: var(--ink-dim); }
.lb-close, .lb-prev, .lb-next {
  background: none; border: 1px solid var(--line); color: var(--ink);
  border-radius: 999px; width: 46px; height: 46px; font-size: 1.5rem;
  cursor: pointer; transition: all 0.3s; flex-shrink: 0;
}
.lb-close { position: absolute; top: 1.4rem; inset-inline-end: 1.4rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- packages ---------- */
.packages { background: var(--bg-2); border-block: 1px solid var(--line); }
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem; align-items: stretch;
}
.pkg {
  border: 1px solid var(--line); border-radius: 8px; padding: 2.4rem 2rem;
  display: flex; flex-direction: column; position: relative;
  background: var(--bg);
  transition: transform 0.45s var(--ease), border-color 0.4s, box-shadow 0.45s;
}
.pkg:hover { transform: translateY(-8px); border-color: rgba(201, 163, 92, 0.5); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45); }
.pkg.featured { border-color: var(--gold); background: linear-gradient(170deg, rgba(201, 163, 92, 0.07), var(--bg) 55%); }
.pkg-tag {
  position: absolute; top: -13px; inset-inline-start: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a1206; font-size: 0.75rem; font-weight: 700;
  border-radius: 999px; padding: 0.25rem 1rem; white-space: nowrap;
}
[dir="rtl"] .pkg-tag { transform: translateX(50%); }
.pkg-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.4rem; }
.pkg-price { color: var(--gold-light); font-family: var(--serif); font-size: 2rem; font-weight: 900; margin-bottom: 1.4rem; }
.pkg ul { list-style: none; flex: 1; margin-bottom: 1.8rem; }
.pkg li {
  padding: 0.5rem 0; color: var(--ink-dim); font-size: 0.95rem;
  border-bottom: 1px dashed rgba(201, 163, 92, 0.12);
  display: flex; gap: 0.6rem; align-items: baseline;
}
.pkg li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; }
.packages-note { margin-top: 1.8rem; color: var(--ink-dim); font-size: 0.85rem; text-align: center; }

/* ---------- testimonials ---------- */
.testimonials { text-align: center; }
.testimonial-stage { position: relative; min-height: 240px; max-width: 760px; margin-inline: auto; }
.tstm {
  position: absolute; inset: 0; opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}
.tstm.active { opacity: 1; transform: none; pointer-events: auto; }
.tstm-stars { color: var(--gold); letter-spacing: 0.3em; margin-bottom: 1.2rem; }
.tstm-text {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.65; font-weight: 400; margin-bottom: 1.6rem;
}
.tstm-name { color: var(--gold-light); font-weight: 500; }
.tstm-event { color: var(--ink-dim); font-size: 0.88rem; }
.testimonial-dots { display: flex; gap: 0.6rem; justify-content: center; margin-top: 2rem; }
.tdot {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold);
  background: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s;
}
.tdot.active { background: var(--gold); transform: scale(1.25); }

/* ---------- contact ---------- */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; }
.contact-blurb { color: var(--ink-dim); margin-bottom: 2rem; }
.contact-details { list-style: none; margin-bottom: 1.8rem; }
.contact-details li { display: flex; gap: 0.8rem; align-items: center; padding: 0.5rem 0; color: var(--ink-dim); }
.contact-details a:hover { color: var(--gold); }
.cd-ico { opacity: 0.85; }
.socials { display: flex; gap: 1.2rem; }
.socials a {
  color: var(--ink-dim); font-size: 0.9rem; letter-spacing: 0.08em;
  border-bottom: 1px solid transparent; transition: all 0.3s;
}
.socials a:hover { color: var(--gold); border-color: var(--gold); }

.lead-form {
  border: 1px solid var(--line); border-radius: 8px; padding: 2.2rem;
  background: var(--bg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { position: relative; margin-bottom: 1.1rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-3); border: 1px solid transparent;
  border-radius: 5px; padding: 1.15rem 0.95rem 0.5rem; color: var(--ink);
  font-family: var(--sans); font-size: 0.98rem; transition: border-color 0.3s, background 0.3s;
  color-scheme: dark;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--bg-2);
}
.field label {
  position: absolute; top: 0.85rem; inset-inline-start: 0.95rem;
  color: var(--ink-dim); font-size: 0.95rem; pointer-events: none;
  transition: all 0.25s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field .select-label {
  top: 0.28rem; font-size: 0.7rem; color: var(--gold);
}
.field select { padding-top: 1.3rem; appearance: none; cursor: pointer; }
.form-status { margin-top: 0.9rem; font-size: 0.92rem; min-height: 1.4em; }
.form-status.ok { color: #8fce9a; }
.form-status.err { color: #e08a8a; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 2rem 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem; color: var(--ink-dim); font-size: 0.88rem;
}
.footer-brand { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-admin { opacity: 0.6; }
.footer-admin:hover { color: var(--gold); opacity: 1; }

/* ---------- whatsapp fab ---------- */
.whatsapp-fab {
  position: fixed; bottom: 1.6rem; inset-inline-start: 1.6rem; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s var(--ease);
  animation: fab-pop 0.6s var(--ease) 1.2s backwards;
}
.whatsapp-fab:hover { transform: scale(1.1); }
@keyframes fab-pop { from { transform: scale(0); } }

/* ---------- mobile ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 340px; margin-inline: auto; }
  section { padding: 4.5rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
}
@media (max-width: 760px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed; top: var(--header-h); inset-inline: 0;
    background: rgba(13, 10, 8, 0.97); backdrop-filter: blur(16px);
    flex-direction: column; padding: 2rem 0 2.5rem; gap: 1.6rem;
    transform: translateY(-130%); transition: transform 0.5s var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 1.6rem 1.3rem; }
  .footer-inner { justify-content: center; text-align: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-item, .reveal-hero { opacity: 1 !important; transform: none !important; }
  #particles { display: none; }
}
