/* ==========================================================================
   Mall Dorobantilor Auto Service
   Negru, alb si ambra lor (#dd9933 / #bc822b). Atat.

   REGULI, dupa doua incercari gresite:
   1. Monospace DOAR unde exista cifre. Preturi, telefon, orar. Nicaieri altundeva.
   2. Fara etichete gri cu majuscule. Fara "01 / SERVICII". Fara "Formular F-01".
      Erau decor care se prefacea a fi informatie.
   3. Textul de continut e aproape negru. Griul e culoarea unui wireframe neterminat.
   4. Ritm prin alternanta alb / negru / ambra, nu prin linii de 1px peste tot.
   5. Ambra are o singura sarcina: actiunea principala.
   6. Fotografiile sunt parte din structura. Pana sosesc, locul lor arata intentionat.
   ========================================================================== */

:root {
  --ink:       #14110D;   /* negru cald */
  --ink-2:     #24201A;
  --body:      #2E2921;   /* textul de continut, aproape negru */
  --muted:     #5E574C;   /* doar meta scurt, folosit rar */
  --paper:     #FFFFFF;

  --amber:     #DD9933;
  --amber-d:   #BC822B;
  --amber-dd:  #8C601F;   /* linkuri pe alb, contrast suficient */
  --amber-l:   #E9B863;

  --rule:      rgba(20,17,13,0.18);
  --rule-soft: rgba(20,17,13,0.09);
  --rule-inv:  rgba(255,255,255,0.16);

  --sans: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-xs:   clamp(0.76rem, 0.74rem + 0.12vw, 0.84rem);
  --fs-sm:   clamp(0.88rem, 0.85rem + 0.16vw, 0.97rem);
  --fs-base: clamp(1.02rem, 0.99rem + 0.16vw, 1.11rem);
  --fs-md:   clamp(1.12rem, 1.06rem + 0.28vw, 1.30rem);
  --fs-lg:   clamp(1.26rem, 1.15rem + 0.50vw, 1.56rem);
  --fs-xl:   clamp(1.50rem, 1.28rem + 0.98vw, 2.05rem);
  --fs-2xl:  clamp(1.82rem, 1.46rem + 1.58vw, 2.70rem);
  --fs-4xl:  clamp(2.45rem, 1.72rem + 3.20vw, 4.20rem);

  --wrap: 1180px;
  --wrap-narrow: 700px;
  --gutter: clamp(1.2rem, 4vw, 2.5rem);
  --actionbar-h: 62px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--sans); font-size: var(--fs-base); line-height: 1.62;
  color: var(--body); background: var(--paper);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  padding-bottom: var(--actionbar-h);
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
body:not(:has(.action-bar)) { padding-bottom: 0; }

img, svg, iframe { display: block; max-width: 100%; }
iframe { height: auto; }

h1, h2, h3 { color: var(--ink); line-height: 1.06; font-weight: 700; text-wrap: balance; }
h1 { font-size: var(--fs-4xl); letter-spacing: -0.042em; font-weight: 800; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.032em; }
h3 { font-size: var(--fs-lg); letter-spacing: -0.02em; }
p { text-wrap: pretty; }

/* Mono numai pentru cifre. */
.figure, table.price td:not(:first-child), .tariff dd, .hours td,
.svc__price, .usp__no, .offer__price, .nap a[href^="tel"] {
  font-family: var(--mono); font-variant-numeric: tabular-nums;
}

a { color: var(--amber-dd); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.skip-link { position: absolute; left: 0; top: 0; transform: translateY(-120%); background: var(--ink); color: #fff; padding: .85rem 1.25rem; z-index: 999; font-weight: 600; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.78); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink a { color: var(--amber-l); }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Bara scurta de ambra deasupra titlurilor. Inlocuieste eticheta gri cu majuscule. */
.tick { display: block; width: 52px; height: 4px; background: var(--amber); margin-bottom: 1.5rem; }

.lead { font-size: var(--fs-md); color: var(--body); max-width: 60ch; }
.section--ink .lead { color: rgba(255,255,255,.78); }

/* --------------------------------------------------------------------------
   Butoane. Ambra = actiunea principala. O singura data per ecran.
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px; padding: .95rem 1.6rem;
  font-family: var(--sans); font-size: var(--fs-base); font-weight: 600;
  text-decoration: none; border: 1.5px solid transparent; border-radius: 2px;
  cursor: pointer; text-align: center;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-l); border-color: var(--amber-l); }

.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--ink); }
.section--ink .btn--ghost, .offer .btn--ghost { color: #fff; border-color: var(--rule-inv); }
.section--ink .btn--ghost:hover { border-color: #fff; }

.btn--wa { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--wa:hover { border-color: var(--ink); }

.btn--block { width: 100%; }
.btn--lg { min-height: 62px; font-size: var(--fs-md); }

.btn-row { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 560px) { .btn-row { flex-direction: row; flex-wrap: wrap; } .btn-row .btn { flex: 1 1 auto; } }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--rule-soft); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
@media (min-width: 900px) { .site-header__inner { min-height: 84px; } }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); min-height: 44px; }
/* Logo real preluat de pe site-ul vechi. Textul de mai jos e rezerva daca imaginea nu se incarca. */
.brand__logo { height: 38px; width: auto; display: block; }
@media (min-width: 560px) { .brand__logo { height: 46px; } }
.brand__text { display: none; }
.brand--fallback .brand__logo { display: none; }
.brand--fallback .brand__text { display: block; }
.brand__mark { width: 36px; height: 36px; flex: none; background: var(--ink); color: var(--amber); border-radius: 2px; display: grid; place-items: center; font-weight: 700; font-size: .8rem; letter-spacing: -.02em; }
.brand__name { font-weight: 700; font-size: 1.02rem; letter-spacing: -.03em; line-height: 1.1; white-space: nowrap; }
.brand__sub { display: none; font-size: .72rem; color: var(--muted); white-space: nowrap; letter-spacing: -.01em; }
@media (min-width: 560px) { .brand--fallback .brand__sub { display: block; } }

.site-header__actions { display: flex; align-items: center; gap: .6rem; }
.header-phone {
  display: none; white-space: nowrap; font-family: var(--mono); font-variant-numeric: tabular-nums;
  font-weight: 500; font-size: var(--fs-sm); color: var(--ink); text-decoration: none; padding: .55rem .7rem;
}
.header-phone:hover { color: var(--amber-dd); }
@media (min-width: 720px) and (max-width: 1119px) { .header-phone { display: inline-flex; } }
@media (min-width: 1280px) { .header-phone { display: inline-flex; } }

/* In header CTA-ul e secundar (contur), ca ambra sa ramana un singur accent pe ecran. */
.site-header .btn { min-height: 44px; padding: .5rem 1.05rem; font-size: var(--fs-sm); white-space: nowrap; }
@media (max-width: 559px) { .site-header .btn { display: none; } }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1.5px solid var(--rule); border-radius: 2px; background: var(--paper); cursor: pointer; }
@media (min-width: 1120px) { .nav-toggle { display: none; } }

.site-nav { display: none; }
.site-nav.is-open { display: block; position: absolute; inset-inline: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--rule); max-height: 76vh; overflow-y: auto; }
.site-nav__list { list-style: none; padding: .25rem var(--gutter) 1.5rem; margin: 0; }
.site-nav li + li { border-top: 1px solid var(--rule-soft); }
.site-nav a, .site-nav__toggle { display: block; padding: .95rem 0; min-height: 48px; color: var(--ink); text-decoration: none; font-weight: 500; }
.site-nav a:hover { color: var(--amber-dd); }

/* Dropdown "Servicii" */
.site-nav__toggle { width: 100%; background: none; border: 0; font: inherit; font-weight: 500; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: .4rem; }
.site-nav__toggle .caret { flex: none; transition: transform .2s ease; }
.has-sub.is-open > .site-nav__toggle .caret { transform: rotate(180deg); }
.site-nav__sub { list-style: none; margin: 0; padding: 0; display: none; }
.has-sub.is-open > .site-nav__sub { display: block; }
.site-nav__sub a { padding-left: 1.1rem; color: var(--body); font-weight: 400; }
.site-nav__sub a[aria-current="page"] { color: var(--amber-dd); font-weight: 500; }

@media (min-width: 1120px) {
  .site-nav { display: block; }
  .site-nav__list { display: flex; gap: 0; padding: 0; align-items: center; }
  .site-nav li + li { border-top: 0; }
  .site-nav > .site-nav__list > li > a,
  .site-nav__toggle { padding: .45rem .62rem; font-size: var(--fs-sm); min-height: 0; white-space: nowrap; position: relative; width: auto; }
  .site-nav > .site-nav__list > li > a::after { content: ''; position: absolute; left: .62rem; right: .62rem; bottom: .05rem; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
  .site-nav > .site-nav__list > li > a:hover::after,
  .site-nav > .site-nav__list > li > a[aria-current="page"]::after { transform: scaleX(1); }
  .has-sub.is-active > .site-nav__toggle { color: var(--amber-dd); }
  .has-sub:hover > .site-nav__toggle .caret, .has-sub:focus-within > .site-nav__toggle .caret { transform: rotate(180deg); }

  /* panoul flotant sub "Servicii" */
  .has-sub { position: relative; }
  .site-nav__sub {
    position: absolute; top: calc(100% + 2px); left: 0; min-width: 264px;
    background: var(--paper); border: 1px solid var(--rule); border-radius: 3px;
    box-shadow: 0 14px 30px rgba(20,17,13,0.14); padding: .35rem; z-index: 70;
  }
  .has-sub:hover > .site-nav__sub, .has-sub:focus-within > .site-nav__sub, .has-sub.is-open > .site-nav__sub { display: block; }
  .site-nav__sub a { padding: .55rem .7rem; font-size: var(--fs-sm); font-weight: 500; color: var(--ink); border-radius: 2px; white-space: nowrap; }
  .site-nav__sub a:hover { background: rgba(221,153,51,0.12); color: var(--amber-dd); }
  .site-nav__sub a[aria-current="page"] { background: rgba(221,153,51,0.10); }
}

/* --------------------------------------------------------------------------
   Bara mobil
   -------------------------------------------------------------------------- */
.action-bar { position: fixed; inset-inline: 0; bottom: 0; z-index: 70; display: grid; grid-template-columns: 1fr 1fr 1.3fr; background: var(--paper); border-top: 1px solid var(--rule); padding-bottom: env(safe-area-inset-bottom, 0); }
@media (min-width: 900px) { .action-bar { display: none; } }
.action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: var(--actionbar-h); text-decoration: none; color: var(--ink); font-size: .74rem; font-weight: 600; }
.action-bar a + a { border-left: 1px solid var(--rule-soft); }
.action-bar a svg { width: 19px; height: 19px; }
.action-bar .is-primary { background: var(--amber); color: var(--ink); }

/* --------------------------------------------------------------------------
   Fotografii. Locul lor exista de acum; cand vin pozele, e doar un fisier.
   -------------------------------------------------------------------------- */
/* Placeholderul sta DEDESUBT si e mereu in pagina. Fotografia il acopera cand exista.
   Daca fisierul lipseste, onerror adauga .is-empty si ascunde <img>.
   Asa, cand vin pozele, e doar un fisier pus la locul lui. */
.photo { position: relative; }
.photo__frame {
  position: relative; display: grid; place-content: center; justify-items: center; gap: 1rem;
  aspect-ratio: var(--ratio, 4 / 5); padding: 2rem; text-align: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(221,153,51,.055) 14px 15px),
    var(--ink);
}
/* z-index: .photo__frame vine dupa <img> in DOM, deci fara asta ar picta peste fotografie. */
.photo img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.photo.is-empty img { display: none; }
.photo figcaption { margin-top: .85rem; font-size: var(--fs-sm); color: var(--muted); }

.photo__mark { width: 58px; height: 58px; border: 2px solid var(--amber); color: var(--amber); display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; border-radius: 2px; }
.photo__note { color: rgba(255,255,255,.62); font-size: var(--fs-sm); max-width: 30ch; }

.photo--wide .photo__frame { --ratio: 21 / 9; }
@media (max-width: 700px) { .photo--wide .photo__frame { --ratio: 4 / 3; } }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(2.75rem, 6vw, 5rem) 0; }
.hero__grid { display: grid; gap: clamp(2.25rem, 5vw, 3.5rem); }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: center; gap: clamp(2.5rem, 5vw, 4.5rem); } }

.hero h1 { margin-bottom: 1.1rem; }
.hero__promise { font-size: var(--fs-xl); font-weight: 500; color: var(--body); letter-spacing: -.022em; line-height: 1.2; margin-bottom: 1.5rem; max-width: 22ch; }
.hero__lead { color: var(--body); max-width: 50ch; margin-bottom: 2.25rem; }
.hero .btn-row { margin-bottom: 1.5rem; }
.hero__meta { font-size: var(--fs-sm); color: var(--body); }
.hero__meta strong { color: var(--ink); font-weight: 600; }

/* Trei fapte, nu patru sloganuri. Fara chenare. */
.facts {
  display: flex; flex-wrap: wrap; gap: .7rem 2.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.5rem 0 clamp(2.5rem, 5vw, 4rem);
  border-top: 1.5px solid var(--ink);
}
.facts li { list-style: none; font-size: var(--fs-sm); color: var(--body); display: flex; align-items: baseline; gap: .6rem; }
.facts li::before { content: ''; width: 7px; height: 7px; background: var(--amber); flex: none; }
.facts b { color: var(--ink); font-weight: 700; }

/* --------------------------------------------------------------------------
   USP, pe negru
   -------------------------------------------------------------------------- */
.usps { display: grid; gap: 2.5rem; margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 900px) { .usps { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); } }
.usp__no { display: block; font-size: 2.4rem; font-weight: 600; color: var(--amber); line-height: 1; letter-spacing: -.05em; margin-bottom: 1rem; }
.usp h3 { margin-bottom: .6rem; }
.usp p { color: rgba(255,255,255,.72); font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   Servicii
   -------------------------------------------------------------------------- */
.cat { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); letter-spacing: -.01em; padding: 2.25rem 0 .75rem; border-bottom: 1.5px solid var(--ink); }
.cat:first-of-type { padding-top: 0; }

.svc { display: grid; grid-template-columns: 1fr auto; gap: .5rem 1.5rem; align-items: baseline; padding: 1.35rem 0; border-bottom: 1px solid var(--rule-soft); text-decoration: none; color: inherit; position: relative; }
/* Fara salt de layout la hover: apare o bara de ambra, textul nu se misca. */
.svc::before { content: ''; position: absolute; left: -1rem; top: 1.35rem; bottom: 1.35rem; width: 3px; background: var(--amber); transform: scaleY(0); transform-origin: top; transition: transform .2s ease; }
.svc:hover::before { transform: scaleY(1); }
.svc:hover h3 { color: var(--amber-dd); }
.svc h3 { font-size: var(--fs-md); margin-bottom: .2rem; transition: color .15s ease; }
.svc p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.svc__price { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); white-space: nowrap; text-align: right; }
.svc__price em { font-family: var(--sans); font-style: normal; font-weight: 400; color: var(--muted); font-size: .85em; display: block; }
@media (max-width: 560px) {
  .svc { grid-template-columns: 1fr; }
  .svc__price { text-align: left; }
  .svc__price em { display: inline; }
}

/* --------------------------------------------------------------------------
   Banda de oferta: ambra plina, text negru. Momentul cel mai tare din pagina.
   -------------------------------------------------------------------------- */
.offer { background: var(--amber); color: var(--ink); }
.offer__inner { display: grid; gap: 1.75rem; align-items: center; padding-block: clamp(2.75rem, 5vw, 4rem); }
@media (min-width: 900px) { .offer__inner { grid-template-columns: auto 1fr auto; gap: clamp(2rem, 4vw, 3.5rem); } }
.offer p.offer__price { font-size: clamp(3rem, 7vw, 5rem); font-weight: 600; line-height: .88; letter-spacing: -.06em; color: var(--ink); max-width: none; }
.offer p.offer__price small { display: block; font-family: var(--sans); font-size: .2em; font-weight: 700; letter-spacing: .02em; margin-top: .55rem; }
.offer h2 { color: var(--ink); font-size: var(--fs-xl); margin-bottom: .5rem; }
.offer p { color: rgba(20,17,13,.78); font-size: var(--fs-sm); max-width: 54ch; }
.offer .btn--ink { border-color: var(--ink); }

/* --------------------------------------------------------------------------
   Cardul de tarif (pagina ITP)
   -------------------------------------------------------------------------- */
.tariff { border: 1.5px solid var(--ink); background: var(--paper); }
.tariff__head { background: var(--ink); color: #fff; padding: 1.05rem 1.35rem; }
.tariff__head h2 { color: #fff; font-size: var(--fs-md); letter-spacing: -.02em; }
.tariff__body { padding: .5rem 1.35rem 1.35rem; }
.tariff dl { margin: 0; }
.tariff dl > div { display: flex; align-items: flex-start; gap: 1rem; justify-content: space-between; padding: .95rem 0; }
.tariff dl > div + div { border-top: 1px solid var(--rule-soft); }
.tariff dt { color: var(--body); font-size: var(--fs-sm); }
.tariff dt small { display: block; color: var(--muted); font-size: .85em; }
.tariff dd { margin: 0; font-weight: 600; font-size: var(--fs-base); color: var(--ink); white-space: nowrap; }
.tariff dd.is-free { color: var(--amber-dd); }
.tariff__foot { padding: 0 1.35rem 1.35rem; }
.tariff__note { font-size: var(--fs-sm); color: var(--body); margin-top: .9rem; text-align: center; }

/* --------------------------------------------------------------------------
   Tabele
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-top: 1.5px solid var(--ink); }
table.price { width: 100%; border-collapse: collapse; min-width: 470px; }
table.price caption { caption-side: top; text-align: left; padding: 0 0 1rem; font-size: var(--fs-sm); color: var(--muted); }
table.price th, table.price td { padding: .9rem 1rem .9rem 0; text-align: left; }
table.price thead th { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--rule); white-space: nowrap; }
table.price thead th:not(:first-child), table.price td:not(:first-child) { text-align: right; padding-right: 0; }
table.price tbody tr { border-bottom: 1px solid var(--rule-soft); }
table.price td:first-child { color: var(--body); }
table.price td:not(:first-child) { font-weight: 600; color: var(--ink); white-space: nowrap; }
table.price .is-free { color: var(--amber-dd); }
table.price tbody th[scope="rowgroup"] { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); padding: 1.5rem 0 .5rem; }

.note { border-left: 3px solid var(--amber); padding: .25rem 0 .25rem 1.2rem; font-size: var(--fs-sm); color: var(--body); margin-top: 1.75rem; max-width: 66ch; }

/* --------------------------------------------------------------------------
   Continut
   -------------------------------------------------------------------------- */
.prose { max-width: 66ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: clamp(3rem, 5vw, 4rem); }
.prose h3 { margin-top: 2rem; font-size: var(--fs-md); }
.prose p { color: var(--body); }
.prose p.answer { font-size: var(--fs-md); color: var(--ink); font-weight: 500; line-height: 1.5; }
.prose ul { padding-left: 0; list-style: none; }
.prose a { color: var(--amber-dd); text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }

.checklist li, .crosslist li, .steplist li { display: grid; grid-template-columns: 1.6rem 1fr; gap: .5rem; align-items: baseline; padding: .65rem 0; border-bottom: 1px solid var(--rule-soft); color: var(--body); }
.checklist li::before { content: ''; width: 9px; height: 9px; background: var(--amber); align-self: center; }
.crosslist li::before { content: ''; width: 9px; height: 2px; background: var(--ink); align-self: center; }
.steplist { counter-reset: s; }
.steplist li::before { counter-increment: s; content: counter(s) '.'; font-weight: 700; color: var(--amber-dd); font-family: var(--mono); }

.spec { border-top: 1.5px solid var(--ink); }
.spec > div { display: flex; flex-direction: column; gap: .15rem; padding: .95rem 0; border-bottom: 1px solid var(--rule-soft); }
@media (min-width: 560px) { .spec > div { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 1.5rem; } }
.spec dt { color: var(--ink); font-weight: 600; }
.spec dd { margin: 0; color: var(--body); font-size: var(--fs-sm); }
@media (min-width: 560px) { .spec dd { white-space: nowrap; text-align: right; } }

.crumbs { font-size: var(--fs-sm); color: var(--muted); padding-top: 1.5rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.crumbs li::after { content: '/'; margin-left: .45rem; color: var(--rule); }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--muted); text-decoration: none; display: inline-block; padding-block: 6px; }
.crumbs a:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   FAQ. Fara prefixe Q1, Q2.
   -------------------------------------------------------------------------- */
.faq { border-top: 1.5px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--rule-soft); }
.faq summary { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0; cursor: pointer; list-style: none; min-height: 48px; font-size: var(--fs-md); font-weight: 600; color: var(--ink); letter-spacing: -.018em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--amber-dd); line-height: 1; flex: none; }
.faq details[open] summary::after { content: '\2013'; }
.faq summary:hover { color: var(--amber-dd); }
.faq details > div { padding-bottom: 1.6rem; color: var(--body); max-width: 64ch; }
.faq details > div > * + * { margin-top: .85rem; }

/* --------------------------------------------------------------------------
   Citate, pe negru
   -------------------------------------------------------------------------- */
.quotes { display: grid; gap: 2.5rem; margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 860px) { .quotes { grid-template-columns: 1fr 1fr; gap: 2.5rem clamp(2.5rem,5vw,4.5rem); } }
.quote p { color: #fff; font-size: var(--fs-md); line-height: 1.45; letter-spacing: -.012em; }
.quote cite { display: block; margin-top: .9rem; font-style: normal; font-size: var(--fs-sm); color: var(--amber-l); font-weight: 500; }

/* --------------------------------------------------------------------------
   Formular
   -------------------------------------------------------------------------- */
.formcard { border: 1.5px solid var(--ink); background: var(--paper); padding: clamp(1.4rem, 3.5vw, 2.35rem); }
.form-grid { display: grid; gap: 1.15rem; }
@media (min-width: 660px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .field--full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.field label .opt { font-weight: 400; color: var(--muted); }
.field .hint { font-size: var(--fs-sm); color: var(--muted); }

.field input, .field select, .field textarea { font-family: var(--sans); font-size: var(--fs-base); color: var(--ink); background: var(--paper); border: 1.5px solid var(--rule); border-radius: 2px; padding: .85rem .9rem; min-height: 54px; width: 100%; transition: border-color .15s ease; }
.field textarea { min-height: 116px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; padding-right: 2.6rem; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314110D' stroke-width='1.8' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 18px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #B23B2E; }

.radio-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.radio-row label { display: flex; align-items: center; gap: .6rem; border: 1.5px solid var(--rule); border-radius: 2px; padding: .85rem .9rem; min-height: 54px; cursor: pointer; font-size: var(--fs-sm); font-weight: 500; }
.radio-row label:has(input:checked) { border-color: var(--ink); }
.radio-row input { width: 18px; height: 18px; min-height: 0; accent-color: var(--amber-d); flex: none; }

.consent { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--fs-sm); font-weight: 400; color: var(--body); border-top: 1px solid var(--rule-soft); padding-top: 1.2rem; }
.consent input { width: 20px; height: 20px; min-height: 0; margin-top: 2px; accent-color: var(--amber-d); flex: none; }

.form-foot { margin-top: 1.6rem; display: grid; gap: .85rem; }
.form-expect { font-size: var(--fs-sm); color: var(--body); text-align: center; }
.form-alert { border: 1.5px solid var(--amber-d); background: #FDF6EA; color: var(--ink); padding: .95rem 1rem; font-size: var(--fs-sm); }
.form-alert[hidden] { display: none; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; gap: clamp(2rem,4vw,4rem); } }

address.nap { font-style: normal; color: var(--body); border-top: 1.5px solid var(--ink); }
.nap-row { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--rule-soft); }
.nap-row > span:first-child { font-size: var(--fs-sm); color: var(--muted); }
address.nap a { color: var(--ink); text-decoration: none; font-weight: 600; }
address.nap a:hover { color: var(--amber-dd); }
address.nap strong { color: var(--ink); }

.hours { width: 100%; border-collapse: collapse; border-top: 1.5px solid var(--ink); }
.hours th, .hours td { padding: .75rem 0; text-align: left; font-size: var(--fs-sm); border-bottom: 1px solid var(--rule-soft); }
.hours th { font-weight: 400; color: var(--body); }
.hours td { text-align: right; color: var(--ink); font-weight: 500; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--amber-dd); font-weight: 700; }
.hours .is-closed { color: var(--muted); font-family: var(--sans); }

.map-embed { position: relative; aspect-ratio: 4 / 3; width: 100%; border: 1.5px solid var(--ink); background: #EDEAE4; overflow: hidden; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }
.map-embed__ph { position: absolute; inset: 0; display: grid; place-content: center; gap: 1rem; justify-items: center; padding: 1.5rem; text-align: center; background: #F4F2EF; }
.map-embed__ph p { font-size: var(--fs-sm); color: var(--body); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h2 { font-size: var(--fs-sm); font-weight: 700; color: #fff; margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li a { font-size: var(--fs-sm); display: inline-block; padding-block: .34rem; }
.site-footer address { font-size: var(--fs-sm); line-height: 1.9; font-style: normal; }
.site-footer address a { color: #fff; font-weight: 600; }

.footer-bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--rule-inv); display: flex; flex-direction: column; gap: 1.5rem; font-size: var(--fs-sm); }
@media (min-width: 760px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* Insigna ANPC pastreaza raportul de aspect al fisierului (1900x209).
   Fixarea la 250x50 o turtea. */
.anpc a { display: inline-flex; align-items: center; justify-content: center; width: 250px; max-width: 100%; background: #fff; padding: 6px 10px; border-radius: 2px; }
.anpc img { width: 100%; height: auto; }
.anpc .anpc-fallback { display: none; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: .78rem; color: var(--ink); font-weight: 700; }
.anpc a.is-fallback img { display: none; }
.anpc a.is-fallback .anpc-fallback { display: flex; }

/* --------------------------------------------------------------------------
   Utilitare
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.center .tick { margin-inline: auto; }

@media print { .site-header, .action-bar, .site-footer, .btn { display: none !important; } body { padding: 0; } }

/* Mono doar unde exista cifre. Textele calitative raman in Archivo. */
.svc__price.is-text { font-family: var(--sans); }

/* 'Gratuit' si 'Inclusa' nu sunt cifre. */
.tariff dd.is-free, table.price td.is-free { font-family: var(--sans); }

/* --------------------------------------------------------------------------
   A doua banda de oferta (schimb ulei). Pe negru, ca sa nu arate identic
   cu prima. Cuvantul "Gratuit" nu are cifre, deci ramane in Archivo.
   -------------------------------------------------------------------------- */
.offer p.offer__word {
  font-family: var(--sans); font-weight: 800; color: var(--ink); max-width: none;
  font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.048em; line-height: .95;
}
.offer p.offer__word small { display: block; font-size: .26em; font-weight: 600; letter-spacing: -.01em; margin-top: .7rem; }

.offer--ink { background: var(--ink); }
.offer--ink h2 { color: #fff; }
.offer--ink p { color: rgba(255,255,255,.72); }
.offer--ink p.offer__price, .offer--ink p.offer__word { color: var(--amber); }
.offer--ink p.offer__price small, .offer--ink p.offer__word small { color: rgba(255,255,255,.6); }
/* --------------------------------------------------------------------------
   Pagini legale
   -------------------------------------------------------------------------- */
.legal-id { font-size: var(--fs-xs); line-height: 1.7; color: rgba(255,255,255,.55); margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--rule-inv); }
.legal-meta { font-size: var(--fs-sm); color: var(--muted); margin-top: .75rem; }
.prose.legal { max-width: 70ch; }
.prose.legal h2 { font-size: var(--fs-lg); margin-top: clamp(2.5rem, 4vw, 3.25rem); }
.prose.legal h3 { font-size: var(--fs-base); margin-top: 1.6rem; }
.prose.legal section + section { border-top: 1px solid var(--rule-soft); padding-top: .5rem; }
.prose.legal .spec { margin-top: 1.25rem; }
.prose.legal ol.steplist, .prose.legal ul.checklist { margin-top: 1.25rem; }
/* --------------------------------------------------------------------------
   Banner de consimtamant cookie-uri (Consent Mode v2)
   Refuz si Accept au prominenta egala. Sta jos, peste bara de actiuni mobil.
   -------------------------------------------------------------------------- */
.cc {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 90;
  background: var(--ink); color: rgba(255,255,255,.82);
  border-top: 3px solid var(--amber);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.cc[hidden] { display: none; }
.cc__inner {
  max-width: var(--wrap); margin-inline: auto; padding: 1.15rem var(--gutter);
  display: grid; gap: 1rem; align-items: center;
}
@media (min-width: 860px) { .cc__inner { grid-template-columns: 1fr auto; gap: 2rem; } }
.cc__title { font-weight: 700; color: #fff; margin-bottom: .3rem; }
.cc__text p { font-size: var(--fs-sm); line-height: 1.55; }
.cc__text a { color: var(--amber-l); }
.cc__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
@media (min-width: 860px) { .cc__actions { grid-template-columns: auto auto; } }
.cc__btn { min-height: 50px; white-space: nowrap; }
/* Refuzul are contur, nu e ascuns; ambele butoane sunt la fel de vizibile. */
.cc .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cc .btn--ghost:hover { border-color: #fff; }
/* Cand bannerul e vizibil pe mobil, urca bara de actiuni ca sa nu se suprapuna */
@media (max-width: 899px) {
  body:has(.cc:not([hidden])) .action-bar { display: none; }
}
/* cod inline in paginile legale */
.prose code { font-family: var(--mono); font-size: .9em; background: var(--rule-soft); padding: .1em .35em; border-radius: 2px; }

/* Grafic patrat cu text (promo brand), afisat intreg, centrat. Nu se decupeaza. */
.photo--card { max-width: 560px; margin-inline: auto; }
.photo--card img { position: static; width: 100%; height: auto; z-index: auto; }
.photo--card:not(.is-empty) .photo__frame { display: none; }
.photo--card .photo__frame { --ratio: 1 / 1; }