/* =====================================================================
   DUMBRAFOX — foaie de stil unică
   /css/style.css

   Paleta e luată din pozele pepinierei: verde de cetină, roșul
   arțarului japonez, lut de ghiveci, alb cu tentă de salvie.
   ===================================================================== */

:root {
  --pin:      #14261C;  /* cetină, fundal închis */
  --frunza:   #2B4634;  /* verde mediu */
  --salcie:   #8FA382;  /* salvie, etichete */
  --artar:    #A63A2E;  /* roșul arțarului japonez — accent */
  --lut:      #C08453;  /* lut de ghiveci, foarte rar */
  --hartie:   #EFF1EA;  /* alb cu tentă verde */
  --hartie-2: #E4E8DC;  /* secțiuni palide */
  --cerneala: #16211A;  /* text */
  --gri:      #5A6B5E;  /* text secundar */
  --linie:    rgba(22,33,26,.14);

  --shell: 1180px;
  --pas: clamp(60px, 7vw, 104px);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--hartie);
  color: var(--cerneala);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1.1em; }
address { font-style: normal; }

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--artar);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--pin); color: var(--hartie);
  padding: 12px 20px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 24px;
}


/* ---------- tipografie ---------- */
.h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .7em;
}
.h2--light { color: var(--hartie); }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gri);
  margin: 0 0 1.1rem;
}
.eyebrow--light { color: var(--salcie); }

.lede { max-width: 58ch; font-size: 1.06rem; color: var(--gri); }

/* numele latinești — ca pe etichetele din ghivece */
.lat {
  font-family: Newsreader, Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--salcie);
  margin: 0 0 .8em;
}

.fine { font-size: .9rem; color: var(--gri); max-width: 62ch; margin-top: 26px; }

.link {
  display: inline-block;
  font-weight: 500;
  font-size: .95rem;
  color: var(--artar);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .2s;
}
.link:hover { opacity: .6; }
.link--light { color: var(--salcie); }


/* ---------- butoane ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 500;
  font-size: .98rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, color .2s, transform .18s;
}
.btn--solid { background: var(--artar); color: #fff; }
.btn--solid:hover { background: #BE4739; transform: translateY(-2px); }
.btn--line { color: var(--hartie); border: 1px solid rgba(239,241,234,.35); }
.btn--line:hover { border-color: var(--salcie); color: var(--salcie); }


/* =====================================================================
   HEADER
   ===================================================================== */
.sitehead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20,38,28,.95);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(143,163,130,.2);
}
.sitehead__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 68px;
}

.brand { text-decoration: none; color: var(--hartie); line-height: 1.1; }
.brand__name {
  display: block;
  font-family: Newsreader, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .01em;
}
.brand__sub {
  display: block;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--salcie);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: .88rem;
  text-decoration: none;
  color: rgba(239,241,234,.8);
  transition: color .2s;
}
.nav a:hover { color: var(--hartie); }
.nav__tel {
  color: var(--pin) !important;
  background: var(--salcie);
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 600;
}
.nav__tel:hover { background: var(--hartie); }

.burger {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 1px solid rgba(143,163,130,.35);
  border-radius: 2px; cursor: pointer;
  padding: 11px 10px;
}
.burger span {
  display: block; height: 1.5px; background: var(--hartie);
  margin: 4px 0; transition: transform .25s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }


/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; overflow: hidden; background: var(--pin); }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% 40%;
  opacity: .55;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,38,28,.94) 0%, rgba(20,38,28,.62) 52%, rgba(20,38,28,.35) 100%),
    linear-gradient(to bottom, rgba(20,38,28,.5) 0%, rgba(20,38,28,0) 30%);
}
.hero__in {
  position: relative; z-index: 2;
  padding-block: clamp(72px, 11vw, 150px);
  max-width: 880px;
}
.hero__title {
  font-family: Newsreader, Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--hartie);
  margin: 0 0 .5em;
}
.hero__title em { font-style: italic; color: var(--lut); }
.hero__lede {
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: rgba(239,241,234,.86);
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; }


/* ---------- SIGNATURE: rândul de spalier ----------
   Sârma întinsă între stâlpi, cum sunt rândurile din pepinieră.  */
.rand {
  height: 26px;
  background:
    linear-gradient(to right, var(--linie) 1.5px, transparent 1.5px) 0 0 / 78px 100%,
    linear-gradient(to bottom, transparent calc(50% - .5px), var(--linie) calc(50% - .5px), var(--linie) calc(50% + .5px), transparent calc(50% + .5px));
  background-repeat: repeat-x, no-repeat;
}


/* =====================================================================
   SECȚIUNI
   ===================================================================== */
.sec { padding-block: var(--pas); }
.sec--dark { background: var(--pin); color: rgba(239,241,234,.8); }
.sec--pale { background: var(--hartie-2); }


/* ---------- trei servicii ---------- */
.trei {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 44px;
}
.trei__item { border-top: 2px solid var(--artar); padding-top: 20px; }
.trei__item h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 .5em;
}
.trei__item p { font-size: .96rem; color: var(--gri); }


/* ---------- sortimentul, ca rânduri ---------- */
.randuri { margin-top: 46px; }
.rnd {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid rgba(143,163,130,.2);
}
.rnd:last-child { border-bottom: 1px solid rgba(143,163,130,.2); }
.rnd img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px;
}
.rnd__txt h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--hartie);
  margin: 0 0 .25em;
}
.rnd__txt p:last-child { margin-bottom: 0; max-width: 56ch; }


/* ---------- calendarul ---------- */
.calendar {
  list-style: none; margin: 44px 0 0; padding: 0;
  border-top: 1px solid var(--linie);
}
.cal {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0 18px 22px;
  border-bottom: 1px solid var(--linie);
  position: relative;
}
/* bulina de sezon */
.cal::before {
  content: '';
  position: absolute; left: 0; top: 26px;
  width: 8px; height: 8px; border-radius: 50%;
}
.cal--iarna::before     { background: #7E8FA0; }
.cal--primavara::before { background: #7BA05B; }
.cal--vara::before      { background: var(--frunza); }
.cal--toamna::before    { background: var(--artar); }

.cal__luni {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
}
.cal__ce { color: var(--gri); font-size: .96rem; }


/* ---------- două coloane ---------- */
.doua {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.doua p { color: var(--gri); max-width: 50ch; }
.fig { margin: 0; }
.fig img { border-radius: 2px; aspect-ratio: 4/3; object-fit: cover; }


/* ---------- locații ---------- */
.loc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 44px;
  background: rgba(143,163,130,.2);
  border: 1px solid rgba(143,163,130,.2);
  border-radius: 2px;
  overflow: hidden;
}
.loc__item { background: var(--pin); padding: 32px 30px 34px; }
.loc__item h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400; font-size: 1.5rem;
  color: var(--hartie);
  margin: 0 0 .6em;
}
.loc__item address { margin-bottom: 1em; }
.loc__reper { color: var(--salcie); font-size: .92rem; }
.loc__prog { font-size: .92rem; }
.loc__prog span { color: var(--lut); }


/* ---------- cta ---------- */
.cta { background: var(--frunza); color: var(--hartie); padding-block: clamp(52px, 6vw, 82px); }
.cta__in { text-align: center; }
.cta .h2 { color: var(--hartie); max-width: 20ch; margin-inline: auto; }
.cta p { max-width: 52ch; margin-inline: auto; color: rgba(239,241,234,.82); margin-bottom: 1.8em; }


/* =====================================================================
   FOOTER
   ===================================================================== */
.foot { background: var(--pin); color: rgba(239,241,234,.72); font-size: .93rem; }
.foot__in {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  padding-block: clamp(46px, 6vw, 70px) 40px;
}
.foot__brand p { max-width: 38ch; margin-top: 14px; color: rgba(239,241,234,.55); }
.foot__col h3 {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--salcie);
  margin: 0 0 16px;
}
.foot__col a { display: block; text-decoration: none; padding-bottom: 8px; transition: color .2s; }
.foot__col a:hover { color: var(--lut); }
.foot__tel {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.35rem;
  color: var(--lut) !important;
  margin-bottom: 10px;
}

.foot__bar { border-top: 1px solid rgba(143,163,130,.18); }
.foot__bar-in {
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  justify-content: space-between;
  padding-block: 20px 26px;
  font-size: .8rem;
  color: rgba(239,241,234,.45);
}
.foot__bar-in p { margin: 0; }
.foot__bar-in a { margin-right: 18px; }
.foot__bar-in a:hover { color: var(--lut); }


/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .trei { grid-template-columns: 1fr; gap: 30px; }
  .rnd  { grid-template-columns: 200px 1fr; gap: 26px; }
  .doua { grid-template-columns: 1fr; }
  .loc  { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .burger { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--pin);
    border-bottom: 1px solid rgba(143,163,130,.2);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid rgba(143,163,130,.12); }
  .nav__tel { text-align: center; margin-top: 12px; border-bottom: 0; }
  .sitehead__in { position: relative; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .shell { padding-inline: 18px; }
  .rnd { grid-template-columns: 1fr; gap: 18px; }
  .rnd img { aspect-ratio: 16/10; }
  .cal { grid-template-columns: 1fr; gap: 4px; padding-left: 20px; }
  .cal::before { top: 24px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  .foot__in { grid-template-columns: 1fr; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* =====================================================================
   PAGINI INTERIOARE
   ===================================================================== */

/* hero mai scund */
.hero--pag .hero__in { padding-block: clamp(52px, 7vw, 96px); }
.hero__title--pag { font-size: clamp(2.1rem, 5vw, 3.8rem); }

.firimituri {
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--salcie);
  margin-bottom: 20px;
}
.firimituri a { text-decoration: none; border-bottom: 1px solid rgba(143,163,130,.4); }
.firimituri a:hover { color: var(--hartie); }
.firimituri span { opacity: .5; margin-inline: 4px; }


/* ---------- pașii procesului (secvență reală) ---------- */
.pasi { list-style: none; margin: 46px 0 0; padding: 0; }
.pasi li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 26px;
  padding-block: 26px;
  border-top: 1px solid var(--linie);
}
.pasi li:last-child { border-bottom: 1px solid var(--linie); }
.pasi__nr {
  font-family: Newsreader, Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--artar);
  padding-top: 4px;
}
.pasi h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: 1.32rem;
  margin: 0 0 .4em;
}
.pasi p { color: var(--gri); font-size: .96rem; max-width: 58ch; margin: 0; }


/* ---------- grila de lucrări ---------- */
.patru {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: var(--linie);
  border: 1px solid var(--linie);
  border-radius: 2px;
  overflow: hidden;
}
.patru__it { background: var(--hartie-2); padding: 26px 24px 28px; }
.patru__it h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 .4em;
}
.patru__it p { margin: 0; font-size: .93rem; color: var(--gri); }


/* ---------- container îngust ---------- */
.shell--ingust { max-width: 820px; }


/* ---------- întrebări ---------- */
.intreb { margin-top: 38px; border-top: 1px solid var(--linie); }
.intreb details { border-bottom: 1px solid var(--linie); }
.intreb summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 46px 19px 0;
  position: relative;
  font-weight: 500;
  font-size: 1.02rem;
}
.intreb summary::-webkit-details-marker { display: none; }
.intreb summary::after {
  content: '+';
  position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.45rem; font-weight: 300;
  color: var(--artar);
}
.intreb details[open] summary::after { content: '−'; }
.intreb details p {
  margin: 0; padding: 0 46px 22px 0;
  color: var(--gri); font-size: .96rem; max-width: 62ch;
}


@media (max-width: 940px) {
  .patru { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .patru { grid-template-columns: 1fr; }
  .pasi li { grid-template-columns: 40px 1fr; gap: 16px; }
  .pasi__nr { font-size: 1.6rem; }
}


/* =====================================================================
   TABEL DE COMPARAȚIE + GREȘELI
   ===================================================================== */

.tabel {
  margin-top: 42px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--linie);
  border-radius: 2px;
  background: #fff;
}
.tabel table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: .94rem;
}
.tabel thead th {
  text-align: left;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gri);
  background: var(--hartie-2);
  padding: 16px 18px;
  border-bottom: 1px solid var(--linie);
  white-space: nowrap;
}
.tabel tbody th {
  text-align: left;
  font-weight: 500;
  padding: 16px 18px;
  vertical-align: top;
  width: 20%;
  border-bottom: 1px solid var(--linie);
  box-shadow: inset 3px 0 0 var(--artar);
}
.tabel tbody td {
  padding: 16px 18px;
  vertical-align: top;
  color: var(--gri);
  border-bottom: 1px solid var(--linie);
}
.tabel tbody tr:last-child th,
.tabel tbody tr:last-child td { border-bottom: 0; }

/* numele latinesc sub cel popular */
.lat-mic {
  display: block;
  font-family: Newsreader, Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: .88rem;
  color: var(--salcie);
  margin-top: 2px;
}

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


/* ---------- greșeli frecvente ---------- */
.gresi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 44px;
  background: rgba(143,163,130,.2);
  border: 1px solid rgba(143,163,130,.2);
  border-radius: 2px;
  overflow: hidden;
}
.gresi__it { background: var(--pin); padding: 28px 28px 30px; }
.gresi__it h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: 1.24rem;
  color: var(--hartie);
  margin: 0 0 .45em;
  padding-left: 26px;
  position: relative;
}
/* semnul de atenție, desenat în CSS */
.gresi__it h3::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--lut);
}
.gresi__it p { margin: 0; font-size: .95rem; }

@media (max-width: 760px) {
  .gresi { grid-template-columns: 1fr; }
  .tabel { border-radius: 0; border-left: 0; border-right: 0; }
}


/* =====================================================================
   BUTON DE APEL FLOTANT — doar pe mobil
   Stă în dreapta jos, deasupra tuturor secțiunilor.
   ===================================================================== */

.call-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 60;

  display: none;              /* apare doar sub 780px */
  align-items: center;
  gap: 10px;

  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  background: var(--artar);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  box-shadow: 0 6px 22px rgba(22,33,26,.32);
  transition: transform .18s ease, background .18s ease;
}
.call-fab:active { transform: scale(.96); background: #8F3026; }
.call-fab svg { width: 19px; height: 19px; flex: 0 0 auto; }

/* pulsul discret care atrage atenția o dată, la încărcare */
.call-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--artar);
  animation: fab-puls 2.4s ease-out 3;
  pointer-events: none;
}
@keyframes fab-puls {
  0%   { transform: scale(1);    opacity: .55; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

@media (max-width: 780px) {
  .call-fab { display: inline-flex; }
  /* ca butonul să nu acopere ultimul rând din footer */
  .foot__bar-in { padding-bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  .call-fab::before { animation: none; }
}


/* =====================================================================
   PAGINA DE CONTACT
   ===================================================================== */

.contact-loc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 44px;
}
.cloc {
  border-top: 2px solid var(--artar);
  padding-top: 22px;
}
.cloc h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 .5em;
}
.cloc__adr { margin-bottom: .7em; }
.cloc__reper { color: var(--gri); font-size: .94rem; }
.cloc__prog { font-size: .94rem; margin-bottom: 1em; }
.cloc__prog span {
  display: inline-block;
  min-width: 82px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--salcie);
}
.harta {
  margin-top: 22px;
  border: 1px solid var(--linie);
  border-radius: 2px;
  overflow: hidden;
  background: var(--hartie-2);
}
.harta iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(.3) contrast(1.04);
}


@media (max-width: 940px) {
  .contact-loc { grid-template-columns: 1fr; gap: 40px; }
}


/* ---------- căile de contact (înlocuiesc formularul) ---------- */
.cai {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}
.cale {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--linie);
  border-top: 3px solid var(--artar);
  border-radius: 2px;
  padding: 30px 28px 32px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cale:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(22,33,26,.10);
}
.cale__et {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gri);
  margin-bottom: 12px;
}
.cale__val {
  display: block;
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--artar);
  word-break: break-word;
  margin-bottom: 12px;
}
.cale__jos { display: block; font-size: .93rem; color: var(--gri); line-height: 1.6; }

.h2--center { text-align: center; max-width: 22ch; margin-inline: auto; }

/* ---------- footer: e-mail și program ---------- */
.foot__mail {
  display: block;
  word-break: break-all;
  margin-bottom: 14px;
  color: rgba(239,241,234,.72);
}
.foot__prog {
  margin-top: 14px;
  font-size: .86rem;
  color: rgba(239,241,234,.5);
  line-height: 1.75;
}

@media (max-width: 760px) {
  .cai { grid-template-columns: 1fr; }
}
