/* אור הפקות — כרטיס ביקור דיגיטלי
   הקונספט: התקליט שבלוגו מסתובב, והחריצים שלו מתפשטים לכל האתר.
   צבעים מתוך הלוגו: שחור ויניל, כרום, וכחול התווית. */

:root {
  --bg-0: #06121F;
  --bg-1: #0A2342;
  --ink: #F3F7FB;
  --ink-2: #B4C4D4;
  --muted: #8196AA;
  --blue: #0071B8;
  --blue-2: #1E9BE8;
  --sky: #6CC4F5;
  --gold: #F5B82E;
  --line: rgba(170, 195, 220, .15);
  --line-2: rgba(170, 195, 220, .28);
  --chrome: linear-gradient(180deg, #F5F7F9 0%, #9AA4AC 36%, #4F5A62 52%, #CFD6DC 72%, #6A757D 100%);
  --label: linear-gradient(135deg, #2AA6F0 0%, #0071B8 55%, #005A93 100%);
  --record-x: 29.43%;
  --record-y: 41.65%;
  --col: 1150px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: "Assistant", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

[hidden] { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── ambient: light pools + faint record grooves behind the whole page ── */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, #071729 0%, var(--bg-0) 45%, #061526 100%);
}
.ambient span { position: absolute; border-radius: 50%; }
.ambient span:nth-child(1) {
  width: 90vmax; height: 90vmax; top: -35vmax; right: -40vmax;
  background: radial-gradient(closest-side, rgba(0, 113, 184, .26), transparent);
  animation: drift-a 34s ease-in-out infinite alternate;
}
.ambient span:nth-child(2) {
  width: 80vmax; height: 80vmax; bottom: -35vmax; left: -35vmax;
  background: radial-gradient(closest-side, rgba(30, 155, 232, .17), transparent);
  animation: drift-b 42s ease-in-out infinite alternate;
}
.ambient span:nth-child(3) {
  width: 160vmax; height: 160vmax; left: 50%; top: 70%; margin: -80vmax 0 0 -80vmax;
  background: repeating-radial-gradient(circle, rgba(150, 200, 240, .055) 0 1px, transparent 1.5px 16px);
  -webkit-mask-image: radial-gradient(closest-side, transparent 25%, #000 48%, transparent 100%);
  mask-image: radial-gradient(closest-side, transparent 25%, #000 48%, transparent 100%);
}
@keyframes drift-a { to { transform: translate(-12vmax, 18vmax); } }
@keyframes drift-b { to { transform: translate(14vmax, -16vmax); } }

.page { max-width: var(--col); margin: 0 auto; }

/* ── stage ─────────────────────────────────────────── */

.hero { position: relative; --stage-h: 440px; --eq-h: 84px; }

.stage {
  position: relative;
  width: 100vw;
  height: var(--stage-h);
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  background:
    radial-gradient(55% 50% at 50% 42%, rgba(30, 155, 232, .22), transparent 72%),
    radial-gradient(125% 95% at 50% 38%, #0F3059 0%, var(--bg-1) 36%, #071A31 64%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
}

.beam {
  position: absolute;
  z-index: 1;
  top: -12%;
  width: 52%;
  height: 118%;
  transform-origin: 50% 0;
  background: linear-gradient(180deg, rgba(130, 200, 255, .30) 0%, rgba(130, 200, 255, .07) 55%, transparent 85%);
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  mix-blend-mode: screen;
  opacity: .55;
}
.beam--a { left: -6%; animation: sway-a 11s ease-in-out infinite alternate; }
.beam--b { right: -6%; animation: sway-b 14s ease-in-out infinite alternate; }
@keyframes sway-a { from { transform: rotate(-32deg); } to { transform: rotate(-12deg); } }
@keyframes sway-b { from { transform: rotate(32deg); } to { transform: rotate(12deg); } }

.dust { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.dust i {
  position: absolute;
  bottom: -8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(180, 225, 255, .85);
  box-shadow: 0 0 6px rgba(120, 200, 255, .9);
  opacity: 0;
  animation: rise var(--t, 12s) linear var(--d, 0s) infinite;
}
.dust i:nth-child(1)  { left: 7%;  --t: 13s; --d: -2s; }
.dust i:nth-child(2)  { left: 16%; --t: 10s; --d: -7s; width: 2px; height: 2px; }
.dust i:nth-child(3)  { left: 27%; --t: 15s; --d: -4s; }
.dust i:nth-child(4)  { left: 36%; --t: 11s; --d: -9s; width: 2px; height: 2px; }
.dust i:nth-child(5)  { left: 47%; --t: 14s; --d: -1s; width: 4px; height: 4px; }
.dust i:nth-child(6)  { left: 56%; --t: 12s; --d: -6s; }
.dust i:nth-child(7)  { left: 65%; --t: 16s; --d: -11s; width: 2px; height: 2px; }
.dust i:nth-child(8)  { left: 74%; --t: 10s; --d: -3s; }
.dust i:nth-child(9)  { left: 85%; --t: 13s; --d: -8s; width: 4px; height: 4px; }
.dust i:nth-child(10) { left: 93%; --t: 15s; --d: -5s; width: 2px; height: 2px; }
@keyframes rise {
  0%   { transform: translateY(0);      opacity: 0; }
  15%  { opacity: .75; }
  80%  { opacity: .45; }
  100% { transform: translateY(-460px); opacity: 0; }
}

/* the logo: rim + spinning record + R, with the record's grooves rippling out */
.logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 45%;
  width: min(84%, 330px);
  aspect-ratio: 1054 / 745;
  transform: translate(-50%, -50%);
}
.logo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.logo-rim, .logo-top { filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .45)); }
.logo-disc { transform-origin: var(--record-x) var(--record-y); animation: spin 12s linear infinite; }

.ripples {
  position: absolute;
  left: var(--record-x);
  top: var(--record-y);
  width: 340%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(closest-side, transparent 16%, #000 21%, rgba(0, 0, 0, .5) 55%, transparent 100%);
  mask-image: radial-gradient(closest-side, transparent 16%, #000 21%, rgba(0, 0, 0, .5) 55%, transparent 100%);
}
.ripples svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ripples circle { vector-effect: non-scaling-stroke; }
.ripples-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0deg 20deg, rgba(140, 205, 255, .24) 42deg, transparent 66deg 196deg,
    rgba(140, 205, 255, .17) 222deg, transparent 248deg 360deg);
  animation: spin 12s linear infinite;
}

.logo-glow {
  position: absolute;
  left: var(--record-x);
  top: var(--record-y);
  width: 96%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(30, 155, 232, .55), rgba(0, 113, 184, .2) 50%, transparent 78%);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: .7; transform: translate(-50%, -50%) scale(.95); }
  50%      { opacity: 1;  transform: translate(-50%, -50%) scale(1.05); }
}

/* equalizer: the sound coming off the record */
.eq { display: flex; align-items: flex-end; justify-content: center; pointer-events: none; }
.eq i {
  display: block;
  height: 100%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--blue), var(--sky));
  transform-origin: 50% 100%;
  transform: scaleY(var(--h, .5));
  animation: eq var(--t, 1s) ease-in-out var(--d, 0s) infinite alternate;
}
@keyframes eq {
  from { transform: scaleY(calc(var(--h, .5) * .2)); }
  to   { transform: scaleY(var(--h, .5)); }
}
.hero > .eq {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: calc(var(--stage-h) - var(--eq-h));
  width: 100vw;
  height: var(--eq-h);
  gap: 3px;
  padding: 0 8px;
  transform: translateX(-50%);
  opacity: .45;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent), linear-gradient(to top, rgba(0, 0, 0, .25), #000 45%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent), linear-gradient(to top, rgba(0, 0, 0, .25), #000 45%);
  mask-composite: intersect;
}
.hero > .eq i { flex: 1 1 0; background: linear-gradient(to top, rgba(0, 113, 184, .95), rgba(108, 196, 245, .3)); }
@media (max-width: 699px) { .hero > .eq i:nth-child(2n) { display: none; } }

/* ── profile photo, framed like the record ─────────── */

.avatar {
  position: relative;
  z-index: 4;
  width: 170px;
  height: 170px;
  margin: -85px auto 0;
  padding: 5px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #5A646C, #F6F8FA 10%, #8C979F 22%, #E3E8EC 36%, #56616A 50%,
                             #F6F8FA 62%, #8C979F 76%, #E3E8EC 88%, #5A646C);
  box-shadow: 0 0 0 6px var(--bg-0), 0 22px 44px rgba(0, 0, 0, .55), 0 0 46px rgba(30, 155, 232, .4);
}
.avatar::before {
  content: "";
  position: absolute;
  inset: -17px;
  border-radius: 50%;
  background: repeating-conic-gradient(rgba(108, 196, 245, .8) 0deg 1.6deg, transparent 1.6deg 6deg);
  -webkit-mask-image: radial-gradient(closest-side, transparent calc(100% - 4px), #000 calc(100% - 3px), #000 calc(100% - 1px), transparent 100%);
  mask-image: radial-gradient(closest-side, transparent calc(100% - 4px), #000 calc(100% - 3px), #000 calc(100% - 1px), transparent 100%);
  animation: spin 20s linear infinite reverse;
}
.avatar-photo { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: #0B213B; }
.avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  transform-origin: 60% 14%;
}

/* ── name ──────────────────────────────────────────── */

.name {
  margin: 24px 20px 0;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.name > span:not(.name-sep) { display: block; }
.name > span:first-child {
  background: linear-gradient(180deg, #FFFFFF 35%, #BCCCDA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.name > span:last-child { font-size: .76em; font-weight: 700; margin-top: 4px; color: var(--ink); }
.name-sep { display: none; }

.tagline {
  margin: 8px 20px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--sky);
}

.rating {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 16px auto 0;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 16px;
  transition: background .2s, border-color .2s;
}
.rating:hover { background: rgba(255, 255, 255, .1); border-color: var(--line-2); }
.rating b { color: var(--ink); font-weight: 800; }
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }

/* ── six actions ───────────────────────────────────── */

.actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 6px;
  max-width: 420px;
  margin: 32px auto 0;
  padding: 0 12px;
}
.action { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.action-label { font-size: 17px; font-weight: 700; color: var(--ink); }

.ring {
  --fill: #0B1F37;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--fill), var(--fill)) padding-box, var(--chrome) border-box;
  color: var(--sky);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
  cursor: pointer;
  transition: color .2s, transform .2s, box-shadow .2s;
}
.ring svg { width: 26px; height: 26px; }
.action:hover .ring, a.ring:hover, button.ring:hover {
  --fill: #0071B8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(30, 155, 232, .18), 0 10px 26px rgba(30, 155, 232, .45);
}

/* ── save contact ──────────────────────────────────── */

.save {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(350px, calc(100% - 40px));
  height: 56px;
  margin: 34px auto 0;
  border-radius: 100px;
  border: 1px solid rgba(160, 215, 255, .35);
  background: var(--label);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 113, 184, .45), inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: transform .2s, box-shadow .2s;
}
.save::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: translateX(-130%) skewX(-18deg);
  animation: shine 5s ease-in-out infinite;
}
@keyframes shine { 0%, 65% { transform: translateX(-130%) skewX(-18deg); } 100% { transform: translateX(290%) skewX(-18deg); } }
.save:hover { transform: translateY(-1px); box-shadow: 0 16px 36px rgba(30, 155, 232, .55), inset 0 1px 0 rgba(255, 255, 255, .28); }
.save svg { position: relative; width: 24px; height: 24px; }

/* ── about + accordions ───────────────────────────── */

.intro { max-width: 1000px; margin: 54px auto 0; padding: 0 18px; }

.about { text-align: center; }
.about h2 {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--blue-2);
  text-decoration-thickness: 3px;
  text-underline-offset: 9px;
}
.about p { margin: 0 0 12px; font-size: 18px; line-height: 1.85; color: var(--ink-2); text-wrap: pretty; }

.acc { display: grid; gap: 12px; margin-top: 30px; }
.acc details {
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  overflow: hidden;
}
.acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background .2s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { background: rgba(255, 255, 255, .035); }
.acc details[open] summary { background: rgba(30, 155, 232, .1); border-bottom: 1px solid var(--line); }

.chev {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(30, 155, 232, .15);
  color: var(--sky);
  transition: transform .25s;
}
.acc details[open] .chev { transform: rotate(180deg); }
.chev svg { width: 22px; height: 22px; }

.acc ul { margin: 0; padding: 16px 22px 20px; list-style: none; display: grid; gap: 11px; }
.acc li { display: flex; align-items: baseline; gap: 12px; font-size: 18px; color: var(--ink-2); }
.acc li::before {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFFFF 0 1.4px, var(--blue-2) 2px 100%);
  box-shadow: 0 0 8px rgba(30, 155, 232, .55);
  transform: translateY(-1px);
}
.contact-list li { gap: 8px; flex-wrap: wrap; }
.contact-list li:first-child::before { display: none; }
.contact-list li:first-child { color: var(--ink); }
.contact-list a { color: var(--sky); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }
.acc .contact-list { padding-bottom: 16px; }

.hours { margin: 0 22px 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.hours-title { margin: 0 0 10px; font-size: 18px; font-weight: 700; color: var(--ink); }
.hours-list { margin: 0; display: grid; gap: 8px; }
.hours-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
}
.hours-list dt { font-size: 17px; color: var(--ink-2); }
.hours-list dd { margin: 0; font-size: 17px; font-weight: 700; color: var(--sky); }
.hours-list .off dd { font-weight: 600; color: var(--muted); }
.shabbat {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 14px 0 0;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(245, 184, 46, .38);
  background: rgba(245, 184, 46, .09);
  color: #F8D78E;
  font-size: 16px;
  font-weight: 700;
}
.shabbat svg { flex-shrink: 0; width: 22px; height: 22px; color: #E6ECF2; }
.form .shabbat { grid-column: 1 / -1; justify-self: center; margin: 2px 0 0; }

/* ── divider: a small equalizer between chrome lines ─ */

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(1000px, calc(100% - 40px));
  height: 24px;
  margin: 56px auto;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; }
.divider::before { background: linear-gradient(270deg, transparent, var(--line-2)); }
.divider::after  { background: linear-gradient(90deg, transparent, var(--line-2)); }
.eq--mini { height: 22px; gap: 3px; opacity: .9; }
.eq--mini i { flex: 0 0 3px; }

.sec-title {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  text-wrap: balance;
}

/* ── gallery carousel: one image at a time ─────────── */

.gallery { padding: 0 16px; }
.carousel.carousel--gallery { max-width: 880px; margin: 0 auto; padding: 0; }
.carousel--gallery .track {
  gap: 0;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: #0B1F37;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .5), 0 0 44px rgba(30, 155, 232, .12);
}
.carousel--gallery .car-nav { margin-top: 18px; }

.shot {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 3 / 2;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #0B1F37;
  cursor: zoom-in;
}
/* photos that aren't 3:2 sit on a blurred copy of themselves instead of black bars */
.shot::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: var(--bg, none) center / cover no-repeat;
  filter: blur(26px) brightness(.5) saturate(1.15);
}
.shot img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s ease;
}
.shot:hover img { transform: scale(1.02); }

/* ── reviews carousel ─────────────────────────────── */

.rating--center { margin-top: 14px; }
.carousel { margin-top: 26px; padding: 0 16px; }

.track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 4px 2px 20px;
}
.track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .022));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
}
.slide blockquote { flex: 1; margin: 0; font-size: 18px; line-height: 1.75; color: #E2EAF2; }
.slide figcaption { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.initial {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #2AA6F0, var(--blue) 72%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .22);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 18px;
}
.who b { display: block; font-size: 17px; line-height: 1.3; color: var(--ink); }
.who span { font-size: 14px; color: var(--muted); }

.car-nav { display: flex; align-items: center; justify-content: center; gap: 18px; }
.car-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .05);
  color: var(--sky);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.car-btn:hover { background: var(--blue); color: #FFFFFF; }
.car-btn svg { width: 26px; height: 26px; }
.dots { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: rgba(108, 196, 245, .28);
  cursor: pointer;
  transition: width .25s, background .25s;
}
.dot[aria-selected="true"] { width: 24px; background: var(--sky); }

/* ── whatsapp cta: a small record with the whatsapp label ── */

.cta-wa {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 26px auto 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .3s;
}
.cta-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0deg 30deg, rgba(160, 210, 255, .24) 50deg, transparent 75deg 205deg,
                   rgba(160, 210, 255, .16) 228deg, transparent 252deg 360deg),
    repeating-radial-gradient(circle, #0A0D12 0 2px, #171D27 2px 3px);
  box-shadow:
    0 0 0 5px #0A0D12,
    0 0 0 7px rgba(205, 214, 222, .55),
    0 22px 44px rgba(0, 0, 0, .55),
    0 0 54px rgba(30, 155, 232, .32);
  animation: spin 6s linear infinite;
}
.cta-label {
  position: relative;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #2AA6F0 0%, var(--blue) 72%);
  color: #FFFFFF;
  box-shadow: 0 0 0 6px #0A0D12, inset 0 0 0 1px rgba(255, 255, 255, .25);
}
.cta-label svg { width: 40px; height: 40px; }
.cta-wa:hover { transform: scale(1.04); }
.cta-wa:hover .cta-disc { animation-duration: 2.4s; }

/* ── lead form ────────────────────────────────────── */

.form { display: grid; gap: 12px; max-width: 920px; margin: 26px auto 0; padding: 0 18px; }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  color: var(--ink);
  font-size: 18px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #8298AC; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-2);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 4px rgba(30, 155, 232, .2);
}
.field input[type="tel"], .field input[type="email"] { direction: ltr; text-align: right; }
.field input[type="tel"]::placeholder, .field input[type="email"]::placeholder { direction: rtl; }
.field [aria-invalid="true"] { border-color: #FF7A7A; }

.send {
  height: 56px;
  border: 1px solid rgba(160, 215, 255, .3);
  border-radius: 100px;
  background: var(--label);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 113, 184, .4), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: box-shadow .2s, transform .2s;
}
.send:hover { transform: translateY(-1px); box-shadow: 0 16px 36px rgba(30, 155, 232, .55), inset 0 1px 0 rgba(255, 255, 255, .25); }

.form-note { margin: 0; text-align: center; font-size: 15px; color: var(--muted); text-wrap: balance; }
.form-error { margin: 0; text-align: center; font-size: 16px; font-weight: 600; color: #FF8A8A; }

/* ── share + footer ───────────────────────────────── */

.share { margin-top: 66px; }
.share-row { display: flex; justify-content: center; gap: 16px; margin-top: 22px; }
.share-row .ring { width: 56px; height: 56px; }
.share-row .ring svg { width: 24px; height: 24px; }

.foot {
  margin-top: 66px;
  padding: 30px 20px 38px;
  display: grid;
  justify-items: center;
  gap: 6px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-2);
}
.foot img { width: 40px; height: 40px; margin-bottom: 6px; animation: spin 8s linear infinite; }
.foot p { margin: 0; font-weight: 700; }
.foot-small { font-size: 14px; font-weight: 400 !important; color: var(--muted); }

/* ── lightbox + toast ─────────────────────────────── */

.lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgba(4, 10, 18, .9); }
.lightbox img {
  max-width: min(94vw, 1600px);
  max-height: 86dvh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}
.lb-close, .lb-nav {
  position: fixed;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #FFFFFF;
  cursor: pointer;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, .26); }
.lb-close svg, .lb-nav svg { width: 28px; height: 28px; }
.lb-close { top: 16px; left: 16px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { right: 12px; }
.lb-next { left: 12px; }

.toast {
  position: fixed;
  z-index: 50;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  background: #0E2A48;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

/* ── tablet ───────────────────────────────────────── */

@media (min-width: 700px) {
  .hero { --stage-h: 540px; --eq-h: 104px; }
  .logo { width: 440px; }
  .hero > .eq { gap: 4px; }

  .gallery { padding: 0 24px; }
  .slide { flex-basis: calc((100% - 16px) / 2); }
  .form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .field--wide, .form-error, .send, .form-note { grid-column: 1 / -1; }
  .send { width: 260px; justify-self: center; }
}

/* ── desktop ──────────────────────────────────────── */

@media (min-width: 960px) {
  body { font-size: 19px; }

  .hero { --stage-h: 640px; --eq-h: 124px; }
  .logo { width: 580px; top: 42%; }
  .hero > .eq { gap: 6px; opacity: .38; }

  .avatar { width: 240px; height: 240px; margin-top: -120px; padding: 6px; }
  .avatar::before { inset: -22px; }

  .name { margin-top: 30px; font-size: 54px; }
  .name > span:not(.name-sep) { display: inline; }
  .name > span:last-child { font-size: 1em; font-weight: 800; }
  .name-sep { display: inline; margin: 0 .3em; color: var(--blue-2); font-weight: 400; }
  .tagline { font-size: 28px; }
  .rating { font-size: 17px; margin-top: 18px; }

  .actions { grid-template-columns: repeat(6, minmax(0, 1fr)); max-width: 1000px; gap: 0; margin-top: 44px; }
  .ring { width: 72px; height: 72px; }
  .ring svg { width: 30px; height: 30px; }
  .action-label { font-size: 19px; }

  .save { margin-top: 40px; width: 370px; height: 58px; font-size: 21px; }

  .intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    margin-top: 76px;
    padding: 0 30px;
  }
  .about { text-align: right; }
  .about h2 { font-size: 34px; }
  .acc { margin-top: 0; }

  .divider { margin: 74px auto; }
  .sec-title { font-size: 38px; }

  .gallery { padding: 0 30px; }
  .carousel { padding: 0 30px; }
  .slide { flex-basis: calc((100% - 32px) / 3); }
  .cta-wa { width: 220px; height: 220px; }
  .cta-label { width: 92px; height: 92px; }
  .cta-label svg { width: 46px; height: 46px; }
  .share-row .ring { width: 62px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
