/* ==========================================================================
   Toader Valeria — Cabinet Individual de Psihologie, Brașov
   Foaie de stil principală
   --------------------------------------------------------------------------
   Structură:
     1.  Design tokens (culori, tipografie, spațieri, umbre)
     2.  Reset & baze
     3.  Utilitare (container, secțiuni, titluri, butoane, badge)
     4.  Header & navigație
     5.  Hero + cercul de respirație (element-semnătură)
     6.  Bara de încredere
     7.  Servicii
     8.  Despre medic
     9.  Avantaje
     10. Proces (timeline)
     11. Testimoniale (slider)
     12. Galerie + lightbox
     13. Întrebări frecvente (accordion)
     14. Contact + formular
     15. Footer
     16. Elemente flotante (WhatsApp, bară mobilă, back-to-top)
     17. Animații la scroll & reduced motion
     18. Pagini legale
   ========================================================================== */

/* 1. DESIGN TOKENS ------------------------------------------------------- */
:root {
  /* Culori — alb cald, petrol (albastru-verde medical), salvie discretă */
  --paper:        #FBFAF7;   /* fundal principal, alb cald            */
  --mist:         #F0F5F2;   /* fundal secțiuni alternative           */
  --card:         #FFFFFF;   /* fundal carduri                        */
  --ink:          #1C2F35;   /* text principal                        */
  --ink-soft:     #475B62;   /* text secundar                         */
  --primary:      #23636D;   /* petrol — brand                        */
  --primary-deep: #17454D;   /* petrol închis — butoane, footer       */
  --primary-wash: #E3EEEC;   /* fundal pastel pentru accente          */
  --sage:         #74A28E;   /* verde salvie — decorativ              */
  --sand:         #E0A93F;   /* stele rating (folosit cu moderație)   */
  --line:         #E2E8E4;   /* borduri fine                          */
  --error:        #B4373C;   /* validare formular                     */
  --success:      #2F7D4F;   /* confirmare formular                   */
  --whatsapp:     #1FA855;   /* doar pentru butonul rotund, fără text  */
  --whatsapp-deep:#14803F;   /* pe fundal cu text alb: 5,0:1, trece AA */

  /* Tipografie */
  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body:    "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Scală de spațiere */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;

  /* Rotunjiri & umbre — subtile, premium */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(23, 47, 53, .06), 0 4px 14px rgba(23, 47, 53, .05);
  --shadow-md: 0 2px 6px rgba(23, 47, 53, .07), 0 14px 34px rgba(23, 47, 53, .09);
  --shadow-lg: 0 4px 10px rgba(23, 47, 53, .08), 0 24px 54px rgba(23, 47, 53, .13);

  /* Tranziții */
  --ease: cubic-bezier(.33, 1, .68, 1);
  --t-fast: 180ms var(--ease);
  --t-med:  320ms var(--ease);

  /* Dimensiuni layout */
  --container: 72rem;
  --header-h: 4.5rem;
}

/* 2. RESET & BAZE -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  /* Fără scroll-behavior: smooth — clicul pe un link intern (meniu, butoane,
     linkurile din carduri) sare instantaneu la secțiune, nu alunecă.
     scroll-padding-top rămâne: fără el, titlul secțiunii ar ajunge sub
     antetul lipit. */
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip; /* fără scroll orizontal, niciodată */
}

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 500;
  /* cuvinte lungi („confidențialitate") nu mai ies din coloană pe 320 px */
  overflow-wrap: break-word;
}
p  { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, iframe { max-width: 100%; display: block; }
/* OBLIGATORIU alături de max-width: atributele width/height din HTML devin
   înălțime fixă în CSS, iar imaginea se întinde pe verticală când lățimea e
   limitată de container. Fără această linie, orice <img width= height=> se
   deformează. */
img { height: auto; }
a  { color: var(--primary-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
/* Adresa de e-mail are 41 de caractere fără spații: fără asta iese din coloană
   pe ecrane de 320 px. Global, nu doar în Contact — apare și în paginile legale. */
a[href^="mailto:"] { overflow-wrap: anywhere; }
button { font: inherit; cursor: pointer; }

/* Focus vizibil, consecvent — accesibilitate din tastatură */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Link „sari la conținut" pentru cititoare de ecran / tastatură */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--primary-deep);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* 3. UTILITARE ----------------------------------------------------------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: clamp(3.5rem, 8vw, var(--space-6)); }
.section--mist { background: var(--mist); }

/* Antet de secțiune: eyebrow + titlu + intro */
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 1.5rem; height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 1.5rem; height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--primary); }

.section-intro { color: var(--ink-soft); font-size: 1.0625rem; max-width: 42rem; }
.section-head--center .section-intro { margin-inline: auto; }

/* Butoane */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
}
.btn svg { flex: none; }
.btn:active { transform: scale(.98); }

.btn--primary {
  background: var(--primary-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--primary-deep);
  border-color: var(--primary-deep);
}
.btn--ghost:hover { background: var(--primary-wash); }

.btn--light {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { box-shadow: var(--shadow-md); }

.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.0625rem; }

/* Stele rating */
.stars { display: inline-flex; gap: .15rem; color: var(--sand); }

/* 4. HEADER & NAVIGAȚIE --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 250, 247, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(23, 47, 53, .05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
}
.brand__role {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}
/* Sub ~370 px, „PSIHOLOG · PSIHOTERAPEUT" trecea pe două rânduri și
   umfla antetul peste înălțimea lui fixă de 4,5rem. */
@media (max-width: 23rem) {
  .brand__name { font-size: 1.02rem; }
  .brand__role { font-size: .6rem; letter-spacing: .05em; }
}

.site-nav ul { display: flex; gap: .25rem; }
.site-nav a {
  display: block;
  padding: .55rem .85rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast);
}
.site-nav a:hover { color: var(--primary-deep); background: var(--primary-wash); }

.header-cta { flex: none; }
.header-cta .btn { padding: .7rem 1.35rem; font-size: .95rem; }

/* CTA-ul din meniu apare NUMAI pe mobil; pe desktop ar dubla butonul din antet */
.site-nav .nav-cta-mobile { display: none; }

/* Buton meniu mobil */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 56rem) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 99;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem 1.5rem;
    /* meniul nu poate depăși ecranul: pe telefoane mici în peisaj se derulează */
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-115%);
    visibility: hidden;
    transition: transform var(--t-med), visibility 0s linear 320ms;
  }
  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--t-med);
  }
  /* Cât timp meniul acoperă ecranul, pagina din spate nu se mai derulează */
  body.has-menu-open { overflow-y: hidden; }
  .site-nav ul { flex-direction: column; gap: .25rem; }
  .site-nav a { padding: .85rem 1rem; font-size: 1.05rem; }
  .site-nav .nav-cta-mobile { display: block; margin-top: .75rem; }
  /* fără asta, regula .site-nav a ar da text închis pe fundalul închis al butonului */
  .site-nav .nav-cta-mobile .btn--primary { color: #fff; }
  .site-nav .nav-cta-mobile .btn--primary:hover { color: #fff; background: var(--primary); }
}

/* 5. HERO + CERCUL DE RESPIRAȚIE ----------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: clip;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--primary-wash);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
}
.hero__badge .dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--success);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.015em;
  margin-bottom: .4em;
}
.hero__title em { font-style: italic; color: var(--primary); }
@supports (text-wrap: balance) { .hero__title { text-wrap: balance; } }

.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 1.5rem;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.hero__note svg { color: var(--sage); flex: none; }

/* Vizual: portret + inele de respirație */
.hero__visual { position: relative; }

.breath {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  pointer-events: none;
}
.breath span {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
}
.breath span:nth-child(1) { width: 105%; aspect-ratio: 1; opacity: .35; animation: breathe 7s var(--ease) infinite; }
.breath span:nth-child(2) { width: 86%;  aspect-ratio: 1; opacity: .5;  animation: breathe 7s var(--ease) infinite .6s; }
.breath span:nth-child(3) { width: 68%;  aspect-ratio: 1; opacity: .65; animation: breathe 7s var(--ease) infinite 1.2s; }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.055); }
}

.hero__portrait {
  position: relative;
  z-index: 1;
  width: min(24rem, 100%);
  margin-inline: auto;
  border-radius: 46% 54% 48% 52% / 42% 44% 56% 58%; /* formă organică, calmă */
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* aspect-ratio + object-fit: dacă se schimbă cândva fotografia cu una de alt
   raport, forma organică rămâne identică în loc să se deformeze */
.hero__portrait img { width: 100%; height: auto; aspect-ratio: 768 / 912; object-fit: cover; }

/* Card mic plutitor peste portret — dovadă socială imediată */
.hero__float {
  position: absolute;
  z-index: 2;
  bottom: 1.25rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.1rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: .875rem;
}
.hero__float strong { display: block; font-size: 1rem; }
.hero__float small { color: var(--ink-soft); }

@media (max-width: 56rem) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { order: -1; width: min(17rem, 70%); margin-inline: auto; }
  /* Mai mic și împins în colț: la dimensiunea de pe desktop, cardul acoperea
     jumătatea de jos a portretului. */
  .hero__float {
    bottom: -.6rem;
    left: -1.15rem;
    gap: .5rem;
    padding: .55rem .8rem;
    font-size: .78rem;
  }
  .hero__float strong { font-size: .9rem; }
  .hero__float svg { width: 20px; height: 20px; }
}

/* 6. BARA DE ÎNCREDERE ---------------------------------------------------- */
.trust {
  border-block: 1px solid var(--line);
  background: var(--card);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust__item {
  background: var(--card);
  padding: 1.5rem 1rem;
  text-align: center;
}
.trust__value {
  display: block;
  font-family: var(--font-display);
  /* pe 320 px, „Seara & sâmbăta" la 1.5rem depășea coloana de două */
  font-size: clamp(1.15rem, 4.2vw, 1.5rem);
  line-height: 1.2;
  color: var(--primary-deep);
  text-wrap: balance;
}
.trust__label {
  font-size: .8125rem;
  line-height: 1.35;
  color: var(--ink-soft);
  text-wrap: balance;
}
@media (max-width: 56rem) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item { padding: 1.25rem .75rem; }
}

/* 7. SERVICII ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 56rem) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 38rem) { .services-grid { grid-template-columns: 1fr; } }

/* Cardul întreg este zona de clic către secțiunea Contact.
   Nu înfășurăm tot cardul într-un <a>: numele accesibil ar deveni întreg
   textul cardului. În loc de asta, linkul stă pe titlu, iar ::after îl
   întinde peste tot cardul (tiparul „stretched link"). */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.7rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.service-card__stretch {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}
.service-card__stretch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

/* Efectele de ridicare doar pe dispozitive cu mouse: pe touch, starea :hover
   rămâne „lipită" după atingere și cardul pare blocat ridicat. */
@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-wash);
  }
  /* semnalul că este apăsabil, acum că butonul dinăuntru a dispărut */
  .service-card:hover .service-card__stretch { color: var(--primary); }
  .service-card:hover .service-card__icon { background: var(--primary); color: #fff; }
}

.service-card:active { transform: scale(.995); }

/* Conturul de focus se desenează pe tot cardul, nu doar pe textul titlului */
.service-card__stretch:focus-visible { outline: none; }
.service-card__stretch:focus-visible::after {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 3.25rem; height: 3.25rem;
  margin-bottom: 1.1rem;
  background: var(--primary-wash);
  color: var(--primary-deep);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.service-card h3 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); }
.service-card > p { color: var(--ink-soft); font-size: .95rem; }

.service-card__benefits {
  /* fără margine jos: butonul de dedesubt a fost eliminat, iar padding-ul
     cardului dă singur distanța până la marginea de jos */
  margin: .25rem 0 0;
  font-size: .9rem;
  color: var(--ink-soft);
}
.service-card__benefits li {
  display: flex;
  gap: .5rem;
  padding-block: .22rem;
}
.service-card__benefits li::before {
  content: "";
  flex: none;
  width: 1.1em; height: 1.1em;
  margin-top: .18em;
  background: currentColor;
  color: var(--sage);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.3 8l1.4-1.4 2.8 2.8 5.8-5.8L13.7 5z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.3 8l1.4-1.4 2.8 2.8 5.8-5.8L13.7 5z"/></svg>') center/contain no-repeat;
}

/* .service-card__link (butonul „Programați o ședință" din fiecare card) a fost
   eliminat: acum întregul card este apăsabil. Stilurile au fost șterse. */

/* 8. DESPRE MEDIC --------------------------------------------------------- */
.about .container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 56rem) { .about .container { grid-template-columns: 1fr; } }

.about__media { position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 56rem) { .about__media { position: static; width: min(20rem, 80%); margin-inline: auto; } }

.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__photo img { width: 100%; height: auto; aspect-ratio: 768 / 912; object-fit: cover; }
.about__credential {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: -1.75rem;
  margin-inline: 1.25rem;
  position: relative;
  padding: .9rem 1.1rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-size: .875rem;
}
.about__credential svg { color: var(--primary); flex: none; }
.about__credential strong { display: block; }
.about__credential small { color: var(--ink-soft); }

.about__body .lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}
.about__body p { color: var(--ink-soft); }

.about__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-block: 1.75rem;
}
@media (max-width: 38rem) { .about__lists { grid-template-columns: 1fr; } }

.about__list h3 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
}
.about__list li {
  display: flex;
  gap: .55rem;
  padding-block: .3rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.about__list li svg { flex: none; margin-top: .2em; color: var(--sage); }

/* Chips specializări */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-block: .25rem 1.75rem; }
.chips li {
  padding: .4rem .9rem;
  background: var(--primary-wash);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
}

/* Citat — abordarea */
.about__quote {
  margin: 0 0 1.75rem;
  padding: 1.4rem 1.6rem;
  background: var(--mist);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.about__quote footer {
  margin-top: .5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .875rem;
  color: var(--ink-soft);
}

/* 8b. PRIMA ȘEDINȚĂ -------------------------------------------------------
   Secțiune dedicată temerilor care opresc oamenii să sune: rușinea și teama
   de a fi judecați. Text în stânga, lista de asigurări în dreapta.
--------------------------------------------------------------------------- */
.first-visit .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 56rem) { .first-visit .container { grid-template-columns: 1fr; } }

.first-visit__intro { position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 56rem) { .first-visit__intro { position: static; } }
.first-visit__intro .section-intro { margin-bottom: 1.75rem; }

.first-visit__list { display: grid; gap: .9rem; }
.first-visit__list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
@media (hover: hover) {
  .first-visit__list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}
.first-visit__list svg { flex: none; margin-top: .15rem; color: var(--sage); }
.first-visit__list strong {
  display: block;
  margin-bottom: .2rem;
  font-size: 1.02rem;
}
.first-visit__list div { color: var(--ink-soft); font-size: .95rem; }

/* 9. AVANTAJE -------------------------------------------------------------
   NEFOLOSIT: secțiunea a fost eliminată din index.html — fiecare avantaj
   dubla o informație deja prezentă în altă secțiune. Stilurile rămân pentru
   o eventuală reactivare.
--------------------------------------------------------------------------- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 56rem) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 38rem) { .advantages-grid { grid-template-columns: 1fr; } }

.advantage {
  padding: 1.7rem 1.6rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.advantage:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.advantage__icon {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  margin-bottom: 1rem;
  background: var(--primary-wash);
  color: var(--primary-deep);
  border-radius: 50%;
}
.advantage h3 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
.advantage p { margin: 0; font-size: .95rem; color: var(--ink-soft); }

/* 10. PROCES (TIMELINE) ---------------------------------------------------
   NEFOLOSIT: secțiunea a fost eliminată din index.html — procesul generic în
   5 pași nu aducea informație nouă față de „Prima ședință". Stilurile rămân
   pentru o eventuală reactivare.
--------------------------------------------------------------------------- */
.process { counter-reset: step; }
.process__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 56rem) { .process__track { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }

.process__step {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.process__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.process__num {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  margin: 0 auto .9rem;
  background: var(--primary-deep);
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  font-size: .95rem;
}
.process__num::before { content: counter(step); }

/* linia dintre pași — doar pe desktop */
@media (min-width: 56.0625rem) {
  .process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.75rem;
    left: calc(100% - .25rem);
    width: calc(1.25rem + .5rem);
    height: 2px;
    background: var(--line);
  }
}

.process__step h3 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); }
.process__step p { margin: 0; font-size: .875rem; color: var(--ink-soft); }

/* 11. TESTIMONIALE (SLIDER) -----------------------------------------------
   NEFOLOSIT momentan: secțiunea a fost eliminată din index.html până când
   apar recenzii reale, cu acordul clienților. Stilurile rămân aici, gata de
   reactivare. Modulul JS initSlider() se auto-dezactivează dacă lipsește.
--------------------------------------------------------------------------- */
.testimonials .section-head { margin-bottom: 2rem; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.google-badge .stars { font-size: .85rem; }

.slider { position: relative; }
.slider__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.slider__track {
  display: flex;
  transition: transform 480ms var(--ease);
}
.slider__slide { flex: 0 0 100%; padding: .25rem; }

.testimonial {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--ink);
  max-width: 46rem;
}
.testimonial__meta { display: flex; align-items: center; gap: .9rem; }
.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--primary-wash);
  color: var(--primary-deep);
  font-weight: 700;
}
.testimonial__meta strong { display: block; font-size: .975rem; }
.testimonial__meta small { color: var(--ink-soft); }
.testimonial .stars { margin-left: auto; }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.slider__dots { display: flex; gap: .5rem; }
.slider__dots button {
  width: .65rem; height: .65rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  transition: background var(--t-fast), transform var(--t-fast);
}
.slider__dots button[aria-current="true"] {
  background: var(--primary-deep);
  transform: scale(1.25);
}
.slider__arrows { display: flex; gap: .6rem; }
.slider__arrows button {
  display: grid;
  place-items: center;
  width: 2.75rem; height: 2.75rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary-deep);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.slider__arrows button:hover { background: var(--primary-wash); border-color: var(--primary-wash); }

/* 12. GALERIE + LIGHTBOX --------------------------------------------------
   NEFOLOSIT: secțiunea a fost eliminată din index.html — pe site rămân numai
   portrete ale psihologului, fără fotografii ale spațiului. Stilurile rămân
   aici; initLightbox() din main.js se auto-dezactivează dacă lipsesc.
--------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 56rem) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 34rem) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 9 / 6.4;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__label {
  position: absolute;
  inset: auto 0 0;
  padding: 1.75rem 1.1rem .8rem;
  background: linear-gradient(transparent, rgba(23, 47, 53, .55));
  color: #fff;
  font-size: .875rem;
  text-align: left;
}

/* Lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(64rem, 92vw);
  width: 100%;
}
.lightbox::backdrop { background: rgba(15, 28, 32, .82); backdrop-filter: blur(4px); }
.lightbox figure { margin: 0; position: relative; }
.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox figcaption {
  margin-top: .75rem;
  color: #E8EFEA;
  text-align: center;
  font-size: .95rem;
}
.lightbox__close {
  position: absolute;
  top: -.5rem; right: -.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem; height: 2.75rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2.9rem; height: 2.9rem;
  background: rgba(255, 255, 255, .92);
  border: none;
  border-radius: 50%;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.lightbox__nav--prev { left: .75rem; }
.lightbox__nav--next { right: .75rem; }

/* 13. FAQ (ACCORDION) ----------------------------------------------------- */
.faq-list { max-width: 48rem; margin-inline: auto; display: grid; gap: .9rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--t-med), border-color var(--t-med);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--primary-wash); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  transition: transform var(--t-med);
  background-image:
    linear-gradient(var(--primary-deep), var(--primary-deep)),
    linear-gradient(var(--primary-deep), var(--primary-deep));
  background-size: 10px 2px, 2px 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-wash);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  font-size: .975rem;
}
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* 14. CONTACT + FORMULAR --------------------------------------------------- */
.contact .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 56rem) { .contact .container { grid-template-columns: 1fr; } }

/* Canale de contact preferate — butoane mari, cele mai vizibile din secțiune */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 34rem) { .contact-channels { grid-template-columns: 1fr; } }

.contact-channel {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
@media (hover: hover) {
  .contact-channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}
.contact-channel svg { flex: none; }
/* .9 în loc de .85: la .85 textul mic pica sub 4,5:1 pe fundalul verde */
.contact-channel small { display: block; font-size: .8rem; opacity: .9; }
.contact-channel strong { font-size: 1.1rem; letter-spacing: .01em; }
.contact-channel > span { min-width: 0; }

.contact-channel--call { background: var(--primary-deep); }
.contact-channel--wa   { background: var(--whatsapp-deep); }

.contact-info { display: grid; gap: 1rem; }
.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-info__item svg { flex: none; color: var(--primary); margin-top: .2rem; }
.contact-info__item strong { display: block; margin-bottom: .15rem; }
.contact-info__item a { font-weight: 500; }
.contact-info__item p, .contact-info__item ul { margin: 0; color: var(--ink-soft); font-size: .95rem; }
/* Pe touch, linkurile de sine stătătoare (telefon, e-mail, Instagram) aveau
   ~19 px înălțime. Padding vertical → ținte de peste 24 px, fără să crească
   textul. Linkurile din interiorul frazelor rămân neatinse. */
@media (max-width: 56rem) {
  .contact-info__item a,
  .site-footer address a {
    display: inline-block;
    padding-block: .3rem;
  }
}
/* (regula pentru mailto s-a mutat în secțiunea 2, ca să acopere și paginile legale) */

/* Indicator deschis/închis — actualizat de JS după program */
.open-indicator {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  margin-top: .35rem;
}
.open-indicator::before {
  content: "";
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: currentColor;
}
.open-indicator.is-open   { color: var(--success); }
.open-indicator.is-closed { color: var(--error); }

.contact-map {
  margin-top: .5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-map iframe { width: 100%; height: 240px; border: 0; }

/* Formular */
.booking-form {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .35rem;
}
.booking-form > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.5rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 38rem) { .form-grid { grid-template-columns: 1fr; } }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  margin-bottom: .4rem;
  font-weight: 600;
  font-size: .9rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-wash);
}
.form-field textarea { resize: vertical; min-height: 6.5rem; }

/* Stări de validare */
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea { border-color: var(--error); }
.form-field .field-error {
  display: none;
  margin-top: .35rem;
  font-size: .8125rem;
  color: var(--error);
}
.form-field.is-invalid .field-error { display: block; }

/* Consimțământ GDPR */
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: .65rem;
  font-size: .85rem;
  color: var(--ink-soft);
}
.form-consent input { width: 1.35rem; height: 1.35rem; margin-top: .1rem; accent-color: var(--primary-deep); flex: none; }
.form-consent label { cursor: pointer; }
.form-consent.is-invalid { color: var(--error); }
.form-consent.is-invalid input { outline: 2px solid var(--error); outline-offset: 2px; }

.booking-form .btn { width: 100%; margin-top: 1.25rem; }
.form-hint {
  margin: .85rem 0 0;
  text-align: center;
  font-size: .8125rem;
  color: var(--ink-soft);
}

/* Mesaj de succes */
.form-success {
  display: none;
  padding: 1.25rem 1.4rem;
  margin-top: 1.25rem;
  background: #EDF6F0;
  border: 1px solid #CBE5D5;
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 500;
}
.form-success.is-visible { display: flex; gap: .7rem; align-items: flex-start; }

/* 15. FOOTER --------------------------------------------------------------- */
.site-footer {
  background: var(--primary-deep);
  color: #D5E3E0;
  padding: var(--space-5) 0 var(--space-3);
  font-size: .95rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-grid {
  display: grid;
  /* Coloana Contact e mai lată decât celelalte: adresa de e-mail are nevoie
     de 297 px pe un singur rând, iar la 1.2fr primea doar 269 px. */
  grid-template-columns: 1.3fr .95fr .95fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
@media (max-width: 56rem) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 34rem) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand__role { color: #9FC5BC; }
.footer-brand p { color: #B9CFCA; max-width: 24rem; }

.footer-social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  transition: background var(--t-fast);
}
.footer-social a:hover { background: rgba(255, 255, 255, .22); text-decoration: none; }

.footer-col h3 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9FC5BC;
  margin-bottom: 1rem;
}
/* Spațierea stă pe <a>, nu pe <li>: altfel zona de atins rămâne cât textul
   (~18 px), sub minimul de 24 px. Aspectul rămâne identic. */
.footer-col li { padding-block: 0; }
.footer-col li a { display: inline-block; padding-block: .34rem; }
.footer-col address { font-style: normal; color: #B9CFCA; line-height: 1.8; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: #9FC5BC;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.footer-legal a { color: #B9CFCA; display: inline-block; padding-block: .3rem; }

/* Creditul autorului — rând propriu, discret, sub linia de copyright */
.footer-credit {
  margin: .75rem 0 0;
  font-size: .8125rem;
  color: #8FB6AD;
  text-align: center;
}
.footer-credit strong { color: #D5E3E0; font-weight: 600; }
.footer-credit a {
  color: #D5E3E0;
  display: inline-block;
  padding-block: .3rem;      /* țintă de atingere peste 24 px */
  white-space: nowrap;
}
.footer-credit span { margin-inline: .15rem; }
/* Sub ~370 px rândul se rupe și punctul separator rămâne agățat la capăt.
   Acolo îl ascundem, iar numărul primește rândul lui. */
@media (max-width: 23rem) {
  .footer-credit span { display: none; }
  .footer-credit a { display: block; }
}

/* 16. ELEMENTE FLOTANTE ---------------------------------------------------- */
/* WhatsApp */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3.5rem; height: 3.5rem;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
@media (hover: hover) {
  .whatsapp-fab:hover { transform: scale(1.07); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 5.5rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  background: var(--card);
  color: var(--primary-deep);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med), visibility 0s linear 320ms;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--t-med), transform var(--t-med);
}

/* Bară sticky pe mobil: Sună + Programează-te */
.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 95;
  display: none;
  gap: .75rem;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(251, 250, 247, .95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn { flex: 1; padding: .85rem 1rem; font-size: .95rem; }
@media (max-width: 56rem) {
  .mobile-cta { display: flex; }
  /* bara are ~4,8rem + zona sigură de jos; la 4.5rem acoperea ultimul rând
     din footer pe iPhone-urile cu bară gestuală */
  body { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
  .whatsapp-fab { bottom: calc(6.25rem + env(safe-area-inset-bottom)); }
  .back-to-top  { bottom: calc(10.5rem + env(safe-area-inset-bottom)); }
}

/* 17. ANIMAȚII LA SCROLL & REDUCED MOTION ---------------------------------- */
/* Ascunse DOAR dacă JS rulează (clasa .js e pusă de scriptul din <head>).
   Fără această condiție, un JS blocat de rețea sau de o extensie ar lăsa
   aproape toată pagina invizibilă. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; will-change: auto; }

/* Utilizatorii care preferă mai puțină mișcare primesc totul static */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .breath span { animation: none; }
  .site-nav { transition: none; }
}

/* 18. PAGINI LEGALE -------------------------------------------------------- */
.legal-page { padding-block: var(--space-5); }
.legal-page .container { max-width: 46rem; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-page h2 { font-size: 1.3rem; margin-top: 2rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page ul { list-style: disc; padding-left: 1.25rem; }
.legal-page .legal-updated { font-size: .875rem; color: var(--ink-soft); margin-bottom: 2rem; }
.legal-back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 2rem; font-weight: 600; text-decoration: none; }
