/* ===================== CIVILA INVEST — pagini interioare =====================
   Se încarcă DUPĂ style.css, doar pe paginile de servicii / zone / proiecte.
   Folosește tokenii și componentele din style.css (.container, .section, .eyebrow,
   .btn, .card, .service-card, .cta-band, footer, .lightbox) și adaugă doar ce lipsește:
     .ph ............ antetul paginii (fundal închis, text + fotografie)
     .breadcrumb .... calea de navigare (Acasă › Servicii › …)
     .art ........... tipografie pentru text lung (h2/h3/p/ul, max ~70 de caractere pe rând)
     .art-grid ...... text + coloană laterală („Pe scurt”, lipită la derulare)
     .pe-scurt ...... caseta cu datele esențiale (dl)
     .lista-bife .... lista „Ce include”, cu bife, pe două coloane
     .pgrid/.pcard .. carduri de proiect cu link (pe .card din style.css)
     .galerie/.g-item galerie de miniaturi (lightbox din pagini.js)
     .facts ......... tabel „fișa proiectului”
     .faq ........... întrebări frecvente (details/summary)
     .dual .......... două coloane (ex. zone + întrebări)
     .chips/.chip ... linkuri-pastilă (zone)
     .rel-grid ...... carduri „Vezi și” (servicii, zone, proiecte înrudite)
     .footer-seo .... rândul suplimentar din footer: Servicii · Zone · Proiecte
     .rv ............ apariție la derulare, sigură fără JS (vezi pagini.js)
   ============================================================================ */

/* ----- ritmul secțiunilor pe paginile interioare (puțin mai strâns decât pe prima pagină) ----- */
body.pagina .section { padding: 5rem 0; }
.section-white { background: var(--paper-2); color: var(--txt-on-light); }
.section-dark .section-note { color: var(--muted-on-dark); }
.section-dark .section-note strong { color: var(--txt-on-dark); }

/* ===================== ANTETUL PAGINII ===================== */
.ph {
  position: relative; overflow: hidden;
  padding: 132px 0 72px;
  background: var(--ink); color: var(--txt-on-dark);
}
.ph-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 88% 8%, rgba(31, 138, 76, .20), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(242, 140, 40, .07), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.ph-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 25% 25%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at 25% 25%, #000 0%, transparent 70%);
}
.ph-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 3.2rem; align-items: center;
}
.ph-text > .eyebrow { margin-bottom: .9rem; }
.ph-title {
  font-size: clamp(2rem, 4.3vw, 3.15rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 1.2rem;
  overflow-wrap: break-word; hyphens: manual;
}
.ph-title em {
  font-style: normal; color: transparent;
  background: linear-gradient(120deg, var(--green-strong), var(--yellow) 85%);
  -webkit-background-clip: text; background-clip: text;
}
.ph-lead {
  color: var(--muted-on-dark); font-size: 1.07rem; line-height: 1.7;
  max-width: 38rem; margin-bottom: 2rem;
}
.ph-lead strong { color: var(--txt-on-dark); font-weight: 600; }
.ph-media {
  position: relative; margin: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink-3);
}
.ph-media img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.ph-media figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2rem 1rem .75rem;
  font-family: var(--font-display); font-size: .76rem; font-weight: 600; letter-spacing: .03em;
  color: #fff;
  background: linear-gradient(transparent, rgba(10, 14, 11, .88));
}
/* antet fără fotografie (ex. pagina /proiecte/) */
.ph-simplu .ph-grid { grid-template-columns: minmax(0, 1fr); }
.ph-simplu .ph-lead { max-width: 46rem; }

/* intrarea antetului: doar CSS, fără să aștepte JavaScript (ca .hero de pe prima pagină) */
.ph-text, .ph-media { animation: phIn .6s cubic-bezier(.2, .7, .2, 1) both; }
.ph-media { animation-delay: .1s; }
@keyframes phIn { from { opacity: .01; transform: translateY(14px); } }

/* ===================== BREADCRUMB ===================== */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: .3rem .45rem;
  font-size: .82rem; color: var(--muted-on-dark);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: .45rem; min-width: 0; }
.breadcrumb li + li::before {
  content: "›"; content: "›" / ""; /* a doua formă: separatorul nu e citit de cititoarele de ecran */
  color: rgba(255,255,255,.35); font-size: 1rem; line-height: 1;
}
.breadcrumb a { color: var(--muted-on-dark); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb [aria-current="page"] { color: var(--txt-on-dark); font-weight: 600; }
/* variantă pe fundal deschis */
.section-light .breadcrumb ol, .section-white .breadcrumb ol,
.section-light .breadcrumb a, .section-white .breadcrumb a { color: var(--muted-on-light); }
.section-light .breadcrumb [aria-current="page"], .section-white .breadcrumb [aria-current="page"] { color: var(--txt-on-light); }

/* ===================== TEXT LUNG (.art) ===================== */
.art { font-size: 1.02rem; line-height: 1.72; min-width: 0; }
.art > * + * { margin-top: 1.05rem; }
.art > p, .art > ul, .art > ol, .art > h2, .art > h3, .art > blockquote { max-width: 70ch; }
.art h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem); font-weight: 800; letter-spacing: -0.015em;
  margin-top: 2.8rem;
  text-wrap: balance;
}
.art h3 { font-size: 1.14rem; font-weight: 700; margin-top: 1.9rem; }
.art > :first-child { margin-top: 0; }
.art h2 + *, .art h3 + * { margin-top: .75rem; }
.art p.lead { font-size: 1.12rem; font-weight: 500; }
.art a:not(.btn):not(.chip) {
  color: var(--green); font-weight: 600;
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px;
  transition: color .2s ease;
}
.art a:not(.btn):not(.chip):hover { color: var(--orange); }
.art strong { font-weight: 700; }
.art ul:not([class]), .art ol:not([class]) { padding: 0; }
.art ul:not([class]) { list-style: none; }
.art ul:not([class]) > li { position: relative; padding-left: 1.45rem; }
.art ul:not([class]) > li + li, .art ol:not([class]) > li + li { margin-top: .5rem; }
.art ul:not([class]) > li::before {
  content: ""; position: absolute; left: 0; top: .66em;
  width: 7px; height: 7px; border-radius: 2px; background: var(--green);
}
.art ol:not([class]) { padding-left: 1.3rem; }
.art ol:not([class]) > li::marker { font-family: var(--font-display); font-weight: 700; color: var(--green); }
.art blockquote {
  padding-left: 1rem; border-left: 3px solid var(--orange);
  font-family: var(--font-display); font-weight: 600;
}
.section-light .art, .section-white .art { color: var(--txt-on-light); }
.section-light .art p:not(.eyebrow), .section-white .art p:not(.eyebrow),
.section-light .art li, .section-white .art li { color: #36413b; }
.art .eyebrow { margin-bottom: 0; }
.art .eyebrow + h2 { margin-top: .6rem; }
.section-dark .art { color: var(--txt-on-dark); }
.section-dark .art h2, .section-dark .art h3 { color: #fff; }
.section-dark .art p:not(.eyebrow), .section-dark .art li { color: var(--muted-on-dark); }
.section-dark .art a:not(.btn):not(.chip) { color: var(--green-strong); }

/* text + coloană laterală */
.art-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 330px);
  gap: 3.4rem; align-items: start;
}
.art-grid > aside { position: sticky; top: 96px; }
/* pe ecrane joase (laptopuri 1366×768) caseta nu mai stă lipită, altfel butonul ei iese din ecran */
@media (max-height: 860px) { .art-grid > aside { position: static; } }

/* nume cu cratimă care nu trebuie rupte (ex. Alu-Menziken) */
.nw { white-space: nowrap; }

/* ===================== „PE SCURT” ===================== */
.pe-scurt {
  position: relative; overflow: hidden;
  background: var(--ink-2); color: var(--txt-on-dark);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.4rem;
  box-shadow: 0 26px 50px -30px rgba(9, 14, 11, .6);
}
.pe-scurt::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--green-strong), var(--yellow), var(--orange));
}
.pe-scurt > h2, .pe-scurt-titlu {
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .9rem;
}
.pe-scurt dl > div { padding: .75rem 0; border-top: 1px solid var(--line-dark); }
.pe-scurt dl > div:first-child { border-top: 0; padding-top: 0; }
.pe-scurt dt {
  font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-dark);
}
.pe-scurt dd { margin: .2rem 0 0; font-size: .94rem; line-height: 1.55; color: var(--txt-on-dark); }
.pe-scurt dd strong { color: #fff; }
.pe-scurt a:not(.btn) { color: var(--green-strong); font-weight: 600; }
.pe-scurt a:not(.btn):hover { color: var(--orange); }
.pe-scurt .btn { display: block; width: 100%; text-align: center; margin-top: 1.1rem; }

/* ===================== „CE INCLUDE” ===================== */
.art ul.lista-bife, .lista-bife {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 2rem; max-width: none;
}
.lista-bife > li { position: relative; padding-left: 2.1rem; font-size: .96rem; line-height: 1.6; }
.lista-bife > li::before {
  content: ""; position: absolute; left: 0; top: .15em;
  width: 1.35rem; height: 1.35rem; border-radius: 7px;
  background: rgba(42, 163, 93, .13)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f8a4c' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}
.lista-bife > li > strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--txt-on-light); margin-bottom: .1rem;
}
.section-dark .lista-bife > li > strong { color: #fff; }

/* ===================== CARDURI DE PROIECT ===================== */
.pgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.card.pcard { display: flex; flex-direction: column; cursor: pointer; }
/* imaginile au width/height în HTML (contra CLS): înălțimea o dă aspect-ratio 4/3 din style.css */
.card.pcard img { height: auto; }
.pcard-body { display: flex; flex-direction: column; flex: 1; padding: 1.1rem 1.2rem 1.25rem; }
.pcard h3 { font-size: 1.04rem; line-height: 1.3; margin-bottom: .3rem; color: var(--txt-on-light); }
.pcard-loc { font-size: .85rem; color: var(--muted-on-light); }
.pcard-rol {
  align-self: flex-start; margin-top: .6rem;
  font-family: var(--font-display); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); border: 1px solid rgba(31, 138, 76, .45);
  padding: .25rem .6rem; border-radius: 99px;
}
.pcard-more {
  margin-top: auto; padding-top: .95rem;
  font-family: var(--font-display); font-size: .84rem; font-weight: 600;
  color: var(--green);
}
.pcard-more::after { content: " →"; transition: margin-left .2s ease; }
.pcard:hover .pcard-more::after { margin-left: .25rem; }
.card-dark.pcard h3 { color: #fff; }
.card-dark .pcard-loc { color: var(--muted-on-dark); }
.card-dark .pcard-more, .card-dark .pcard-rol { color: var(--green-strong); }
.card-dark .pcard-rol { border-color: rgba(42, 163, 93, .45); }

/* focus vizibil pentru tastatură pe tot ce e link-card */
.pcard:focus-visible, .g-item:focus-visible, .rel-card:focus-visible, .chip:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 3px;
}

/* ===================== GALERIE ===================== */
.galerie {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
}
.galerie > li { margin: 0; min-width: 0; }
.g-item {
  position: relative; display: block;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: 10px; background: var(--ink-3);
  cursor: zoom-in;
  box-shadow: 0 16px 34px -24px rgba(9, 14, 11, .6);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.6rem .75rem .55rem;
  font-family: var(--font-display); font-size: .74rem; font-weight: 600; line-height: 1.3;
  color: #fff;
  background: linear-gradient(transparent, rgba(10, 14, 11, .86));
  pointer-events: none;
}
.galerie-nota { margin-top: 1rem; font-size: .84rem; color: var(--muted-on-light); }
.section-dark .galerie-nota { color: var(--muted-on-dark); }

/* ===================== FIȘA PROIECTULUI (tabel) ===================== */
.facts-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line-light); border-radius: var(--radius);
  background: var(--paper-2);
}
.facts { width: 100%; border-collapse: collapse; font-size: .94rem; }
.facts caption {
  text-align: left; padding: 1rem 1.15rem .2rem;
  font-family: var(--font-display); font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--green);
}
.facts th, .facts td { padding: .8rem 1.15rem; text-align: left; vertical-align: top; }
.facts th {
  width: 36%;
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted-on-light);
}
.facts td { color: var(--txt-on-light); }
.facts tr + tr > * { border-top: 1px solid var(--line-light); }
.facts a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.facts a:hover { color: var(--orange); }

/* ===================== ÎNTREBĂRI FRECVENTE ===================== */
/* titlu de bloc în afara .art (ex. deasupra listei de întrebări), la fel ca .art h2 */
.titlu-bloc {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem); font-weight: 800; letter-spacing: -0.015em;
  margin: .6rem 0 1.4rem;
  text-wrap: balance; /* fără un cuvânt singur pe ultimul rând */
}
.eyebrow + .titlu-bloc { margin-top: -.4rem; }
.section-dark .titlu-bloc { color: #fff; }
.faq { max-width: 52rem; }
.faq details { border-top: 1px solid var(--line-light); }
.faq details:last-child { border-bottom: 1px solid var(--line-light); }
.faq summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; line-height: 1.4;
  color: var(--txt-on-light);
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::after {
  content: "+";
  position: absolute; right: .1rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid var(--line-light); color: var(--green);
  font-size: 1.15rem; font-weight: 600; line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.faq summary:hover { color: var(--green); }
.faq summary:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.faq details[open] > summary::after { content: "−"; background: var(--green); border-color: var(--green); color: #fff; }
.faq-a { padding: 0 0 1.25rem; max-width: 70ch; color: #36413b; font-size: .98rem; }
.faq-a p + p { margin-top: .7rem; }
.faq-a a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq-a a:hover { color: var(--orange); }
.section-dark .faq details { border-color: var(--line-dark); }
.section-dark .faq summary { color: #fff; }
.section-dark .faq summary::after { border-color: var(--line-dark); color: var(--green-strong); }
.section-dark .faq-a { color: var(--muted-on-dark); }

/* ===================== DOUĂ COLOANE / PASTILE ===================== */
.dual {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 3.6rem; align-items: start;
}
.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.art ul.chips { max-width: none; }
.chip {
  display: inline-block;
  font-family: var(--font-display); font-weight: 600; font-size: .86rem; line-height: 1.3;
  padding: .6rem 1.1rem; border-radius: 99px;
  border: 1.5px solid var(--line-light); background: var(--paper-2);
  color: var(--txt-on-light);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.chip:hover { border-color: var(--green); color: var(--green); }
.section-white .chip { background: var(--paper); }

/* ===================== „VEZI ȘI” ===================== */
.rel-grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 1rem;
}
.rel-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--paper-2); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 1.15rem 2.6rem 1.2rem 1.25rem;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.rel-card::after {
  content: "→"; position: absolute; right: 1.1rem; top: 1.1rem;
  font-family: var(--font-display); font-weight: 700; color: var(--green);
  transition: transform .22s ease;
}
.rel-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 20px 36px -24px rgba(28, 36, 32, .35); }
.rel-card:hover::after { transform: translateX(3px); }
.rel-kicker {
  font-family: var(--font-display); font-size: .66rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange);
}
.rel-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.3;
  color: var(--txt-on-light); margin: .3rem 0 .25rem;
}
.rel-desc { font-size: .87rem; line-height: 1.5; color: var(--muted-on-light); }
.section-white .rel-card { background: var(--paper); }

/* ===================== CTA ===================== */
.cta-contacte {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.4rem;
  margin: -1rem 0 2rem; font-size: 1rem;
}
.cta-band .cta-contacte a {
  color: #fff; font-family: var(--font-display); font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: color .2s ease, border-color .2s ease;
}
.cta-band .cta-contacte a:hover { color: var(--orange); border-color: var(--orange); }

/* link mic sub cardurile de servicii (.service-card din style.css) */
.sc-link {
  display: inline-block; margin-top: .9rem;
  font-family: var(--font-display); font-size: .86rem; font-weight: 600; color: var(--green);
}
.sc-link::after { content: " →"; }
.sc-link:hover { color: var(--orange); }

/* galeria cu o singură poză: fără săgeți (pe telefon style.css le pune display:grid) */
.lightbox [hidden] { display: none !important; }

/* ===================== FOOTER: rândul Servicii · Zone · Proiecte ===================== */
.f-social { margin: 1.1rem 0 0; }
.footer-seo {
  display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr) minmax(0, .6fr);
  gap: 1.4rem 2.6rem;
  border-top: 1px solid var(--line-dark);
  padding-block: 1.7rem 1.8rem;
}
.footer-seo h5 {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--txt-on-dark); margin-bottom: .7rem;
}
.footer-seo ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; }
.footer-seo a { font-size: .86rem; transition: color .2s ease; }
.footer-seo a:hover { color: var(--orange); }

/* ===================== APARIȚIE LA DERULARE (fără JS: totul vizibil) =====================
   pagini.js pune .rv-wait DOAR pe elementele aflate sub ecran în momentul rulării,
   deci nimic din ce se vede deja nu clipește, iar fără JS nu se ascunde nimic. */
.rv { transition: opacity .7s ease, transform .7s ease; }
.rv.rv-wait { opacity: 0; transform: translateY(24px); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .ph { padding: 118px 0 60px; }
  .ph-grid { grid-template-columns: minmax(0, 1fr); gap: 2.4rem; }
  .art-grid { grid-template-columns: minmax(0, 1fr); gap: 2.4rem; }
  .art-grid > aside { position: static; order: -1; }
  .pgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .galerie { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dual { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
  .footer-seo { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 640px) {
  body.pagina .section { padding: 3.8rem 0; }
  .ph-title { font-size: clamp(1.75rem, 7.4vw, 2.2rem); }
  .ph-lead { font-size: 1rem; }
  .art { font-size: 1rem; }
  .art h2 { margin-top: 2.3rem; }
  .art ul.lista-bife, .lista-bife { grid-template-columns: minmax(0, 1fr); gap: .95rem; }
  .pgrid { grid-template-columns: minmax(0, 1fr); }
  .galerie { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .g-cap { font-size: .7rem; padding: 1.3rem .55rem .45rem; }
  .pe-scurt { padding: 1.5rem 1.2rem 1.2rem; }
  .facts th { width: 40%; }
  .facts th, .facts td { padding: .7rem .85rem; }
  .footer-seo { grid-template-columns: minmax(0, 1fr); }
  .cta-contacte { flex-direction: column; align-items: center; gap: .5rem; }
  .faq summary { font-size: .98rem; }
}
@media (max-width: 480px) {
  body.pagina .section { padding: 3.3rem 0; }
  .ph { padding: 104px 0 48px; }
  .breadcrumb { margin-bottom: 1.1rem; }
  .pcard-body { padding: 1rem 1rem 1.1rem; }
  .rel-card { padding: 1rem 2.4rem 1.05rem 1.05rem; }
}

@media (hover: none) {
  .g-item:hover img { transform: none; }
  .rel-card:hover { transform: none; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ph-text, .ph-media { animation: none; }
  .rv, .rv.rv-wait { opacity: 1; transform: none; transition: none; }
}
/* la tipărire: nimic ascuns de apariția la derulare */
@media print {
  .rv, .rv.rv-wait { opacity: 1 !important; transform: none !important; transition: none !important; }
}
