/* ==========================================================================
   Adelina Fratila Beauty Studio — Timișoara
   Design system: editorial-boutique, cald si intim.

   TIPOGRAFIE — de ce aceste doua familii:

   Fraunces (doar italic, pentru titluri si citate)
     Fraunces e un "soft serif" construit cu axele SOFT si WONK: terminatii
     rotunjite si un ax optic usor inclinat, adica exact opusul unui Didone
     de contrast dur (Playfair). Italicul are ligaturi si curbe scrise de
     mana — la clamp(3rem, 8vw, 7rem) citeste cald si personal, nu "luxury
     template". Se potriveste cu lemnul si terracota din interiorul real.

   Plus Jakarta Sans (body, butoane, etichete)
     Sans geometric-humanist: forme circulare, deschideri largi, x-height
     generos. Ramane lizibil la 15-16px pe mobil si nu concureaza cu
     italicul de deasupra. Are latin-ext complet (ă â î ș ț).

   Etichetele de sectiune ("SPRÂNCENE", "MACHIAJ") sunt tot Plus Jakarta Sans
   700, uppercase, tracking 0.18em — un al treilea font ar fi costat inca o
   cerere de retea fara castig vizual real.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* paleta confirmata de client */
  --pudra:          #F3E9DF;  /* fundal */
  --nud-umbra:      #E4D5C7;  /* suprafete / carduri */
  --terracota:      #C6704A;  /* accent principal (doar text mare / decor) */
  --terracota-arsa: #7A3B24;  /* accent adanc / CTA / text accent mic */
  --cerneala:       #2B211C;  /* text */

  /* tonuri derivate, din aceeasi familie */
  --pudra-clara:    #FAF4EE;
  --nud-hover:      #D9C6B4;
  --terracota-clara:#E0A183;
  --cerneala-muted: #6B594E;
  --pe-inchis:      #F0E4D8;
  --pe-inchis-muted:#B9A99B;

  /* nuantele "fond de ten" — signature element.
     Rampa porneste de la un nud vizibil, NU de la pudra: prima nuanta trebuie
     sa se distinga de fundal, altfel segmentul activ nu "se aprinde". */
  --shade-1: #E8CBB0;
  --shade-2: #DDB294;
  --shade-3: #D0906B;
  --shade-4: #C6704A;
  --shade-5: #7A3B24;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 64px;
  --radius: 2px;
  --radius-img: 3px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. BAZA
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--pudra);
  color: var(--cerneala);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  font-variant-ligatures: no-common-ligatures;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Preflight-ul Tailwind e dezactivat (vezi tailwind.config din <head>),
   deci resetam aici ce ne trebuie. */
figure, blockquote, dl, dd, table { margin: 0; }
button { font: inherit; color: inherit; }
table { border-collapse: collapse; }

:focus-visible {
  outline: 2px solid var(--terracota-arsa);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--cerneala);
  color: var(--pe-inchis);
  padding: .75rem 1.25rem;
  font-size: .875rem;
}
.skip-link:focus { left: 0; }

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

/* --------------------------------------------------------------------------
   3. TIPOGRAFIE
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.h-hero   { font-size: clamp(3rem, 8vw, 7rem); }
.h-sect   { font-size: clamp(2.1rem, 5.2vw, 3.9rem); line-height: 1; }
.h-block  { font-size: clamp(1.85rem, 4.4vw, 3.1rem); line-height: 1.02; }
.h-quote  { font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.18; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota-arsa);
  margin: 0 0 1.1rem;
  display: block;
}
.eyebrow--pe-inchis { color: var(--terracota-clara); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--cerneala-muted);
  max-width: 46ch;
}

.muted { color: var(--cerneala-muted); }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}
.wrap--narrow { max-width: 860px; }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

.rule {
  border: 0;
  border-top: 1px solid var(--nud-hover);
  margin: 0;
}

/* --------------------------------------------------------------------------
   5. BUTOANE
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  font-family: var(--font-sans);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn svg { flex: none; }

.btn--primary {
  background: var(--terracota-arsa);
  color: var(--pudra-clara);
}
.btn--primary:hover { background: var(--cerneala); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--terracota-arsa);
  border-color: var(--terracota-arsa);
}
.btn--ghost:hover { background: var(--terracota-arsa); color: var(--pudra-clara); transform: translateY(-2px); }

.btn--wa { background: #0D6D39; color: #fff; }
.btn--wa:hover { background: #0A5A2E; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--terracota-arsa);
  text-decoration: none;
  border-bottom: 1.5px solid var(--terracota-clara);
  padding-bottom: .15rem;
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.link-arrow:hover { border-color: var(--terracota-arsa); gap: .75rem; }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--pudra) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header[data-scrolled='true'] {
  border-bottom-color: var(--nud-hover);
  background: color-mix(in srgb, var(--pudra) 96%, transparent);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.32rem;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark span { color: var(--terracota-arsa); }

.site-nav { display: none; gap: 2rem; }
.site-nav a {
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--cerneala-muted);
  transition: color .2s var(--ease);
}
.site-nav a:hover { color: var(--terracota-arsa); }

.header-right { display: flex; align-items: center; gap: .25rem; }

.header-cta {
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--terracota-arsa);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
}
.header-cta:hover { color: var(--cerneala); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -.6rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--cerneala);
  cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid var(--nud-umbra);
  background: var(--pudra);
  box-shadow: 0 12px 24px -8px rgb(43 33 28 / .18);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--cerneala);
  border-bottom: 1px solid var(--nud-umbra);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav__phone { color: var(--terracota-arsa) !important; }

@media (min-width: 480px) {
  .header-cta__text { display: inline; }
}
@media (max-width: 479px) {
  .header-cta__text { display: none; }
  .header-cta { width: 44px; justify-content: center; }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(2.25rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); }

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__title { margin-bottom: 1.9rem; }
.hero__title em { font-style: italic; color: var(--terracota-arsa); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.9rem;
}

.hero__note {
  margin-top: 1.35rem;
  font-size: .86rem;
  color: var(--cerneala-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .85rem;
}
.hero__note b { color: var(--cerneala); font-weight: 600; }
.dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--terracota); flex: none;
}
/* pe ecrane inguste separatoarele raman orfane la capat de rand — le stivuim */
@media (max-width: 640px) {
  .hero__note { display: grid; gap: .2rem; }
  .hero__note .dot { display: none; }
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: var(--radius-img);
}
/* semnatura vizuala: cele 5 nuante repetate ca banda sub imagine */
.hero__swatches {
  display: flex;
  height: 8px;
  margin-top: .55rem;
  border-radius: 999px;
  overflow: hidden;
}
.hero__swatches span { flex: 1; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__media img { aspect-ratio: 3 / 4; }
}

/* --------------------------------------------------------------------------
   8. FAPTE
   -------------------------------------------------------------------------- */
.facts {
  background: var(--nud-umbra);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
}
.facts__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.facts__list dt {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracota-arsa);
  margin-bottom: .3rem;
}
.facts__list dd {
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.35;
}
@media (min-width: 800px) {
  .facts__list { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   9. SIGNATURE ELEMENT — banda de nuante "fond de ten"
   -------------------------------------------------------------------------- */
.shade-band {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--pudra);
  padding: .9rem 0 .65rem;
}
.shade-band__track {
  display: flex;
  gap: 3px;
  height: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shade-band__seg {
  flex: 1 1 0;
  border-radius: 999px;
  background: var(--seg);
  opacity: .3;
  transition: flex-grow .55s var(--ease), opacity .45s var(--ease);
}
.shade-band__seg a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.shade-band__seg:hover { opacity: .65; }
.shade-band__seg[data-active='true'] {
  flex-grow: 2.4;
  opacity: 1;
}
.shade-band__label {
  display: block;
  margin-top: .55rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota-arsa);
  min-height: 1em;
  transition: opacity .3s var(--ease);
}

/* --------------------------------------------------------------------------
   10. BLOCURI DE SERVICIU — fiecare cu forma proprie
   -------------------------------------------------------------------------- */
/* scroll-margin: headerul sticky (64px) + banda de nuante sticky (~56px) + aer */
.service { padding-block: clamp(3.25rem, 7vw, 6rem); scroll-margin-top: 140px; }
.services__intro {
  margin-top: 1.35rem;
  max-width: 54ch;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: var(--cerneala-muted);
}
.service__title { margin-bottom: 1.1rem; }
.service__body { max-width: 44ch; color: var(--cerneala-muted); }
.service__cta { margin-top: 1.6rem; }

.service figure { margin: 0; }
.service figcaption {
  margin-top: .6rem;
  font-size: .78rem;
  color: var(--cerneala-muted);
  letter-spacing: .01em;
}

/* 10a. Sprancene — dovada mare in stanga, text ingust in dreapta */
.svc-brows__grid { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); align-items: center; }
.svc-brows__main img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-img);
}
.svc-brows__side { display: grid; gap: 1.25rem; }
.svc-brows__side img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius-img);
}
@media (min-width: 900px) {
  .svc-brows__grid { grid-template-columns: .8fr 1fr .7fr; }
  .svc-brows__side img { aspect-ratio: 3 / 4; }
}

.svc-brows__ba { margin-top: clamp(1.75rem, 3.5vw, 3rem); }
.svc-brows__ba img {
  width: 100%;
  aspect-ratio: 9 / 8;
  object-fit: cover;
  border-radius: var(--radius-img);
}
.svc-brows__ba figcaption {
  margin-top: .65rem;
  font-size: .88rem;
  color: var(--cerneala-muted);
}
@media (min-width: 900px) {
  .svc-brows__ba img { aspect-ratio: 21 / 9; }
}

/* 10b. Machiaj — banda decalata de trei portrete, text deasupra */
.svc-makeup__head { max-width: 52ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-makeup__strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.75rem, 1.6vw, 1.25rem);
}
.svc-makeup__strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: var(--radius-img);
}
.svc-makeup__strip figure:nth-child(1) { grid-column: span 2; }
@media (min-width: 800px) {
  .svc-makeup__strip { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .svc-makeup__strip figure:nth-child(1) { grid-column: auto; }
  .svc-makeup__strip figure:nth-child(2) { margin-top: clamp(1.5rem, 4vw, 3.5rem); }
  .svc-makeup__strip figure:nth-child(3) { margin-top: clamp(3rem, 8vw, 7rem); }
}

/* 10c. Par / coafura — anunt "in curand", nu serviciu activ.
   Panou inchis la culoare, centrat, fara imagine: nu exista inca portofoliu
   de par, iar pozele de interior nu tin loc de lucrari. */
.svc-soon {
  background: var(--cerneala);
  color: var(--pe-inchis);
  border-radius: var(--radius-img);
  padding: clamp(2.25rem, 5.5vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}
.svc-soon__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0 0 1.1rem;
}
.svc-soon__label .eyebrow { margin: 0; }
.svc-soon .service__title { max-width: 20ch; margin-inline: auto; }
.svc-soon .service__body {
  color: var(--pe-inchis-muted);
  max-width: 46ch;
  margin-inline: auto;
}
.svc-soon .link-arrow { color: var(--terracota-clara); border-color: var(--terracota-arsa); }
.svc-soon .link-arrow:hover { border-color: var(--terracota-clara); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: .3rem .72rem;
  border: 1px solid var(--terracota-clara);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--terracota-clara);
}

/* atribuire discreta: cine lucreaza serviciul */
.byline {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--nud-hover);
  font-size: .88rem;
  color: var(--cerneala-muted);
}
.byline a {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-weight: 600;
  color: var(--terracota-arsa);
  text-decoration: none;
  border-bottom: 1px solid var(--terracota-clara);
  padding-bottom: .1rem;
  transition: border-color .25s var(--ease);
}
.byline a:hover { border-color: var(--terracota-arsa); }
.byline svg { flex: none; }

/* 10d. Manichiura — doua imagini decalate */
.svc-nails__grid { display: grid; gap: clamp(1.75rem, 4vw, 3.25rem); align-items: center; }
/* mobil: textul se citeste inainte de poze (flow-ul paginii); pe desktop
   pozele raman in stanga, in ordinea lor naturala din DOM */
.svc-nails__pair { order: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.75rem, 1.5vw, 1.15rem); }
.svc-nails__text { order: 1; }
.svc-nails__pair img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-img);
}
.svc-nails__pair figure:nth-child(2) { margin-top: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 900px) {
  .svc-nails__grid { grid-template-columns: 1fr .9fr; }
  .svc-nails__pair { order: 0; }
  .svc-nails__text { order: 0; }
}

.pull-quote {
  margin: 0;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 3px solid var(--terracota);
}
.pull-quote p { margin-bottom: .9rem; }
.pull-quote footer {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracota-arsa);
}

/* 10e. Pedichiura — imagine lata, text ingust dedesubt/lateral */
.svc-pedi {
  background: var(--nud-umbra);
  border-radius: var(--radius-img);
  overflow: hidden;
}
.svc-pedi__grid { display: grid; gap: 0; align-items: center; }
.svc-pedi__text { padding: clamp(2rem, 5vw, 3.5rem); }
.svc-pedi img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
@media (min-width: 900px) {
  .svc-pedi__grid { grid-template-columns: 1.1fr .9fr; }
  .svc-pedi__grid figure { order: 2; }
  .svc-pedi__text { order: 1; }
}

/* --------------------------------------------------------------------------
   11. GALERIE
   -------------------------------------------------------------------------- */
.gallery__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.6rem, 1.4vw, 1.1rem);
}
.gallery__grid figure { margin: 0; }
.gallery__grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: var(--radius-img);
}
.gallery__grid .g-tall { grid-row: span 2; }
.gallery__grid .g-tall img { aspect-ratio: 3 / 8; }
@media (min-width: 760px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid .g-wide { grid-column: span 2; }
  .gallery__grid .g-wide img { aspect-ratio: 3 / 2; object-position: 50% 45%; }
  /* portrete (fata sus in cadrul original) au nevoie de un crop mai sus decat
     shot-urile de interior, altfel formatul lat 3:2 taie fata si arata doar decolteul */
  .gallery__grid .g-trigger--face img { object-position: 50% 14%; }
}

.g-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius-img);
}
.g-trigger img { display: block; }
.g-trigger:focus-visible { outline: 2px solid var(--terracota-arsa); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   12. DESPRE
   -------------------------------------------------------------------------- */
.about { background: var(--nud-umbra); }
.about__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius-img);
}
/* Doar copiii directi si non-eticheta: altfel regula asta (mai specifica si mai
   jos in fisier) fura scara si culoarea de la .eyebrow si de la .h-quote. */
.about__text > p:not(.eyebrow) { font-size: clamp(1rem, 1.4vw, 1.1rem); color: var(--cerneala); }
.about__text .pull-quote { margin-top: 2.25rem; }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: .8fr 1.2fr; }
}

/* --------------------------------------------------------------------------
   13. CONTACT + HARTA
   -------------------------------------------------------------------------- */
.contact { background: var(--cerneala); color: var(--pe-inchis); }
.contact .lead { color: var(--pe-inchis-muted); }
.contact__grid { display: grid; gap: clamp(2.25rem, 5vw, 4rem); }

.tel-big {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  line-height: 1.05;
  color: var(--pe-inchis);
  text-decoration: none;
  margin-block: 1.25rem .35rem;
  transition: color .25s var(--ease);
}
.tel-big:hover { color: var(--terracota-clara); }

.contact__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.contact .btn--ghost { color: var(--pe-inchis); border-color: rgba(240, 228, 216, .45); }
.contact .btn--ghost:hover { background: var(--pe-inchis); color: var(--cerneala); border-color: var(--pe-inchis); }

.info-list { margin: 0; padding: 0; }
.info-list > div + div { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(240, 228, 216, .16); }
.info-list dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota-clara);
  margin-bottom: .5rem;
}
.info-list dd { margin: 0; font-size: .98rem; line-height: 1.6; }
.info-list dd a { color: inherit; }

.hours { margin: 0; width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .3rem 0; font-weight: 400; }
.hours td { text-align: right; }
.hours .is-closed { color: var(--pe-inchis-muted); }

.socials { display: flex; gap: 1.25rem; margin-top: .35rem; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .92rem;
  text-decoration: none;
  color: var(--pe-inchis);
  border-bottom: 1px solid rgba(240, 228, 216, .3);
  padding-bottom: .12rem;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.socials a:hover { color: var(--terracota-clara); border-color: var(--terracota-clara); }

@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
}

/* harta click-to-load */
.map-wrapper {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-img);
  overflow: hidden;
  background: rgba(240, 228, 216, .07);
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  min-height: 260px;
  padding: 2.5rem 1.5rem;
  border: 1px dashed rgba(240, 228, 216, .28);
  border-radius: var(--radius-img);
}
.map-placeholder p { margin: 0; font-size: 1rem; }
.map-placeholder .btn--ghost { color: var(--pe-inchis); border-color: rgba(240, 228, 216, .45); }
.map-frame { display: block; width: 100%; height: 380px; border: 0; }

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--cerneala);
  color: var(--pe-inchis-muted);
  border-top: 1px solid rgba(240, 228, 216, .14);
  padding-block: 2.25rem 2.5rem;
  font-size: .72rem;
  line-height: 1.9;
}
/* border-bottom (nu text-decoration) - link-urile din footer au aceeasi culoare ca
   textul din jur, deci au nevoie de un semn non-culoare ca sa fie recunoscute ca linkuri
   (WCAG 1.4.1) fara sa recurga la un underline standard de browser */
.site-footer a { color: var(--pe-inchis-muted); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.site-footer a:hover { color: var(--pe-inchis); }
.site-footer .sep { opacity: .45; margin-inline: .45rem; }

/* specificitate ridicata intentionat: .site-footer a de mai sus ar castiga altfel */
.site-footer a.credit { color: var(--terracota-clara); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.site-footer a.credit:hover { color: var(--terracota-clara); }

.anpc { display: flex; gap: .85rem; margin-top: 1.15rem; flex-wrap: wrap; }
.anpc img { height: 42px; width: auto; }

/* --------------------------------------------------------------------------
   15. BUTON WHATSAPP FLOTANT
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 22px rgba(43, 33, 28, .28);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* --------------------------------------------------------------------------
   16. PAGINI LEGALE
   -------------------------------------------------------------------------- */
.legal { padding-block: clamp(3rem, 7vw, 5.5rem); }
.legal h1 { margin-bottom: .75rem; }
.legal .updated { font-size: .84rem; color: var(--cerneala-muted); margin-bottom: 2.75rem; }
.legal h2 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 2.5rem 0 .75rem;
}
.legal p, .legal li { color: var(--cerneala-muted); font-size: .98rem; }
.legal ul { padding-left: 1.15rem; margin: 0 0 1em; }
.legal li { margin-bottom: .45rem; }
.legal strong { color: var(--cerneala); font-weight: 600; }
.legal a { color: var(--terracota-arsa); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .95rem;
}
.data-table th, .data-table td {
  text-align: left;
  padding: .7rem .9rem;
  border-bottom: 1px solid var(--nud-hover);
  vertical-align: top;
}
.data-table th {
  width: 40%;
  font-weight: 600;
  color: var(--cerneala);
  background: var(--nud-umbra);
}
.data-table td { color: var(--cerneala-muted); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--terracota-arsa);
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   16b. LIGHTBOX GALERIE
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(20 14 10 / .94);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }

.lightbox__figure { margin: 0; max-width: min(92vw, 1100px); max-height: 88vh; }
.lightbox__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-img);
}
.lightbox__figure figcaption {
  margin-top: .85rem;
  text-align: center;
  color: var(--pe-inchis-muted);
  font-size: .9rem;
}
.lightbox__figure figcaption:empty { display: none; }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(240, 228, 216, .3);
  background: rgb(43 33 28 / .6);
  color: var(--pe-inchis);
  cursor: pointer;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--cerneala); border-color: var(--terracota-clara); }
.lightbox__close:focus-visible, .lightbox__nav:focus-visible { outline: 2px solid var(--terracota-clara); outline-offset: 2px; }

.lightbox__close { top: clamp(.75rem, 3vw, 1.5rem); right: clamp(.75rem, 3vw, 1.5rem); }
.lightbox__nav--prev { left: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
  .lightbox__nav { width: 42px; height: 42px; }
}

/* --------------------------------------------------------------------------
   17. APARITIE LA SCROLL (CSS scroll-driven, zero JS)
   -------------------------------------------------------------------------- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: reveal-in linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 26%;
    }
    @keyframes reveal-in {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }
  }
}

/* --------------------------------------------------------------------------
   18. MISCARE REDUSA
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .wa-float::after { animation: none; display: none; }
  .shade-band__seg { transition: none; }
}
