/* ============================================================
   DODO Detailing — remake 2026-07-11
   Dark + gold (brand-preserved). New type + architecture.
   Latin: Big Shoulders Display / Hanken Grotesk
   AR: Tajawal · HE: Rubik (set on <html data-lang>)
   ============================================================ */

:root {
  /* color — dark + gold */
  --bg: #0d0c0a;
  --bg-2: #15130f;
  --panel: #1c1912;
  --panel-2: #241f16;
  --line: #322c22;
  --line-strong: #4a4230;
  --ink: #f5f1e7;
  --muted: #bcb3a0;
  --faint: #8a8270;
  --gold: #c9a227;
  --gold-bright: #e8cb6d;
  --gold-deep: #7f6716;
  --on-gold: #171208;

  /* type */
  --display: "Big Shoulders Display", "Hanken Grotesk", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  --tracking-display: -0.01em;
  --tracking-label: 0.18em;

  /* space */
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --maxw: 1200px;

  /* radius */
  --r-sm: 2px;
  --r-md: 4px;
  --r-pill: 999px;

  /* z */
  --z-header: 100;
  --z-float: 200;
  --z-backdrop: 300;
  --z-modal: 400;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 0.2s;
  --med: 0.45s;
}

/* AR / HE families swapped on the root element */
html[data-lang="ar"] { --display: "Tajawal", sans-serif; --body: "Tajawal", sans-serif; --tracking-display: 0; }
html[data-lang="he"] { --display: "Rubik", sans-serif; --body: "Rubik", sans-serif; --tracking-display: 0; }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* prevent sideways scroll WITHOUT making <body> the scroll container */
}

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

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: var(--r-sm); }

/* skip-to-content: off-screen until focused by keyboard */
.skip-link {
  position: fixed; inset-block-start: 0; inset-inline-start: 0; z-index: 500;
  transform: translateY(-130%); transition: transform var(--fast) var(--ease);
  background: var(--gold); color: var(--on-gold); font-family: var(--body);
  font-weight: 700; font-size: 0.95rem; line-height: 1; padding: 0.8rem 1.2rem; margin: 0.5rem;
  border-radius: var(--r-sm);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--ink); outline-offset: 2px; }
#main:focus { outline: none; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 0.95; letter-spacing: var(--tracking-display); text-wrap: balance; }
html[data-lang="ar"] h1, html[data-lang="ar"] h2, html[data-lang="ar"] h3,
html[data-lang="he"] h1, html[data-lang="he"] h2, html[data-lang="he"] h3 { line-height: 1.15; font-weight: 800; }

/* eyebrow chips removed (2026-07-12): pentagram section-head discipline —
   the Big Shoulders display headline carries each section, no scaffolding label */

.lead { font-size: clamp(1.1rem, 2.4vw, 1.4rem); color: var(--muted); text-wrap: pretty; max-width: 60ch; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); }
.band { background: var(--bg-2); }

.section-head { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(2.4rem, 7vw, 4.5rem); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--body); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 0.95em 1.6em; border: 1px solid transparent; cursor: pointer;
  border-radius: var(--r-pill); background: var(--btn-bg); color: var(--on-gold);
  transition: transform var(--fast) var(--ease), background var(--fast) var(--ease), border-color var(--fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); border-radius: var(--r-sm); }
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--gold); color: var(--gold-bright); }
.btn-lg { font-size: 1.05rem; padding: 1.05em 1.9em; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: var(--z-header);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem var(--pad);
  background: linear-gradient(to bottom, rgba(13,12,10,0.92), rgba(13,12,10,0));
  transition: background var(--med) var(--ease), border-color var(--med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(11,10,8,0.94); backdrop-filter: blur(10px); border-bottom-color: var(--line); }

.brand { display: inline-flex; align-items: baseline; gap: 0.15rem; font-family: var(--display); font-weight: 800; font-size: 1.6rem; letter-spacing: 0.02em; color: var(--ink); }
.brand b { color: var(--gold); font-weight: 800; }
.brand span { font-family: var(--body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); align-self: center; margin-inline-start: 0.4rem; }
html[data-lang="ar"] .brand span, html[data-lang="he"] .brand span { letter-spacing: 0.1em; }

.nav-main { display: flex; align-items: center; gap: 1.75rem; }
.nav-main a { font-weight: 500; font-size: 0.95rem; color: var(--muted); transition: color var(--fast); position: relative; }
.nav-main a:hover { color: var(--ink); }
.nav-main a::after { content: ""; position: absolute; inset-inline-start: 0; inset-block-end: -4px; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--fast) var(--ease); }
html[dir="rtl"] .nav-main a::after { transform-origin: right; }
.nav-main a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.lang-switch { display: inline-flex; gap: 0.15rem; align-items: center; font-size: 0.82rem; font-weight: 600; color: var(--faint); }
.lang-switch a { padding: 0.2rem 0.4rem; border-radius: var(--r-sm); transition: color var(--fast), background var(--fast); }
.lang-switch a[aria-current="true"] { color: var(--gold); }
.lang-switch a:hover { color: var(--ink); }
.lang-switch .sep { opacity: 0.4; }

.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); color: var(--ink); transition: border-color var(--fast), color var(--fast); }
.icon-btn:hover { border-color: var(--gold); color: var(--gold-bright); }

.nav-toggle { display: none; width: 46px; height: 46px; background: transparent; border: 1px solid var(--line-strong); border-radius: var(--r-sm); cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform var(--fast) var(--ease), opacity var(--fast); }

/* mobile overlay menu */
.mobile-menu { position: fixed; inset: 0; z-index: var(--z-backdrop); background: var(--bg); display: flex; flex-direction: column; justify-content: center; gap: 0.25rem; padding: var(--pad); transform: translateY(-100%); visibility: hidden; transition: transform var(--med) var(--ease), visibility var(--med); }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 10vw, 3.25rem); color: var(--ink); padding-block: 0.35rem; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mm-book { color: var(--gold); }
.mm-foot { margin-top: 2rem; display: flex; gap: 1.5rem; font-weight: 600; color: var(--muted); font-family: var(--body); font-size: 1rem; }
.mm-close { position: absolute; inset-block-start: clamp(0.9rem, 3.5vw, 1.5rem); inset-inline-end: var(--pad); width: 46px; height: 46px; display: grid; place-items: center; background: transparent; border: 1px solid var(--line-strong); border-radius: var(--r-sm); color: var(--ink); cursor: pointer; }
.mm-close svg { width: 22px; height: 22px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media img { object-position: center 90%; }
.hero-media video { opacity: 0; transition: opacity 0.9s var(--ease); }
.hero-media video.playing { opacity: 1; }
.hero-media::after { content: ""; position: absolute; inset: 0; background:
    linear-gradient(to top, rgba(8,7,5,0.96) 0%, rgba(8,7,5,0.55) 42%, rgba(8,7,5,0.35) 70%, rgba(8,7,5,0.6) 100%); }
.hero-inner { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 2rem var(--pad) 0; }
.hero h1 { font-size: clamp(3rem, 11vw, 6rem); color: var(--ink); max-width: 16ch; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { margin-top: 1.5rem; }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-note { margin-top: 1.1rem; font-size: 0.92rem; color: var(--muted); max-width: 46ch; display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-note svg { width: 1.05em; height: 1.05em; color: var(--gold); flex: none; }

/* spec bar pinned to hero bottom */
.spec-bar { position: relative; z-index: 1; margin-top: clamp(2.5rem, 6vw, 4rem); border-top: 1px solid var(--line-strong); }
.spec-bar ul { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.spec-bar li { padding: 1.1rem 1.25rem; border-inline-start: 1px solid var(--line); display: flex; flex-direction: column; gap: 0.2rem; }
.spec-bar li:first-child { border-inline-start: none; padding-inline-start: 0; }
.spec-bar .k { font-size: 0.72rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--faint); font-weight: 600; }
html[data-lang="ar"] .spec-bar .k, html[data-lang="he"] .spec-bar .k { letter-spacing: 0.03em; }
.spec-bar .v { font-family: var(--display); font-weight: 700; font-size: clamp(1.25rem, 3vw, 1.8rem); color: var(--ink); line-height: 1; }
.spec-bar .v b { color: var(--gold); }
.spec-bar-top { margin-top: 0; border-top: none; border-bottom: 1px solid var(--line-strong); margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
#about { padding-block-start: 0; }

/* ---------- statement ---------- */
.statement { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.statement-copy h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); max-width: 18ch; }
.statement-copy .big { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1.15; color: var(--muted); margin-top: 1.5rem; max-width: 24ch; }
.statement-copy .big b { color: var(--ink); }
.statement-copy .big u { text-decoration: none; color: var(--gold); }
.statement-copy p { margin-top: 1.25rem; max-width: 52ch; color: var(--muted); }
.statement-photo { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); overflow: hidden; }
.statement-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.statement-photo:hover img { transform: scale(1.04); }
.statement-photo figcaption { position: absolute; inset-block-end: 0; inset-inline: 0; padding: 1.5rem 1.25rem 1rem; font-size: 0.85rem; color: var(--ink); background: linear-gradient(to top, rgba(8,7,5,0.85), transparent); }

/* ---------- how it works (premium numbered rows + credentials) ---------- */
.section-head::after { content: ""; align-self: start; width: 54px; height: 3px; background: var(--gold); margin-top: 0.35rem; }
#how { padding-block-start: clamp(2rem, 4.5vw, 3.5rem); }
.steps { list-style: none; }
.step { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.1rem, 3.5vw, 2rem); align-items: center; padding: clamp(1.4rem, 3vw, 2.1rem) 0; border-top: 1px solid var(--line); }
.step:last-of-type { border-bottom: 1px solid var(--line); }
.step-ico { display: grid; place-items: center; flex: none; width: clamp(48px, 7vw, 60px); height: clamp(48px, 7vw, 60px); border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold); }
.step-ico svg { width: 45%; height: 45%; }
.step-body h3 { font-size: clamp(1.4rem, 3.4vw, 2.1rem); color: var(--ink); margin-bottom: 0.5rem; }
.step-body p { color: var(--muted); font-size: 1.02rem; max-width: 52ch; }
.how-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.creds { padding: clamp(1.25rem, 3vw, 1.9rem); background: var(--panel); border: 1px solid var(--line); }
.creds-photo { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid var(--line-strong); }
.creds-photo img { width: 100%; height: 100%; object-fit: cover; }
.creds-copy { margin-top: clamp(1rem, 2.5vw, 1.4rem); }
.creds-copy h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--ink); margin-bottom: 0.55rem; }
.creds-copy p { color: var(--muted); max-width: 42ch; }
@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); }
  .creds { display: grid; grid-template-columns: 150px 1fr; gap: clamp(1rem, 4vw, 1.75rem); align-items: start; }
  .creds-photo { aspect-ratio: 3 / 4; }
  .creds-copy { margin-top: 0; }
}
@media (max-width: 480px) {
  .creds { grid-template-columns: 120px 1fr; gap: 1rem; }
}
@media (max-width: 720px) {
  .step { gap: 1rem; }
}

/* ---------- ticker bar (moving selling points) ---------- */
.ticker { overflow: hidden; border-block: 1px solid var(--line-strong); background: var(--bg); padding-block: clamp(0.9rem, 2.5vw, 1.4rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker 50s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 2.6vw, 1.55rem); text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); white-space: nowrap; }
html[data-lang="ar"] .ticker-item { letter-spacing: normal; }
.ticker-dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); margin-inline: clamp(1.1rem, 3.5vw, 2.25rem); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .ticker-track { animation-direction: reverse; }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: 0.5rem; } }
#about .ticker { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

/* ---------- price board ---------- */
.price-board { border: 1px solid var(--line-strong); background: var(--panel); }
.price-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.4rem) clamp(1.5rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--line);
  transition: background var(--fast) var(--ease);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--panel-2); }
.price-row.featured { background: var(--panel-2); }
.price-row .pr-main { display: flex; flex-direction: column; gap: 0.4rem; }
.price-row h3 { font-size: clamp(1.5rem, 3.6vw, 2.3rem); color: var(--ink); }
.price-row .pr-desc { color: var(--muted); font-size: 0.98rem; max-width: 46ch; }
.price-row .pr-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.price-row .amount { font-family: var(--display); font-weight: 800; font-size: clamp(2.8rem, 8vw, 4.5rem); color: var(--gold); line-height: 0.9; white-space: nowrap; }
.price-row .amount small { font-size: 0.4em; color: var(--faint); font-weight: 600; display: block; letter-spacing: 0.05em; }
.price-note { display: flex; flex-wrap: wrap; gap: 0.6rem 1.75rem; margin-top: 1.5rem; color: var(--muted); font-size: 0.95rem; }
.price-note span { display: inline-flex; align-items: center; gap: 0.5rem; }
.price-note svg { width: 1.05em; height: 1.05em; color: var(--gold); flex: none; }

/* ---------- gallery marquee + mosaic ---------- */
.marquee { overflow: hidden; padding-block: 0.5rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 55s linear infinite; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: clamp(150px, 22vw, 240px); width: auto; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); flex: none; margin-inline-end: 0.75rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
html[dir="rtl"] .marquee.rev .marquee-track { animation-direction: normal; }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(120px, 15vw, 200px); gap: 0.75rem; margin-top: 0.75rem; }
.mosaic button { border: 1px solid var(--line); padding: 0; cursor: pointer; overflow: hidden; background: var(--panel); position: relative; }
.mosaic button::after { content: ""; position: absolute; inset: 0; background: rgba(201,162,39,0); transition: background var(--fast); }
.mosaic button:hover::after { background: rgba(201,162,39,0.12); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mosaic button:hover img { transform: scale(1.05); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }
.gallery-foot { margin-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(6,5,4,0.94); display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; object-fit: contain; border: 1px solid var(--line-strong); }
.lightbox-close { position: absolute; inset-block-start: clamp(1rem,3vw,2rem); inset-inline-end: clamp(1rem,3vw,2rem); width: 48px; height: 48px; border: 1px solid var(--line-strong); background: rgba(0,0,0,0.4); color: var(--ink); border-radius: var(--r-sm); cursor: pointer; font-size: 1.3rem; display: grid; place-items: center; }
.lightbox-close:hover { border-color: var(--gold); color: var(--gold-bright); }
.lb-nav { position: absolute; inset-block-start: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid var(--line-strong); background: rgba(0,0,0,0.4); color: var(--ink); cursor: pointer; display: grid; place-items: center; font-size: 1.4rem; border-radius: var(--r-sm); }
.lb-nav:hover { border-color: var(--gold); color: var(--gold-bright); }
.lb-prev { inset-inline-start: clamp(0.5rem,2vw,1.5rem); }
.lb-next { inset-inline-end: clamp(0.5rem,2vw,1.5rem); }
html[dir="rtl"] .lb-prev svg, html[dir="rtl"] .lb-next svg { transform: scaleX(-1); }

/* ---------- hours ---------- */
.hours-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.open-badge { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 0.9rem; padding: 0.5rem 0.9rem; border-radius: var(--r-pill); border: 1px solid var(--line-strong); color: var(--muted); }
.open-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); }
.open-badge.is-open { color: var(--gold-bright); border-color: var(--gold-deep); background: rgba(201,162,39,0.08); }
.open-badge.is-open .dot { background: #48c774; box-shadow: 0 0 0 0 rgba(72,199,116,0.6); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(72,199,116,0.55); } 70% { box-shadow: 0 0 0 8px rgba(72,199,116,0); } 100% { box-shadow: 0 0 0 0 rgba(72,199,116,0); } }
.days { list-style: none; border-top: 1px solid var(--line); }
.days li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.days .day { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 3.5vw, 2rem); color: var(--ink); }
.days li.closed .day, .days li.closed .time { color: var(--faint); }
.days li.today { background: var(--panel); margin-inline: -1rem; padding-inline: 1rem; }
.days li.today .day { color: var(--gold); }
.days .time { font-weight: 600; color: var(--muted); font-size: 1.05rem; }
.hours-aside p { color: var(--muted); max-width: 42ch; }
.hours-aside .h-note { margin-top: 1.25rem; padding: 1.25rem; border: 1px solid var(--line); background: var(--panel); font-size: 0.95rem; color: var(--muted); }
.hours-aside .h-note b { color: var(--ink); }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.visit-info { display: flex; flex-direction: column; gap: 1.5rem; }
.visit-item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.visit-item:last-child { border-bottom: none; padding-bottom: 0; }
.visit-item svg { width: 1.5rem; height: 1.5rem; color: var(--gold); flex: none; margin-top: 0.15rem; }
.visit-item .vi-k { font-size: 0.78rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--faint); font-weight: 600; }
html[data-lang="ar"] .visit-item .vi-k, html[data-lang="he"] .visit-item .vi-k { letter-spacing: 0.03em; }
.visit-item .vi-v { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-top: 0.15rem; }
.visit-item a.vi-v:hover { color: var(--gold-bright); }
.map-frame { border: 1px solid var(--line-strong); overflow: hidden; min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gold); color: var(--on-gold); }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4rem); color: var(--on-gold); max-width: 18ch; }
.cta-band p { color: rgba(23,18,8,0.78); font-weight: 500; margin-top: 0.5rem; }
.cta-band .btn { background: var(--on-gold); color: var(--gold-bright); }
.cta-band .btn:hover { background: #000; }
.cta-band .btn-ghost { background: transparent; color: var(--on-gold); border-color: rgba(23,18,8,0.4); }
.cta-band .btn-ghost:hover { background: rgba(23,18,8,0.08); border-color: var(--on-gold); color: var(--on-gold); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-top .brand { font-size: 2rem; }
.footer-top p { color: var(--muted); margin-top: 1rem; max-width: 34ch; font-size: 0.98rem; }
.f-col h4 { font-size: 0.78rem; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--faint); font-weight: 600; margin-bottom: 1rem; }
html[data-lang="ar"] .f-col h4, html[data-lang="he"] .f-col h4 { letter-spacing: 0.03em; }
.f-col a { display: block; color: var(--muted); padding-block: 0.35rem; transition: color var(--fast); }
.f-col a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding-block: 1.5rem; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.85rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; inset-block-end: 1.5rem; inset-inline-end: 1.5rem; z-index: var(--z-float); width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,0.4); transition: transform var(--fast) var(--ease); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- booking modal ---------- */
.modal-backdrop { position: fixed; inset: 0; z-index: var(--z-backdrop); background: rgba(6,5,4,0.8); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: clamp(0.75rem, 3vw, 2rem); }
.modal-backdrop.open { display: flex; }
.modal { width: min(560px, 100%); height: min(780px, 92vh); background: var(--panel); border: 1px solid var(--line-strong); border-radius: var(--r-md); display: flex; flex-direction: column; overflow: hidden; }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.35rem; border-bottom: 1px solid var(--line); flex: none; }
.modal-head h3 { font-size: 1.5rem; color: var(--ink); }
.modal-close { width: 40px; height: 40px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); border-radius: var(--r-sm); cursor: pointer; font-size: 1.2rem; display: grid; place-items: center; flex: none; }
.modal-close:hover { border-color: var(--gold); color: var(--gold-bright); }
.modal iframe { width: 100%; flex: 1 1 auto; min-height: 0; border: 0; background: #fff; }
.modal-alt { padding: 0.9rem 1.35rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); text-align: center; }
.modal-alt a { color: var(--gold-bright); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; font-family: var(--display); font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.7rem); line-height: 1.15; color: var(--ink);
  transition: color var(--fast) var(--ease);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ""; }
.faq-item > summary:hover { color: var(--gold-bright); }
.faq-item[open] > summary { color: var(--gold-bright); }
.faq-icon { position: relative; flex: none; width: 24px; height: 24px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; inset-block-start: 50%; inset-inline-start: 50%;
  background: var(--gold); transition: transform var(--fast) var(--ease);
}
.faq-icon::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 15px; transform: translate(-50%, -50%); }
.faq-item[open] > summary .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { color: var(--muted); padding: 0 0 1.5rem; max-width: 64ch; font-size: 1.02rem; }
.faq-a a { color: var(--gold-bright); font-weight: 600; }

/* ---------- reveal motion ----------
   Content is VISIBLE by default. It is only hidden-for-animation when <html> has
   `reveal-armed` (added synchronously in the head ONLY when the tab is foregrounded,
   motion is allowed, and IntersectionObserver exists). If arming never happens, or
   any reveal never fires, content simply stays visible — it can never blank out. */
body.no-scroll { overflow: hidden; }
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.reveal-armed .reveal:not(.in) { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.reveal-armed [data-stagger]:not(.in) > * { opacity: 0; transform: translateY(18px); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(2) { transition-delay: 0.08s; }
[data-stagger].in > *:nth-child(3) { transition-delay: 0.16s; }
[data-stagger].in > *:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .open-badge.is-open .dot { animation: none; }
  .statement-photo:hover img, .mosaic button:hover img { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-main, .header-actions .lang-switch, .header-actions .icon-btn { display: none; }
  .nav-toggle { display: flex; }
  .statement, .hours-grid, .visit-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .brand-col { grid-column: 1 / -1; }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .map-frame { min-height: 300px; order: -1; }
}
@media (max-width: 620px) {
  .spec-bar ul { grid-template-columns: 1fr 1fr; }
  .spec-bar li:nth-child(odd) { border-inline-start: none; padding-inline-start: 0; }
  .spec-bar li:nth-child(1), .spec-bar li:nth-child(2) { border-bottom: 1px solid var(--line); }
  .price-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .price-row .amount { justify-self: start; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

/* ---------- mobile sticky action bar (thumb-zone CTAs) ---------- */
.mobile-bar { display: none; }
@media (max-width: 900px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.7fr; gap: 0.5rem; align-items: stretch;
    position: fixed; inset-inline: 0; inset-block-end: 0; z-index: var(--z-float);
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    background: rgba(13,12,10,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-strong);
  }
  .mb-btn {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.22rem;
    font-family: var(--body); font-weight: 700; font-size: 0.72rem; line-height: 1;
    border-radius: var(--r-sm); border: 1px solid var(--line-strong); color: var(--ink);
    background: transparent; cursor: pointer; padding: 0.45rem 0.4rem; min-height: 54px; text-decoration: none;
    -webkit-tap-highlight-color: transparent; transition: border-color var(--fast), color var(--fast);
  }
  .mb-btn:active { border-color: var(--gold); }
  .mb-btn svg { width: 1.3rem; height: 1.3rem; }
  .mb-call svg, .mb-wa svg { color: var(--gold); }
  .mb-book {
    flex-direction: row; gap: 0.5rem; font-size: 0.98rem;
    background: var(--gold); color: var(--on-gold); border-color: var(--gold); border-radius: var(--r-pill);
  }
  .mb-book svg { color: var(--on-gold); width: 1.15rem; height: 1.15rem; }
  .wa-float { display: none; }
  .site-header .btn.open-booking { display: none; }
  body { padding-bottom: 76px; }
}
