/* ==========================================================================
   Dr. Andrei Voicu — parodontologie & estetică dentară
   ========================================================================== */

:root{
  --bg:        #FBF9F6;
  --bg-alt:    #F3EEE7;
  --dark:      #16130F;
  --dark-2:    #211C16;
  --ink:       #1E1B18;
  --muted:     #5C554D;
  --muted-2:   #857C72;
  --gold:      #B08D57;
  --gold-deep: #9A7842;
  --gold-soft: #D9C39E;
  --line:      rgba(30,27,24,.12);
  --line-light:rgba(255,255,255,.14);
  --white:     #ffffff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

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

body{
  font-family:var(--sans);
  font-weight:400;
  color:var(--ink);
  background:var(--bg);
  line-height:1.7;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{ width:100%; max-width:var(--container); margin-inline:auto; padding-inline:var(--pad); }

/* ---------- Typography helpers ---------- */
h1,h2,h3{ font-family:var(--serif); font-weight:500; line-height:1.1; letter-spacing:.01em; }

.eyebrow{
  font-size:.75rem; letter-spacing:.26em; text-transform:uppercase;
  font-weight:600; color:var(--gold-deep); margin-bottom:1rem;
}
.eyebrow--light{ color:var(--gold-soft); }

.section{ padding:clamp(4rem, 9vw, 8rem) 0; }
.section--alt{ background:var(--bg-alt); }
.section--dark{ background:var(--dark); color:#EDE7DE; }

.section__head{ max-width:640px; margin-bottom:clamp(2.5rem,5vw,4rem); }
.section__head--center{ margin-inline:auto; text-align:center; }
.section__title{ font-size:clamp(1.9rem, 4vw, 3rem); color:inherit; }
.section--dark .section__title{ color:#F6F1E9; }
.section__intro{ margin-top:1.1rem; color:var(--muted); font-size:1.05rem; }
.section--dark .section__intro{ color:#C7BEB2; }

.lead{ font-size:1.15rem; color:var(--ink); font-weight:400; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  font-family:var(--sans); font-weight:500; font-size:.82rem;
  letter-spacing:.14em; text-transform:uppercase;
  padding:.95rem 1.9rem; border-radius:var(--radius);
  border:1px solid transparent; cursor:pointer;
  transition:all .35s var(--ease); white-space:nowrap;
}
.btn--lg{ padding:1.1rem 2.3rem; }
.btn--gold{ background:var(--gold); color:#fff; }
.btn--gold:hover{ background:var(--gold-deep); transform:translateY(-2px); box-shadow:0 12px 28px -12px rgba(154,120,66,.7); }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn--ghost:hover{ border-color:var(--gold); color:var(--gold-deep); }
.section--dark .btn--ghost{ color:#EDE7DE; border-color:var(--line-light); }
.section--dark .btn--ghost:hover{ border-color:var(--gold-soft); color:var(--gold-soft); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  padding:1.35rem 0;
  transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled{
  background:rgba(251,249,246,.92);
  backdrop-filter:blur(12px);
  padding:.75rem 0;
  box-shadow:0 1px 0 var(--line);
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:2rem; }

.brand{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--serif); font-size:1.5rem; font-weight:600; color:var(--ink); letter-spacing:.01em; }
.brand__sub{ font-size:.62rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-deep); font-weight:500; margin-top:.15rem; }

.nav{ display:flex; align-items:center; gap:2rem; }
.nav a{
  font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; font-weight:400;
  color:var(--ink); position:relative; transition:color .3s; white-space:nowrap;
}
.nav a:not(.nav__cta)::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px;
  background:var(--gold); transition:width .35s var(--ease);
}
.nav a:not(.nav__cta):hover{ color:var(--gold-deep); }
.nav a:not(.nav__cta):hover::after{ width:100%; }
.nav__cta{ color:#fff !important; }

/* Hero is dark-on-light already; header text stays dark. When over hero (top), keep readable */
.site-header:not(.is-scrolled) .brand__name{ color:var(--ink); }

/* Subpagini: header stă peste un page-hero închis la culoare → text deschis până la scroll */
body.subpage .site-header:not(.is-scrolled) .brand__name{ color:#F6F1E9; }
body.subpage .site-header:not(.is-scrolled) .brand__sub{ color:var(--gold-soft); }
body.subpage .site-header:not(.is-scrolled) .nav > a:not(.nav__cta){ color:#EDE7DE; }
body.subpage .site-header:not(.is-scrolled) .nav-toggle span{ background:#EDE7DE; }
/* meniul mobil (panou deschis) e pe fundal deschis → text/închideri închise
   (specificitate ridicată ca să învingă regula header-peste-hero de mai sus) */
@media (max-width:860px){
  body.subpage .site-header .nav.is-open > a:not(.nav__cta){ color:var(--ink); }
}
.nav.is-open + .nav-toggle span,
body.subpage .site-header .nav.is-open + .nav-toggle span{ background:var(--ink); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:.4rem;
}
.nav-toggle span{ width:26px; height:2px; background:var(--ink); transition:.35s var(--ease); transform-origin:center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ position:relative; padding-top:clamp(8rem,16vh,11rem); padding-bottom:clamp(3rem,6vw,5rem); overflow:hidden; }
.hero::before{
  content:"AV"; position:absolute; top:8%; left:-2%; z-index:0;
  font-family:var(--serif); font-size:38vw; font-weight:500; line-height:.8;
  color:rgba(176,141,87,.05); pointer-events:none; user-select:none;
}
.hero__inner{ position:relative; z-index:1; display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,5vw,5rem); align-items:center; }

.hero__title{ font-size:clamp(3.2rem, 9vw, 6.6rem); line-height:.95; margin:.4rem 0 1.4rem; letter-spacing:-.01em; }
.hero__tags{ font-size:.95rem; letter-spacing:.04em; color:var(--gold-deep); text-transform:uppercase; font-weight:500; margin-bottom:1.4rem; }
.hero__lead{ font-size:1.2rem; color:var(--muted); max-width:36ch; margin-bottom:2.2rem; font-weight:300; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:1rem; }

.hero__frame{ position:relative; }
.hero__frame::after{
  content:""; position:absolute; inset:0; transform:translate(18px,18px);
  border:1px solid var(--gold); border-radius:2px; z-index:-1;
}
.hero__frame img{
  width:100%; height:clamp(380px,54vh,520px); object-fit:cover; object-position:center 18%;
  border-radius:2px; filter:grayscale(100%) contrast(1.02);
  box-shadow:0 40px 80px -40px rgba(0,0,0,.55);
}

.hero__scroll{ position:absolute; left:50%; bottom:1.6rem; transform:translateX(-50%); z-index:2; }
.hero__scroll span{ display:block; width:1px; height:52px; background:linear-gradient(var(--gold),transparent); position:relative; }
.hero__scroll span::after{
  content:""; position:absolute; top:0; left:50%; width:5px; height:5px; border-radius:50%;
  background:var(--gold); transform:translateX(-50%); animation:scrollDot 2.2s var(--ease) infinite;
}
@keyframes scrollDot{ 0%{ top:0; opacity:1; } 70%{ top:46px; opacity:0; } 100%{ opacity:0; } }

/* ==========================================================================
   CE FAC — cards
   ========================================================================== */
.cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.cards--3{ grid-template-columns:repeat(3,1fr); }
.card__num{ font-family:var(--serif); font-size:1.1rem; color:var(--gold); font-style:italic; margin-bottom:.9rem; display:block; }
.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:2.4rem 1.8rem; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover{ transform:translateY(-6px); box-shadow:0 30px 60px -35px rgba(0,0,0,.3); border-color:var(--gold-soft); }
.card__icon{ width:52px; height:52px; color:var(--gold); margin-bottom:1.4rem; }
.card__icon svg{ width:100%; height:100%; }
.card h3{ font-size:1.4rem; margin-bottom:.6rem; }
.card p{ color:var(--muted); font-size:.96rem; }

/* ==========================================================================
   DESPRE
   ========================================================================== */
.about__inner{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(2rem,5vw,5rem); align-items:center; }
.about__frame{ position:relative; }
.about__frame::before{
  content:""; position:absolute; inset:0; transform:translate(-16px,-16px);
  border:1px solid var(--gold); z-index:0;
}
.about__frame img{ position:relative; z-index:1; width:100%; height:clamp(400px,58vh,540px); object-fit:cover; object-position:62% 32%; }
.about__media{ position:relative; }
/* Slideshow automat (pozele de la Despre) */
.slideshow{ position:relative; z-index:1; width:100%; height:clamp(400px,58vh,540px); border-radius:2px; overflow:hidden; }
.slideshow img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .8s var(--ease); }
.slideshow img.is-active{ opacity:1; }
.about__text p{ margin-bottom:1.1rem; color:var(--muted); }
.about__text p:first-of-type{ margin-top:1.2rem; }
.about__text .lead{ color:var(--ink); }

/* ==========================================================================
   CAZURI
   ========================================================================== */
.cases__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; }
.case{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; cursor:pointer; transition:transform .4s var(--ease), box-shadow .4s var(--ease);
  display:flex; flex-direction:column;
}
.case:hover,.case:focus-visible{ transform:translateY(-6px); box-shadow:0 30px 60px -35px rgba(0,0,0,.32); outline:none; }
.case__img{ position:relative; overflow:hidden; background:#eee; }
.case__img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.case:hover .case__img img{ transform:scale(1.04); }
.case__img::after{
  content:"Mărește"; position:absolute; inset:auto 0 0 0; padding:.7rem;
  background:linear-gradient(transparent, rgba(0,0,0,.55)); color:#fff;
  font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; text-align:center;
  opacity:0; transition:opacity .4s; }
.case:hover .case__img::after{ opacity:1; }
.case__body{ padding:1.6rem 1.5rem 1.8rem; }
.case__tag{ font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep); font-weight:600; }
.case__body h3{ font-size:1.32rem; margin:.5rem 0 .9rem; }
.case__body p{ font-size:.9rem; color:var(--muted); margin-bottom:.5rem; }
.case__body strong{ color:var(--ink); font-weight:500; }

/* ==========================================================================
   PREGATIRE — timeline
   ========================================================================== */
.training__inner{ max-width:820px; margin-inline:auto; }
.timeline{ list-style:none; position:relative; margin-top:1rem; padding-left:2rem; }
.timeline::before{ content:""; position:absolute; left:5px; top:6px; bottom:6px; width:1px; background:linear-gradient(var(--gold),rgba(176,141,87,.15)); }
.timeline__item{ position:relative; padding:0 0 2.4rem 1.6rem; }
.timeline__item:last-child{ padding-bottom:0; }
.timeline__dot{ position:absolute; left:-2rem; top:6px; width:11px; height:11px; border-radius:50%; background:var(--dark); border:2px solid var(--gold); }
.timeline__item h3{ font-size:1.35rem; color:#F6F1E9; margin-bottom:.35rem; }
.timeline__item p{ color:#BCB3A7; font-size:.98rem; }
.training__cv{ margin-top:2.8rem; }

/* ==========================================================================
   SERVICII
   ========================================================================== */
.services__list{
  list-style:none; display:grid; grid-template-columns:repeat(3,1fr);
  gap:0; border-top:1px solid var(--line);
  max-width:960px; margin-inline:auto;
}
.services__list li{
  padding:1.4rem 1rem 1.4rem 2.4rem; border-bottom:1px solid var(--line);
  position:relative; font-size:1.1rem; color:var(--ink); font-weight:400;
}
.services__list li::before{
  content:""; position:absolute; left:.6rem; top:50%; transform:translateY(-50%);
  width:7px; height:7px; background:var(--gold); border-radius:50%;
}
@media (min-width:721px){
  .services__list li:nth-child(3n+2){ border-left:1px solid var(--line); border-right:1px solid var(--line); }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.5rem,4vw,3.5rem); align-items:stretch; }
.contact__cards{ display:flex; flex-direction:column; gap:1.2rem; }
.clinic{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:1.6rem 1.8rem; }
.clinic h3{ font-size:1.4rem; margin-bottom:.2rem; }
.clinic__addr{ color:var(--muted); font-size:.92rem; margin-bottom:.7rem; }
.clinic__link{ display:inline-block; margin-right:1.5rem; color:var(--gold-deep); font-size:.9rem; font-weight:500; transition:color .3s; }
.clinic__link:hover{ color:var(--gold); }

.contact__meta{ padding:.4rem .2rem; }
.meta-row{ display:flex; gap:1rem; padding:.7rem 0; border-bottom:1px solid var(--line); }
.meta-row:last-child{ border-bottom:0; }
.meta-row__k{ min-width:110px; font-size:.74rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--muted-2); padding-top:.15rem; }
.meta-row__v{ font-size:1rem; color:var(--ink); }
a.meta-row__v{ color:var(--gold-deep); font-weight:500; }

.contact__actions{ display:flex; flex-wrap:wrap; gap:1rem; margin-top:.5rem; }
.contact__map{ border-radius:var(--radius); overflow:hidden; min-height:420px; border:1px solid var(--line); }
.contact__map iframe{ width:100%; height:100%; min-height:420px; border:0; filter:grayscale(.4) contrast(1.05); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:var(--dark); color:#CFC6BA; }
.footer__inner{ display:flex; justify-content:space-between; align-items:flex-start; gap:2rem; flex-wrap:wrap; padding-top:3.5rem; padding-bottom:2.5rem; }
.footer .brand__name{ color:#F6F1E9; font-size:1.5rem; }
.footer__brand p{ margin-top:.6rem; font-size:.9rem; color:#9C9285; }
.footer__nav{ display:flex; flex-wrap:wrap; gap:1.6rem; }
.footer__nav a{ font-size:.85rem; letter-spacing:.06em; text-transform:uppercase; color:#CFC6BA; transition:color .3s; }
.footer__nav a:hover{ color:var(--gold-soft); }
.footer__bar{ border-top:1px solid rgba(255,255,255,.08); }
.footer__bar-inner{ display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding-top:1.3rem; padding-bottom:1.3rem; font-size:.8rem; color:#9C9082; letter-spacing:.04em; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox{
  position:fixed; inset:0; z-index:200; background:rgba(16,13,10,.94);
  display:flex; align-items:center; justify-content:center; padding:2rem;
  opacity:0; visibility:hidden; transition:opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:min(92vw,900px); max-height:90vh; object-fit:contain; border-radius:2px; box-shadow:0 30px 80px -20px #000; }
.lightbox__close{ position:absolute; top:1.4rem; right:1.8rem; background:none; border:0; color:#fff; font-size:2.4rem; line-height:1; cursor:pointer; opacity:.8; transition:opacity .3s; }
.lightbox__close:hover{ opacity:1; }

/* ==========================================================================
   LINK "DETALII" + SECTION FOOT
   ========================================================================== */
.section__foot{ margin-top:clamp(2.2rem,4vw,3.2rem); display:flex; justify-content:center; }
.section__head .link-more{ margin-top:1.4rem; }
.link-more{
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--sans); font-weight:500; font-size:.8rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--gold-deep);
  padding-bottom:.35rem; border-bottom:1px solid var(--gold-soft);
  transition:gap .35s var(--ease), color .3s, border-color .3s;
}
.link-more:hover{ gap:1rem; color:var(--gold); border-color:var(--gold); }
.link-more svg{ width:16px; height:16px; }
.section--dark .link-more{ color:var(--gold-soft); border-color:rgba(217,195,158,.4); }
.section--dark .link-more:hover{ color:#fff; border-color:var(--gold-soft); }

/* ==========================================================================
   PAGE HERO (subpagini) + BREADCRUMB
   ========================================================================== */
.page-hero{
  position:relative; background:var(--dark); color:#EDE7DE;
  padding:clamp(8rem,16vh,11rem) 0 clamp(3rem,7vw,5rem);
  overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0; z-index:0; opacity:.16;
  background:radial-gradient(120% 120% at 85% 0%, rgba(176,141,87,.55), transparent 55%);
}
.page-hero__inner{ position:relative; z-index:1; max-width:760px; }
.breadcrumb{ display:flex; flex-wrap:wrap; gap:.5rem; align-items:center; font-size:.74rem; letter-spacing:.18em; text-transform:uppercase; color:#A99E8F; margin-bottom:1.4rem; }
.breadcrumb a{ color:var(--gold-soft); transition:color .3s; }
.breadcrumb a:hover{ color:#fff; }
.breadcrumb span{ opacity:.6; }
.page-hero__title{ font-size:clamp(2.3rem,5.5vw,4rem); color:#F6F1E9; line-height:1.05; }
.page-hero__intro{ margin-top:1.2rem; font-size:1.15rem; color:#C7BEB2; max-width:56ch; }

/* ==========================================================================
   PROSE (conținut pagini interioare)
   ========================================================================== */
.prose{ max-width:760px; }
.prose > p{ margin-bottom:1.15rem; color:var(--muted); }
.prose > p.lead{ color:var(--ink); font-size:1.2rem; margin-bottom:1.6rem; }
.prose h3{ font-size:1.7rem; margin:2.4rem 0 1rem; }
.prose h3:first-child{ margin-top:0; }
.prose ul{ list-style:none; margin:1rem 0 1.6rem; }
.prose ul li{ position:relative; padding:.35rem 0 .35rem 1.6rem; color:var(--muted); }
.prose ul li::before{ content:""; position:absolute; left:0; top:1rem; width:7px; height:7px; background:var(--gold); border-radius:50%; }
.prose strong{ color:var(--ink); font-weight:500; }

.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4.5rem); align-items:start; }
.split--media-right .split__media{ order:2; }
.split__media{ position:relative; }
.split__media > img{ width:100%; height:clamp(360px,50vh,520px); object-fit:cover; border-radius:var(--radius); }
@media (max-width:860px){ .split{ grid-template-columns:1fr; } .split--media-right .split__media{ order:-1; } .split__media img{ height:auto; aspect-ratio:4/3; } }

/* ==========================================================================
   PAGE CTA BAND
   ========================================================================== */
.cta-band{ background:var(--dark-2); color:#EDE7DE; text-align:center; }
.cta-band__inner{ max-width:640px; margin-inline:auto; padding-block:clamp(3.5rem,7vw,6rem); }
.cta-band h2{ font-size:clamp(1.8rem,4vw,2.8rem); color:#F6F1E9; margin-bottom:1rem; }
.cta-band p{ color:#C7BEB2; margin-bottom:2rem; }
.cta-band__actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero__scroll span::after{ animation:none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1000px){
  .cards{ grid-template-columns:repeat(2,1fr); }
  .cases__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:860px){
  /* backdrop-filter pe header creează un containing block pentru elementele
     position:fixed → panoul meniului mobil ar fi ancorat greșit după scroll.
     Îl scoatem pe mobil și păstrăm o bară aproape opacă. */
  .site-header.is-scrolled{ backdrop-filter:none; -webkit-backdrop-filter:none; background:rgba(251,249,246,.97); }
  .nav{
    position:fixed; inset:0 0 0 auto; width:min(80vw,340px);
    flex-direction:column; align-items:flex-start; justify-content:center; gap:1.8rem;
    background:var(--bg); padding:3rem; transform:translateX(100%);
    transition:transform .45s var(--ease); box-shadow:-20px 0 60px -30px rgba(0,0,0,.4);
  }
  .nav.is-open{ transform:translateX(0); }
  .nav a{ font-size:1rem; }
  .nav__cta{ margin-top:.5rem; }
  .nav-toggle{ display:flex; z-index:101; }
  .hero__inner{ grid-template-columns:1fr; text-align:left; }
  .hero__media{ order:-1; max-width:340px; }
  .about__inner{ grid-template-columns:1fr; }
  .about__frame{ max-width:380px; }
  .about__frame::before{ transform:translate(-12px,-12px); }
  .contact__grid{ grid-template-columns:1fr; }
  .contact__map{ min-height:340px; order:-1; }
}
@media (max-width:720px){
  body{ font-size:16px; }
  .services__list{ grid-template-columns:1fr; }
  .footer__inner{ flex-direction:column; }
}
@media (max-width:560px){
  .cards{ grid-template-columns:1fr; }
  .cases__grid{ grid-template-columns:1fr; }
  .hero__actions .btn{ flex:1; }
}

/* ==========================================================================
   CAROUSEL (homepage collections)
   ========================================================================== */
.carousel{ position:relative; }
.carousel__track{
  display:flex; gap:1.5rem; overflow-x:auto; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; scrollbar-width:none; cursor:grab;
  padding:.5rem .3rem 1.5rem; scroll-padding-inline:.3rem;
}
.carousel__track::-webkit-scrollbar{ display:none; }
.carousel.is-grabbing .carousel__track{ cursor:grabbing; scroll-snap-type:none; scroll-behavior:auto; }
.carousel__item{ flex:0 0 calc((100% - 3rem) / 3); scroll-snap-align:start; min-width:0; display:flex; }
.carousel__item > *{ width:100%; height:100%; }
.carousel__nav{
  position:absolute; top:calc(50% - 2rem); z-index:6; width:52px; height:52px; border-radius:50%;
  background:var(--white); border:1px solid var(--line); color:var(--ink);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .3s var(--ease), color .3s, border-color .3s, opacity .3s;
  box-shadow:0 12px 30px -14px rgba(0,0,0,.4);
}
.carousel__nav svg{ width:20px; height:20px; }
.carousel__nav:hover{ background:var(--gold); color:#fff; border-color:var(--gold); }
.carousel__nav--prev{ left:-16px; }
.carousel__nav--next{ right:-16px; }
.carousel__nav[disabled]{ opacity:0; pointer-events:none; }
.section--dark .carousel__nav{ background:var(--dark-2); color:#EDE7DE; border-color:rgba(255,255,255,.16); }
.section--dark .carousel__nav:hover{ background:var(--gold); color:#fff; border-color:var(--gold); }
.carousel__dots{ display:flex; justify-content:center; gap:.5rem; margin-top:.4rem; }
.carousel__dot{ width:7px; height:7px; border-radius:50%; background:var(--line); border:0; padding:0; cursor:pointer; transition:background .3s, transform .3s; }
.carousel__dot.is-active{ background:var(--gold); transform:scale(1.3); }
.carousel .card, .carousel .case, .carousel .svc-card{ height:100%; }
@media (max-width:1000px){ .carousel__item{ flex-basis:calc((100% - 1.5rem) / 2); } }
@media (max-width:640px){
  .carousel__item{ flex-basis:86%; }
  .carousel__nav{ display:none; }
}

/* ==========================================================================
   SERVICII — pictograme (carousel de carduri)
   ========================================================================== */
.svc-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:2.4rem 1.6rem; text-align:center;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc-card:hover{ transform:translateY(-6px); box-shadow:0 30px 60px -35px rgba(0,0,0,.3); border-color:var(--gold-soft); }
.svc-card__icon{ width:56px; height:56px; margin:0 auto 1.3rem; color:var(--gold); }
.svc-card__icon svg{ width:100%; height:100%; }
.svc-card h3{ font-size:1.3rem; }
.svc-card p{ margin-top:.5rem; font-size:.9rem; color:var(--muted); }

/* ==========================================================================
   STATS BAR (pregătire profesională)
   ========================================================================== */
.stats-bar{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius); overflow:hidden; margin:0 0 clamp(2.5rem,5vw,3.5rem);
}
.stat{ background:var(--dark); padding:2.2rem 1.4rem; text-align:center; display:flex; flex-direction:column; align-items:center; }
.stat__num{ font-family:var(--serif); font-size:clamp(2.4rem,4vw,3.2rem); font-weight:600; color:var(--gold-soft); line-height:1; }
.stat__icon{ width:38px; height:38px; color:var(--gold-soft); margin-bottom:.3rem; }
.stat__icon svg{ width:100%; height:100%; }
.stat__label{ margin-top:.8rem; font-size:.88rem; color:#C7BEB2; line-height:1.5; }
@media (max-width:760px){ .stats-bar{ grid-template-columns:repeat(2,1fr); } }

/* ==========================================================================
   TIMELINE — an
   ========================================================================== */
.timeline__year{ display:inline-block; font-family:var(--sans); font-size:.72rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-soft); margin-bottom:.35rem; }

/* ==========================================================================
   CONTACT — adrese + hărți duble
   ========================================================================== */
.clinic__addr{ display:flex; align-items:flex-start; gap:.5rem; }
.clinic__addr svg{ width:15px; height:15px; color:var(--gold-deep); flex:none; margin-top:.28rem; }
.contact__maps{ display:flex; flex-direction:column; gap:1rem; }
.map-card{ position:relative; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); min-height:205px; flex:1; }
.map-card iframe{ width:100%; height:100%; min-height:205px; border:0; filter:grayscale(.35) contrast(1.05); }
.map-card__label{
  position:absolute; top:0; left:0; z-index:2; background:rgba(22,19,15,.82); color:#F6F1E9;
  font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; font-weight:600;
  padding:.5rem .9rem; border-radius:0 0 var(--radius) 0; backdrop-filter:blur(4px);
}
@media (max-width:860px){ .contact__maps{ order:-1; } }

/* Contact — card per clinică, cu harta încadrată */
.contact__clinics{ display:grid; grid-template-columns:1fr 1fr; gap:1.6rem; margin-bottom:clamp(2rem,4vw,3rem); }
.clinic-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; }
.clinic-card__map{ height:240px; border-bottom:1px solid var(--line); background:#eee; }
.clinic-card__map iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.35) contrast(1.05); }
.clinic-card__body{ padding:1.5rem 1.7rem 1.8rem; }
.clinic-card__body h3{ font-size:1.5rem; margin-bottom:.5rem; }
.clinic-card__links{ margin-top:1rem; display:flex; gap:1.6rem; flex-wrap:wrap; }
.contact__footer{ display:grid; grid-template-columns:1.3fr .7fr; gap:clamp(1.5rem,4vw,3rem); align-items:center; }
.contact__footer .contact__actions{ margin-top:0; justify-content:flex-end; }
@media (max-width:860px){
  .contact__clinics{ grid-template-columns:1fr; }
  .contact__footer{ grid-template-columns:1fr; }
  .contact__footer .contact__actions{ justify-content:flex-start; }
}
