/* Font modern + titluri cu caracter */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Paletă culori + variabile */
:root {
  --bg: #fdfbfa;
  --text: #251f2c;
  --muted: #726a78;

  /* brand violet-magenta, cald (variantă mai caldă a violetului inițial) */
  --brand: #9a3dbf;
  --brand2: #d98fe0;
  --accent: #0d9488;                     /* teal cald, folosit ca a doua notă de culoare, distinctă de verdele WhatsApp */
  --accent-ink: #0f5d54;
  --accent-50: #f0fdfa;
  --accent-100: #ccfbf1;

  /* derivate utile (nuanțe & transparențe) */
  --brand-ink: #631f7a;                  /* violet-magenta foarte închis pt. text pe fond deschis */
  --brand-50: #fbf3fb;                   /* lavandă-roz foarte deschis */
  --brand-100: #f6e4f5;                  /* lavandă-roz deschis */
  --brand-200: #e9c5e7;                  /* contur lavandă-roz */
  --brand-shadow: rgba(154, 61, 191, .14);
  --brand-shadow-strong: rgba(154, 61, 191, .24);
  --focus-ring: 0 0 0 3px rgba(154, 61, 191, .22);

  --card: #fdf9fb;
  --border: #ebe1ea;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 1px 2px rgba(37, 31, 44, .04), 0 8px 18px rgba(99, 31, 122, .06);
  --shadow-lift: 0 10px 24px rgba(99, 31, 122, .12);
}

/* Reset & structură de bază */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(1200px 520px at 12% -8%, rgba(217, 143, 224, .18), transparent 55%),
    radial-gradient(900px 480px at 92% 8%, rgba(13, 148, 136, .08), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, "Helvetica Neue", Arial;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}
body.nav-open {
  overflow: hidden;
}
::selection {
  background: rgba(154, 61, 191, .18);
  color: #1b1b1b;
}
a {
  color: var(--brand);
  text-decoration: none;
  text-underline-offset: 2px;
}
a:hover { text-decoration: underline; }
a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container.narrow {
  max-width: 760px;
}

/* Fundal simplu, plat, pentru secțiunile hero de pe toate paginile */
.hero, .hero-home {
  position: relative;
}
.hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(217, 143, 224, .22), transparent 60%),
    var(--brand-50);
}
.hero > .container, .hero-home > .container {
  position: relative;
  z-index: 1;
}

/* Iconițe rotunde, unitare (linie simplă, o culoare) pentru carduri de servicii */
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-50);
  color: var(--brand-ink);
  margin-bottom: .7rem;
  flex-shrink: 0;
}
.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Eticheta „eyebrow” — discretă, fără pastilă grea */
.eyebrow {
  display: inline-block;
  color: var(--brand-ink);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Topbar Medilab-style */
.topbar {
  background: var(--brand-ink);
  color: rgba(255,255,255,.9);
  font-size: .88rem;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem 1.5rem;
  min-height: 38px;
  padding-top: .35rem;
  padding-bottom: .35rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 500;
}
.topbar a.topbar-item:hover {
  color: #fff;
  text-decoration: none;
}
.topbar-item svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
}
.topbar-whatsapp {
  color: #b6f5c9;
  font-weight: 600;
}
.topbar-whatsapp:hover {
  color: #fff !important;
}
.topbar-whatsapp svg {
  fill: currentColor;
  stroke: none;
  opacity: 1;
}
@media (max-width: 640px) {
  .topbar-whatsapp { display: none; }
}

/* Titlu de secțiune tip Medilab */
.section-title {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.section-title h1,
.section-title h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  padding-bottom: 1.1rem;
  position: relative;
  color: var(--text);
}
.section-title h1::before,
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: color-mix(in srgb, var(--text) 25%, transparent);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.section-title h1::after,
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 48px;
  height: 3px;
  background: var(--brand);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  border-radius: 2px;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.section-title.align-left {
  text-align: left;
  margin-left: 0;
}
.section-title.align-left h1::before,
.section-title.align-left h1::after,
.section-title.align-left h2::before,
.section-title.align-left h2::after {
  margin-left: 0;
  right: auto;
}

/* Antet de secțiune (legacy, încă folosit pe unele pagini) */
.section-header {
  max-width: 640px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.section-header h2 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 .85rem;
}
.section-header h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: .85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}
.section-header p { margin: 0; }
.section-header.align-left { margin-left: 0; text-align: left; }
.section-header.align-left h2::after { margin-left: 0; }

.section-note {
  margin: 1.35rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}

/* Animații discrete la încărcare */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .fade-in { animation: fadeInUp .6s ease both; }
  .fade-in.delay-1 { animation-delay: .08s; }
  .fade-in.delay-2 { animation-delay: .16s; }
  .fade-in.delay-3 { animation-delay: .24s; }
}

/* Fundal alternativ discret */
.section-soft {
  background: var(--brand-50);
}

/* === Hero cu imagine (split) — folosit pe acasă, neurologie, etc. === */
.split-hero {
  position: relative;
  padding: 72px 0 68px;
  background:
    radial-gradient(800px 360px at 85% 10%, rgba(217, 143, 224, .2), transparent 55%),
    radial-gradient(600px 280px at 10% 90%, rgba(13, 148, 136, .08), transparent 50%),
    var(--brand-50);
  overflow: hidden;
}
.split-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.75rem;
  align-items: center;
}
.split-hero h1 { margin-bottom: 1rem; }
.split-hero .subtitle { font-size: 1.08rem; }
.split-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}
.split-hero-media {
  position: relative;
}
.split-hero-media .frame {
  position: relative;
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(99, 31, 122, .16);
  border: 8px solid rgba(255,255,255,.92);
  aspect-ratio: 4 / 5;
}
.split-hero-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .7s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .split-hero-media:hover .frame img { transform: scale(1.04); }
}
.floating-card {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1.15rem;
  box-shadow: var(--shadow-lift);
  max-width: 240px;
}
@media (prefers-reduced-motion: no-preference) {
  .floating-card { animation: fadeInUp .7s ease .25s both; }
}
.floating-card .card-icon { margin-bottom: 0; flex-shrink: 0; }
.floating-card strong { display: block; font-size: .92rem; line-height: 1.25; }
.floating-card span { color: var(--muted); font-size: .8rem; }

@media (max-width: 900px) {
  .split-hero-grid { grid-template-columns: 1fr; }
  .split-hero-media { max-width: 380px; margin: 0 auto; order: -1; }
  .floating-card { left: .5rem; bottom: -1rem; }
}

/* Bandă de încredere / puncte cheie, sub hero */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .85rem;
  margin-top: 2.75rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1rem 1.05rem;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  transition: transform .2s ease, box-shadow .2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
  }
}
.trust-item .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  background: var(--brand-50);
  box-shadow: none;
  border: 1px solid var(--brand-200);
}
.trust-item strong { display: block; font-size: .96rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }

/* Galerie foto cabinet */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(99, 31, 122, .12);
  position: relative;
  border: 1px solid var(--border);
  min-height: 260px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.gallery figure:hover img { transform: scale(1.045); }
.gallery figcaption {
  position: absolute;
  left: .75rem; right: .75rem; bottom: .75rem;
  padding: .65rem .85rem;
  background: rgba(37, 31, 44, .55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
}
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery figure { aspect-ratio: 16/10; }
}

/* Carduri de preț — listă simplă, gata de completat cu sume */
.price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  max-width: 640px;
  margin: 0 auto;
}
.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: var(--brand-200);
}
.price-card h3 { margin: 0 0 .2rem; font-size: 1.05rem; }
.price-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.price-tag {
  flex-shrink: 0;
  min-width: 5.5rem;
  text-align: center;
  background: var(--brand-50);
  color: var(--brand-ink);
  border: 1px dashed var(--brand-200);
  font-weight: 700;
  font-size: .88rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .price-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-tag { align-self: flex-start; }
}

/* Cronologie (pași numerotați, cu linie conectoare) */
.timeline {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 1.35rem 1.4rem 1.35rem 1.15rem;
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.timeline li {
  position: relative;
  padding: 0 0 1.6rem 3.1rem;
  min-height: 2.2rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px var(--brand-shadow);
  z-index: 1;
}
.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 2.2rem;
  bottom: -.3rem;
  width: 2px;
  background: var(--brand-200);
}
.timeline strong { display: block; margin-bottom: .15rem; }
.timeline span { color: var(--muted); font-size: .95rem; }

/* Liste de verificare (checklist), reutilizabile pe orice pagină */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}
.checklist li {
  padding: .85rem 1rem .85rem 2.6rem;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: .7rem;
  top: .85rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 8px;
  background: var(--accent-100);
  color: var(--accent-ink);
  border: 1px solid #99e6dc;
  font-size: .8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* Carduri de contact rapid (telefon / email / whatsapp) */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.contact-cards a.card {
  display: block;
  color: var(--text);
  text-decoration: none;
}
.contact-cards a.card:hover { text-decoration: none; }
.contact-cards .card-icon { margin-bottom: .9rem; }
@media (max-width: 760px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* Dropdown servicii & tarife */
.services-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: .25rem 1.25rem 1.15rem;
  overflow: hidden;
}
.services-dropdown summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 2.4rem 1.2rem 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--brand-ink);
  position: relative;
}
.services-dropdown summary::-webkit-details-marker { display: none; }
.services-dropdown summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.services-dropdown[open] {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-lift);
}
.services-dropdown[open] summary {
  border-bottom: 1px solid var(--border);
  margin-bottom: .2rem;
}
.services-dropdown[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--brand);
  color: #fff;
}
.service-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.service-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem .35rem;
  border-bottom: 1px solid var(--border);
  border-radius: 10px;
  transition: background .15s ease;
}
.service-rows li:hover { background: var(--brand-50); }
.service-rows li:last-child { border-bottom: none; }
.service-rows strong {
  display: block;
  font-size: 1rem;
  margin-bottom: .15rem;
  color: var(--text);
}
.service-rows span:not(.price-tag) {
  color: var(--muted);
  font-size: .9rem;
}
@media (max-width: 480px) {
  .service-rows li {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Accordion FAQ (details/summary nativ) */
.accordion { display: grid; gap: .7rem; }
.accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: .2rem 1.1rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.accordion details[open] {
  box-shadow: var(--shadow-soft);
  border-color: var(--brand-200);
}
.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.6rem 1rem 0;
  font-weight: 700;
  color: var(--brand-ink);
  position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform .2s ease, background .2s ease;
}
.accordion details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--brand);
  color: #fff;
}
.accordion .a {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

/* Chrome site: topbar + header — fixe, mereu vizibile */
.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(99, 31, 122, .08);
}
body {
  padding-top: var(--site-chrome-h, 102px);
}

/* Header & navigație */
header {
  position: relative;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}
.logo:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 10px; }
.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav a:not(.nav-cta) {
  margin-left: .35rem;
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  padding: .45rem .9rem;
  transition: color .15s ease, background .15s ease;
}
nav a:not(.nav-cta):hover {
  text-decoration: none;
  color: var(--brand-ink);
  background: var(--brand-50);
}
nav a:not(.nav-cta)[aria-current="page"] {
  font-weight: 700;
  color: var(--brand-ink);
  background: var(--brand-100);
}
/* Butoane — același design peste tot */
.cta,
nav a.nav-cta,
.mobile-bar .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 0;
  min-height: 48px;
  padding: .75rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(160deg, #ad52d0 0%, var(--brand) 55%, #7a2a9e 100%);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 6px 16px rgba(154, 61, 191, .32);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.cta { margin-top: 1rem; }
.cta:hover,
nav a.nav-cta:hover,
.mobile-bar .cta:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(154, 61, 191, .38);
}
.cta:active,
nav a.nav-cta:active,
.mobile-bar .cta:active {
  transform: scale(0.98);
  filter: none;
}
.cta:focus-visible,
nav a.nav-cta:focus-visible,
.mobile-bar .cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 6px 16px rgba(154, 61, 191, .32);
}

.cta svg,
.mobile-bar .cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Variantă outline */
.cta.secondary {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand-200);
  box-shadow: 0 4px 12px rgba(154, 61, 191, .1);
}
.cta.secondary:hover {
  background: var(--brand-50);
  color: var(--brand-ink);
  filter: none;
  box-shadow: 0 6px 16px rgba(154, 61, 191, .16);
}

/* Variantă WhatsApp */
.cta.whatsapp,
.mobile-bar .cta.whatsapp {
  background: linear-gradient(160deg, #3ddc76 0%, #25d366 55%, #1ebe57 100%);
  box-shadow: 0 6px 16px rgba(37, 211, 102, .3);
}
.cta.whatsapp:hover,
.mobile-bar .cta.whatsapp:hover {
  box-shadow: 0 8px 20px rgba(37, 211, 102, .38);
}
.cta.whatsapp:focus-visible,
.mobile-bar .cta.whatsapp:focus-visible {
  box-shadow: var(--focus-ring), 0 6px 16px rgba(37, 211, 102, .3);
}
.cta.whatsapp svg,
.mobile-bar .cta.whatsapp svg {
  fill: currentColor;
}
.cta:not(.whatsapp) svg,
.mobile-bar .cta:not(.whatsapp) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Nav CTA — același look, fără margin-top */
nav a.nav-cta {
  margin-left: .55rem;
  margin-top: 0;
}
nav a.nav-cta[aria-current="page"] {
  background: linear-gradient(160deg, #ad52d0 0%, var(--brand) 55%, #7a2a9e 100%);
  color: #fff;
}
nav a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 8px; }

/* Buton hamburger – vizibil doar pe mobil (zonă de tap generoasă, 44×44) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: -13px -10px;
  background: none;
  border: none;
  padding: 13px 10px;
  cursor: pointer;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.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(-7.5px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  header { position: relative; }
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(37, 31, 44, .35);
    border: 0;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  body.nav-open .nav-backdrop { display: block; }
  #primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(70vh, calc(100dvh - var(--site-chrome-h, 102px)));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 30px rgba(17, 24, 39, .10);
    padding: .5rem 1.25rem .75rem;
    display: none;
    z-index: 110;
  }
  #primary-nav.open { display: flex; }
  #primary-nav a:not(.nav-cta) {
    margin-left: 0;
    padding: .9rem .1rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
  }
  #primary-nav a:not(.nav-cta):last-of-type,
  #primary-nav a:nth-last-child(2) { border-bottom: none; }
  #primary-nav a.nav-cta { display: none; }
  #primary-nav a:not(.nav-cta)[aria-current="page"] {
    background: transparent;
    color: var(--brand-ink);
  }
}

/* Titluri & text */
h1, h2, h3 {
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.14;
  margin: 0 0 0.75rem;
}
h2 {
  font-size: clamp(1.55rem, 2.4vw, 1.85rem);
  margin: 0.5rem 0 0.75rem;
}
.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Badge – pe lavandă, fără albastru */
.badge {
  display: inline-block;
  background: var(--brand-100);
  color: var(--brand-ink);
  border: 1px solid var(--brand-200);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Secțiuni, carduri, layout */
section {
  padding: 72px 0;
  border-top: 1px solid transparent;
}
section + section { border-top: 1px solid var(--border); }
.card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: 0;
  transition: opacity .2s ease;
}
.card:hover {
  box-shadow: 0 10px 24px var(--brand-shadow);
  transform: translateY(-2px);
  border-color: var(--brand-200);
}
.card:hover::before { opacity: 1; }

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

/* Footer */
footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(700px 240px at 80% 0%, rgba(217, 143, 224, .16), transparent 60%),
    var(--brand-50);
  color: var(--muted);
}
.foot-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 1fr 1fr;
}
.foot-brand .logo { margin-bottom: .5rem; }
.foot-title {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-ink);
  margin: 0 0 1rem;
}
.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: var(--brand); }

.foot-contact {
  display: grid;
  gap: .85rem;
  align-content: start;
}
.foot-contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: .35rem;
  display: grid;
  gap: .15rem;
}
.foot-line {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: inherit;
  padding: .7rem .8rem;
  border-radius: 12px;
  transition: background .15s ease;
}
.foot-line:hover {
  background: var(--brand-50);
  text-decoration: none;
}
.foot-line:hover .foot-line-value { color: var(--brand); }
.foot-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--brand-50);
  color: var(--brand-ink);
}
.foot-ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.foot-line.whatsapp .foot-ico {
  background: #ecfdf5;
  color: #128c7e;
}
.foot-line-text {
  display: grid;
  gap: .05rem;
  min-width: 0;
}
.foot-line-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  font-weight: 600;
}
.foot-line-value {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  word-break: break-word;
  line-height: 1.3;
}
.foot-meta {
  margin: .15rem .35rem .45rem;
  padding: .75rem .8rem .55rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: .35rem;
}
.foot-address,
.foot-hours {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}
.foot-hours {
  font-weight: 600;
  color: var(--text);
}
.foot-meta-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--brand-ink);
  opacity: .75;
}
.foot-meta-ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foot-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--brand-200);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
}

/* Grid 2 */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.grid-2 img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  object-fit:cover;
  box-shadow: 0 4px 16px var(--brand-shadow); /* ușor accent violet pe imagini */
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  nav a { margin-left: 0.75rem; }
}
@media (max-width: 600px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* Bară fixă de contact rapid, doar pe mobil */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  gap: .65rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid rgba(235, 225, 234, .9);
  box-shadow: 0 -10px 28px rgba(99, 31, 122, .12);
  padding: .7rem .85rem calc(.7rem + env(safe-area-inset-bottom, 0px));
}
.mobile-bar .cta {
  flex: 1;
  margin-top: 0;
}

@media (max-width: 640px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 86px; }
}
