:root {
  --font-geist-sans: "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #070707;
  --panel: #111111;
  --panel-soft: #171717;
  --paper: #f3f1ec;
  --text: #f8f7f3;
  --muted: #9b9993;
  --line: rgba(255, 255, 255, 0.15);
  --red: #ff3027;
  --red-dark: #c91b15;
  --green: #25d366;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button { border: 0; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--red); color: #fff; }

.shell { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 128px 0; scroll-margin-top: 82px; }
.section-dark { background: var(--ink); }
.mono { font-family: var(--font-geist-mono), monospace; }

.pointer-glow {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.11;
  background: radial-gradient(circle, rgba(255,48,39,.8), rgba(255,48,39,.12) 38%, transparent 70%);
  mix-blend-mode: screen;
  will-change: transform;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.2,.7,0,1), transform .75s cubic-bezier(.2,.7,0,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  min-height: 82px;
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,7,.72);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 850; letter-spacing: .09em; }
.brand img { width: 45px; height: 39px; object-fit: contain; }
.brand b { color: var(--red); }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 650; }
.main-nav a { color: #d0cec9; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }
.nav-contact {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 760;
  transition: background .2s ease, color .2s ease;
}
.nav-contact:hover, .nav-contact:focus-visible { background: #fff; color: #000; }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 7px auto; background: #fff; }

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-video, .hero-overlay, .noise { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; filter: saturate(.45) contrast(1.08); }
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 38%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.4), rgba(0,0,0,.16), rgba(0,0,0,.42));
}
.noise {
  opacity: .1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-kicker {
  margin: 0 0 26px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
  animation: hero-rise .75s cubic-bezier(.2,.7,0,1) both;
}
.hero h1 {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(56px, 6.3vw, 98px);
  line-height: .98;
  letter-spacing: -.064em;
  font-weight: 880;
  text-transform: uppercase;
  animation: hero-rise .9s cubic-bezier(.2,.7,0,1) .08s both;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-lede {
  max-width: 800px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.6;
  animation: hero-rise .75s cubic-bezier(.2,.7,0,1) .2s both;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; animation: hero-rise .75s cubic-bezier(.2,.7,0,1) .3s both; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--red { background: var(--red); color: #fff; }
.button--red:hover { background: #fff; color: #000; }
.button--ghost, .button--outline { border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.15); }
.button--light { background: #fff; color: #000; }
.button--light:hover { background: #000; color: #fff; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 9px; transform: translateX(-50%); color: rgba(255,255,255,.58); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 26px; background: linear-gradient(#fff, transparent); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 50% { transform: scaleY(.45); transform-origin: top; } }

.clients { padding: 48px 0 74px; overflow: hidden; background: #0a0a0a; }
.clients-heading { margin-bottom: 34px; display: flex; justify-content: space-between; gap: 24px; color: #aaa8a2; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.clients-heading p { margin: 0; color: #fff; }
.logo-marquee {
  width: 100%;
  padding: 12px 0 18px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  width: max-content;
  display: flex;
  will-change: transform;
}
.logo-track + .logo-track { margin-top: 12px; }
.logo-track--left { animation: logo-marquee-left 34s linear infinite; }
.logo-track--right { animation: logo-marquee-right 38s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-track__group { flex: none; display: flex; gap: 12px; padding-right: 12px; }
@keyframes logo-marquee-left { to { transform: translateX(-50%); } }
@keyframes logo-marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.client-logo {
  position: relative;
  z-index: 1;
  width: 210px;
  min-height: 108px;
  padding: 24px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.018), transparent);
  transform: translateZ(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s ease, border-color .3s ease, box-shadow .35s ease;
}
.client-logo:hover { z-index: 3; border-color: rgba(255,48,39,.65); background: rgba(255,255,255,.07); box-shadow: 0 18px 44px rgba(0,0,0,.48), 0 0 30px rgba(255,48,39,.11); transform: translateY(-8px) scale(1.065); }
.client-logo img { width: 100%; height: 54px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .3s ease, opacity .3s ease, transform .35s cubic-bezier(.2,.8,.2,1); }
.client-logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.08); }
.client-logo--future span { color: #575550; font-size: 11px; font-weight: 780; letter-spacing: .12em; }

.reels { padding: 116px 0 120px; overflow: hidden; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; color: #75736d; font-size: 11px; font-weight: 770; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: var(--red); }
.eyebrow--light { color: rgba(255,255,255,.68); }
.eyebrow--light span { background: #fff; }
.rail-heading { margin-bottom: 50px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.rail-heading h2, .section-heading h2, .events-heading h2, .faq h2, .booking h2, .contact h2 { margin: 0; font-size: clamp(48px, 5.4vw, 78px); line-height: .98; letter-spacing: -.055em; }
.rail-actions { display: flex; gap: 9px; }
.rail-actions button { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; cursor: pointer; font-size: 18px; transition: background .2s ease, color .2s ease; }
.rail-actions button:hover { background: #fff; color: #000; }
.rail-heading--paper { color: #111; }
.rail-actions--dark button { border-color: rgba(0,0,0,.28); color: #111; }
.rail-actions--dark button:hover { background: #111; color: #fff; }
.reel-rail {
  width: 100%;
  padding: 0 max(32px, calc((100vw - 1280px) / 2)) 18px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #222;
}
.reel-card { position: relative; flex: 0 0 248px; aspect-ratio: 9 / 18; overflow: hidden; scroll-snap-align: start; background: #121212; }
.reel-card video { width: 100%; height: 100%; object-fit: cover; }
.reel-placeholder { width: 100%; height: 100%; padding: 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 1px solid rgba(255,255,255,.13); background: radial-gradient(circle at 50% 25%, rgba(255,48,39,.22), transparent 38%), linear-gradient(160deg, #181818, #090909); text-align: center; }
.reel-placeholder::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.08); pointer-events: none; }
.reel-plus { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--red); font-size: 28px; }
.reel-placeholder strong { margin-top: 8px; font-size: 18px; letter-spacing: .05em; }
.reel-placeholder small { color: #6f6d68; font-size: 9px; font-weight: 750; letter-spacing: .13em; }
.reel-caption { position: absolute; inset: auto 0 0; padding: 19px; display: flex; justify-content: space-between; background: linear-gradient(transparent, rgba(0,0,0,.92)); font-size: 11px; font-weight: 730; }
.reel-caption i { color: var(--red); font-style: normal; }

.manifesto { padding: 110px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0c0c; }
.manifesto p { max-width: 1180px; margin: 0; font-size: clamp(32px, 4vw, 61px); line-height: 1.14; letter-spacing: -.045em; font-weight: 560; }
.manifesto em { color: var(--red); font-style: normal; }

.services { overflow: hidden; background: var(--paper); color: #111; }
.section-heading { margin-bottom: 62px; display: grid; grid-template-columns: 1.1fr .65fr; gap: 90px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -8px; }
.section-heading > p:last-child { margin: 0; color: #77736c; font-size: 15px; line-height: 1.7; }
.section-heading--wide { display: block; }
.section-heading--wide .eyebrow { margin-bottom: 24px; }

.service-rail {
  width: 100%;
  padding: 0 max(32px, calc((100vw - 1280px) / 2)) 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #d9d5cd;
}
.service-card {
  position: relative;
  flex: 0 0 330px;
  min-height: 470px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #cbc7bf;
  background: #ebe8e1;
}
.service-card:nth-child(3n + 2) { background: #111; color: #fff; border-color: #111; }
.service-card:nth-child(3n) { background: var(--red); color: #fff; border-color: var(--red); }
.service-card__number { position: relative; z-index: 2; color: var(--red); font-size: 11px; }
.service-card:nth-child(3n) .service-card__number { color: #111; }
.service-card__orb { position: absolute; top: 52px; right: -55px; width: 260px; height: 260px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,48,39,.12); color: rgba(255,48,39,.22); font-size: 120px; font-weight: 850; letter-spacing: -.08em; }
.service-card:nth-child(3n + 2) .service-card__orb { background: rgba(255,255,255,.05); color: rgba(255,255,255,.08); }
.service-card:nth-child(3n) .service-card__orb { background: rgba(0,0,0,.08); color: rgba(0,0,0,.13); }
.service-card__copy { position: relative; z-index: 2; margin-top: auto; }
.service-card__copy small { color: #767169; font-size: 10px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.service-card:nth-child(3n + 2) .service-card__copy small,
.service-card:nth-child(3n) .service-card__copy small { color: rgba(255,255,255,.62); }
.service-card h3 { margin: 13px 0 30px; font-size: 37px; line-height: .98; letter-spacing: -.05em; }
.service-card button { width: 100%; padding: 13px 0; display: flex; justify-content: space-between; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-size: 12px; font-weight: 780; }
.service-card button span { color: var(--red); }
.service-card:nth-child(3n) button span { color: #111; }

.service-modal { position: fixed; z-index: 200; inset: 0; padding: 30px; display: grid; place-items: center; background: rgba(0,0,0,.78); backdrop-filter: blur(12px); }
.service-modal[hidden] { display: none; }
.service-modal__dialog { position: relative; width: min(720px, 100%); max-height: calc(100vh - 60px); overflow-y: auto; padding: 52px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: #111; color: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.service-modal__close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: transparent; cursor: pointer; font-size: 26px; }
.service-modal__dialog > .mono { color: var(--red); font-size: 11px; }
.service-modal h2 { margin: 22px 0; font-size: clamp(42px, 6vw, 70px); line-height: .95; letter-spacing: -.055em; }
.service-modal p { margin: 0; color: #aaa7a0; font-size: 17px; line-height: 1.7; }
.service-modal ul { margin: 30px 0 36px; padding: 0; list-style: none; }
.service-modal li { padding: 13px 0; border-bottom: 1px solid var(--line); color: #d7d4ce; font-size: 13px; }
.service-modal li::before { content: "+"; margin-right: 12px; color: var(--red); }

.work { background: #0a0a0a; }
.work-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; }
.work-card { position: relative; min-height: 620px; overflow: hidden; background: #151515; }
.work-card--main { min-height: 720px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .7s cubic-bezier(.2,.7,0,1), filter .4s ease; }
.work-card:hover img { transform: scale(1.035); filter: saturate(1); }
.work-card > div { position: absolute; inset: auto 0 0; padding: 34px; background: linear-gradient(transparent, rgba(0,0,0,.92)); }
.work-card p { margin: 0 0 8px; color: rgba(255,255,255,.63); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.work-card h3 { margin: 0; font-size: clamp(30px, 3vw, 48px); letter-spacing: -.045em; }
.work-card span { position: absolute; right: 34px; bottom: 38px; color: #fff; font-size: 11px; }

.events { background: var(--red); color: #fff; }
.events-heading { max-width: 1120px; margin-bottom: 72px; }
.events-heading h2 { font-size: clamp(54px, 6.8vw, 100px); }
.events-heading h2 em { color: #111; font-style: normal; }
.events-heading > p:last-child { max-width: 720px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.32); border-left: 1px solid rgba(255,255,255,.32); }
.event-card { min-height: 580px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.32); border-bottom: 1px solid rgba(255,255,255,.32); }
.event-card > .mono { color: #111; font-size: 11px; }
.event-card h3 { margin: 74px 0 22px; font-size: 36px; line-height: 1; letter-spacing: -.045em; }
.event-card > p { min-height: 92px; margin: 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.65; }
.event-card ul { margin: 28px 0 36px; padding: 0; list-style: none; }
.event-card li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.22); font-size: 12px; }
.event-card li::before { content: "+"; margin-right: 10px; color: #111; }
.event-card button { margin-top: auto; padding: 0 0 9px; display: flex; justify-content: space-between; border-bottom: 1px solid #fff; background: transparent; cursor: pointer; text-align: left; font-size: 12px; font-weight: 780; }
.event-card button span { color: #111; }
.jewish-note { margin-top: 34px; padding: 34px; display: grid; grid-template-columns: .42fr 1.25fr; gap: 60px; border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.08); }
.jewish-note span { color: #111; font-size: 10px; font-weight: 820; letter-spacing: .14em; }
.jewish-note p { margin: 0; max-width: 800px; font-size: 18px; line-height: 1.55; }

.value { background: var(--paper); color: #111; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c5c1ba; border-left: 1px solid #c5c1ba; }
.value-grid article { min-height: 360px; padding: 34px; border-right: 1px solid #c5c1ba; border-bottom: 1px solid #c5c1ba; }
.value-grid span { color: var(--red); font-family: var(--font-geist-mono), monospace; font-size: 11px; }
.value-grid h3 { margin: 135px 0 18px; font-size: 28px; letter-spacing: -.04em; }
.value-grid p { margin: 0; color: #6c6861; font-size: 14px; line-height: 1.7; }

.testimonials { overflow: hidden; background: #090909; }
.testimonial-disclaimer { max-width: 690px; margin: 22px 0 0; color: #77746e; font-size: 12px; line-height: 1.65; }
.testimonial-rail {
  width: 100%;
  padding: 0 max(32px, calc((100vw - 1280px) / 2)) 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #222;
}
.testimonial-card { flex: 0 0 410px; min-height: 410px; padding: 32px; display: flex; flex-direction: column; scroll-snap-align: start; border: 1px solid var(--line); background: #111; }
.testimonial-card > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.testimonial-card > div span { color: var(--red); font-size: 11px; }
.testimonial-card > div small { padding: 7px 10px; border: 1px solid rgba(255,48,39,.45); border-radius: 999px; color: #b8716c; font-size: 8px; font-weight: 780; letter-spacing: .1em; }
.testimonial-card blockquote { margin: 72px 0 35px; color: #e7e4de; font-size: 23px; line-height: 1.42; letter-spacing: -.025em; }
.testimonial-card > p { margin: auto 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: #77746f; font-size: 10px; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }

.faq { background: #111; }
.faq-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 100px; }
.faq-grid > div:first-child > p:last-child { max-width: 360px; color: #76746e; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 27px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #555; border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -5px 0 28px; color: #8b8983; font-size: 14px; line-height: 1.75; }

.booking { padding: 108px 0; background: var(--red); }
.booking-grid { display: grid; grid-template-columns: 1.25fr .65fr; gap: 110px; align-items: end; }
.booking-grid > div:last-child > p { margin: 0 0 28px; color: rgba(255,255,255,.78); line-height: 1.7; }
.booking small { display: block; margin-top: 15px; color: rgba(255,255,255,.6); font-size: 9px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }

.contact { background: #080808; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.05fr; gap: 100px; }
.contact-copy { position: sticky; top: 120px; align-self: start; }
.contact-copy > p { color: #85837d; line-height: 1.7; }
.direct-lines { margin-top: 44px; border-top: 1px solid var(--line); }
.direct-lines a { padding: 18px 0; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.direct-lines a > span { color: #74726c; font-size: 9px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.direct-lines a strong { font-size: 13px; }
.direct-lines a i { color: var(--red); font-style: normal; }
.quote-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: #111; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { margin-bottom: 18px; display: block; color: #8c8983; font-size: 9px; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; margin-top: 9px; padding: 15px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0; background: transparent; color: #fff; font-size: 14px; font-weight: 480; letter-spacing: 0; text-transform: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--red); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #55534f; }
.quote-form select { color-scheme: dark; }
.quote-form textarea { resize: vertical; }
.quote-form .consent { margin: 4px 0 24px; display: flex; gap: 10px; color: #6d6a65; line-height: 1.5; letter-spacing: 0; text-transform: none; }
.quote-form .consent input { width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--red); }
.form-submit { width: 100%; }

.site-footer { border-top: 1px solid var(--line); background: #050505; }
.footer-main { padding: 72px 0 62px; display: grid; grid-template-columns: 1.25fr .58fr .86fr .65fr; gap: 70px; }
.footer-brand p { max-width: 340px; margin: 25px 0 0; color: #77756f; font-size: 14px; line-height: 1.6; }
.footer-label { margin: 0 0 20px; color: #66645f; font-size: 9px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.footer-main > div:not(:first-child) > a { margin: 11px 0; display: block; color: #bbb8b2; font-size: 13px; }
.footer-main .button { margin-top: 3px; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #5d5b56; font-size: 9px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }

.whatsapp-widget { position: fixed; z-index: 100; right: 24px; bottom: 24px; display: flex; flex-direction: column; align-items: end; gap: 12px; }
.whatsapp-widget > button { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--green); cursor: pointer; box-shadow: 0 16px 40px rgba(0,0,0,.35); font-size: 12px; font-weight: 900; }
.whatsapp-panel { width: min(330px, calc(100vw - 48px)); padding: 9px; border: 1px solid var(--line); border-radius: 18px; background: rgba(15,15,15,.97); box-shadow: 0 24px 60px rgba(0,0,0,.44); opacity: 0; transform: translateY(10px) scale(.96); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.whatsapp-widget--open .whatsapp-panel { opacity: 1; transform: none; pointer-events: auto; }
.whatsapp-panel > p { margin: 0; padding: 14px 13px; display: flex; flex-direction: column; }
.whatsapp-panel > p strong { font-size: 14px; }
.whatsapp-panel > p span, .whatsapp-panel small { margin-top: 4px; color: #77756f; font-size: 10px; }
.whatsapp-panel > a { padding: 12px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; border-top: 1px solid var(--line); }
.wa-avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(37,211,102,.16); color: var(--green); font-size: 9px; font-weight: 900; }
.whatsapp-panel > a > span:nth-child(2) { display: flex; flex-direction: column; }
.whatsapp-panel a i { color: #77756f; font-style: normal; }

@media (max-width: 1050px) {
  .event-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 0; }
  .event-card h3 { margin-top: 52px; }
  .event-card > p { min-height: 0; }
  .footer-main { grid-template-columns: 1.2fr .6fr 1fr; }
  .footer-main > div:last-child { grid-column: 3; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 40px, 720px); }
  .site-header { min-height: 72px; padding-inline: 20px; }
  .brand img { width: 40px; height: 35px; }
  .main-nav { position: absolute; inset: 72px 0 auto; padding: 25px 20px 30px; display: flex; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); background: rgba(5,5,5,.98); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
  .main-nav--open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-contact { margin-top: 20px; }
  .menu-toggle { display: block; }
  .hero { min-height: 760px; }
  .hero h1 { font-size: clamp(50px, 11.7vw, 78px); }
  .section { padding: 92px 0; }
  .reels { padding: 90px 0; }
  .reel-rail, .service-rail, .testimonial-rail { padding-left: 20px; }
  .section-heading, .faq-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card--main { min-height: 600px; }
  .jewish-note { grid-template-columns: 1fr; gap: 22px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 280px; }
  .value-grid h3 { margin-top: 90px; }
  .contact-copy { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-main > div:last-child { grid-column: auto; }
  .pointer-glow { display: none; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 32px, 540px); }
  .brand span { font-size: 12px; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 90px; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 62px); }
  .hero-lede { margin-top: 24px; font-size: 15px; }
  .hero-actions { margin-top: 28px; }
  .button { min-height: 50px; padding-inline: 20px; gap: 18px; }
  .scroll-cue { display: none; }
  .clients { padding-top: 38px; }
  .clients-heading { align-items: flex-start; }
  .clients-heading span { display: none; }
  .logo-marquee { mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
  .logo-track + .logo-track { margin-top: 9px; }
  .logo-track__group { gap: 9px; padding-right: 9px; }
  .client-logo { width: 156px; min-height: 84px; padding: 15px 14px; }
  .client-logo img { height: 38px; }
  .rail-heading { align-items: flex-start; }
  .rail-heading h2, .section-heading h2, .faq h2, .booking h2, .contact h2 { font-size: 42px; }
  .rail-actions { display: none; }
  .reel-card { flex-basis: 214px; }
  .manifesto { padding: 78px 0; }
  .manifesto p { font-size: 31px; }
  .section-heading { margin-bottom: 43px; }
  .service-card { flex-basis: 275px; min-height: 420px; }
  .service-card h3 { font-size: 32px; }
  .service-modal { padding: 14px; }
  .service-modal__dialog { max-height: calc(100vh - 28px); padding: 42px 26px 30px; border-radius: 20px; }
  .service-modal__close { top: 13px; right: 13px; }
  .testimonial-card { flex-basis: 300px; min-height: 390px; padding: 26px; }
  .testimonial-card blockquote { margin-top: 54px; font-size: 20px; }
  .work-card, .work-card--main { min-height: 490px; }
  .work-card > div { padding: 24px; }
  .work-card span { position: static; display: block; margin-top: 10px; }
  .events-heading h2 { font-size: 50px; }
  .event-card { padding: 28px; }
  .event-card h3 { font-size: 34px; }
  .jewish-note { padding: 25px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 27px 22px; }
  .direct-lines a { grid-template-columns: 1fr auto; }
  .direct-lines a strong { grid-column: 1; grid-row: 2; }
  .direct-lines a i { grid-column: 2; grid-row: 1 / 3; }
  .footer-main { gap: 42px 24px; }
  .footer-main > div:last-child { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; gap: 9px; }
  .whatsapp-widget { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .logo-marquee { overflow-x: auto; mask-image: none; }
  .logo-track { animation: none !important; transform: none !important; }
  .logo-track [aria-hidden="true"] { display: none; }
}
