/* ==========================================================================
   KIT · core.css — mecanica comuna a tuturor site-urilor (NU aspectul).
   Aspectul vine din clienti/<c>/theme.css, care se lipeste DUPA acest fisier.
   Tokenuri pe care theme.css trebuie sa le defineasca in :root:
     --bg --ink --ink-soft --accent --accent-ink (text pe accent) --line --card
     --f-d (titluri) --f-b (text) --r (colturi) --nav-h
   Lectii iOS incluse: --vh masurat o data, blocare cu position:fixed, benzi prin transform.
   ========================================================================== */
:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --pad: 20px; --wrap: 1240px; --vh: 100vh; --nav-h: 68px; --r: 16px;
}
@media (min-width: 700px) { :root { --pad: 32px; } }
@media (min-width: 1100px) { :root { --pad: 48px; } }
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 20px); }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--f-b, system-ui); font-size: 16.5px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body.is-locked { position: fixed; left: 0; right: 0; overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.ico { display: inline-flex; width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.ico svg { width: 100%; height: 100%; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); position: relative; z-index: 1; }
section { position: relative; padding-block: 88px; }
@media (min-width: 900px) { section { padding-block: 128px; } }
.skip { position: absolute; left: 12px; top: -60px; z-index: 120; padding: 10px 16px; background: var(--ink); color: var(--bg); transition: top 200ms var(--ease-out); }
.skip:focus { top: 12px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* poze: culoarea medie tine locul pana se incarca */
.pic { position: relative; overflow: hidden; border-radius: var(--r); isolation: isolate; }
.pic img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 320ms var(--ease-out); }
.pic img.is-loaded, .no-js .pic img { opacity: 1; }

/* titluri care urca din spatele unei masti */
.lines > span { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.lines > span > i { display: block; font-style: normal; }
.gsap-on .lines > span > i { transform: translate3d(0, 105%, 0); }
.gsap-on .rise:not(.is-in) { opacity: 0; transform: translateY(26px); }

/* ---------- meniu pe tot ecranul (aspectul in tema) ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 96; }
.menu { position: fixed; inset: 0; z-index: 90; visibility: hidden; opacity: 0; transition: opacity 260ms var(--ease-out), visibility 0s 260ms; }
.menu.is-open { visibility: visible; opacity: 1; transition: opacity 300ms var(--ease-out); }
.menu-inner { height: 100%; overflow-y: auto; padding: calc(var(--nav-h) + 40px) var(--pad) 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 36px; }
.menu-nav { display: flex; flex-direction: column; }
.menu-nav a { opacity: 0; transform: translateY(24px); transition: opacity 320ms var(--ease-out), transform 400ms var(--ease-out); }
.menu.is-open .menu-nav a { opacity: 1; transform: none; }
.menu.is-open .menu-nav a:nth-child(2) { transition-delay: 40ms; } .menu.is-open .menu-nav a:nth-child(3) { transition-delay: 80ms; }
.menu.is-open .menu-nav a:nth-child(4) { transition-delay: 120ms; } .menu.is-open .menu-nav a:nth-child(5) { transition-delay: 160ms; }
.menu.is-open .menu-nav a:nth-child(6) { transition-delay: 200ms; }
.burger { position: relative; width: 46px; height: 46px; flex: 0 0 auto; }
.burger span { position: absolute; left: 13px; right: 13px; top: 50%; height: 2px; margin-top: -1px; background: currentColor; transition: transform 320ms var(--ease-in-out); }
.burger span:nth-child(1) { transform: translateY(-5px); } .burger span:nth-child(2) { transform: translateY(5px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); } .burger[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
@media (min-width: 1000px) { .burger { display: none; } }

/* ---------- bara de jos pe telefon ---------- */
.cta-jos { position: fixed; left: 8px; right: 8px; bottom: calc(8px + env(safe-area-inset-bottom)); z-index: 94; display: flex; gap: 6px; padding: 6px; transform: translateY(140%); transition: transform 460ms var(--ease-drawer); }
.cta-jos.se-vede { transform: none; }
.cta-jos > * { flex: 1; justify-content: center; }
@media (min-width: 1000px) { .cta-jos { display: none; } }

/* ---------- fereastra: foaie de jos pe telefon, dialog pe desktop ---------- */
.modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; transition: visibility 0s 280ms; }
.modal.is-open { visibility: visible; transition: none; }
.modal-scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); opacity: 0; transition: opacity 400ms var(--ease-out); }
.modal.is-open .modal-scrim { opacity: 1; }
.modal-panel { position: absolute; left: 0; right: 0; bottom: 0; max-height: 92%; overflow-y: auto; overscroll-behavior: contain; background: var(--bg); border-radius: calc(var(--r) + 10px) calc(var(--r) + 10px) 0 0; padding: 8px 8px calc(24px + env(safe-area-inset-bottom)); transform: translateY(100%); transition: transform 500ms var(--ease-drawer); }
.modal.is-open .modal-panel { transform: none; }
.modal:not(.is-open) .modal-panel { transition-duration: 260ms; transition-timing-function: var(--ease-out); }
.modal:not(.is-open) .modal-scrim { transition-duration: 220ms; }
.modal-panel::before { content: ''; display: block; width: 44px; height: 5px; border-radius: 9px; background: var(--line); margin: 6px auto 10px; }
@media (min-width: 900px) {
  .modal-panel { left: 50%; top: 50%; right: auto; bottom: auto; width: min(1000px, calc(100% - 64px)); max-height: calc(100% - 64px); border-radius: var(--r); padding: 8px; transform: translate(-50%, -46%) scale(0.97); opacity: 0; transition: transform 420ms var(--ease-out), opacity 300ms var(--ease-out); }
  .modal.is-open .modal-panel { transform: translate(-50%, -50%); opacity: 1; }
  .modal-panel::before { display: none; }
}
.modal-close { position: absolute; right: 16px; top: 16px; z-index: 3; display: grid; place-items: center; width: 44px; height: 44px; border-radius: calc(var(--r) / 2); background: var(--ink); color: var(--bg); transition: transform 160ms var(--ease-out); }
.modal-close:active { transform: scale(0.94); }
.modal-grid { display: grid; gap: 8px; }
@media (min-width: 900px) { .modal-grid { grid-template-columns: 0.95fr 1.05fr; } }
.modal-media .pic { aspect-ratio: 16 / 11; }
@media (min-width: 900px) { .modal-media .pic { aspect-ratio: auto; height: 100%; min-height: 480px; } }
.modal-body { padding: 18px 16px 8px; }
@media (min-width: 900px) { .modal-body { padding: 40px 32px 30px; } }
.modal-body h3 { margin: 0; padding-right: 48px; }
.puncte { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.puncte li { display: flex; gap: 10px; align-items: flex-start; }
.puncte .ico { color: var(--accent); margin-top: 3px; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ---------- banda care curge (data-banda) ---------- */
.banda { overflow: hidden; touch-action: pan-y; cursor: grab; }
.banda.se-trage { cursor: grabbing; }
.banda-sina { display: flex; gap: 10px; width: max-content; will-change: transform; }
.banda-sina > * { flex: 0 0 auto; user-select: none; }
.tehnici { overflow: hidden; position: relative; z-index: 1; }
.tehnici-sina { display: flex; width: max-content; will-change: transform; }
.tehnici-grup { display: flex; align-items: center; gap: 30px; padding-right: 30px; white-space: nowrap; }

/* ---------- pista orizontala (data-pista-track) ---------- */
.pista { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 30px var(--pad) 8px; margin-inline: calc(var(--pad) * -1); scrollbar-width: none; overscroll-behavior-x: contain; }
.pista::-webkit-scrollbar { display: none; }
.pista > * { flex: 0 0 auto; scroll-snap-align: start; }
.pista-bar { height: 2px; margin-top: 24px; background: var(--line); overflow: hidden; }
.pista-bar i { display: block; height: 100%; background: var(--accent); }

/* carusel (recenzii, poze): structura comuna; aspectul vine din theme.css */
.carusel { position: relative; }
.carusel-jos { display: flex; align-items: center; gap: 18px; margin-top: 14px; }
.carusel-jos .pista-bar { flex: 1; margin-top: 0; }
.carusel-nav { display: flex; gap: 8px; flex: 0 0 auto; }
.car-b { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); background: none; color: inherit; cursor: pointer; transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease; }
.car-b:active { transform: scale(0.96); }
.carusel .pista { padding-top: 0; padding-bottom: 4px; }
.carusel .pista > * { scroll-snap-align: center; }
.rec-c blockquote { margin: 0; }
.rec-c figcaption span { display: block; margin-top: 4px; opacity: 0.7; }

/* ---------- comparatie antes/despues (data-comp) ---------- */
.comp-stage { position: relative; overflow: hidden; border-radius: var(--r); touch-action: pan-y; cursor: ew-resize; user-select: none; -webkit-user-select: none; }
.comp-stage .pic { border-radius: 0; aspect-ratio: 1 / 1; }
.comp-stage .pic img { pointer-events: none; object-position: 50% 32%; }
.comp-dupa { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--x, 50%)); }
.comp-dupa .pic { height: 100%; }
.comp-linie { position: absolute; top: 0; bottom: 0; left: var(--x, 50%); width: 2px; margin-left: -1px; background: var(--accent); pointer-events: none; }
.comp-maner { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 50%; background: var(--accent); color: var(--accent-ink, #fff); pointer-events: none; }
.comp-eti { position: absolute; top: 12px; z-index: 2; padding: 5px 11px; font-size: 12px; font-weight: 600; background: rgba(255, 255, 255, 0.9); color: #111; pointer-events: none; }
.comp-eti.st { left: 12px; } .comp-eti.dr { right: 12px; background: var(--accent); color: var(--accent-ink, #fff); }

/* ---------- usi care se deschid (data-usi) ---------- */
.usi { height: calc(var(--vh) * 2); padding: 0; }
.usi-stage { position: sticky; top: 0; height: var(--vh); overflow: hidden; }
.usi-fond, .usi-fond .pic { position: absolute; inset: 0; border-radius: 0; }
.usa { position: absolute; top: 0; bottom: 0; width: 50%; z-index: 3; overflow: hidden; }
.usa.st { left: 0; } .usa.dr { right: 0; }
.usa .pic { position: absolute; inset: 0; border-radius: 0; }
.usi-text { position: absolute; left: 0; right: 0; bottom: 8%; z-index: 2; text-align: center; padding-inline: var(--pad); }
.no-js .usa, .no-motion .usa { display: none; }
.no-js .usi, .no-motion .usi { height: var(--vh); }

/* ---------- carduri lipite care se suprapun (data-stack, doar ecran lat) ---------- */
@media (min-width: 900px) and (min-height: 760px) { [data-stack] > * { position: sticky; top: calc(var(--nav-h) + 40px); transform-origin: 50% 0; } }

/* ---------- galerie cu filtre ---------- */
.masonry { columns: 2; column-gap: 10px; }
@media (min-width: 800px) { .masonry { columns: 3; column-gap: 14px; } }
@media (min-width: 1180px) { .masonry { columns: 4; } }
.masonry figure { margin: 0 0 10px; break-inside: avoid; }
/* galeria: pozele se aseaza pe foaie (core.js pune .g-asteapta doar pe ce e sub ecran la incarcare).
   Doar transform, tranzitie CSS; opacitatea nu se atinge niciodata. */
.masonry figure.g-asteapta { transform: translate3d(0, 30px, 0) rotate(var(--g-rot, 0deg)) scale(0.97); transition: transform 480ms cubic-bezier(0.23, 1, 0.32, 1); }
.masonry figure.g-asteapta.g-intrat { transform: none; }
@media (prefers-reduced-motion: reduce) { .masonry figure.g-asteapta { transform: none; transition: none; } }
@media (min-width: 800px) { .masonry figure { margin-bottom: 14px; } }
.masonry figure[hidden] { display: none; }
.filtre { display: flex; gap: 8px; overflow-x: auto; margin: 0 calc(var(--pad) * -1); padding: 4px var(--pad) 12px; scrollbar-width: none; }
.filtre::-webkit-scrollbar { display: none; }
.filtre button { flex: 0 0 auto; }

/* ---------- intrebari ---------- */
.q summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.q summary::-webkit-details-marker { display: none; }
.q .plus { display: grid; place-items: center; flex: 0 0 auto; transition: transform 280ms var(--ease-out); }
.q[open] .plus { transform: rotate(45deg); }
.q-body { overflow: hidden; }

/* ---------- formular ---------- */
.form { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: var(--card, #fff); border: 0; border-radius: calc(var(--r) / 2); padding: 14px 16px; box-shadow: inset 0 0 0 1.5px var(--line); }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--accent); }
.field[data-error] input { box-shadow: inset 0 0 0 2px #C0182B; }
.field .err { font-size: 13.5px; color: #B0122A; }

/* program: ziua de azi */
.orar { list-style: none; margin: 0; padding: 0; }
.orar li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.orar li:last-child { border-bottom: 0; }

/* intro si trecerea intre pagini */
.intro { position: fixed; inset: 0; z-index: 130; pointer-events: none; animation: kit-intro-plasa 0s 3.5s forwards; }
@keyframes kit-intro-plasa { to { visibility: hidden; opacity: 0; } }
/* .no-motion NU mai ascunde intro-ul: la reduced-motion el ruleaza ca simpla stingere
   de opacitate (vezi introSimplu in core.js). Fara JS ramane ascuns, ca sa nu acopere pagina. */
.no-js .intro { display: none; }
.tranzitie { position: fixed; inset: 0; z-index: 125; pointer-events: none; opacity: 0; background: var(--bg); transition: opacity 240ms var(--ease-out); }
.tranzitie.se-vede { opacity: 1; }

/* comutatorul de limba din bara de sus (site in mai multe limbi) */
.limbi { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.limbi a { padding: 6px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--ink-mute, #8a8a8a); transition: color 180ms ease, background-color 180ms ease; }
.limbi a[aria-current] { background: var(--ink, #111); color: var(--bg, #fff); }
@media (hover: hover) and (pointer: fine) { .limbi a:hover { color: var(--ink, #111); } }

/* datele firmei (imprint), cerute de directiva comertului electronic: pe fiecare pagina */
.imprint { background: var(--var, #f1f1f1); padding: 16px var(--pad) 18px; }
.imprint-t, .imprint-r { max-width: var(--wrap); margin-inline: auto; }
.imprint-t { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute, #888); margin-bottom: 8px; }
.imprint-r { display: flex; flex-wrap: wrap; gap: 3px 18px; font-size: 12.2px; line-height: 1.6; color: var(--ink-soft, #555); }
.imprint-r b { font-weight: 600; color: var(--ink, #111); }
.imprint-r a { text-decoration: underline; }
.priv-imprint { background: transparent; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; margin-top: 14px; }

/* bara de cookies + pagina de confidentialitate (generate de kit pentru orice client) */
.cookie { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 120; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 16px; padding: 14px 16px; border-radius: var(--r); background: var(--panou, #fff); color: var(--ink, #111); border: 1px solid var(--line, rgba(0,0,0,.12)); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.18); opacity: 0; transform: translateY(14px); transition: opacity 300ms ease, transform 300ms ease; }
.cookie.se-vede { opacity: 1; transform: none; }
.cookie p { flex: 1 1 230px; margin: 0; font-size: 13.2px; line-height: 1.5; }
.cookie p a { text-decoration: underline; }
.cookie button { flex: 0 0 auto; min-height: 42px; padding: 0 22px; border-radius: 999px; background: var(--ink, #111); color: var(--panou, #fff); font-size: 13px; font-weight: 600; }
.cookie button:active { transform: scale(0.97); }
@media (min-width: 760px) { .cookie { left: auto; right: 20px; bottom: 20px; max-width: 440px; } }

.priv { max-width: 74ch; }
.priv-titlu { font-size: clamp(1.9rem, 6vw, 3rem); }
.priv-lead { margin-top: 12px; color: var(--ink-soft); }
.priv-h { margin-top: 34px; font-size: clamp(1.05rem, 3.4vw, 1.35rem); }
.priv-p { margin-top: 10px; line-height: 1.68; color: var(--ink-soft); }
.priv-p a { color: var(--accent); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .menu, .menu-nav a, .modal-panel, .modal-scrim, .cta-jos, .tranzitie { transition-duration: 160ms !important; transition-delay: 0s !important; }
  .menu-nav a { transform: none !important; }
  .modal-panel { transform: none !important; }
  @media (min-width: 900px) { .modal-panel { transform: translate(-50%, -50%) !important; } }
}

/* ---------- PIELI pentru banda (data-efect="..."). Mecanica ramane aceeasi; se schimba doar
   cum arata. Regula: la fiecare client alta piele (vezi PLAYBOOK, tabelul de design).
   adanc/arc/focus citesc --d (pozitia cardului fata de centru, -1..1) si --a (|d|, max 1),
   puse de core.js direct pe card.
   Doar transform + opacity; fara tranzitii, pentru ca valoarea se schimba deja la fiecare cadru. */
.banda-sina { position: relative; }
/* in orice piele, cardurile au acelasi raport si stau pe centru (altfel se intind dupa cea mai
   inalta poza si rama polaroid / filmul raman goale jos). Clientul poate schimba raportul in theme. */
[class*="banda--"] > .banda-sina { align-items: center; }
.banda--adanc .pic, .banda--arc .pic, .banda--focus .pic, .banda--polaroid .pic, .banda--film .pic { aspect-ratio: 4 / 5; }
.banda--adanc .banda-sina, .banda--arc .banda-sina { padding-block: 26px; }
.banda--adanc .banda-sina > * {
  transform: perspective(900px) rotateY(calc(var(--d, 0) * -24deg)) scale(calc(1 - var(--a, 0) * .16));
  opacity: calc(1 - var(--a, 0) * .45);
}
.banda--arc .banda-sina { padding-block: 10px 56px; }
.banda--arc .banda-sina > * {
  transform: translateY(calc(var(--d, 0) * var(--d, 0) * 40px)) rotate(calc(var(--d, 0) * 7deg));
  transform-origin: 50% 120%;
}
.banda--focus .banda-sina > * { position: relative; }
.banda--focus .banda-sina > *::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: var(--bg); opacity: calc(var(--a, 0) * .62);
}
.banda--focus .banda-sina > * { transform: scale(calc(1 - var(--a, 0) * .07)); }
/* polaroid: rama alba, fiecare poza usor strambata, nu doua la fel */
.banda--polaroid .banda-sina { gap: 18px; padding-block: 18px 26px; }
.banda--polaroid .banda-sina > * { background: #fff; padding: 9px 9px 34px; border-radius: 3px; box-shadow: 0 10px 26px -12px rgba(0,0,0,.35); color: var(--ink); }
.banda--polaroid .banda-sina > *:nth-child(3n+1) { transform: rotate(-2.4deg); }
.banda--polaroid .banda-sina > *:nth-child(3n+2) { transform: rotate(1.6deg) translateY(8px); }
.banda--polaroid .banda-sina > *:nth-child(3n) { transform: rotate(-.8deg) translateY(-4px); }
.banda--polaroid .pic { border-radius: 1px; }

/* film: banda neagra cu perforatii sus si jos */
.banda--film { background: #111; padding-block: 22px; }
.banda--film .banda-sina { gap: 6px; }
.banda--film .banda-sina > * { border-radius: 2px; }
.banda--film::before, .banda--film::after {
  content: ""; position: absolute; left: 0; right: 0; height: 8px; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 10px, rgba(255,255,255,.82) 10px 20px, transparent 20px 26px);
}
.banda--film { position: relative; }
.banda--film::before { top: 7px; } .banda--film::after { bottom: 7px; }

/* citat: recenzii fara carduri, text mare, despartite de o ghilimea mare */
.banda--citat .banda-sina { gap: 0; align-items: flex-start; }
.banda--citat .rec-c { background: none; box-shadow: none; border-radius: 0; padding: 0 34px; width: min(78vw, 460px); border-left: 1px solid var(--line, rgba(0,0,0,.12)); }
.banda--citat .rec-c blockquote { font-family: var(--f-d); font-size: clamp(1.25rem, 5vw, 1.7rem); line-height: 1.3; color: var(--ink); }
.banda--citat .rec-c blockquote::before { content: "\201C"; display: block; font-size: 3.2em; line-height: .6; color: var(--accent); }
.banda--citat .rec-stele { display: none; }

@media (prefers-reduced-motion: reduce) {
  /* banda merge oricum mai incet; rotatia 3D si arcul dispar, ramane doar stingerea */
  .banda--adanc .banda-sina > *, .banda--arc .banda-sina > * { transform: none; }
}

/* ===== tema kd-browart ===== */
/* KD BROW ART · Katy Durán · cejas y pestañas · Valencia.
   Ideea vine din materialul EI: caietul de schite. Katy deseneaza formele de spranceana in creion,
   le numeroteaza de la 1 la 5 si semneaza foaia (ig-044). Site-ul e foaia aceea: grafit pe hartie,
   semnatura ei in loc de logo, iar desenele ei se traseaza la scroll.
   Paleta: grafit + hartie rece (nu crem), un singur accent LILA = perna pe care stau clientele in poze.
   Forme: colturi mici si precise (6px), linii de 1px, fara umbre grele (skill minimalist-ui).
   Diferit de toti clientii de pana acum: Geist (nefolosit), hartie rece, meniu scris "Indice" in loc
   de burger rotund, un singur buton plutitor in loc de bara cu doua butoane, subsol cu semnatura. */
:root {
  --bg: #F3F3F1; --panou: #FFFFFF; --hartie-2: #EAEAE6;
  --ink: #1E1E21; --ink-soft: #55555B; --ink-mute: #6E6E74;
  --accent: #5B4A9A; --accent-ink: #FFFFFF; --lila: #E9E4F5;
  --line: rgba(30, 30, 33, 0.11); --line-tare: rgba(30, 30, 33, 0.28);
  --f-d: 'Geist', system-ui, sans-serif;
  --f-b: 'Geist', system-ui, sans-serif;
  --f-m: 'Geist Mono', ui-monospace, monospace;
  --r: 6px; --nav-h: 64px;
}
body { font-family: var(--f-b); font-size: 16.5px; line-height: 1.6; background: var(--bg); color: var(--ink); }
/* textura de hartie: un strat fix, fara evenimente, foarte slab (nu pe containere care se deruleaza) */
body::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(30,30,33,.035) 1px, transparent 1px); background-size: 3px 3px; }
a, button, summary, label { touch-action: manipulation; }
button, .btn { -webkit-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { font-family: var(--f-d); font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; margin: 0; }
h1 { font-size: clamp(2.7rem, 11.5vw, 6rem); }
h2 { font-size: clamp(2rem, 7.4vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 3.6vw, 1.5rem); letter-spacing: -0.02em; }
p { margin: 0; }
section { padding-block: 72px; position: relative; }
@media (min-width: 900px) { section { padding-block: 120px; } }
.meta { font-family: var(--f-m); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-mute); }
.lead { font-size: clamp(1.02rem, 2.4vw, 1.15rem); color: var(--ink-soft); max-width: 42ch; margin-top: 18px; }

/* butoane: grafit, colturi de 6px, fara umbra */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px;
  border-radius: var(--r); background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 500;
  transition: background-color 200ms ease, transform 140ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .btn:hover { background: #38383D; } }
.btn:active { transform: scale(0.98); }
.btn .btn-ico svg { width: 18px; height: 18px; }
.lnk { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--ink);
  padding: 12px 2px; border-bottom: 1px solid var(--line-tare); transition: border-color 200ms ease, color 200ms ease; }
.lnk svg { width: 16px; height: 16px; transition: transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .lnk:hover { color: var(--accent); border-color: var(--accent); } .lnk:hover svg { transform: translateX(3px); } }
.lnk:active { opacity: .6; }

/* ===== bara de sus: semnatura ei + "Indice" ===== */
.nav { background: rgba(243, 243, 241, .96); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: var(--nav-h); max-width: calc(var(--wrap) + 2 * var(--pad)); margin-inline: auto; padding-inline: var(--pad); }
.semn-link { margin-right: auto; display: block; padding: 6px 0; }
.semn-link img { height: 42px; width: auto; display: block; }
.nav-links { display: none; gap: 30px; font-size: 14px; }
.nav-links a { color: var(--ink-soft); padding: 13px 0; }
.nav-links a[aria-current] { color: var(--ink); box-shadow: inset 0 -1px 0 var(--ink); }
@media (hover: hover) and (pointer: fine) { .nav-links a:hover { color: var(--ink); } }
.nav-cta { display: none; min-height: 40px; padding: 0 16px; font-size: 13.5px; }
@media (min-width: 1000px) { .nav-links, .nav-cta { display: inline-flex; } }
/* butonul de meniu e un cuvant scris, nu un burger rotund. <b>, nu <span>: regula .burger span din kit
   ar desena liniile peste text (lectia de la artlash). */
.burger { width: auto; height: 44px; padding: 0 2px; color: var(--ink); font: 500 14px/1 var(--f-m); letter-spacing: .06em; }
.burger b { font-weight: 500; display: block; transition: opacity 180ms ease, transform 220ms var(--ease-out); }
.burger .b-c { position: absolute; right: 2px; top: 50%; margin-top: -7px; opacity: 0; transform: translateY(6px); }
.burger[aria-expanded="true"] .b-a { opacity: 0; transform: translateY(-6px); }
.burger[aria-expanded="true"] .b-c { opacity: 1; transform: none; }
.burger:active { opacity: .6; }

/* meniu: foaia de index */
.menu { background: var(--bg); }
.menu-nav a { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.menu-nav small { font: 500 12px/1 var(--f-m); color: var(--ink-mute); min-width: 22px; }
.menu-t { font: 600 clamp(2rem, 9vw, 3rem)/1.05 var(--f-d); letter-spacing: -0.035em; }
.menu-nav a[aria-current] .menu-t { color: var(--accent); }
.menu-jos { display: grid; gap: 12px; justify-items: start; }
.menu-jos a:not(.btn) { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 15px; padding: 6px 0; }
.menu-jos svg { width: 18px; height: 18px; }

/* un singur buton plutitor, jos in dreapta (nu bara cu doua butoane) */
.cta-jos { left: auto; right: 14px; padding: 0; gap: 0; background: none; }
.cta-jos > * { flex: none; }
.cta-jos .btn { min-height: 52px; padding: 0 20px; box-shadow: 0 8px 24px -10px rgba(30,30,33,.45); }

/* ===== HERO: Katy cu sublerul, si fraza ei ===== */
.hero { padding: calc(var(--nav-h) + 28px) 0 0; }
.hero-in { display: grid; gap: 30px; }
.hero h1 { max-width: 11ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { margin-top: 20px; color: var(--ink-soft); max-width: 34ch; font-size: clamp(1rem, 2.5vw, 1.12rem); }
.hero-act { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 28px; }
.hero-foto { margin: 0; position: relative; }
.hero-foto .pic { aspect-ratio: 4 / 5; }
.hero-foto img { object-position: 50% 30%; }
.hero-foto figcaption { margin-top: 10px; }
@media (min-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 64px); }
  .hero-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 72px; }
  .hero-foto .pic { aspect-ratio: 4 / 5; }
}

/* ===== MOMENTUL: "del 1 al 5", desenele ei se traseaza la scroll ===== */
.formas-in { display: grid; gap: 40px; }
.formas-lista { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(22px, 5vw, 44px); }
.formas-lista li { border-top: 1px solid var(--line); padding-top: clamp(16px, 3vw, 26px); }
.forma { display: block; width: 100%; height: auto; }
.nota-ea { margin-top: 26px; padding: 18px 20px; background: var(--lila); border-radius: var(--r); color: var(--accent); max-width: 36ch; font-size: 15.5px; }
.nota-ea span { display: block; margin-top: 6px; font: 500 12px/1 var(--f-m); letter-spacing: .04em; color: var(--ink-mute); }
@media (min-width: 900px) {
  .formas-in { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 80px; align-items: start; }
  .formas-txt { position: sticky; top: calc(var(--nav-h) + 48px); }
}

/* ===== de la hartie la chip: doua rezultate + tonul ===== */
.rostro-grid { display: grid; gap: 14px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.rostro-grid figure { margin: 0; }
.rostro-grid .mare { grid-column: 1 / -1; }
.rostro-grid .mare .pic { aspect-ratio: 16 / 11; }
.rostro-grid .pic { aspect-ratio: 4 / 5; }
.rostro-grid figcaption { margin-top: 10px; }
.citat-ton { font: 500 clamp(1.3rem, 4.4vw, 2rem)/1.3 var(--f-d); letter-spacing: -0.02em; max-width: 26ch; margin-bottom: 36px; }
.citat-ton em { font-style: normal; color: var(--accent); }
@media (min-width: 900px) {
  .rostro-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, .8fr); align-items: end; }
  .rostro-grid .mare { grid-column: auto; }
  .rostro-grid .mare .pic { aspect-ratio: 4 / 5; }
}

/* ===== servicii: lista tipografica, fara carduri ===== */
.serv-lista { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--line-tare); }
.serv-lista li { border-bottom: 1px solid var(--line); }
.serv-r { width: 100%; display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 4px 14px; align-items: baseline; padding: 20px 0; text-align: left; color: var(--ink); }
.serv-r .nr { font: 500 12px/1 var(--f-m); color: var(--ink-mute); }
.serv-r b { font: 600 clamp(1.25rem, 4.6vw, 2rem)/1.15 var(--f-d); letter-spacing: -0.03em; }
.serv-r small { grid-column: 2; font-size: 14px; color: var(--ink-soft); }
.serv-r .semn-plus { grid-row: 1; grid-column: 3; width: 34px; height: 34px; border: 1px solid var(--line-tare); border-radius: var(--r); display: grid; place-items: center; transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease; }
.serv-r .semn-plus svg { width: 16px; height: 16px; }
button.serv-r:active { opacity: .7; }
@media (hover: hover) and (pointer: fine) { button.serv-r:hover .semn-plus { background: var(--ink); color: #fff; border-color: var(--ink); } }
.serv-pret { margin-top: 18px; font-size: 14px; color: var(--ink-mute); }

/* fereastra de serviciu */
.modal-panel { border-radius: var(--r) var(--r) 0 0; background: var(--bg); }
@media (min-width: 900px) { .modal-panel { border-radius: var(--r); } }
.modal-body h3 { font-size: clamp(1.6rem, 5vw, 2.2rem); letter-spacing: -0.035em; }
.modal-body p { color: var(--ink-soft); margin-top: 12px; }
.puncte { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.puncte li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.puncte svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.modal-actions { margin-top: 24px; }

/* ===== carusel: piele polaroid (lucrarile prinse in caiet) ===== */
.banda-kd figure { margin: 0; width: 56vw; max-width: 250px; }
.banda-kd .pic { border-radius: 1px; }
.lucrari-cap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 18px; }

/* ===== Katy ===== */
.katy-in { display: grid; gap: 34px; }
.katy-foto { margin: 0; }
.katy-foto .pic { aspect-ratio: 4 / 5; }
.katy-citat { font: 500 clamp(1.45rem, 5vw, 2.4rem)/1.2 var(--f-d); letter-spacing: -0.03em; max-width: 22ch; }
.katy-txt p + p { margin-top: 16px; color: var(--ink-soft); max-width: 44ch; }
.katy-semn { margin-top: 28px; width: 190px; height: auto; }
.fapte { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.fapte div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.fapte div:nth-child(odd) { padding-right: 14px; }
.fapte dt { font: 500 12px/1 var(--f-m); color: var(--ink-mute); letter-spacing: .04em; }
.fapte dd { margin: 8px 0 0; font-weight: 500; }
@media (min-width: 900px) { .katy-in { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 80px; align-items: center; } }

/* ===== final ===== */
.final { text-align: left; }
.final h2 { max-width: 14ch; }
.final .hero-act { margin-top: 30px; }

/* ===== subsol: semnatura ei, mare ===== */
.foot { padding: 70px 0 30px; border-top: 1px solid var(--line-tare); position: relative; z-index: 1; }
.foot-semn { width: min(78vw, 560px); height: auto; display: block; margin: 0 auto; }
.foot-rand { display: grid; gap: 10px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14.5px; }
.foot-rand a, .foot-rand span { color: var(--ink-soft); display: inline-flex; align-items: center; gap: 10px; padding: 3px 0; }
.foot-rand svg { width: 17px; height: 17px; color: var(--ink); }
@media (hover: hover) and (pointer: fine) { .foot-rand a:hover { color: var(--accent); } }
@media (min-width: 760px) { .foot-rand { grid-template-columns: repeat(4, minmax(0, auto)); justify-content: space-between; } }
@media (max-width: 999px) { .foot { padding-bottom: calc(96px + env(safe-area-inset-bottom)); } }
.foot-mic { margin-top: 26px; font: 400 12px/1.6 var(--f-m); color: var(--ink-mute); }
.foot-mic a { color: var(--ink-soft); text-decoration: underline; }

/* ===== paginile 2 si 3 ===== */
.p-cap { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 20px; }
.p-cap h1 { font-size: clamp(2.6rem, 10vw, 5rem); }
.masonry { columns: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
@media (min-width: 760px) { .masonry { columns: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 1150px) { .masonry { columns: auto; grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.masonry figure { margin: 0; break-inside: auto; }
.masonry .pic { aspect-ratio: 4 / 5; }
.chip { min-height: 40px; padding: 0 16px; border: 1px solid var(--line-tare); border-radius: var(--r); font-size: 14px; color: var(--ink-soft); background: transparent; transition: background-color 200ms ease, color 200ms ease; }
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:active { transform: scale(.98); }
.filtre { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-in { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; } }
.date-lista { display: grid; border-top: 1px solid var(--line-tare); }
.date-lista a, .date-lista div { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 15.5px; }
.date-lista svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; }
.date-lista small { display: block; color: var(--ink-mute); font-size: 13px; }
@media (hover: hover) and (pointer: fine) { .date-lista a:hover { color: var(--accent); } }
.cuidados { list-style: none; margin: 26px 0 0; padding: 0; counter-reset: c; border-top: 1px solid var(--line-tare); }
.cuidados li { counter-increment: c; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cuidados li::before { content: counter(c); font: 500 13px/1.6 var(--f-m); color: var(--accent); }
.form input, .form select, .form textarea { border-radius: var(--r); }

/* ===== intro: semnatura ei se scrie, apoi foaia urca ===== */
.intro { background: var(--bg); display: grid; place-items: center; }
.intro-in { text-align: center; }
.intro-semn { width: min(62vw, 300px); height: auto; display: block; margin: 0 auto 14px; }
.intro-in small { font: 500 11px/1 var(--f-m); letter-spacing: .14em; color: var(--ink-mute); text-transform: uppercase; }
@media (prefers-reduced-motion: no-preference) {
  .intro-semn { clip-path: inset(0 100% 0 0); animation: kd-scrie 640ms cubic-bezier(.77,0,.175,1) 80ms forwards; }
  .intro-in small { opacity: 0; animation: kd-apare 360ms var(--ease-out) 520ms forwards; }
}
@keyframes kd-scrie { to { clip-path: inset(0 0 0 0); } }
@keyframes kd-apare { from { transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* partea legala, in cheia site-ului */
.cookie { border-radius: var(--r); background: var(--panou); border: 1px solid var(--line); }
.cookie button { border-radius: var(--r); background: var(--ink); color: #fff; }
.priv-titlu { font-size: clamp(2rem, 7vw, 3.2rem); }
