/* =========================================================================
   Realest.Consulea — v3 „negru & aur, modern"
   Referință de ritm: findrealestate.com (blocuri alternate, pastile,
   fotografie mare tăiată drept, un singur grotesc, scală mare).
   Accentul e auriul brandului, pe negru.
   ========================================================================= */

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Întuneric — dominant */
  --ink:     #0E0E11;
  --ink-2:   #15151A;
  --ink-3:   #1E1E25;
  --line-d:  #26262E;

  /* Lumină — blocuri de respirație (cald, nu clinic) */
  --paper:   #FFFFFF;
  --paper-2: #F5F3EE;
  --line-l:  #E2DED4;

  /* Aur — singurul accent */
  --gold:    #C9A227;
  --gold-2:  #E6C55F;
  --gold-3:  #F2E6C0;

  /* Text pe întuneric */
  --od:      #F7F5F0;
  --od-mid:  #ABA8A1;
  --od-dim:  #7A776F;

  /* Text pe lumină */
  --ol:      #121215;
  --ol-mid:  #5C5A55;

  --font: "Instrument Sans", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scală tipografică — cu PRAG MINIM.
     Regula pe care mi-o impun: nimic sub 14px nu duce informație pe care
     omul trebuie s-o citească. Sub asta doar numerotări de pași. */
  --t-display: clamp(2.6rem, 6.4vw, 5.4rem);
  --t-h2:      clamp(1.95rem, 4.2vw, 3.3rem);
  --t-h3:      clamp(1.22rem, 1.9vw, 1.55rem);
  --t-lead:    clamp(1.08rem, 1.45vw, 1.3rem);
  --t-body:    1.0625rem;   /* 17px */
  --t-small:   0.9375rem;   /* 15px — pragul de jos pentru conținut */
  --t-micro:   0.8125rem;   /* 13px — doar etichete de serviciu */

  --gut:   clamp(20px, 4.2vw, 60px);
  --wrap:  1320px;
  --bar:   64px;
  --pill:  999px;
  --ease:  cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--od);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* `clip`, NU `hidden`: pe body, `overflow-x: hidden` transformă body-ul în
     container de derulare, iar evenimentele de scroll nu mai ajung la window
     — butonul „înapoi sus" și bara lipicioasă nu se mai activau niciodată. */
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
/* Orice ancoră (#incepe, #servicii, #intrebari…) trebuie să se oprească SUB
   bara lipicioasă, altfel titlul secțiunii ajunge ascuns în spatele ei. */
[id] { scroll-margin-top: calc(var(--bar) + 16px); }
::selection { background: var(--gold); color: #17130A; }

/* ------------------------------------------------------------ Tipografie */
.dsp, .h2, .h3 { font-weight: 700; letter-spacing: -0.035em; line-height: 0.98; text-wrap: balance; }
.dsp { font-size: var(--t-display); }
.h2  { font-size: var(--t-h2); letter-spacing: -0.032em; line-height: 1.02; }
.h3  { font-size: var(--t-h3); letter-spacing: -0.022em; line-height: 1.12; font-weight: 650; }
.lead { font-size: var(--t-lead); line-height: 1.5; color: var(--od-mid); text-wrap: pretty; }
.body { font-size: var(--t-body); color: var(--od-mid); text-wrap: pretty; }
.gold { color: var(--gold-2); }
.num { font-variant-numeric: tabular-nums; }

/* Eticheta de secțiune — mică, dar NU purtătoare de informație esențială */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--t-micro); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .8; }

/* --------------------------------------------------------------- Cadrare */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.band { padding-block: clamp(56px, 8vw, 128px); position: relative; }
.band--tight { padding-block: clamp(40px, 5vw, 72px); }

/* Blocuri de lumină — ritmul alternat, ca la referință */
.band--light { background: var(--paper); color: var(--ol); }
.band--light .lead, .band--light .body { color: var(--ol-mid); }
.band--light .eyebrow { color: #96741A; }
.band--light .gold { color: #96741A; }
.band--cream { background: var(--paper-2); color: var(--ol); }
.band--cream .lead, .band--cream .body { color: var(--ol-mid); }
.band--cream .eyebrow, .band--cream .gold { color: #96741A; }
.band--ink2 { background: var(--ink-2); }

/* --------------------------------------------------------------- Pastile */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 26px;
  border-radius: var(--pill);
  font-size: var(--t-small); font-weight: 600; letter-spacing: -0.005em;
  white-space: nowrap;
  /* Siguranţă: un `.btn` fără clasă de variantă arată tot ca un buton,
     nu ca text invizibil. Variantele de mai jos suprascriu aceste valori. */
  background: transparent; color: var(--od); border: 1px solid rgba(247,245,240,.28);
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .14s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

.btn--gold { background: var(--gold); color: #17130A; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn--wa { background: #25D366; color: #06300F; border-color: #25D366; }
.btn--wa:hover { background: #3ae07a; border-color: #3ae07a; }

/* Contur pe întuneric */
.btn--line { background: transparent; color: var(--od); border-color: rgba(247,245,240,.28); }
.btn--line:hover { background: rgba(247,245,240,.08); border-color: var(--od); }

/* Contur pe lumină */
.btn--dark { background: var(--ol); color: var(--paper); border-color: var(--ol); }
.btn--dark:hover { background: #2C2C33; border-color: #2C2C33; }

.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: var(--t-micro); }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ------------------------------------------------------- Bara de sus */
.bar {
  position: sticky; top: 0; z-index: 60; height: var(--bar);
  display: flex; align-items: center;
  background: transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.bar.stuck { background: rgba(14,14,17,.86); backdrop-filter: blur(14px); border-bottom-color: var(--line-d); }
.bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; }

/* padding vertical ca să fie o ţintă de atingere confortabilă pe telefon */
.logo { font-size: 1.06rem; font-weight: 700; letter-spacing: -0.03em; white-space: nowrap; display: inline-block; padding-block: 9px; }
.logo i { font-style: normal; color: var(--gold-2); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 13px; border-radius: var(--pill);
  font-size: var(--t-small); font-weight: 500; color: var(--od-mid);
  transition: color .18s, background-color .18s;
}
.nav a:hover { color: var(--od); background: rgba(247,245,240,.07); }
.nav a[aria-current="page"] { color: var(--od); background: rgba(247,245,240,.09); font-weight: 600; }

.bar__right { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none; width: 44px; height: 44px; border-radius: var(--pill);
  align-items: center; justify-content: center;
  border: 1px solid rgba(247,245,240,.22);
}
.burger svg { width: 20px; height: 20px; }

/* Meniu pe telefon */
.sheet {
  position: fixed; inset: var(--bar) 0 0 0; z-index: 59;
  background: rgba(14,14,17,.98); backdrop-filter: blur(16px);
  padding: 22px var(--gut) 40px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
}
.sheet.open { opacity: 1; visibility: visible; transform: none; }
.sheet a:not(.btn) {
  padding: 16px 2px; font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line-d);
}
.sheet .btn { margin-top: 22px; }

/* ============================== HERO ==================================== */
/* Hero-ul e ținta ancorei #top — acolo vrem chiar capul paginii, fără decalaj */
.hero { position: relative; overflow: hidden; min-height: min(88vh, 820px); display: flex; align-items: center; scroll-margin-top: 0; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }

/* Portretul: intră full-bleed din dreapta. Fundalul pozei e deja negru,
   deci un degradeu peste marginea din stânga îl topește în pagină. */
.hero__photo {
  position: absolute; right: 0; bottom: 0; top: 0; z-index: 0;
  width: clamp(420px, 48vw, 760px);
  height: 100%;
  object-fit: cover; object-position: 62% 8%;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, var(--ink) 0%, var(--ink) 42%, rgba(14,14,17,.86) 55%, rgba(14,14,17,.3) 70%, rgba(14,14,17,0) 84%),
    radial-gradient(120% 90% at 88% 0%, rgba(201,162,39,.15), transparent 62%),
    linear-gradient(0deg, var(--ink) 0%, rgba(14,14,17,0) 26%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-block: clamp(48px, 7vw, 96px); }
/* ATENȚIE: aici NU se folosește `ch`. Unitatea se calculează la font-size-ul
   containerului (17px), nu la cel al titlului (86px), deci `20ch` ar strânge
   toată coloana la ~226px și ar face hero-ul de 1700px înălțime. */
.hero__copy { max-width: min(760px, 100%); }
.hero .dsp { margin-top: 20px; }
.hero .lead { margin-top: 22px; max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 11px; margin-top: clamp(28px, 3.4vw, 40px); }

.hero__or { margin-top: 16px; font-size: var(--t-small); color: var(--od-dim); }
.hero__or a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.hero__or a:hover { color: var(--gold-3); }

/* Fapte, sub hero */
.facts { display: flex; flex-wrap: wrap; gap: 10px 30px; align-items: center; margin-top: clamp(30px, 4vw, 46px); }
.fact { display: inline-flex; align-items: baseline; gap: 9px; }
.fact b { font-size: 1.32rem; font-weight: 700; letter-spacing: -0.03em; color: var(--gold-2); }
.fact span { font-size: var(--t-small); color: var(--od-dim); }

/* ========================= CARDURI DE TRIAJ ============================= */
.head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 22px; margin-bottom: clamp(28px, 3.6vw, 48px); }
.head__t { max-width: 22ch; }
.head .lead { max-width: 44ch; }

.tri { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 20px); }
.card {
  display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line-d);
  overflow: hidden; position: relative;
  transition: border-color .28s var(--ease), background-color .28s var(--ease), transform .28s var(--ease);
}
.card:hover { border-color: rgba(201,162,39,.5); background: #17171D; transform: translateY(-4px); }
.card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0A0A0C; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(.85) contrast(1.05); }
.card:hover .card__img img { transform: scale(1.06); }
.card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--ink-2) 2%, rgba(21,21,26,.35) 40%, rgba(21,21,26,0) 78%);
}
.card__b { padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__b p { color: var(--od-mid); font-size: var(--t-small); flex: 1; }
.card .btn { align-self: flex-start; margin-top: 6px; }
.card__go svg { transition: transform .25s var(--ease); }
.card:hover .card__go svg { transform: translateX(4px); }

/* ------------------------------------------------- Elemente plutitoare */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.7);
  transition: transform .22s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* Stivuit deasupra WhatsApp-ului, unde se uită lumea după el */
.totop {
  position: fixed; right: 24px; bottom: 86px; z-index: 55;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(21,21,26,.9); border: 1px solid var(--line-d); color: var(--gold-2);
  display: grid; place-items: center; backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s, border-color .2s;
}
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { border-color: var(--gold); }
.totop svg { width: 20px; height: 20px; }

/* ------------------------------------------- Bara de consimțământ cookie */
.ckbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  max-width: 760px; margin-inline: auto;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 16px 20px; border-radius: 16px;
  background: rgba(21,21,26,.97); border: 1px solid var(--line-d);
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.8);
  opacity: 0; transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.ckbar.on { opacity: 1; transform: none; }
.ckbar__t { flex: 1 1 340px; font-size: var(--t-small); color: var(--od-mid); line-height: 1.5; }
.ckbar__t a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
/* Refuzul are aceeaşi greutate vizuală ca acceptul — cerinţă GDPR. */
.ckbar__b { display: flex; gap: 9px; flex-shrink: 0; }
@media (max-width: 640px) {
  .ckbar { bottom: 84px; padding: 14px 16px; }
  .ckbar__b { width: 100%; }
  .ckbar__b .btn { flex: 1; }
}

/* ------------------------------------------------------------ Dezvăluire */
.js .rev { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .rev.in { opacity: 1; transform: none; }
.js .rev-2 { transition-delay: .09s; }
.js .rev-3 { transition-delay: .18s; }

/* ================================ MOBIL ================================= */
@media (max-width: 1080px) {
  .tri { grid-template-columns: 1fr; }
  .card { flex-direction: row; align-items: stretch; }
  .card__img { aspect-ratio: auto; width: 38%; flex: 0 0 38%; }
  .card__img::after { background: linear-gradient(90deg, rgba(21,21,26,0) 60%, var(--ink-2) 100%); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hero { min-height: 0; }
  /* Pe telefon portretul devine fundal, ancorat sus-dreapta, ca fața să
     rămână vizibilă în primul ecran — „din prima știi cu cine vorbești". */
  .hero__photo { width: 78%; height: auto; top: 0; bottom: auto; object-position: 58% 0; opacity: .62; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(14,14,17,.28) 0%, rgba(14,14,17,.72) 42%, var(--ink) 72%),
      radial-gradient(90% 60% at 80% 4%, rgba(201,162,39,.16), transparent 60%);
  }
  .hero .wrap { padding-block: clamp(140px, 34vw, 240px) clamp(36px, 7vw, 56px); }
  .hero__copy { max-width: 100%; }
}
@media (max-width: 620px) {
  .card { flex-direction: column; }
  .card__img { width: 100%; flex: none; aspect-ratio: 16/10; }
  .card__img::after { background: linear-gradient(0deg, var(--ink-2) 2%, rgba(21,21,26,0) 70%); }
  .hero__cta .btn { flex: 1 1 100%; }
  .head { display: block; }
  .head .lead { margin-top: 14px; }
}

/* ======================= DESPRE / SPLIT CU FOTOGRAFIE ==================== */
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4vw, 72px); align-items: center; }
.split--text { grid-template-columns: 1fr 1fr; align-items: start; }
.shot { position: relative; overflow: hidden; background: #0A0A0C; }
.shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.shot--wide img { aspect-ratio: 3/2; }
.shot__tag {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--ink); color: var(--od);
  font-size: var(--t-micro); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 11px 18px;
}
.band--light .shot__tag, .band--cream .shot__tag { background: var(--ol); }

.marks { margin-top: clamp(26px, 3vw, 40px); }
.marks li { display: grid; grid-template-columns: 22px 1fr; gap: 15px; padding: 15px 0; border-top: 1px solid var(--line-d); }
.marks li:last-child { border-bottom: 1px solid var(--line-d); }
.marks .tick { color: var(--gold-2); margin-top: 3px; }
.marks .tick svg { width: 18px; height: 18px; }
.marks strong { display: block; font-weight: 650; font-size: var(--t-body); }
.marks span.d { display: block; color: var(--od-mid); font-size: var(--t-small); margin-top: 3px; }
.band--light .marks li, .band--cream .marks li { border-color: var(--line-l); }
.band--light .marks .tick, .band--cream .marks .tick { color: #96741A; }
.band--light .marks span.d, .band--cream .marks span.d { color: var(--ol-mid); }

.sig { margin-top: 26px; font-size: 1.14rem; font-weight: 600; letter-spacing: -0.02em; color: var(--gold-2); }
.band--light .sig, .band--cream .sig { color: #96741A; }

/* ========================= GALERIE DE PROPRIETĂȚI ======================== */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.2vw, 16px); }
.gal figure { position: relative; overflow: hidden; background: #0A0A0C; }
.gal img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .9s var(--ease); filter: saturate(.9); }
.gal figure:hover img { transform: scale(1.07); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 16px 18px;
  background: linear-gradient(0deg, rgba(10,10,12,.92) 10%, rgba(10,10,12,0) 100%);
  font-size: var(--t-small); font-weight: 600; color: var(--od);
}
.gal figcaption em { display: block; font-style: normal; font-weight: 400; font-size: var(--t-micro); color: var(--od-dim); margin-top: 2px; }
.gal__note { margin-top: 20px; font-size: var(--t-small); color: var(--od-dim); }

/* ============================== RECENZII ================================ */
/* Banda de avertizare — de șters din HTML după ce pui recenzii reale */
.demo-warn {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px dashed rgba(230,197,95,.55); background: rgba(230,197,95,.07);
  border-radius: 12px; padding: 14px 18px; margin-bottom: clamp(24px, 3vw, 36px);
  font-size: var(--t-small); color: var(--gold-3);
}
.demo-warn b { color: var(--gold-2); }
.demo-warn svg { width: 18px; height: 18px; color: var(--gold-2); flex: 0 0 auto; margin-top: 2px; }

.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.rvw {
  background: var(--ink-2); border: 1px solid var(--line-d);
  padding: clamp(22px, 2.2vw, 30px); display: flex; flex-direction: column; gap: 16px;
  transition: border-color .26s var(--ease), transform .26s var(--ease);
}
.rvw:hover { border-color: rgba(201,162,39,.4); transform: translateY(-3px); }
.band--light .rvw, .band--cream .rvw { background: var(--paper); border-color: var(--line-l); }
.rvw__stars { display: flex; gap: 3px; color: var(--gold); }
.rvw__stars svg { width: 17px; height: 17px; }
.rvw__t { font-size: var(--t-body); line-height: 1.55; flex: 1; }
.band--light .rvw__t, .band--cream .rvw__t { color: var(--ol); }
.rvw__who { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line-d); }
.band--light .rvw__who, .band--cream .rvw__who { border-color: var(--line-l); }
.rvw__av {
  width: 40px; height: 40px; border-radius: var(--pill); flex: 0 0 auto;
  background: linear-gradient(140deg, var(--gold-2), var(--gold));
  color: #17130A; display: grid; place-items: center; font-weight: 700; font-size: var(--t-small);
}
.rvw__who strong { display: block; font-size: var(--t-small); font-weight: 650; }
.rvw__who span { display: block; font-size: var(--t-micro); color: var(--od-dim); }
.band--light .rvw__who span, .band--cream .rvw__who span { color: var(--ol-mid); }

/* ============================== PAȘI ==================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 34px); }
.step__n {
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--gold); opacity: .9;
}
.band--cream .step__n, .band--light .step__n { color: #B08D14; }
.step h3 { margin-top: 14px; }
.step p { margin-top: 10px; color: var(--od-mid); font-size: var(--t-small); }
.band--cream .step p, .band--light .step p { color: var(--ol-mid); }
.step__line { height: 1px; background: var(--line-d); margin-top: 20px; }
.band--cream .step__line, .band--light .step__line { background: var(--line-l); }

/* ============================= SERVICII ================================= */
.svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.svc__c {
  background: var(--ink); border: 1px solid var(--line-d);
  padding: clamp(20px, 2.2vw, 30px); display: flex; flex-direction: column; gap: 12px;
  transition: border-color .26s var(--ease), transform .26s var(--ease);
}
.svc__c:hover { border-color: rgba(201,162,39,.45); transform: translateY(-3px); }
.svc__i {
  width: 44px; height: 44px; border-radius: var(--pill);
  background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.32);
  display: grid; place-items: center; color: var(--gold-2); margin-bottom: 4px;
}
.svc__i svg { width: 21px; height: 21px; }
.svc__c p { color: var(--od-mid); font-size: var(--t-small); flex: 1; }
.svc__by {
  align-self: flex-start; font-size: var(--t-micro); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--pill); border: 1px solid var(--line-d); color: var(--od-dim);
}
.svc__by--me { border-color: rgba(201,162,39,.4); color: var(--gold-2); }

/* ============================= ÎNTREBĂRI ================================ */
.qa { border-top: 1px solid var(--line-l); }
.qa details { border-bottom: 1px solid var(--line-l); }
.qa summary {
  list-style: none; cursor: pointer; position: relative;
  padding: clamp(17px, 1.9vw, 23px) 54px clamp(17px, 1.9vw, 23px) 0;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem); font-weight: 650; letter-spacing: -0.02em;
  transition: color .18s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: #96741A; }
.qa summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 30px; height: 30px; margin-top: -15px;
  border-radius: var(--pill); border: 1px solid var(--line-l);
  background:
    linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 12px no-repeat;
  transition: transform .3s var(--ease), background-color .2s, border-color .2s;
}
.qa details[open] summary::after { transform: rotate(135deg); border-color: #96741A; }
.qa .a { padding: 0 54px clamp(20px, 2.2vw, 26px) 0; color: var(--ol-mid); max-width: 74ch; }
.qa .a a { color: #96741A; text-decoration: underline; text-underline-offset: 3px; }

/* ============================== CONTACT ================================= */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #17130A 0%, var(--ink) 62%);
  border: 1px solid rgba(201,162,39,.26);
  padding: clamp(32px, 5vw, 76px);
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 50% -10%, rgba(201,162,39,.2), transparent 66%);
}
.cta > * { position: relative; }
.cta .lead { margin: 20px auto 0; max-width: 52ch; }
.cta__b { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; margin-top: clamp(26px, 3.2vw, 38px); }

/* =============================== SUBSOL ================================= */
.foot { background: #0A0A0C; border-top: 1px solid var(--line-d); padding-block: clamp(44px, 5.5vw, 76px) 26px; }
.foot__g { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(26px, 4vw, 64px); }
.foot h4 { font-size: var(--t-micro); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.foot ul { display: grid; gap: 10px; }
.foot ul a, .foot ul li { color: var(--od-mid); font-size: var(--t-small); transition: color .18s; }
.foot ul a:hover { color: var(--od); }
.foot__soc { display: flex; gap: 10px; margin-top: 20px; }
.foot__soc a {
  width: 42px; height: 42px; border-radius: var(--pill);
  border: 1px solid var(--line-d); color: var(--od-mid);
  display: grid; place-items: center;
  transition: border-color .2s, color .2s, background-color .2s, transform .18s var(--ease);
}
.foot__soc a:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(201,162,39,.1); transform: translateY(-2px); }
.foot__soc svg { width: 19px; height: 19px; }

.foot__b {
  margin-top: clamp(34px, 4.5vw, 58px); padding-top: 20px; border-top: 1px solid var(--line-d);
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between;
  font-size: var(--t-micro); color: var(--od-dim);
}

/* ========================= BARA DE JOS (TELEFON) ======================== */
.mbar { display: none; }

/* =============================== WIZARD ================================= */
.wz {
  background: var(--ink-2); border: 1px solid var(--line-d);
  display: flex; flex-direction: column; min-height: 560px;
}
.band--light .wz, .band--cream .wz { background: var(--ink); }

.wz__bar { display: flex; align-items: center; gap: 14px; padding: 15px clamp(18px, 2vw, 26px); border-bottom: 1px solid var(--line-d); }
.wz__count { font-size: var(--t-micro); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--od-dim); white-space: nowrap; }

/* Pașii: segmente pe care se dă click ca să te întorci direct la o întrebare */
.wz__steps { flex: 1; display: flex; gap: 4px; align-items: center; min-width: 0; }
.wz__dot {
  flex: 1 1 0; min-width: 6px; height: 5px; padding: 0;
  border-radius: var(--pill); background: var(--ink-3); border: 0;
  transition: background-color .3s var(--ease), transform .15s var(--ease);
}
.wz__dot.is-done { background: var(--gold); cursor: pointer; }
.wz__dot.is-done:hover { background: var(--gold-2); transform: scaleY(2); }
.wz__dot.is-cur { background: var(--gold-2); }
.wz__dot[disabled] { cursor: default; }
/* Anulare — vizibilă tot timpul, ca să nu mai fie nevoie de back-back-back.
   Colorată intenționat: e singura acțiune distructivă din formular. */
.wz__cancel {
  font-size: var(--t-small); font-weight: 600; color: #FFB4AC;
  padding: 9px 15px; border-radius: var(--pill);
  border: 1px solid rgba(255,143,134,.45); background: rgba(255,143,134,.12);
  white-space: nowrap;
  transition: color .18s, border-color .18s, background-color .18s, transform .12s;
}
.wz__cancel:hover { color: #fff; border-color: rgba(255,143,134,.85); background: rgba(255,143,134,.26); }
.wz__cancel:active { transform: translateY(1px); }
.wz__cancel.is-armed { background: #C4392C; border-color: #C4392C; color: #fff; }
.wz__cancel.is-armed:hover { background: #D9432F; border-color: #D9432F; }

.wz__stage { flex: 1; padding: clamp(22px, 3vw, 40px); display: flex; flex-direction: column; }
.wz__q { font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.032em; line-height: 1.05; text-wrap: balance; }
.wz__hint { margin-top: 12px; color: var(--od-mid); font-size: var(--t-small); max-width: 54ch; }
.wz__fields { margin-top: clamp(20px, 2.4vw, 30px); }

/* Opțiuni: dreptunghi rotunjit (nu pastilă — textul e prea lung pentru pastile) */
.wz__opts { display: grid; gap: 9px; }
.wz__opts--2 { grid-template-columns: 1fr 1fr; }
.opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  padding: 16px 18px; border-radius: 14px;
  background: var(--ink); border: 1px solid var(--line-d);
  font-size: var(--t-body); font-weight: 550;
  transition: border-color .18s, background-color .18s, color .18s, transform .12s;
}
.opt:hover { border-color: rgba(201,162,39,.5); background: #17171D; }
.opt:active { transform: translateY(1px); }
.opt[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #17130A; }
.opt .k {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: var(--pill);
  display: grid; place-items: center; font-size: var(--t-micro); font-weight: 600;
  background: var(--ink-3); color: var(--od-dim);
}
.opt[aria-pressed="true"] .k { background: rgba(23,19,10,.18); color: #17130A; }
.opt .t { flex: 1; }
.opt .d { display: block; font-size: var(--t-small); font-weight: 400; color: var(--od-mid); margin-top: 2px; }
.opt[aria-pressed="true"] .d { color: rgba(23,19,10,.72); }

/* Câmpuri — pline și rotunjite, nu subliniate */
.f { display: flex; flex-direction: column; gap: 8px; }
.f + .f { margin-top: 16px; }
.f__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f__row .f + .f { margin-top: 0; }
.f label { font-size: var(--t-micro); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--od-dim); }
.f label .r { color: var(--gold-2); }
.f input, .f select, .f textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: var(--ink); border: 1px solid var(--line-d); color: var(--od);
  font-size: var(--t-body); font-weight: 500;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.f textarea { min-height: 104px; resize: vertical; font-weight: 400; line-height: 1.5; }
.f select { appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23E6C55F' stroke-width='1.8'%3E%3Cpath d='M3 5.5 7 9.5l4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.f input::placeholder, .f textarea::placeholder { color: var(--od-dim); font-weight: 400; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.16); background: #101014;
}
.f .err { font-size: var(--t-small); color: #ff8f86; display: none; }
.f.bad input, .f.bad select, .f.bad textarea { border-color: rgba(255,143,134,.65); }
.f.bad .err { display: block; }

.agree { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; }
.agree input { width: 21px; height: 21px; margin-top: 2px; accent-color: var(--gold); flex: 0 0 auto; }
.agree label { font-size: var(--t-small); color: var(--od-mid); line-height: 1.45; }
.agree a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }

/* Rezumat */
.recap { margin-top: 6px; border-top: 1px solid var(--line-d); }
.recap li { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line-d); font-size: var(--t-small); }
.recap .k { font-size: var(--t-micro); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--od-dim); flex: 0 0 auto; }
.recap .v { text-align: right; font-weight: 600; }

/* Navigare */
.wz__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px clamp(18px, 2vw, 26px); border-top: 1px solid var(--line-d); background: #101014;
}
.wz__back {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--pill);
  font-size: var(--t-small); font-weight: 600; color: var(--od-mid);
  border: 1px solid var(--line-d); transition: color .18s, border-color .18s;
}
.wz__back:hover { color: var(--od); border-color: rgba(247,245,240,.4); }
.wz__back svg { width: 15px; height: 15px; }
.wz__back[hidden] { visibility: hidden; display: inline-flex; }
.wz__right { display: flex; align-items: center; gap: 14px; }
.wz__skip { font-size: var(--t-small); color: var(--od-dim); text-decoration: underline; text-underline-offset: 3px; }
.wz__skip:hover { color: var(--od); }

/* Confirmare */
.wz__done { padding: clamp(30px, 4.6vw, 60px) clamp(22px, 3vw, 40px); }
.wz__done .tick {
  width: 52px; height: 52px; border-radius: var(--pill);
  background: rgba(201,162,39,.14); border: 1px solid rgba(201,162,39,.45);
  color: var(--gold-2); display: grid; place-items: center; margin-bottom: 24px;
}
.wz__done .tick svg { width: 24px; height: 24px; }
.wz__done h3 { font-size: clamp(1.55rem, 2.8vw, 2.15rem); font-weight: 700; letter-spacing: -0.032em; line-height: 1.04; }
.wz__done p { margin-top: 15px; color: var(--od-mid); max-width: 48ch; }
/* `.wz__done p` (0,1,1) bate `.sig` (0,1,0), deci semnătura trebuie ţintită
   la fel de specific, altfel iese gri în loc de auriu. */
.wz__done .sig { color: var(--gold-2); margin-top: 22px; }
.wz__done .again { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }

.wz__err {
  margin: 14px clamp(18px, 2vw, 26px) 0; padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(255,143,134,.5); background: rgba(255,143,134,.09);
  color: #ffb0a8; font-size: var(--t-small); display: none;
}
.wz__err.on { display: block; }

.wz__stage.turn { animation: turn .34s var(--ease); }
@keyframes turn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }

/* Coloana de lângă wizard */
.aside__l { margin-top: 24px; border-top: 1px solid var(--line-d); }
.aside__l li { display: grid; grid-template-columns: 20px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-d); font-size: var(--t-small); color: var(--od-mid); }
.aside__l svg { width: 18px; height: 18px; color: var(--gold-2); margin-top: 2px; }
.aside__l strong { color: var(--od); font-weight: 650; }

.nojs { padding: 28px; color: var(--od-mid); }
.js .nojs { display: none; }

/* ================================ MOBIL ================================= */
@media (max-width: 1080px) {
  .split, .split--text { grid-template-columns: 1fr; }
  .split .shot { max-width: 460px; }
  .gal { grid-template-columns: repeat(2, 1fr); }
  .svc, .revs { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 4px; }
  .step { padding-block: 16px; }
  .foot__g { grid-template-columns: 1fr 1fr; }
  /* Formularul primul, coloana explicativă după — cine vine din reclamă
     trebuie să dea de el imediat. */
  .fwrap > .wz { order: 1; }
  .fwrap > aside { order: 2; margin-top: clamp(32px, 6vw, 50px); }
}
@media (max-width: 720px) {
  .svc, .revs { grid-template-columns: 1fr; }
  .f__row { grid-template-columns: 1fr; }
  .f__row .f + .f { margin-top: 16px; }
  .wz__opts--2 { grid-template-columns: 1fr; }
  .foot__g { grid-template-columns: 1fr; }
  .gal { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Bara de jos — cele două acțiuni la degetul mare */
  .mbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
    display: grid; grid-template-columns: 1fr auto; gap: 9px; align-items: center;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(14,14,17,.95); backdrop-filter: blur(14px); border-top: 1px solid var(--line-d);
  }
  .mbar .btn { min-height: 48px; }
  .mbar__wa { width: 48px; height: 48px; border-radius: var(--pill); background: #25D366; display: grid; place-items: center; }
  .mbar__wa svg { width: 26px; height: 26px; color: #fff; }
  .wa-float { display: none; }
  .totop { bottom: 88px; right: 14px; width: 42px; height: 42px; }
  body { padding-bottom: 76px; }
  /* Pe telefon bara formularului e strâmtă: segmentele arată oricum pasul,
     deci textul „PASUL 02 / 07" iese, iar „Anulează tot" rămâne întreg. */
  .wz__count { display: none; }
  .wz__bar { gap: 12px; }
}

/* --------------------------------------------------------- Mișcare redusă */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .rev { opacity: 1; transform: none; }
}
