/* ============================================================
   מוריאל קוסמטיק · רמת גן
   Palette B — deep navy base, single champagne-gold accent.
   Type: Frank Ruhl Libre (display serif) + Heebo/Assistant (UI/body).

   This stylesheet inherits the tuned palette-B values from the Liran Zarkon
   build (2026-08-04, ~6 correction rounds). The hard-won rules are commented
   inline — read them before changing any colour value.
   ============================================================ */

:root {
  /* Royal navy silk. Must stay genuinely BLUE across the whole surface and
     never wash toward white. Earlier passes that desaturated this read as
     "black with a hint of blue" and were rejected. */
  --bg: #071026;
  --bg-2: #08132c;
  --surface: #0c1834;
  --surface-2: #101f42;
  --border: #1b3057;
  --border-hi: #2f4c7c;

  --text: #ffffff;
  --muted: #adbcd8;
  --dim: #7789ab;

  /* Champagne gold, NOT yellow gold. A bright yellow fights royal navy;
     champagne harmonises with it. Three stops so it reads as metal catching
     light rather than a flat fill. */
  --accent-light: #f7ebcd;
  --accent: #e0c795;
  --accent-deep: #ab8752;
  --accent-soft: rgba(224, 199, 149, 0.14);

  /* The single most important premium cue: the accent is never one flat value. */
  --accent-grad: linear-gradient(135deg, #faf0d8 0%, #e3cb9b 44%, #ab8752 100%);
  --accent-grad-text: linear-gradient(100deg, #fbf3e0 0%, #e8d3a6 46%, #bb9660 100%);

  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* One continuous surface, EDGE DARKENING ONLY. Bright radial "light pools"
   were tried on the previous build and rejected — they wash areas toward white
   and break the deep-navy feel. What remains is a single vignette that only
   darkens toward the edges, never lightens anywhere. `fixed` so the whole page
   shares one light source instead of each section carrying its own. */
body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(150% 115% at 50% 38%, rgba(1, 4, 12, 0.18) 0%, rgba(1, 4, 12, 0.72) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: Assistant, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NOTE: do NOT add a fine-grain / film-grain overlay here. SVG feTurbulence
   renders as WHITE noise — even at 5% opacity it lays a whitish haze over the
   page. Tried and rejected 2026-08-04. Same for SVG silk-fold texture layers:
   they lifted the field and read as water, not fabric. */

h1, h2 {
  font-family: "Frank Ruhl Libre", Heebo, Georgia, serif;
  font-weight: 700;
}

h3, .brand-name, .btn, .step-num, .craft-num {
  font-family: Heebo, Assistant, system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent-soft); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  background: var(--accent);
  color: #071018;
  padding: 10px 18px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { inset-inline-start: 16px; }

/* ---------- shared bits ---------- */

.eyebrow {
  margin: 0 0 16px;
  font-family: Heebo, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--accent-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px 28px;
}

.section-head { max-width: 640px; margin-bottom: 56px; }

.section-title {
  margin: 0 0 18px;
  font-size: clamp(31px, 4.6vw, 50px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: normal;
  background: var(--accent-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17.5px;
  max-width: 56ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease),
              border-color 200ms var(--ease), color 200ms var(--ease);
}
.btn-lg { padding: 15px 32px; font-size: 16px; }

.btn-primary {
  background: var(--accent-grad);
  color: #0a1420;
  /* Inset top highlight = the light-catching edge that makes it read metallic. */
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 220, 0.55),
    0 10px 26px rgba(171, 135, 82, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 220, 0.7),
    0 14px 32px rgba(171, 135, 82, 0.38);
}

.btn-ghost {
  border-color: var(--border-hi);
  color: var(--text);
  background: rgba(225, 235, 250, 0.02);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* ---------- ambient glow + confetti, main CTA only ----------
   Reserved for the single most important action on the page — the same "one
   bright element" restraint the rest of this stylesheet already follows.
   Never apply .btn-glow to more than one button per screen. */
.btn-glow { position: relative; isolation: isolate; }
.btn-glow::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background: var(--accent-grad);
  filter: blur(16px);
  opacity: 0.32;
  animation: btnGlowPulse 2.8s ease-in-out infinite;
}
@keyframes btnGlowPulse {
  0%, 100% { opacity: 0.26; transform: scale(1); }
  50% { opacity: 0.48; transform: scale(1.05); }
}

.confetti-piece {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 10px;
  border-radius: 1px;
  pointer-events: none;
  z-index: 300;
  animation: confettiBurst 850ms cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
}
@keyframes confettiBurst {
  0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
  100% {
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot));
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .confetti-piece { display: none; }
}

/* ---------- placeholder frames ---------- */

.frame {
  position: relative;
  border: 1px solid rgba(112, 145, 205, 0.11);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(20, 38, 80, 0.26), rgba(4, 10, 26, 0.42));
  overflow: hidden;
}

/* Her real photos are phone snaps taken under warm clinic light — dropped
   straight onto the navy they read as bright warm rectangles and break the
   single-light-source illusion. A slight desaturate + a navy multiply veil
   seats them into the palette without dulling the subject. Do not remove the
   veil; without it the page looks like photos pasted on a background. */
.frame img,
.results-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.94);
}

.frame::after,
.results-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(7, 16, 38, 0.14), rgba(4, 10, 26, 0.44));
}

/* Hairline of light along the top edge, same as the cards — keeps photos
   reading as lit surfaces rather than flat cut-outs. */
.frame::before,
.results-figure::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 18px;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(250, 240, 216, 0.34), transparent);
}

.ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(250, 240, 216, 0.028), transparent 58%),
    radial-gradient(circle at 75% 80%, rgba(171, 135, 82, 0.035), transparent 58%);
}

.ph-glyph {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(224, 199, 149, 0.3);
  background: radial-gradient(circle at 35% 35%, rgba(250, 240, 216, 0.2), transparent 70%);
  position: relative;
}
.ph-glyph::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 1px solid rgba(250, 240, 216, 0.45);
}

.ph-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--dim);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 16, 38, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms var(--ease), background-color 250ms var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50% 50% 50% 6px;
  background: var(--accent-grad);
  box-shadow: inset 0 1px 0 rgba(255, 250, 220, 0.5);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline-end: auto;
  font-size: 15px;
  color: var(--muted);
}
.nav-links a { transition: color 200ms var(--ease); }
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 220ms var(--ease), opacity 180ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
}

/* Kept deliberately faint. A hint that the room has warm light in it, NOT an
   ambient wash — at higher opacity it lifts the navy and the page stops
   reading premium. Guy caught this three separate times on the last build. */
.hero-glow {
  position: absolute;
  top: -340px;
  inset-inline-start: -300px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 199, 149, 0.065), rgba(171, 135, 82, 0.02) 40%, transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -400px;
  inset-inline-end: -320px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(171, 135, 82, 0.035), transparent 60%);
  filter: blur(36px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  margin: 0 0 26px;
  font-size: clamp(46px, 7.2vw, 82px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.hero-title em {
  font-style: normal;
  background: var(--accent-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 36px;
  max-width: 46ch;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-marks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--dim);
}
.hero-marks li { display: flex; align-items: center; gap: 9px; }
.hero-marks li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  align-items: start;
}
.frame-hero { aspect-ratio: 4 / 4.5; }

.hero-badge {
  position: absolute;
  bottom: -14px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid var(--border-hi);
  background: rgba(7, 15, 26, 0.95);
  backdrop-filter: blur(8px);
  text-align: center;
  white-space: nowrap;
}
.badge-line { font-size: 11.5px; letter-spacing: 0.15em; color: var(--dim); }
.badge-line.strong { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.06em; }

/* ============================================================
   SERVICES
   ============================================================ */

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Translucent, not opaque — so the one page-wide light passes through every
   card instead of each sitting as a separate box on a background. */
.craft-card {
  position: relative;
  padding: 34px 26px 30px;
  border: 1px solid rgba(112, 145, 205, 0.11);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(22, 40, 84, 0.26), rgba(5, 11, 28, 0.40));
  overflow: hidden;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}
/* Hairline of light along the top edge — reads as a lit surface, not a flat box. */
.craft-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 240, 216, 0.3), transparent);
}
.craft-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
}

.craft-num {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--accent-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.craft-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.craft-card p {
  margin: 0;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   STANDARD (why here)
   ============================================================ */

.section-standard { background: rgba(4, 8, 20, 0.34); max-width: none; }
.section-standard > * { max-width: var(--maxw); margin-inline: auto; }

/* Named areas rather than source order: on desktop the photo sits beside a
   heading-then-list column; on mobile it slots BETWEEN them, so it stays
   visually attached to the heading instead of stranded after the whole list. */
.standard {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  grid-template-areas:
    "head figure"
    "list figure";
  grid-template-rows: auto 1fr;
  column-gap: 64px;
  align-items: start;
}

.standard-head { grid-area: head; }
.standard-figure { grid-area: figure; align-self: center; }

.check-list {
  grid-area: list;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Divider rules rather than cards — the reference layout reads as one clean
   list, not four separate boxes competing with the photo beside it. */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.check-item:last-child { border-bottom: 1px solid var(--border); }

.check-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid rgba(224, 199, 149, 0.32);
  background: radial-gradient(circle at 34% 30%, rgba(250, 240, 216, 0.16), rgba(171, 135, 82, 0.05) 70%);
  color: var(--accent);
}
.check-mark svg { width: 15px; height: 15px; }

.check-item h3 {
  margin: 0 0 6px;
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.check-item p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 44ch;
}

.standard-figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(112, 145, 205, 0.11);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  min-width: 0;
}
.standard-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.94);
}
/* Same navy veil + top hairline the other photos get, so it stays part of the
   one lit surface rather than a bright rectangle. */
.standard-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(7, 16, 38, 0.14), rgba(4, 10, 26, 0.44));
}
.standard-figure::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 18px;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(250, 240, 216, 0.34), transparent);
}

/* Rating pill floating over the bottom of the photo. */
.rating-badge {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  inset-inline: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(224, 199, 149, 0.22);
  background: rgba(6, 12, 28, 0.82);
  backdrop-filter: blur(10px);
}

.rating-stars {
  font-size: 14px;
  letter-spacing: 0.06em;
  background: var(--accent-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rating-score {
  font-family: Heebo, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.rating-source {
  margin-inline-start: auto;
  font-size: 12.5px;
  color: var(--dim);
}

/* ============================================================
   GALLERY
   ============================================================ */

.section-work { background: rgba(4, 8, 20, 0.2); max-width: none; }
.section-work > * { max-width: var(--maxw); margin-inline: auto; }

/* Named areas, same pattern as .standard — desktop keeps photo beside copy,
   mobile reorders to head → figure → body. */
.results {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "figure head"
    "figure body";
  grid-template-rows: auto auto;
  column-gap: 60px;
  align-content: center;
  align-items: start;
}

.results-head { grid-area: head; align-self: end; }
.results-body { grid-area: body; }

.results-figure {
  grid-area: figure;
  align-self: center;
  position: relative;
  margin: 0;
  border: 1px solid rgba(112, 145, 205, 0.11);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 940 / 788;
  min-width: 0;
}

.results-head .section-title { margin-bottom: 18px; }

.results-note {
  margin: 22px 0 26px;
  font-size: 14.5px;
  color: var(--dim);
  max-width: 46ch;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas:
    "visual head"
    "visual body";
  grid-template-rows: auto auto;
  column-gap: 60px;
  align-content: center;
  align-items: start;
}

.about-head { grid-area: head; align-self: end; }
.about-copy { grid-area: body; }
.about-visual { grid-area: visual; align-self: center; min-width: 0; }

.frame-portrait { aspect-ratio: 4 / 5; }

.about-copy p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 20px;
  max-width: 58ch;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 34px;
}

.point {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.point:last-child { border-bottom: 1px solid var(--border); }

.point-title { font-size: 16px; font-weight: 600; color: var(--text); }
.point-text { font-size: 15px; color: var(--dim); }

/* ============================================================
   PROCESS
   ============================================================ */

.section-process { background: rgba(4, 8, 20, 0.34); max-width: none; }
.section-process > * { max-width: var(--maxw); margin-inline: auto; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(224, 199, 149, 0.35);
  background: radial-gradient(circle at 34% 30%, rgba(250, 240, 216, 0.16), rgba(171, 135, 82, 0.05) 70%);
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 700;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.step p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   VISIT
   ============================================================ */

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.socials { display: flex; gap: 22px; font-size: 15px; }
.social {
  color: var(--muted);
  border-bottom: 1px solid var(--border-hi);
  padding-bottom: 3px;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.social:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- opening hours, with today highlighted ---------- */

.hours {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
  font-size: 15.5px;
}

.hours-caption {
  text-align: start;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.hours th,
.hours td {
  padding: 13px 14px;
  border-top: 1px solid var(--border);
  font-weight: 400;
  color: var(--muted);
}
.hours th { text-align: start; color: var(--text); font-weight: 600; }
.hours td { text-align: end; font-variant-numeric: tabular-nums; }
.hours tr:last-child th,
.hours tr:last-child td { border-bottom: 1px solid var(--border); }

.hours .closed { color: var(--dim); }

/* The live "today" row — a small human detail that signals the site is
   maintained. Set by script.js from the visitor's own clock. */
.hours tr.is-today th,
.hours tr.is-today td {
  border-top-color: rgba(224, 199, 149, 0.4);
  background: rgba(224, 199, 149, 0.055);
  color: var(--accent-light);
}
.hours tr.is-today th::after {
  content: "היום";
  display: inline-block;
  margin-inline-start: 10px;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(224, 199, 149, 0.4);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  vertical-align: middle;
}
.hours tr.is-today + tr th,
.hours tr.is-today + tr td { border-top-color: rgba(224, 199, 149, 0.4); }

.visit-cards { display: flex; flex-direction: column; gap: 14px; }

.info-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(112, 145, 205, 0.11);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(22, 40, 84, 0.26), rgba(5, 11, 28, 0.40));
  overflow: hidden;
  transition: border-color 240ms var(--ease);
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 240, 216, 0.32), transparent);
}
.info-card:hover { border-color: var(--border-hi); }

.info-chip {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(224, 199, 149, 0.28);
  background: radial-gradient(circle at 34% 30%, rgba(250, 240, 216, 0.18), rgba(171, 135, 82, 0.06) 70%);
  color: var(--accent);
}
.info-chip svg { width: 20px; height: 20px; }

.info-body { min-width: 0; }

.info-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.info-value {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
}
.info-value a { transition: color 200ms var(--ease); }
.info-value a:hover { color: var(--accent); }

.info-note { margin: 0; font-size: 14.5px; color: var(--dim); }

.info-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.info-link:hover { border-bottom-color: var(--accent); }

/* ============================================================
   CURSOR GLOW
   A soft champagne light that follows the pointer. Deliberately very faint
   and screen-blended: the do-not-reintroduce list forbids bright light pools
   that wash the navy toward white, and this has to stay a hint of movement,
   not an ambient wash. Sits behind everything (z-index 0 + body children
   above it) and never intercepts clicks.
   Disabled entirely on touch devices and under reduced-motion.
   ============================================================ */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 460px;
  height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(224, 199, 149, 0.10), rgba(171, 135, 82, 0.04) 42%, transparent 68%);
  filter: blur(26px);
  transition: opacity 400ms var(--ease);
  will-change: transform;
}
.cursor-glow.is-visible { opacity: 1; }

/* The glow lives behind content; these need a stacking context above it. */
.hero, .section, .footer { position: relative; z-index: 1; }

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* ============================================================
   WHATSAPP FLOAT
   Persistent bottom-corner CTA, separate from the in-page WhatsApp
   buttons — this one follows scroll. Reuses .btn-primary's exact
   gradient + inset highlight + shadow so it reads as the same accent
   surface rather than a new light source (see hero-glow's note above
   on why new glows are rejected).
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #0a1420;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 220, 0.55),
    0 10px 26px rgba(171, 135, 82, 0.28);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 220, 0.7),
    0 14px 32px rgba(171, 135, 82, 0.38);
}

@media (max-width: 760px) {
  .whatsapp-float {
    bottom: 18px;
    inset-inline-end: 18px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 25px; height: 25px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  background: rgba(4, 8, 20, 0.42);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name { margin: 0; font-size: 15px; font-weight: 600; }
.footer-meta { margin: 2px 0 0; font-size: 13.5px; color: var(--dim); }

.footer-links { display: flex; flex-wrap: wrap; gap: 24px; font-size: 14.5px; color: var(--muted); }
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  /* Photo moves between the heading and the list so the two read as one block. */
  .standard {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "figure"
      "list";
    grid-template-rows: auto auto auto;
    row-gap: 30px;
  }
  .standard-figure { max-width: 460px; width: 100%; aspect-ratio: 4 / 3.4; }
  .check-list { margin-top: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 460px; }
  /* Heading always precedes its photo once stacked — a photo above its own
     title reads as an image with no context. Same rule as .standard above. */
  .about {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "visual"
      "body";
    row-gap: 30px;
  }
  .about-visual { max-width: 340px; width: 100%; }

  .results {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "figure"
      "body";
    row-gap: 30px;
  }

  .visit { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 76px 22px; }
  .nav-inner { padding: 14px 22px; gap: 16px; }

  .nav-links {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    background: rgba(7, 16, 38, 0.98);
    border-bottom: 1px solid transparent;
    transition: max-height 300ms var(--ease), padding 300ms var(--ease), border-color 300ms var(--ease);
  }
  .nav-links.open {
    max-height: 320px;
    padding: 8px 22px 18px;
    border-bottom-color: var(--border);
  }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }

  .nav-cta { margin-inline-start: auto; padding: 9px 16px; font-size: 14px; }
  .nav-toggle { display: flex; }

  .hero { padding: 44px 0 52px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  /* ---- mobile density ----
     Desktop's generous vertical rhythm made the phone page ~9000px tall (about
     11 screenfuls). Everything below is spacing only — no font sizes, no
     colours, no layout changes — so the design reads identically, just tighter.
     Measured at 390px wide: 9002px → 7852px (10.7 → 9.3 screenfuls). */
  .section { padding: 48px 20px; }
  /* The hero photo is the single tallest element on the page; a shallower crop
     here saves ~120px without losing the signage. */
  .frame-hero { aspect-ratio: 4 / 3.8; }
  .section-head { margin-bottom: 32px; }

  .hero-lead { margin-bottom: 26px; }
  .hero-actions { margin-bottom: 28px; }

  .craft-grid, .marks-grid { gap: 12px; }
  .craft-card { padding: 24px 20px 22px; }
  .craft-num { margin-bottom: 12px; }
  .craft-card h3 { margin-bottom: 8px; }

  .standard, .about, .results { row-gap: 24px; }
  .check-list { margin-top: 0; }
  .check-item { padding: 16px 0; gap: 14px; }
  .check-item h3 { margin-bottom: 4px; }

  .results-note { margin: 16px 0 20px; }

  .about-copy p { margin-bottom: 14px; }
  .about-points { margin-top: 24px; }
  .point { padding: 14px 0; }

  .steps { gap: 12px; }
  .step { padding-top: 18px; }
  .step-num { width: 34px; height: 34px; margin-bottom: 12px; }
  .step h3 { margin-bottom: 6px; }

  .visit-actions { margin: 24px 0 20px; }
  .hours { margin-top: 26px; }
  .hours th, .hours td { padding: 10px 12px; }
  .visit-cards { gap: 10px; }
  .info-card { padding: 20px 20px; gap: 14px; }
  .info-label { margin-bottom: 5px; }

  .footer-inner { padding: 28px 20px; gap: 18px; }
}

@media (max-width: 480px) {
  .craft-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-badge { position: static; transform: none; margin-top: 16px; align-self: center; }
  .hours th, .hours td { padding: 12px 8px; }
  /* Stacked so the source line doesn't get squeezed against the score. */
  .rating-badge { flex-wrap: wrap; gap: 8px 10px; padding: 12px 18px; border-radius: 20px; }
  .rating-source { margin-inline-start: 0; flex-basis: 100%; }
}
