/* ============================================================
   PRESTIGE BEAUTY SALON — Coafor · Machiaj · Cosmetică · Unghii
   Suceava · Site premium static · „Your beauty is our Prestige"
   ============================================================ */

:root {
  --ink:      #000000;   /* negru */
  --coal:     #080809;
  --panel:    #101012;
  --panel-2:  #18181b;
  --line:     rgba(255, 255, 255, 0.10);
  --line-2:   rgba(255, 255, 255, 0.20);

  --cream:    #f8f8f6;   /* alb */
  --sand:     #e3e3de;   /* text principal — mai luminos pentru contrast */
  --muted:    #b7b7b1;   /* secundar — mai lizibil pe negru */
  --dim:      #94948e;   /* etichete — mai clar */

  --brass:    #c9a75f;   /* auriu */
  --brass-2:  #eed9a0;   /* auriu deschis */
  --brick:    #eed9a0;   /* accent auriu */

  --radius:   18px;
  --radius-sm:12px;
  --maxw:     1240px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);

  /* Negru · alb · auriu — titluri: Bodoni Moda (fashion serif), text/UI: Manrope */
  --font-display: 'Bodoni Moda', 'Times New Roman', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #2c2621; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: #3a332b; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7.4vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.005em;
}
.section-title {
  font-size: clamp(2.3rem, 4.8vw, 3.9rem);
  font-weight: 400;
  line-height: 1.0;
}
.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--sand);
  max-width: 60ch;
}
.italic-accent { color: var(--brass-2); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
section { position: relative; }
.pad { padding: clamp(72px, 11vw, 150px) 0; }
.pad-sm { padding: clamp(48px, 7vw, 90px) 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 15px 30px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad);
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 50px; border: 1px solid transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold {
  background: linear-gradient(135deg, var(--brass-2), var(--brass));
  color: #141310;
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:hover::after { transform: translateX(130%); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-2); transform: translateY(-2px); }
.btn-dark {
  background: var(--panel); color: var(--cream); border-color: var(--line);
}
.btn-dark:hover { background: var(--panel-2); border-color: var(--line-2); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
nav.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px); height: 78px;
  transition: height 0.4s var(--ease), background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
nav.site.scrolled {
  height: 64px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; z-index: 210; }
.brand .mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 1.12rem; letter-spacing: 0.26em; text-transform: uppercase;
  padding-left: 0.26em;
}
.brand-text small {
  font-size: 0.5rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px; padding-left: 0.42em;
}
.nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--sand); position: relative; padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--brass); transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-size: 0.85rem; font-weight: 600; color: var(--cream);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--brass); }

.burger {
  display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px;
  background: none; border: none; cursor: pointer; z-index: 210; justify-content: center;
}
.burger span { display: block; height: 2px; width: 100%; background: var(--cream); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 205;
  background: rgba(0, 0, 0, 0.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 8px; opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--cream);
  padding: 10px 0; opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.25s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--brass-2); }
.mobile-menu .mm-foot { margin-top: 30px; display: flex; gap: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 3%, rgba(0,0,0,0.42) 46%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 46%, rgba(0,0,0,0.12) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 9vw, 110px); }
.hero h1 { margin: 18px 0 22px; max-width: 16ch; }
.hero .lead { color: #e9e0d2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-meta .hm { display: flex; flex-direction: column; gap: 3px; }
.hero-meta .hm b { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; }
.hero-meta .hm span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.scroll-cue {
  position: absolute; right: clamp(20px,5vw,56px); bottom: 40px; z-index: 3;
  writing-mode: vertical-rl; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 14px;
}
.scroll-cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--brass), transparent); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--coal); overflow: hidden; padding: 22px 0;
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 300; color: var(--sand); display: inline-flex; align-items: center; gap: 56px;
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--brass); font-size: 0.8em; }
@keyframes scrollx { to { transform: translateX(-50%); } }
/* mătură de lumină aurie — folosită pe galerie, banda de poze și carduri */
@keyframes shineSweep {
  0%   { left: -60%; opacity: 0; }
  16%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* ---------- Section head ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .section-title { margin: 18px 0 20px; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; height: auto; display: block; transition: transform 1.1s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-media .badge-float {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.split-media .badge-float b { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 3px; }
.split-media .badge-float span { font-size: 0.72rem; color: var(--sand); }
.stars { color: var(--brass); letter-spacing: 2px; font-size: 0.9rem; }
.split-body p + p { margin-top: 18px; }
.split-body .signature {
  font-family: var(--font-display); font-size: 1.55rem;
  color: var(--brass-2); margin-top: 26px; letter-spacing: 0.01em;
}

/* ---------- Feature bullets ---------- */
.feat-list { list-style: none; margin-top: 30px; display: grid; gap: 2px; }
.feat-list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.feat-list li:last-child { border-bottom: 1px solid var(--line); }
.feat-list .fi { color: var(--brass); flex-shrink: 0; margin-top: 3px; }
.feat-list h4 { font-family: var(--font-sans); font-size: 0.98rem; font-weight: 600; letter-spacing: 0.01em; }
.feat-list p { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* ---------- Services preview grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; position: relative; transition: transform 0.5s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card-img { overflow: hidden; position: relative; }
.card-img img { width: 100%; height: auto; display: block; transition: transform 1.2s var(--ease); }
.card:hover .card-img img { transform: scale(1.07); }
.card-img::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%; z-index: 2; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,246,214,0.38), transparent);
  transform: skewX(-18deg); opacity: 0;
}
.card:hover .card-img::before { animation: shineSweep 1s var(--ease); }
.card-body { padding: 26px; }
.card-body .k { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); }
.card-body h3 { font-size: 1.55rem; font-weight: 400; margin: 12px 0 10px; }
.card-body p { font-size: 0.92rem; color: var(--muted); }
.card-body .from { margin-top: 18px; display: flex; align-items: baseline; gap: 8px; }
.card-body .from span { font-size: 0.72rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.12em; }
.card-body .from b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--cream); }

/* ---------- Gallery — grid ordonat, toate lucrările laolaltă ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}
.gallery a {
  position: relative; overflow: hidden; border-radius: 14px; display: block;
  aspect-ratio: 4 / 5;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.gallery a.g-wide { grid-column: span 2; aspect-ratio: 8 / 5; }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s var(--ease), filter 0.6s var(--ease); }
.gallery a:hover { transform: translateY(-5px); box-shadow: 0 34px 66px -32px rgba(0,0,0,0.85); transition-delay: 0s; }
.gallery a:hover img { transform: scale(1.08); }
/* întunecare + halou auriu la hover */
.gallery a::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55), transparent 55%),
    radial-gradient(130% 80% at 50% 118%, rgba(201,167,95,0.28), transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.gallery a:hover::after { opacity: 1; }
/* mătură de lumină aurie (signature Prestige) */
.gallery a::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%; z-index: 2; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,246,214,0.42), transparent);
  transform: skewX(-18deg); opacity: 0;
}
.gallery a:hover::before { animation: shineSweep 0.95s var(--ease); }
/* Galerie — responsive */
@media (max-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery a.g-wide { grid-column: span 2; aspect-ratio: 16 / 10; }
}

/* ---------- Before / After — slider gene ---------- */
.ba-slider { max-width: 720px; margin: clamp(30px, 5vw, 56px) auto 0; }
.ba-wrap {
  --pos: 50%;
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line-2); user-select: none;
  touch-action: pan-y; cursor: ew-resize;
  box-shadow: 0 44px 90px -46px rgba(0,0,0,0.85);
}
.ba-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  display: block; pointer-events: none; -webkit-user-drag: none;
}
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); z-index: 1; }
.ba-tag {
  position: absolute; bottom: 16px; z-index: 3; font-size: 0.64rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cream); background: rgba(0,0,0,0.52);
  border: 1px solid var(--line-2); padding: 6px 13px; border-radius: 30px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; z-index: 3;
  background: linear-gradient(var(--brass-2), var(--brass)); transform: translateX(-50%); pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 4;
  width: 54px; height: 54px; border-radius: 50%; transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--brass-2), var(--brass)); color: #141310;
  border: 3px solid rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; box-shadow: 0 10px 28px rgba(0,0,0,0.55); touch-action: none;
}
.ba-handle svg { width: 26px; height: 26px; }
.ba-wrap.dragging .ba-handle { transform: translate(-50%, -50%) scale(1.08); }
.ba-handle:focus-visible { outline: 2px solid var(--brass-2); outline-offset: 4px; }
.ba-wrap:not(.dragging) { transition: --pos 0.14s linear; }
.ba-pulse { animation: baPulse 2.8s var(--ease) 0.7s 2; }
@keyframes baPulse {
  0%,100% { --pos: 50%; } 28% { --pos: 66%; } 60% { --pos: 38%; }
}
@property --pos { syntax: '<percentage>'; inherits: true; initial-value: 50%; }
.ba-hint { text-align: center; margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Stats band ---------- */
.stat-band { background: var(--coal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(40px, 6vw, 72px) 28px; text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat b { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.6rem, 5vw, 3.8rem); display: block; color: var(--cream); }
.stat b .plus { color: var(--brass); }
.stat span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member { border-radius: var(--radius); overflow: hidden; position: relative; }
.member img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 1s var(--ease); filter: saturate(0.95); }
.member:hover img { transform: scale(1.05); }
.member-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92), transparent);
}
.member-cap h3 { font-size: 1.35rem; font-weight: 400; }
.member-cap .role { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-top: 4px; }
.member-cap .tags { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.member-cap .tags span { font-size: 0.68rem; color: var(--sand); border: 1px solid var(--line-2); border-radius: 20px; padding: 3px 11px; }

/* ---------- Testimonials ---------- */
.tst-marquee { overflow: hidden; }
.tst-track { display: flex; gap: 22px; width: max-content; animation: scrollx 60s linear infinite; }
.tst-track.row2 { animation-duration: 75s; animation-direction: reverse; margin-top: 22px; }
.tst-marquee:hover .tst-track { animation-play-state: paused; }
.tst {
  width: 380px; flex-shrink: 0; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px 26px; display: flex; flex-direction: column; gap: 15px;
}
.tst::before {
  content: "\201C"; position: absolute; top: 2px; right: 24px;
  font-family: var(--font-display); font-size: 5.4rem; line-height: 1; color: var(--brass);
  opacity: 0.16; pointer-events: none;
}
.tst::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.tst:hover::after { opacity: 1; }
.tst .stars { color: var(--brass); letter-spacing: 3px; font-size: 0.95rem; }
.tst p { font-size: 1rem; color: var(--sand); line-height: 1.62; flex: 1; }
.tst .who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 15px; }
.tst .who .av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brass-2), var(--brass)); color: #141310;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem;
}
.tst .who b { font-size: 0.92rem; font-weight: 600; }
.tst .who span { font-size: 0.74rem; color: var(--dim); display: block; }

/* Static testimonial grid (reviews page) */
.tst-grid { columns: 3; column-gap: 22px; }
.tst-grid .tst { width: 100%; margin-bottom: 22px; break-inside: avoid; display: inline-flex; }

/* ---- Rating showcase (număr de recenzii evidențiat) ---- */
.rating-showcase {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1px 1fr; align-items: center;
  gap: clamp(26px, 5vw, 58px);
  background: linear-gradient(150deg, var(--panel-2), var(--panel) 62%);
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: clamp(30px, 5vw, 56px);
}
.rating-showcase::before {
  content: ""; position: absolute; top: -40%; right: -12%; width: 46%; height: 180%; pointer-events: none;
  background: radial-gradient(circle, rgba(201,167,95,0.16), transparent 62%);
}
.rs-left { text-align: center; position: relative; z-index: 1; }
.rs-num { font-family: var(--font-display); font-weight: 400; font-size: clamp(4.4rem, 9vw, 7rem); line-height: 0.86; color: var(--cream); }
.rs-stars { color: var(--brass); letter-spacing: 5px; font-size: 1.25rem; margin-top: 10px; }
.rs-src { margin-top: 14px; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); display: flex; gap: 8px; align-items: center; justify-content: center; }
.rs-src svg { width: 15px; height: 15px; }
.rs-div { width: 1px; align-self: stretch; background: linear-gradient(var(--line), var(--line-2), var(--line)); }
.rs-right { position: relative; z-index: 1; }
.rs-count { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.05; color: var(--cream); }
.rs-count b { color: var(--brass-2); font-weight: 400; }
.rs-sub { display: block; margin-top: 6px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }
.rs-track { height: 8px; border-radius: 30px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); overflow: hidden; margin: 22px 0 16px; }
.rs-track i { display: block; height: 100%; width: 0; border-radius: 30px; background: linear-gradient(90deg, var(--brass), var(--brass-2)); transition: width 1.4s var(--ease); }
.rating-showcase.in .rs-track i { width: 100%; }
.rs-note { color: var(--sand); font-size: 0.95rem; line-height: 1.6; max-width: 48ch; }
.rating-showcase .btn { margin-top: 24px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.9), rgba(0,0,0,0.55)); z-index: 1; }
.cta-inner { position: relative; z-index: 2; padding: clamp(56px, 9vw, 110px) clamp(28px, 6vw, 80px); text-align: center; }
.cta-inner h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 300; margin: 18px auto 22px; max-width: 18ch; }
.cta-inner .lead { margin: 0 auto; }
.cta-inner .hero-actions { justify-content: center; }

/* ---------- Services page: price list ---------- */
.price-cat { margin-bottom: clamp(48px, 7vw, 84px); }
.price-cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-bottom: 1px solid var(--line-2); padding-bottom: 20px; margin-bottom: 8px; }
.price-cat-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 300; }
.price-cat-head .idx { font-family: var(--font-display); color: var(--brass); font-size: 1.1rem; }
.price-cat-head p { font-size: 0.9rem; color: var(--muted); max-width: 44ch; }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), background 0.35s;
}
.price-row:hover { padding-left: 14px; background: linear-gradient(to right, var(--panel), transparent); }
.price-row .pr-name { display: flex; flex-direction: column; gap: 5px; }
.price-row .pr-name b { font-size: 1.12rem; font-weight: 500; letter-spacing: 0.01em; }
.price-row .pr-name .pr-tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: #141310; background: var(--brass-2); padding: 3px 9px; border-radius: 20px; width: fit-content; font-weight: 700; }
.price-row .pr-name p { font-size: 0.88rem; color: var(--muted); max-width: 52ch; }
.price-row .pr-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; white-space: nowrap; }
.price-row .pr-price small { font-size: 0.7rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; margin-right: 6px; font-family: var(--font-sans); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.info-block { display: grid; gap: 2px; }
.info-item { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.info-item:last-child { border-bottom: 1px solid var(--line); }
.info-item .ii-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--brass); flex-shrink: 0; }
.info-item .ii-ic svg { width: 18px; height: 18px; }
.info-item .k { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.info-item .v { font-size: 1.05rem; margin-top: 3px; }
.info-item .v a:hover { color: var(--brass-2); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 360px; height: 100%; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(0.35) contrast(1.05); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr { border-top: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: 1px solid var(--line); }
.hours-table td { padding: 13px 0; font-size: 0.95rem; }
.hours-table td:first-child { color: var(--sand); }
.hours-table td:last-child { text-align: right; color: var(--cream); font-variant-numeric: tabular-nums; }
.hours-table tr.today { color: var(--brass-2); }
.hours-table tr.today td { color: var(--brass-2); font-weight: 600; }
.hours-table td .closed { color: var(--dim); }

.form { display: grid; gap: 18px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; color: var(--cream); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); background: var(--panel-2); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--dim); }

/* ---------- Simple page hero ---------- */
.page-hero { padding: clamp(130px, 18vw, 200px) 0 clamp(40px, 6vw, 70px); position: relative; }
.page-hero .display { max-width: 18ch; }
.page-hero .lead { margin-top: 22px; }
.breadcrumb { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--brass); }

/* ---------- Legal ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.5rem; font-weight: 400; margin: 40px 0 14px; color: var(--cream); }
.legal h3 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 600; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--sand); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--brass-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
footer.site { background: var(--coal); border-top: 1px solid var(--line); padding-top: clamp(60px, 8vw, 96px); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.foot-brand .brand { margin-bottom: 22px; }
.foot-brand p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.foot-social { display: flex; gap: 12px; margin-top: 22px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--sand);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.foot-social a:hover { border-color: var(--brass); color: var(--brass-2); transform: translateY(-3px); }
.foot-col h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.foot-col ul { list-style: none; display: grid; gap: 12px; }
.foot-col a { font-size: 0.92rem; color: var(--sand); transition: color 0.25s; }
.foot-col a:hover { color: var(--brass-2); }
.foot-bottom {
  border-top: 1px solid var(--line); padding: 26px 0; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 16px;
}
.foot-bottom p { font-size: 0.82rem; color: var(--dim); }
.foot-legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-legal-links a { font-size: 0.8rem; color: var(--muted); }
.foot-legal-links a:hover { color: var(--brass-2); }
.foot-credit a { color: var(--sand); }
.foot-credit a:hover { color: var(--brass-2); }
.anpc-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.anpc-row a img { height: 34px; opacity: 0.8; transition: opacity 0.3s; border-radius: 4px; }
.anpc-row a:hover img { opacity: 1; }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .tst-grid { columns: 2; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-brand { grid-column: 1 / -1; }
  .tst-grid { columns: 1; }
  .form .row2 { grid-template-columns: 1fr; }
  .rating-showcase { grid-template-columns: 1fr; text-align: center; }
  .rating-showcase .rs-div { display: none; }
  .rs-note { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .cards, .team-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: 20px; }
  .foot-top { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 8px; }
  .price-row .pr-price { text-align: left; }
}

/* ---- Scris mai mic & mai lizibil pe telefon ---- */
@media (max-width: 720px) {
  body { font-size: 0.97rem; line-height: 1.62; }
  .display { font-size: clamp(2.3rem, 11.5vw, 3.1rem); line-height: 1.02; }
  .section-title { font-size: clamp(1.85rem, 8.4vw, 2.5rem); }
  .lead { font-size: 0.98rem; }
  .cine-hero .lead { font-size: 0.95rem; }
  .btn { --pad: 13px 24px; font-size: 0.9rem; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.24em; }
  .card-body h3 { font-size: 1.35rem; }
  .card-body p, .split-body p, .price-row .pr-name p { font-size: 0.92rem; }
  .rs-num { font-size: clamp(3.4rem, 19vw, 4.6rem); }
  .rs-count { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .rs-note { font-size: 0.92rem; }
  .tst { width: 300px; padding: 28px 22px; }
  .tst p { font-size: 0.95rem; }
  .book-title { font-size: clamp(1.55rem, 7vw, 2rem); }
}
@media (max-width: 400px) {
  .display { font-size: 2.15rem; }
  .section-title { font-size: 1.72rem; }
  .wrap { padding: 0 18px; }
}

/* ============================================================
   ADIȚIONALE — v4 (photo marquee premium, echipă, QR, servicii)
   ============================================================ */

/* ---- Premium photo marquee (sub hero) ---- */
.photo-band {
  position: relative;
  background: var(--coal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px) 0;
  overflow: hidden;
}
.photo-band .pb-label {
  text-align: center; margin-bottom: 22px;
  font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass);
}
.photo-track { display: flex; gap: 18px; width: max-content; animation: scrollx 48s linear infinite; }
.photo-band:hover .photo-track { animation-play-state: paused; }
.photo-item {
  position: relative; flex-shrink: 0;
  height: clamp(300px, 40vw, 440px);
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.photo-item:hover { border-color: rgba(201,167,95,0.55); box-shadow: 0 26px 60px -30px rgba(0,0,0,0.85); }
.photo-item img { height: 100%; width: auto; display: block; transition: transform 1.2s var(--ease), filter 0.6s var(--ease); }
.photo-item:hover img { transform: scale(1.09); }
.photo-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px; z-index: 3;
  font-size: 0.8rem; letter-spacing: 0.04em; color: var(--cream);
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  transform: translateY(8px); opacity: 0.86; transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.photo-item:hover .cap { transform: translateY(0); opacity: 1; }
.photo-item::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%; z-index: 2; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,246,214,0.4), transparent);
  transform: skewX(-18deg); opacity: 0;
}
.photo-item:hover::before { animation: shineSweep 1s var(--ease); }
.photo-band::before, .photo-band::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none;
}
.photo-band::before { left: 0; background: linear-gradient(to right, var(--coal), transparent); }
.photo-band::after { right: 0; background: linear-gradient(to left, var(--coal), transparent); }

/* ---- Team: description under member ---- */
.member-desc { margin-top: 14px; }
.member-desc h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.member-desc .role { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin: 5px 0 10px; }
.member-desc p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.member.card-style { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.member.card-style img { aspect-ratio: 1/1; border-radius: 0; }
.member.card-style .member-desc { padding: 22px 22px 26px; }

/* ---- Contact: QR card + booking block ---- */
/* ---- Contact: panou „programare rapidă" ---- */
.book-panel {
  position: relative; margin-top: 8px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px); overflow: hidden;
}
.book-panel::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--brass-2), transparent 42%, transparent 58%, var(--brass));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.55; pointer-events: none;
}
.book-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.14; margin: 16px 0; }
.book-lead { color: var(--sand); font-size: 0.98rem; line-height: 1.6; margin-bottom: 26px; }
.book-actions { display: flex; flex-direction: column; gap: 12px; }
.book-actions .btn { justify-content: center; }
.book-actions .btn svg { width: 18px; height: 18px; }
.book-perks { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.book-perks li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--sand); }
.book-perks svg { width: 18px; height: 18px; color: var(--brass); flex-shrink: 0; }

/* ---- Services: category tabs + policy + expandable ---- */
.svc-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.svc-tabs a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 9px 18px; border: 1px solid var(--line-2); border-radius: 40px; color: var(--sand);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.svc-tabs a:hover { background: var(--brass); color: #141310; border-color: var(--brass); }
.price-row .pr-name .pr-meta { font-size: 0.78rem; color: var(--dim); letter-spacing: 0.04em; }
.svc-more { margin-top: 6px; }
.svc-more summary {
  cursor: pointer; list-style: none; font-size: 0.8rem; color: var(--brass); letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
}
.svc-more summary::-webkit-details-marker { display: none; }
.svc-more summary::after { content: "+"; font-size: 1rem; line-height: 1; }
.svc-more[open] summary::after { content: "–"; }
.svc-more[open] summary { margin-bottom: 8px; }
.svc-more p { font-size: 0.88rem; color: var(--muted); max-width: 60ch; }
.policy-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 22px 24px; margin-top: 20px;
}
.policy-note .pn-ic { color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.policy-note p { font-size: 0.9rem; color: var(--sand); }
.policy-note b { color: var(--cream); }

/* ---- Reveal for scaling images ---- */
[data-reveal="zoom"] { opacity: 0; transform: scale(0.96); }
[data-reveal="zoom"].in { opacity: 1; transform: none; }

@media (max-width: 560px) {
  .qr-card { justify-content: center; text-align: center; }
  .qr-card .qr-text { min-width: 0; }
}

/* ============================================================
   VARIANTE DE FONT — schimbă doar aici (și în <link> din <head>)
   Implicit acum: titluri = Fraunces, text = Outfit
   ------------------------------------------------------------
   • Varianta „Editorial lux": --font-display:'Cormorant Garamond'; --font-sans:'Manrope';
   • Varianta „Modern tech":   --font-display:'Space Grotesk';      --font-sans:'Inter Tight';
   • Varianta „Fashion":       --font-display:'Playfair Display';   --font-sans:'DM Sans';
   ============================================================ */

/* ============================================================
   ANIMAȚII PREMIUM (v7) — scroll progress, CTA glow, tilt, clip
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 300;
  background: linear-gradient(90deg, var(--brass), var(--brass-2));
  box-shadow: 0 0 12px rgba(200,162,76,0.6);
  transition: width 0.12s linear;
}
/* CTA glow pulse (doar în banda CTA) */
.cta-band .btn-gold { animation: glowPulse 3.4s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 10px 30px -10px rgba(200,162,76,0.45); }
  50%      { box-shadow: 0 14px 46px -8px rgba(200,162,76,0.85); }
}
/* Butoane magnetice + press */
.btn { will-change: transform; }
.btn:active { transform: translateY(1px) scale(0.985); }
/* Card recenzie: lift + tilt subtil */
.tst { transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s; will-change: transform; }
.tst:hover { border-color: var(--line-2); box-shadow: 0 24px 60px -28px rgba(0,0,0,0.7); }
/* Reveal cu clip pentru imagini mari */
[data-reveal="clip"] { opacity: 0; clip-path: inset(0 0 14% 0); transform: translateY(24px); transition: clip-path 1.1s var(--ease), opacity 1.1s var(--ease), transform 1.1s var(--ease); }
[data-reveal="clip"].in { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }
/* Accent titlu — gradient cald subtil */
.italic-accent { background: linear-gradient(96deg, var(--brass-2), #f3e0b0 55%, var(--brass)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* Nav: linie de accent la hover pe logo */
.brand { transition: opacity 0.3s; }
.brand:hover { opacity: 0.86; }
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .cta-band .btn-gold { animation: none; }
  .scroll-progress { display: none; }
  [data-reveal="clip"] { opacity: 1; clip-path: none; transform: none; }
}

/* ============================================================
   LOGO REAL + OPTIMIZĂRI MOBIL / TABLETĂ (v6)
   ============================================================ */

/* Logo în nav (imagine reală) */
.brand img.mark { width: 34px; height: 34px; object-fit: contain; }
nav.site.scrolled .brand img.mark { width: 30px; height: 30px; }

/* Logo complet în footer */
.foot-brand .foot-logo { width: min(210px, 62%); height: auto; display: block; margin-bottom: 20px; opacity: 0.96; }

/* ---- TABLETĂ (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .wrap { padding-left: clamp(20px, 4vw, 40px); padding-right: clamp(20px, 4vw, 40px); }
  .split { gap: clamp(28px, 4vw, 54px); }
  .hero-inner { padding-bottom: clamp(48px, 8vw, 90px); }
  .display { font-size: clamp(2.4rem, 6vw, 4.2rem); }
}

/* ---- MOBIL MARE / TABLETĂ MICĂ (≤ 860px) ---- */
@media (max-width: 860px) {
  .hero { min-height: 92vh; min-height: 92svh; }
  .hero h1 { max-width: 20ch; }
  .split-media img { border-radius: var(--radius); }
  .photo-band .pb-label { margin-bottom: 16px; }
  .price-cat-head { gap: 8px; }
  .price-cat-head p { max-width: 100%; }
  .svc-tabs { gap: 8px; }
  .svc-tabs a { padding: 8px 14px; font-size: 0.74rem; }
}

/* ---- MOBIL (≤ 560px) ---- */
@media (max-width: 560px) {
  .pad { padding: clamp(52px, 13vw, 80px) 0; }
  .pad-sm { padding: clamp(40px, 10vw, 64px) 0; }
  .display { font-size: clamp(2.1rem, 10vw, 3rem); line-height: 1.0; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero .lead, .lead { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-meta { gap: 16px 24px; }
  .hero-meta .hm b { font-size: 1.35rem; }
  .photo-item { height: 300px; }
  .card-body { padding: 22px; }
  .member.card-style .member-desc { padding: 18px 18px 22px; }
  .qr-card { padding: 18px; gap: 16px; }
  .map-embed, .map-embed iframe { min-height: 300px; }
  .reviews-hero-band .big { font-size: 2.8rem; }
  .foot-legal-links { gap: 12px; }
  .scroll-cue { display: none; }
  .btn { --pad: 14px 24px; font-size: 0.78rem; }
}

/* ---- MOBIL FOARTE MIC (≤ 380px) ---- */
@media (max-width: 380px) {
  .display { font-size: clamp(1.9rem, 11vw, 2.4rem); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { grid-template-columns: 1fr; display: grid; gap: 12px; }
}

/* ============================================================
   PRESTIGE — componente adiționale
   ============================================================ */

/* Logo mark (SVG line P) în nav/footer — moștenește culoarea */
.brand .mark { color: var(--brass-2); }
nav.site .brand .mark { width: 30px; height: 36px; }
nav.site.scrolled .brand img.mark, nav.site.scrolled .brand .mark { width: 27px; height: 32px; }
.foot-brand .brand-lockup { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.foot-brand .brand-lockup .mark { width: 34px; height: 40px; color: var(--brass-2); }

/* Card „monogram" pentru servicii fără fotografie (machiaj, sprâncene) */
.card.card-mono .card-figure {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(201,168,106,0.18), transparent 55%),
    linear-gradient(160deg, var(--panel-2), var(--coal));
  display: flex; align-items: center; justify-content: center;
}
.card.card-mono .card-figure .mono {
  width: 42%; max-width: 130px; color: var(--brass);
  opacity: 0.9; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.card.card-mono .card-figure::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(245,238,228,0.015) 22px 44px);
}

/* Servicii preview: chip-uri „și de asemenea" */
.also-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; align-items: center; }
.also-row .al-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim); margin-right: 4px; }
.also-row .chip { font-size: 0.8rem; color: var(--sand); border: 1px solid var(--line-2); border-radius: 40px; padding: 7px 15px; }

/* Fondatoare / owner */
.founder-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.founder-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.founder-quote {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--panel-2), var(--coal));
  border: 1px solid var(--line-2); padding: clamp(30px,5vw,52px);
  display: flex; flex-direction: column; justify-content: center; gap: 20px; min-height: 380px;
}
.founder-quote .fq-mark { width: 46px; color: var(--brass); opacity: 0.9; }
.founder-quote blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.3; color: var(--cream);
}
.founder-quote .fq-by { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-2); }
.founder-quote .fq-by span { color: var(--muted); text-transform: none; letter-spacing: 0.02em; display:block; margin-top:3px; font-size: 0.82rem;}
.founder-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.founder-tags span { font-size: 0.74rem; color: var(--sand); border: 1px solid var(--line-2); border-radius: 30px; padding: 6px 14px; }

/* Marker → accent auriu */
.pill-note { display:inline-block; font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--brick); }

/* ============================================================
   HERO CINEMATIC (poster premium · negru / auriu)
   ============================================================ */
.cine-hero { position: relative; background: #000; }
.cine-stage {
  position: relative; min-height: 100vh; min-height: 100svh;
  overflow: hidden; display: flex; align-items: center;
  padding: clamp(120px, 16vh, 180px) 0 clamp(64px, 10vh, 110px);
}
.cine-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 0; transform: scale(1.06);
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}
.cine-stage .spot {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,35%), rgba(201,167,95,0.20), transparent 62%);
  transition: opacity 0.5s ease;
}
.cine-stage:hover .spot { opacity: 1; }
.cine-stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to top, #000 2%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.22) 56%, transparent 80%),
    linear-gradient(105deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.72) 34%, rgba(0,0,0,0.3) 66%, transparent 100%);
}
.cine-overlay { position: relative; z-index: 3; width: 100%; }
.cine-logo {
  width: clamp(140px, 18vw, 220px); height: auto; margin-bottom: 30px;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.7));
}
.cine-hero .display {
  max-width: 19ch; margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: 0.002em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 30px rgba(0,0,0,0.62);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cine-hero .lead { color: #f2f0ea; text-shadow: 0 1px 16px rgba(0,0,0,0.55); }
.cine-hero .hero-meta b { text-shadow: 0 1px 14px rgba(0,0,0,0.55); }
.cine-hero .hero-actions { margin-top: 32px; }
.cine-hero .scroll-cue {
  position: absolute; right: clamp(20px,5vw,56px); bottom: 40px; z-index: 4;
  writing-mode: vertical-rl; font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 14px;
}
.cine-hero .scroll-cue::after { content:""; width:1px; height:46px; background: linear-gradient(var(--brass), transparent); }

/* Gold shimmer sweep (text) — 21st.dev-style */
.shimmer {
  background: linear-gradient(100deg, var(--brass) 18%, #fff4d2 46%, var(--brass-2) 56%, var(--brass) 82%);
  background-size: 220% auto; color: transparent;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText { to { background-position: 220% center; } }

/* Reveal — blur variant */
[data-reveal="blur"] { opacity: 0; filter: blur(16px); transform: translateY(20px); transition: opacity 1s var(--ease), filter 1s var(--ease), transform 1s var(--ease); }
[data-reveal="blur"].in { opacity: 1; filter: none; transform: none; }

/* Card — gradient gold border glow on hover (masked border) */
.card { isolation: isolate; }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; z-index: 3;
  background: linear-gradient(135deg, transparent 28%, var(--brass-2) 50%, transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.45s var(--ease); pointer-events: none;
}
.card:hover::before { opacity: 1; }

/* Hero headline line-mask reveal (21st.dev-style) */
.line-reveal { display: block; overflow: hidden; }
.line-reveal > span { display: block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.line-reveal > span.in { transform: translateY(0); }
.line-reveal:nth-child(2) > span { transition-delay: 0.09s; }

@media (prefers-reduced-motion: reduce) {
  .shimmer { animation: none; }
  .cine-poster { animation: none; }
  .line-reveal > span { transform: none; }
  .gallery a:hover::before,
  .photo-item:hover::before,
  .card:hover .card-img::before { animation: none; }
}

/* Hero cinematic — mobil */
@media (max-width: 860px) {
  .cine-hero .display { max-width: 20ch; }
  .cine-hero .scroll-cue { display: none; }
}
