/* ═══════════════════════════════════════════════════════════════
   ATELIER LUMINA — Fahrenheit-inspired minimalist portfolio
   Pure white + near-black · Manrope sans throughout · uppercase
   ─────────────────────────────────────────────────────────────── */

:root {
  /* ═══ VDI canonical palette (customizable per agency in admin) ═══ */
  --color-primary:       #0e0e0e;
  --color-accent:        #3d4a35;
  --color-accent-hover:  #4f5e44;
  --color-secondary:     #2a2a2a;
  --color-bg:            #ffffff;
  --color-bg-alt:        #f5f5f3;
  --color-text:          #0e0e0e;
  --color-text-light:    #8a8a8a;
  --color-border:        #e6e6e3;
  --color-success:       #10b981;
  --color-danger:        #ef4444;
  --color-whatsapp:      #25d366;
  --color-whatsapp-hover:#1da851;
  --color-cream-50:      #faf9f6;
  --color-cream-100:     #f4f2ec;
  --color-cream-200:     #ebeae3;

  /* RGB tokens for rgba() tints */
  --color-primary-rgb:   14, 14, 14;
  --color-accent-rgb:    61, 74, 53;
  --color-text-rgb:      14, 14, 14;

  /* ═══ Project-specific tokens (alias to canonical, păstrate pentru cod existent) ═══ */
  --color-bg-deep:       var(--color-primary);
  --color-bg-deep-olive: #1a1d17;
  --color-bg-cream:      #f6f5f1;
  --color-text-soft:     var(--color-secondary);
  --color-text-muted:    var(--color-text-light);
  --color-text-inverse:  #fafafa;
  --color-border-mid:    #c8c8c4;
  --color-olive:         var(--color-accent);
  --color-olive-soft:    var(--color-accent-hover);
  --color-olive-light:   #b5c0a4;
  --color-olive-deep:    #2c3527;

  /* ═══ VDI canonical fonts ═══ */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1480px;
  --gutter: clamp(20px, 3.4vw, 48px);
  --section-y: clamp(72px, 9vw, 120px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t-mid:  0.5s var(--ease);
}

/* ═══════════════════════════════
   BACK TO TOP — buton flotant dreapta-jos, apare dupa scroll
   ═══════════════════════════════ */
.back-to-top {
  position: fixed;
  right: clamp(16px, 2.4vw, 32px);
  bottom: clamp(72px, 8vw, 96px);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-olive);
  color: var(--color-bg);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease), background var(--t-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-olive-soft);
  transform: translateY(-2px);
}
@media print {
  .back-to-top { display: none !important; }
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* FOUC prevention pentru demo-render — ascunde body până când placeholderii sunt inlocuiți */
html.js body { opacity: 0; transition: opacity 0.15s ease-out; }
html.js.rendered body { opacity: 1; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: clip nu creeaza context de scroll → position: sticky pe header functioneaza.
     Fallback overflow-x: hidden pentru browsere fara suport clip. */
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--t-fast), color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }
em { font-style: normal; }
::selection { background: var(--color-text); color: var(--color-bg); }

/* CONTAINER */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ═══════════════════════════════
   HEADER
   ═══════════════════════════════ */
.site-header {
  background: var(--color-bg);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  /* Force hardware acceleration pe iOS pentru sticky stabil la scroll rapid */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}
.main-nav {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
}

/* Hamburger toggle — vizibil doar pe mobile */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right var(--t-mid);
}
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }

/* ═══════════════════════════════
   HERO SPLIT — foto stânga 50% + panel olive solid dreapta 50%
   ═══════════════════════════════ */
.hero.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(540px, 75vh, 720px);
  padding: 0;
  overflow: hidden;
  background: var(--color-bg-alt);
}

/* Foto stânga 50% */
.hero-split-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.hero-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Panel olive solid dreapta 50% */
.hero-split-panel {
  position: relative;
  background:
    radial-gradient(ellipse at top right,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(155deg,
      #5a6a4f 0%,
      var(--color-olive) 45%,
      var(--color-olive-deep) 100%
    );
  color: var(--color-text-inverse);
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  overflow: hidden;
}

/* Badge top — pill alb cu text dark */
.hero-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 22px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Title + Description bloc */
.hero-split-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-split-title {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--color-bg);
  margin: 0;
  max-width: 14ch;
}
.hero-split-desc {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 52ch;
}

/* Form jos — card alb elevated peste panou olive */
.hero-split-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
/* Tab switcher Vânzare/Închiriere (conform spec VDI sec 5) */
.hero-split-form .search-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.hero-split-form .search-tabs .tab {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-text-inverse);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.hero-split-form .search-tabs .tab:hover {
  background: rgba(255, 255, 255, 0.16);
}
.hero-split-form .search-tabs .tab.active {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-bg);
}
.hsf-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr 1.3fr auto;
  align-items: stretch;
  background: var(--color-bg);
  box-shadow:
    0 40px 80px -12px rgba(0, 0, 0, 0.55),
    0 18px 36px -8px rgba(0, 0, 0, 0.40),
    0 4px 10px -2px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  .hero-split-form .hsf-row { grid-template-columns: 1fr 1fr; }
  .hero-split-form .hsf-row .hsf-submit { grid-column: 1 / -1; }
  .hero-split-form .hsf-cell { border-right: 0; border-bottom: 1px solid var(--color-border); }
  .hero-split-form .hsf-cell:nth-child(odd) { border-right: 1px solid var(--color-border); }
}
@media (max-width: 960px) {
  .hsf-row { grid-template-columns: 1fr 1fr; }
  .hsf-row .hsf-submit { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .hsf-row { grid-template-columns: 1fr; }
}
/* Price range — doua inputuri side by side */
.hsf-cell-price .hsf-price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: center;
}
.hsf-cell-price input[type="number"] {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  width: 100%;
  min-width: 0;
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.hsf-cell-price input[type="number"]::-webkit-outer-spin-button,
.hsf-cell-price input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hsf-cell-price input[type="number"]::placeholder {
  color: var(--color-text-muted);
  font-weight: 400;
}
.hsf-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  border-right: 1px solid var(--color-border);
  cursor: pointer;
}
.hsf-cell:last-of-type { border-right: 0; }
.hsf-cell:hover { background: var(--color-bg-alt); }
.hsf-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hsf-cell select {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 0;
}
.hsf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background var(--t-fast);
}
.hsf-submit:hover { background: var(--color-olive); }
.hsf-submit i { font-size: 13px; }

/* Linii fine orizontale ca separator între blocurile din panel */
.hero-split-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

/* Text vertical brand pe marginea dreapta */
.hero-split-side-text {
  position: absolute;
  right: clamp(12px, 1.4vw, 22px);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* Bottom bar peste foto: search form + thumbs pe același rând */
.hero-bottom-bar {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  left: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  z-index: 3;
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  align-items: stretch;
}
.hero-bottom-bar .hss-form {
  flex: 1;
  min-width: 0;
}
.hero-overlay-thumbs {
  display: flex;
  gap: clamp(8px, 1vw, 14px);
  flex-shrink: 0;
}
.overlay-thumb {
  background: var(--color-bg);
  padding: 10px 10px 14px;
  width: clamp(130px, 13vw, 170px);
  transition: transform var(--t-mid);
}
.overlay-thumb:hover { transform: translateY(-2px); }
.overlay-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 8px;
}
.overlay-thumb span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
}

/* (Search strip vechi — păstrat pentru compatibilitate dacă mai apare în pagină) */
.hero-search-strip {
  position: relative;
  margin-top: clamp(20px, 3vw, 40px);
}
.hss-form {
  background: var(--color-bg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.hss-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 28px;
  border-right: 1px solid var(--color-border);
}
.hss-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hss-field select {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 0;
}
.hss-submit {
  padding: 0 40px;
  background: var(--color-text);
  color: var(--color-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background var(--t-fast);
}
.hss-submit:hover { background: var(--color-olive); }
.hss-submit i { font-size: 13px; }

/* ═══════════════════════════════
   LINK ARROW (Fahrenheit style)
   ═══════════════════════════════ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-text);
  min-width: 240px;
  transition: all var(--t-fast);
}
.link-arrow:hover { color: var(--color-text-muted); border-color: var(--color-text-muted); }
.link-arrow span { transition: transform var(--t-fast); }
.link-arrow:hover span { transform: translateX(6px); }

/* ═══════════════════════════════
   FH SECTION pattern
   ═══════════════════════════════ */
.fh-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  border-bottom: 1px solid var(--color-border);
}
.fh-section-head {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.fh-head-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.fh-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* ═══════════════════════════════
   ANSAMBLURI (header asimetric + grid 1 featured + 3 mici)
   ═══════════════════════════════ */
.signature-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--color-border);
}
.signature-head-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
}
.signature-intro {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border-mid);
  border-radius: 0;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.btn-pill-outline:hover {
  background: var(--color-olive);
  color: var(--color-bg);
  border-color: var(--color-olive);
}

/* Grid asimetric cu hover-swap: 1fr 2fr 1fr 1fr default */
.ansambluri-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: clamp(16px, 2vw, 32px);
  align-items: end;
  transition: grid-template-columns 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ansamblu-card a { display: block; }
.ansamblu-card figure {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: 16px;
  position: relative;
  transition: aspect-ratio 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: aspect-ratio;
}
.ansamblu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ansamblu-card a:hover img { transform: scale(1.04); }
.ansamblu-body h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--color-text);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ansamblu-card a:hover h3 { color: var(--color-text-muted); }
.ansamblu-loc {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Featured card default (2nd) — wider aspect */
.ansamblu-featured figure {
  aspect-ratio: 16/11;
}

/* HOVER SWAP: cardul peste care e mouse-ul devine wide, ceilalți small */
.ansambluri-grid:has(.ansamblu-card:nth-child(1):hover) {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.ansambluri-grid:has(.ansamblu-card:nth-child(3):hover) {
  grid-template-columns: 1fr 1fr 2fr 1fr;
}
.ansambluri-grid:has(.ansamblu-card:nth-child(4):hover) {
  grid-template-columns: 1fr 1fr 1fr 2fr;
}
/* Când vreun card e hovered, featured-ul implicit pierde aspectul lat */
.ansambluri-grid:has(.ansamblu-card:hover) .ansamblu-featured figure {
  aspect-ratio: 1/1;
}
/* Cardul hovered primește aspectul lat */
.ansamblu-card:hover figure {
  aspect-ratio: 16/11;
}

/* "Vezi detalii" overlay — ascuns implicit, vizibil pe featured / hovered */
.view-details-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Default fără hover: overlay vizibil pe featured */
.ansambluri-grid:not(:has(.ansamblu-card:hover)) .ansamblu-featured .view-details-btn {
  opacity: 1;
}
/* La hover: overlay vizibil pe cardul hovered */
.ansamblu-card:hover .view-details-btn {
  opacity: 1;
}
.ansamblu-card a:hover .view-details-btn {
  background: var(--color-olive);
  color: var(--color-bg);
}

/* ═══════════════════════════════
   DIN PORTOFOLIU — background olive gradient + cards paper-style
   ═══════════════════════════════ */
.fh-section-listings {
  background: linear-gradient(180deg,
              rgba(61, 74, 53, 0.05) 0%,
              rgba(61, 74, 53, 0.30) 45%,
              rgba(61, 74, 53, 0.55) 100%);
  position: relative;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(24px, 2.6vw, 40px);
}
.listing-card {
  position: relative;
  background: var(--color-bg);
  box-shadow: 0 4px 24px rgba(61, 74, 53, 0.10);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(61, 74, 53, 0.16);
}
.listing-link { display: block; }
.listing-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 0;
  background: var(--color-bg-alt);
}
.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.listing-link:hover .listing-image img { transform: scale(1.04); }

/* Badges top-left pe foto (Vânzare + Exclusivitate) */
.listing-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.listing-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-bg);
}
.listing-badge-sale {
  background: var(--color-text);
}
.listing-badge-exclusive {
  background: var(--color-olive);
}

/* Heart favorite top-right pe foto */
.listing-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  cursor: pointer;
  z-index: 3;
  transition: all var(--t-fast);
}
.listing-fav:hover,
.listing-fav.is-active {
  background: var(--color-olive);
  color: var(--color-bg);
  border-color: var(--color-olive);
}
.listing-fav i { font-size: 14px; }

.listing-info { display: block; padding: 22px clamp(20px, 1.8vw, 26px) 24px; }

/* Title + Price row — price olive accent, title bolder */
.listing-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}
.listing-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  line-height: 1.2;
  color: var(--color-text);
  flex: 1;
  min-width: 0;
  transition: color var(--t-fast);
}
.listing-link:hover .listing-title { color: var(--color-olive); }
.listing-price {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--color-olive);
  white-space: nowrap;
}

/* Location uppercase small caps cu separator border-bottom subtle */
.listing-loc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

/* Meta icons row cu dividers verticale între items */
.listing-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft);
}
.listing-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  position: relative;
}
.listing-meta span:first-child { padding-left: 0; }
.listing-meta span:last-child { padding-right: 0; }
.listing-meta span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--color-border);
}
.listing-meta i {
  font-size: 13px;
  color: var(--color-olive);
}

/* ═══════════════════════════════
   CREATOR (photo stânga + info dreapta, centrat vertical)
   ═══════════════════════════════ */
.fh-section-creator { padding-top: clamp(48px, 7vw, 96px); }
.creator-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--color-border);
}
.creator-feature-photo {
  overflow: hidden;
  background: var(--color-bg-alt);
}
.creator-feature-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.05);
}
.creator-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.creator-info h2 {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--color-text);
  margin: 0;
}
.creator-info p {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  max-width: 64ch;
  margin: 0;
}
.creator-info .link-arrow { align-self: flex-start; }

/* ─── Team strip (5 portrete cu overlay olive pe hover) ─── */
.team-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(4px, 0.6vw, 10px);
  margin-top: clamp(48px, 6vw, 80px);
}
.team-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.team-photo-link {
  display: block;
  width: 100%;
  height: 100%;
}
.team-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.96);
  transition: filter 0.6s var(--ease), transform 1.6s var(--ease);
}
.team-tile-photo:hover img {
  filter: grayscale(0.15) brightness(1);
  transform: scale(1.03);
}

/* Hover overlay olive cu info agent */
.team-hover-card {
  position: absolute;
  inset: 0;
  background: var(--color-olive);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(14px, 1.6vw, 24px);
  text-align: center;
  color: var(--color-text-inverse);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}
.team-tile-photo:hover .team-hover-card {
  opacity: 1;
  pointer-events: auto;
}
.team-card-name-link {
  display: inline-block;
  margin-bottom: 4px;
}
.team-hover-card h3 {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-text-inverse);
  line-height: 1.2;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.team-card-name-link:hover h3 {
  border-bottom-color: var(--color-text-inverse);
}
.team-hover-card .team-card-role {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(250, 250, 250, 0.6);
  line-height: 1.3;
  margin-bottom: 6px;
}
.team-hover-card .team-card-email,
.team-hover-card .team-card-phone {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(250, 250, 250, 0.9);
  word-break: break-all;
  line-height: 1.4;
  transition: opacity var(--t-fast);
}
.team-hover-card .team-card-email:hover,
.team-hover-card .team-card-phone:hover {
  opacity: 0.72;
}

/* ═══════════════════════════════
   FULL-WIDTH PHOTO — parallax (background-attachment fixed) + olive overlay
   ═══════════════════════════════ */
.full-photo {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 32vh, 360px);
  margin: 0;
  background-image: url('../mock-images/photo-1600210492486-724fe5c67fb0.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.full-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
              rgba(61, 74, 53, 0.30) 0%,
              rgba(61, 74, 53, 0.55) 100%);
  pointer-events: none;
}

/* Fallback mobile (background-attachment fixed nu funcționează bine pe iOS) */
@media (max-width: 720px) {
  .full-photo { background-attachment: scroll; }
}

/* ═══════════════════════════════
   CONTACT teaser
   ═══════════════════════════════ */
.fh-section-contact { padding-top: clamp(80px, 11vw, 140px); padding-bottom: clamp(80px, 11vw, 140px); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-grid h2 {
  font-family: var(--font-body);
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--color-text);
  max-width: 12ch;
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 12px;
}
.contact-right p {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  max-width: 56ch;
}

/* ═══════════════════════════════
   FAQ (header + accordion stânga, photo mare full-height dreapta)
   ═══════════════════════════════ */
.fh-section-faq { padding-top: 0; padding-bottom: 0; border-bottom: 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
  padding: var(--section-y) 0 0;
}
.faq-left {
  display: flex;
  flex-direction: column;
}
.faq-header {
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-text);
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}
.faq-item .faq-body {
  padding-top: 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--color-text-muted); }
.faq-icon {
  position: relative;
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-text);
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item summary:hover .faq-icon {
  border-color: var(--color-olive);
}
.faq-item[open] .faq-icon {
  background: var(--color-olive);
  border-color: var(--color-olive);
}
.faq-item[open] .faq-icon::before { background: var(--color-bg); }
.faq-item[open] .faq-icon::after {
  background: var(--color-bg);
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-body {
  padding: 0 0 22px;
}
.faq-body p {
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  max-width: 56ch;
}

.faq-right {
  align-self: stretch;
  display: flex;
}
.faq-feature-photo {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.faq-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(0.94);
}

/* Photo sub accordion (în coloana stânga, sub FAQ list) */
.faq-left-photo {
  margin-top: clamp(28px, 4vw, 56px);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.faq-left-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.94);
}

/* ═══════════════════════════════
   TESTIMONIALS — header dual + 3 cards Averra style
   ═══════════════════════════════ */

/* Header secțiune în stil site (uppercase + olive accent pe tagline) */
.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}
/* Mobile + tablet: stack pe 2 randuri */
@media (max-width: 880px) {
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }
  .th-right {
    align-items: flex-start;
    justify-self: stretch;
    max-width: none;
  }
  .th-intro { text-align: left; }
}
.th-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.th-title {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.2;
}
.th-tagline {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-olive);
  line-height: 1.2;
}
.th-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  justify-self: end;
  max-width: 380px;
}
.th-intro {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: right;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
}

.testimonial-card {
  background: var(--color-bg);
  padding: clamp(28px, 2.8vw, 40px);
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(14, 14, 14, 0.05);
  display: flex;
  flex-direction: column;
  min-height: clamp(360px, 42vh, 480px);
}

.t-quote-icon {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: var(--color-olive);
  opacity: 0.55;
  margin-bottom: 22px;
}
.t-quote-icon i { font-size: 20px; }

.t-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--color-text-soft);
  margin-bottom: 28px;
  flex: 1;
}

.t-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 0;
  border-top: 0;
}
.t-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(0.1);
}
.t-meta-text { display: flex; flex-direction: column; }
.t-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}
.t-role {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* FEATURED card — DOAR imagine + gradient olive jos pe ea (square corners) */
.testimonial-featured {
  background: var(--color-text);
  color: var(--color-text-inverse);
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-height: 100%;
  box-shadow: 0 6px 28px rgba(61, 74, 53, 0.22);
}
.t-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
}
.t-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Featured bottom: gradient overlay olive + pull-quote impact */
.t-featured-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
              rgba(61, 74, 53, 0) 0%,
              rgba(61, 74, 53, 0.55) 35%,
              var(--color-olive) 90%);
  padding: 120px 26px 26px;
}
.t-featured-quote {
  color: var(--color-text-inverse);
  margin: 0;
}
.t-featured-quote p {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--color-text-inverse);
  margin: 0 0 14px;
}
.t-featured-quote p em {
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 250, 250, 0.88);
}
.t-featured-quote cite {
  font-style: normal;
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
}
.t-featured-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.testimonial-featured .t-name {
  color: var(--color-text-inverse);
  font-size: 13px;
  font-weight: 700;
}
.testimonial-featured .t-role {
  color: rgba(250, 250, 250, 0.72);
}
.t-social {
  display: flex;
  gap: 8px;
}
.t-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-bg);
  color: var(--color-olive);
  font-size: 13px;
  border-radius: 0;
  transition: all var(--t-fast);
}
.t-social a:hover {
  background: var(--color-text);
  color: var(--color-text-inverse);
}

/* ═══════════════════════════════
   BLOG MAGAZINE (lead mare stânga + grid 2×2 dreapta)
   ═══════════════════════════════ */
.blog-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

/* LEAD — imagine mai joasă (16/10 landscape în loc de 4/5 portrait) */
.blog-lead a { display: block; }
.blog-lead figure {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--color-bg-alt);
}

.blog-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 1.6s var(--ease);
}
.blog-lead a:hover img { transform: scale(1.03); }
.blog-lead-body { padding: 0; flex-shrink: 0; }
.blog-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.blog-lead h3 {
  font-family: var(--font-body);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
  color: var(--color-text);
  margin-bottom: 16px;
  transition: color var(--t-fast);
}
.blog-lead a:hover h3 { color: var(--color-text-muted); }
.blog-lead p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-text-soft);
  margin-bottom: 26px;
  max-width: 56ch;
}
.blog-lead-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 38px!important;
  height: 38px!important;
  border-radius: 0;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
}
.author-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.author-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
}
.author-date {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.blog-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.blog-social {
  display: flex;
  gap: 14px;
}
.blog-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--color-text-muted);
  font-size: 13px;
  transition: color var(--t-fast);
}
.blog-social a:hover { color: var(--color-text); }

/* SIDE 2×2 cu rânduri egale + height 100% ca să match-uiască lead-ul */
.blog-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  align-content: stretch;
  height: 100%;
}
.blog-small {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.blog-small > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.blog-small figure {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--color-bg-alt);
}
.blog-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 1.6s var(--ease);
}
.blog-small a:hover img { transform: scale(1.03); }
.blog-small h4 {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
  color: var(--color-text);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}
.blog-small a:hover h4 { color: var(--color-text-muted); }
.blog-small .author-name {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}


/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.site-footer {
  background: var(--color-bg);
  padding: clamp(72px, 9vw, 110px) 0 24px;
  border-top: 1px solid var(--color-border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2.4fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.footer-logo {
  font-family: var(--font-body);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding-top: 16px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--color-text); }

.footer-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 28px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer-contact-label {
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.2em;
  margin-right: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer-bottom a { color: var(--color-text-muted); }
.footer-bottom a:hover { color: var(--color-text); }
.footer-credit {
  font-weight: 600;
  color: var(--color-text);
}

/* ═══════════════════════════════
   PROCESS — staggered layout olive bg (imagine alternantă + număr center + text)
   ═══════════════════════════════ */
.process-section {
  background: var(--color-olive-deep);
  color: var(--color-text-inverse);
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative bars staircase — frosted glass vertical bars (top-right corner) */
.process-deco-bars {
  position: absolute;
  top: 0;
  right: clamp(20px, 3vw, 50px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  z-index: 1;
  pointer-events: none;
}
.process-deco-bars .deco-bar {
  width: 20px;
  background: rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.process-deco-bars .deco-bar:nth-child(1) { height: 130px; }
.process-deco-bars .deco-bar:nth-child(2) { height: 170px; }
.process-deco-bars .deco-bar:nth-child(3) { height: 215px; }
.process-deco-bars .deco-bar:nth-child(4) { height: 265px; }
.process-deco-bars .deco-bar:nth-child(5) { height: 320px; }
.process-deco-bars .deco-bar:nth-child(6) { height: 380px; }

/* Decorative bars — bottom-left (mirror, urcă din jos) */
.process-deco-bars-bottom {
  top: auto;
  bottom: 0;
  right: auto;
  left: clamp(20px, 3vw, 50px);
  flex-direction: row-reverse;
  align-items: flex-end;
}
.process-deco-bars-bottom .deco-bar {
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.process-section .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .deco-bar-hide-mobile { display: none; }
  .process-deco-bars { transform: scale(0.9); gap: 8px; }
}
.process-section-head {
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 64px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.process-section-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--color-bg);
  margin: 0 0 18px;
}
.process-section-sub {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
  margin: 0;
}

/* Staggered container cu linie verticală centrală */
.process-staggered {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 32px);
  position: relative;
}
.process-staggered::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: clamp(110px, 11vw, 160px);
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
  z-index: 0;
}

.process-row {
  display: grid;
  grid-template-columns: 1.05fr 130px 1fr;
  gap: clamp(20px, 2.8vw, 40px);
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Reverse: text stânga | număr mijloc | imagine dreapta */
.process-row-reverse .process-content { order: 1; }
.process-row-reverse .process-center { order: 2; transform: translateX(-50px); }
.process-row-reverse .process-image { order: 3; }

.process-image {
  margin: 0 -clamp(30px, 5vw, 70px) 0 0;
  background: var(--color-bg);
  padding: 10px;
  overflow: visible;
  box-shadow: 0 14px 36px rgba(14, 14, 14, 0.25);
  z-index: 2;
  position: relative;
}
.process-row-reverse .process-image {
  margin: 0 0 0 -clamp(30px, 5vw, 70px);
  transform: translateX(-80px);
}

/* Row 1 (Ascultăm) și Row 3 (Vizităm): margin-right -50px + translate up */
.process-row:nth-child(1) .process-image,
.process-row:nth-child(3) .process-image {
  margin-right: -50px;
  transform: translateY(-40px);
}

.process-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.process-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.process-num {
  font-family: var(--font-body);
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-bg);
  line-height: 1;
}
.process-num-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.6);
  line-height: 1.4;
}

.process-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.process-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-bg);
  margin: 0;
}
.process-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
  margin: 0;
  max-width: 44ch;
}
.process-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-bg);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-bg);
  min-width: 220px;
  transition: all var(--t-fast);
}
.process-link span { transition: transform var(--t-fast); }
.process-link:hover {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.7);
}
.process-link:hover span { transform: translateX(6px); }

/* ═══════════════════════════════
   MARQUEE separator — orașe scroll horizontal
   ═══════════════════════════════ */
.separator-marquee {
  background: var(--color-text);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee-scroll 38s linear infinite;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-olive-soft);
}
.marquee-track span { padding-right: 60px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   STATS SECTION — Averra style (title + desc + photo + stats list + CTA olive)
   ═══════════════════════════════ */
.stats-section {
  background: var(--color-bg);
  padding: clamp(70px, 9vw, 130px) 0;
}

.stats-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.stats-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}
.stats-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-olive);
  text-transform: uppercase;
}
.stats-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 58ch;
}

.stats-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.stats-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
}
.stats-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}

.stats-list {
  display: flex;
  flex-direction: column;
  position: relative;
}
.stat-row {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-bottom: 1px solid var(--color-border);
}
.stat-row:first-child { padding-top: 0; }
.stat-row:last-child { border-bottom: 0; }

.stats-list .stat-num {
  font-family: var(--font-body);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-text);
  display: inline-flex;
  align-items: baseline;
  margin: 0;
}
.stat-pct {
  font-size: 0.5em;
  font-weight: 600;
  margin-left: 4px;
  color: var(--color-olive);
}

.stats-list .stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* CTA olive square bottom-right */
.stats-cta {
  position: absolute;
  bottom: -clamp(28px, 4vw, 56px);
  right: 0;
  width: clamp(64px, 5.5vw, 84px);
  height: clamp(64px, 5.5vw, 84px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-olive);
  color: var(--color-bg);
  border-radius: 0;
  font-size: 18px;
  transition: all var(--t-mid);
  box-shadow: 0 8px 24px rgba(61, 74, 53, 0.25);
}
.stats-cta:hover {
  background: var(--color-text);
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(61, 74, 53, 0.35);
}
.stats-cta i { font-size: 18px; }

/* ═══════════════════════════════
   PUZZLE separator — imagine mare + card olive offset + foto detaliu (compoziție wow)
   ═══════════════════════════════ */
.puzzle-separator {
  padding: clamp(90px, 11vw, 160px) 0 clamp(110px, 14vw, 200px);
}
.puzzle-wrap {
  position: relative;
}

/* Imagine mare landscape — baza puzzle-ului */
.puzzle-main {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--color-bg-alt);
  position: relative;
}
.puzzle-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 2s var(--ease);
}
.puzzle-main:hover img { transform: scale(1.03); }

/* Card olive overlapping bottom-left — piesa de puzzle cu text */
.puzzle-card {
  position: absolute;
  bottom: -clamp(40px, 6vw, 80px);
  left: clamp(20px, 4vw, 60px);
  width: clamp(280px, 34vw, 440px);
  background: var(--color-olive);
  color: var(--color-text-inverse);
  padding: clamp(28px, 3.2vw, 44px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(61, 74, 53, 0.32);
}
.puzzle-quote {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--color-bg);
}
.puzzle-quote em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-bg-alt);
  opacity: 0.88;
}
.puzzle-divider {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--color-bg);
  margin: 0 0 18px;
  opacity: 0.5;
}
.puzzle-sub {
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(250, 250, 250, 0.82);
  margin: 0;
}

/* Foto detaliu top-right overlapping — al treilea element */
.puzzle-detail {
  position: absolute;
  top: -clamp(28px, 4vw, 56px);
  right: clamp(30px, 5vw, 80px);
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
  z-index: 2;
  margin: 0;
  box-shadow: 0 14px 44px rgba(14, 14, 14, 0.22);
}
.puzzle-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 2s var(--ease);
}
.puzzle-detail:hover img { transform: scale(1.05); }

/* ═══════════════════════════════
   SCROLL REVEAL — fade up când elementul intră în viewport
   ═══════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up:nth-child(2) { transition-delay: 0.12s; }
.reveal-up:nth-child(3) { transition-delay: 0.24s; }
.reveal-up:nth-child(4) { transition-delay: 0.36s; }

/* Variante reveal pentru diversitate elegantă */
.reveal-fade {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade.is-visible { opacity: 1; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.reveal-blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(20px);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* Stagger children — copiii apar unul după altul, mai blând */
.stagger-children > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(1)  { transition-delay: 0s; }
.stagger-children.is-visible > *:nth-child(2)  { transition-delay: 0.12s; }
.stagger-children.is-visible > *:nth-child(3)  { transition-delay: 0.24s; }
.stagger-children.is-visible > *:nth-child(4)  { transition-delay: 0.36s; }
.stagger-children.is-visible > *:nth-child(5)  { transition-delay: 0.48s; }
.stagger-children.is-visible > *:nth-child(6)  { transition-delay: 0.60s; }
.stagger-children.is-visible > *:nth-child(7)  { transition-delay: 0.72s; }
.stagger-children.is-visible > *:nth-child(8)  { transition-delay: 0.84s; }
.stagger-children.is-visible > *:nth-child(9)  { transition-delay: 0.96s; }
.stagger-children.is-visible > *:nth-child(10) { transition-delay: 1.08s; }

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-fade, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur,
  .stagger-children > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .marquee-track { animation: none; }
}

/* ═══════════════════════════════
   PAGINATION BAR + BOTTOM TEASER
   ═══════════════════════════════ */
.pagination-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
  background: var(--color-bg);
}
.pagination-bar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.pag-home { justify-self: start; }
.pag-next { justify-self: center; }
.pag-index { justify-self: end; }
.pagination-bar a,
.pagination-bar span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
}
.pag-next:hover { color: var(--color-text-muted); }

.bottom-teaser {
  overflow: hidden;
}
.bottom-teaser img {
  width: 100%;
  height: clamp(320px, 45vh, 520px);
  object-fit: cover;
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1100px) {
  .hero-caption { grid-template-columns: 1fr; gap: 24px; }
  .hero-caption-right { align-items: flex-start; }
  .hss-form { grid-template-columns: 1fr 1fr; }
  .hss-field:nth-child(2) { border-right: 0; }
  .hss-submit { grid-column: span 2; padding: 18px; }
  .ansambluri-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .ansamblu-featured { grid-column: span 2; }
  .ansamblu-featured figure { aspect-ratio: 16/9; }
  .signature-head { align-items: flex-start; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .creator-photos { grid-template-columns: 1fr 1fr; }
  .creator-info { grid-template-columns: 1fr; gap: 24px; }
  .team-strip { grid-template-columns: repeat(3, 1fr); }
  .blog-magazine { grid-template-columns: 1fr; gap: 48px; }
  .creator-info h2 { grid-column: 1; grid-row: auto; }
  .creator-info p, .creator-info .link-arrow { grid-column: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; padding: clamp(60px, 8vw, 96px) 0; }
  .faq-feature-photo img { min-height: 320px; aspect-ratio: 4/3; height: auto; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-featured { order: -1; }
  .stats-header { grid-template-columns: 1fr; gap: 24px; }
  .stats-body { grid-template-columns: 1fr; gap: 32px; }
  .stats-cta { position: relative; bottom: auto; right: auto; align-self: flex-end; margin-top: 24px; }
  .separator-pull-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .blog-rows li a { grid-template-columns: 1fr 3fr auto; }
  .blog-rows .row-date { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .header-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: 12px; padding-top: 16px; padding-bottom: 16px; position: relative; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a {
    padding: 14px clamp(20px, 4vw, 32px);
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .main-nav a.active { color: var(--color-olive); }
  .hero-photo { height: clamp(560px, 90vh, 720px); }
  .hero-overlay { bottom: clamp(200px, 28vh, 280px); }
  .hero-bottom-bar { position: static; flex-direction: column; padding: 16px clamp(20px, 4vw, 32px) 0; }
  .hero-overlay-thumbs { display: none; }
  .hero-search-strip { position: static; bottom: auto; margin-top: -1px; }
  .hss-form { grid-template-columns: 1fr; }
  .hss-field { border-right: 0; border-bottom: 1px solid var(--color-border); }
  .hss-field:last-of-type { border-bottom: 0; }
  .hss-submit { grid-column: auto; }
  .ansambluri-grid { grid-template-columns: 1fr; align-items: stretch; }
  .ansamblu-featured { grid-column: span 1; }
  .ansamblu-card figure, .ansamblu-featured figure { aspect-ratio: 4/3; }
  .hero-display { font-size: clamp(40px, 11vw, 64px); }
  .creator-photos { grid-template-columns: 1fr; gap: 16px; }
  .creator-row { grid-template-columns: 1fr; gap: 28px; padding-top: clamp(20px, 5vw, 32px); }
  .fh-section-contact { padding-top: clamp(40px, 8vw, 64px); }
  .testimonial-card { min-height: 0; padding: clamp(20px, 5vw, 28px); }
  .testimonial-card .t-text { margin-bottom: 18px; flex: 0 0 auto; }
  .testimonial-card.testimonial-featured { padding: 0; aspect-ratio: 4/5; min-height: 320px; }
  .t-featured-bottom { padding: 60px 20px 22px; }
  .t-featured-quote p { font-size: clamp(18px, 5vw, 22px); margin-bottom: 10px; }
  .t-featured-quote cite { font-size: 10px; }

  /* Team strip — afișeaza doar 4 portrete pe mobil (2x2), ascunde tile-urile peste 4 */
  .team-strip { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .team-tile:nth-child(n+5) { display: none; }

  /* Hero split — stack vertical pe mobil (foto sus, panel jos) */
  .hero.hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-photo { aspect-ratio: 4/3; }
  .hero-split-photo img { height: 100%; }
  .hero-split-panel {
    padding: clamp(28px, 6vw, 40px) clamp(20px, 5vw, 32px);
    gap: clamp(18px, 4vw, 28px);
  }
  .hero-split-title { font-size: clamp(26px, 7vw, 36px); max-width: none; }
  .hero-split-desc { font-size: 14px; }
  .hero-split-side-text { display: none; }
  /* Search bar hero pe mobil — fields stack vertical */
  .hsf-row { grid-template-columns: 1fr; box-shadow: 0 16px 36px -8px rgba(0,0,0,0.45), 0 6px 12px -2px rgba(0,0,0,0.28); }
  .hsf-cell { border-right: 0; border-bottom: 1px solid var(--color-border); padding: 14px 18px; }
  .hsf-cell:last-of-type { border-bottom: 0; }
  .hsf-submit { padding: 16px 24px; }

  /* Process section — stack vertical (foto sus, număr+text jos), fără transforms decorative */
  .process-row,
  .process-row.process-row-reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .process-image,
  .process-row-reverse .process-image,
  .process-row:nth-child(1) .process-image,
  .process-row:nth-child(3) .process-image {
    margin: 0;
    transform: none;
    order: 0;
  }
  .process-image img { aspect-ratio: 4/3; }
  .process-center,
  .process-row-reverse .process-center {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    transform: none;
    order: 1;
    padding: 4px 0;
  }
  .process-content,
  .process-row-reverse .process-content {
    order: 2;
    text-align: left;
  }
  .process-staggered::before { display: none; }
  .blog-side { grid-template-columns: 1fr; }
  .blog-lead-footer { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 8px; }
  /* Force 1 col pe mobil chiar daca JS-ul de view-toggle seteaza inline grid-template-columns */
  .listings-grid { grid-template-columns: 1fr !important; }
  .blog-rows li a { grid-template-columns: 1fr auto; }
  .blog-rows .row-cat { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS (generic — reutilizabil pe orice pagină)
   ═══════════════════════════════════════════════════════════ */
.breadcrumbs {
  margin-bottom: clamp(16px, 1.8vw, 24px);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: var(--color-border-mid);
  font-weight: 400;
}
.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.breadcrumbs a:hover { color: var(--color-olive); }
.breadcrumbs [aria-current="page"] { color: var(--color-text); }

/* ═══════════════════════════════════════════════════════════
   ANIMATII MODERNE 2026
   ═══════════════════════════════════════════════════════════ */

/* 1. View Transitions API — cross-fade smooth între pagini */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Scroll-driven zoom — imaginea se mărește subtle pe scroll */
@supports (animation-timeline: view()) {
  @keyframes scrollZoom {
    from { transform: scale(0.96); }
    to   { transform: scale(1.06); }
  }
  .scroll-zoom {
    animation: scrollZoom linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
    will-change: transform;
  }
}

/* 3. Split-text reveal — fiecare cuvânt apare cu stagger */
.split-text {
  overflow: hidden;
}
.split-text .st-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-text.is-revealed .st-word {
  opacity: 1;
  transform: translateY(0);
}

/* 4. Magnetic buttons — pregătire pentru cursor follow */
.magnetic {
  display: inline-flex;
  will-change: transform;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-zoom { animation: none; }
  .split-text .st-word { opacity: 1; transform: none; transition: none; }
  .magnetic { transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   MERGED FROM property-detail.css
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   PROPERTY DETAIL — galerie + sidebar + overview + descriere + locație
   ═══════════════════════════════════════════════════════════ */

.pd-hero {
  padding-top: clamp(14px, 1.8vw, 22px);
  padding-bottom: 0;
}

/* ─── HEADER: breadcrumbs + label + titlu + locație + ID ─── */
.pd-header {
  position: relative;
  margin-bottom: clamp(14px, 1.6vw, 20px);
  border-bottom: 0;
  color: var(--color-bg);
  background:
    linear-gradient(135deg, rgba(61, 74, 53, 0.72) 0%, rgba(61, 74, 53, 0.88) 100%),
    url('../mock-images/photo-1613490493576-7fde63acd811.webp') center / cover no-repeat;
  overflow: hidden;
}
.pd-header > .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
  padding-top: clamp(28px, 3.5vw, 56px);
  padding-bottom: clamp(28px, 3.5vw, 56px);
}
.pd-header > .process-deco-bars {
  z-index: 1;
  gap: 6px;
}
.pd-header > .process-deco-bars .deco-bar {
  width: 12px;
}
.pd-header > .process-deco-bars .deco-bar:nth-child(1) { height: 40px; }
.pd-header > .process-deco-bars .deco-bar:nth-child(2) { height: 55px; }
.pd-header > .process-deco-bars .deco-bar:nth-child(3) { height: 72px; }
.pd-header > .process-deco-bars .deco-bar:nth-child(4) { height: 92px; }
.pd-header > .process-deco-bars .deco-bar:nth-child(5) { height: 115px; }
.pd-header > .process-deco-bars .deco-bar:nth-child(6) { height: 140px; }
.pd-header .breadcrumbs { margin-bottom: 0; }
.pd-header .breadcrumbs li { color: rgba(255, 255, 255, 0.7); }
.pd-header .breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.pd-header .breadcrumbs a:hover { color: var(--color-bg); }
.pd-header .breadcrumbs [aria-current="page"] { color: var(--color-bg); }
.pd-header .breadcrumbs li:not(:last-child)::after { color: rgba(255, 255, 255, 0.4); }

.pd-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.pd-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.pd-title {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--color-bg);
  margin: 0;
  max-width: 22ch;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.pd-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  letter-spacing: 0.04em;
}
.pd-loc i { color: var(--color-bg); font-size: 12px; }

.pd-header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-bottom: 4px;
}
.pd-header-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.pd-header-meta-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-bg);
  letter-spacing: -0.005em;
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  align-items: start;
}

/* ─── GALLERY (left) ─── */
.pd-gallery { display: flex; flex-direction: column; gap: 12px; }

.pd-gallery-main {
  position: relative;
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-alt);
  width: 100%;
  /* Limita absoluta verticala pentru a preveni gallery-ul gigantic */
  max-height: 70vh;
}
.pd-gallery-badges {
  top: clamp(16px, 1.8vw, 24px);
  left: clamp(16px, 1.8vw, 24px);
}
.pd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-gallery-overlay {
  position: absolute;
  left: clamp(16px, 1.8vw, 24px);
  top: clamp(16px, 1.8vw, 24px);
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 20px;
  max-width: 60%;
}
.pd-gallery-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--color-text);
  line-height: 1.2;
}
.pd-gallery-loc {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-gallery-loc i { color: var(--color-olive); font-size: 11px; }

.pd-gallery-badge {
  position: absolute;
  top: clamp(16px, 1.8vw, 24px);
  right: clamp(16px, 1.8vw, 24px);
  z-index: 2;
  padding: 8px 14px;
  background: var(--color-olive);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pd-gallery-counter {
  position: absolute;
  bottom: clamp(16px, 1.8vw, 24px);
  left: clamp(16px, 1.8vw, 24px);
  z-index: 2;
  padding: 6px 12px;
  background: rgba(14, 14, 14, 0.6);
  color: var(--color-bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.pd-gallery-actions {
  position: absolute;
  bottom: clamp(16px, 1.8vw, 24px);
  right: clamp(16px, 1.8vw, 24px);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.pd-gallery-actions button {
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.pd-gallery-actions button:hover {
  background: var(--color-olive);
  color: var(--color-bg);
}
.pd-gallery-actions button.is-active {
  background: var(--color-olive);
  color: var(--color-bg);
}
.pd-gallery-actions button.is-copied {
  background: var(--color-text);
  color: var(--color-bg);
}
.pd-gallery-actions button.is-copied::after {
  content: 'Copiat!';
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-text);
  color: var(--color-bg);
  white-space: nowrap;
}
.pd-gallery-actions button { position: relative; }
.pd-gallery-actions button i { font-size: 14px; }

/* Fancybox 5 — overrides în paleta site-ului */
.fancybox__container {
  --fancybox-bg: rgba(14, 14, 14, 0.92);
  --fancybox-color: var(--color-bg);
  --fancybox-accent-color: var(--color-accent);
  --f-button-color: var(--color-bg);
  --f-button-hover-color: var(--color-accent);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(255, 255, 255, 0.08);
}
.fancybox__caption {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bg);
}
.fancybox__counter {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
}

@media print {
  .site-header, .pd-sidebar, .pd-gallery-actions, .pd-gallery-counter,
  .pd-section:has(.pd-media-grid), .pd-section:has(.pd-map),
  .site-footer, .pd-dialog, .pd-lightbox {
    display: none !important;
  }
  .pd-hero-grid { grid-template-columns: 1fr; }
}

/* Swiper main — fill the figure */
.pd-swiper-main {
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.pd-swiper-main .swiper-wrapper {
  max-width: 100%;
}
/* Force slide width = container width, oricand. Suprascrie inline style Swiper
   care uneori pune width: 3.35e+07px daca init pe container 0×0. */
.pd-swiper-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  width: 100% !important;
  flex-shrink: 0;
}
.pd-swiper-main .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}
.pd-swiper-main .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Swiper navigation — olive accents */
.pd-swiper-main .swiper-button-prev,
.pd-swiper-main .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-text);
  margin-top: -22px;
  transition: background var(--t-fast), color var(--t-fast);
}
.pd-swiper-main .swiper-button-prev:hover,
.pd-swiper-main .swiper-button-next:hover {
  background: var(--color-olive);
  color: var(--color-bg);
}
.pd-swiper-main .swiper-button-prev::after,
.pd-swiper-main .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

/* Thumb strip — Swiper version */
.pd-swiper-thumbs {
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.pd-swiper-thumbs .swiper-wrapper { max-width: 100%; }
.pd-swiper-thumbs .swiper-slide {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-alt);
  outline: 2px solid transparent;
  outline-offset: 0;
  transition: outline-color var(--t-fast);
  /* Force thumb width pe mobile (3 cols) si desktop (4 cols) — suprascrie
     inline style Swiper care uneori e 1.1e+07px din bug-ul de init. */
  width: calc((100% - 24px) / 3) !important;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .pd-swiper-thumbs .swiper-slide {
    width: calc((100% - 36px) / 4) !important;
  }
}
.pd-swiper-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pd-swiper-thumbs .swiper-slide:hover img { transform: scale(1.05); }
.pd-swiper-thumbs .swiper-slide-thumb-active {
  outline-color: var(--color-olive);
}

/* ─── SIDEBAR (right) ─── */
.pd-sidebar {
  position: sticky;
  top: clamp(80px, 9vw, 110px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-price-card,
.pd-help-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: clamp(20px, 2vw, 28px);
}

/* Price card */
.pd-price-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.pd-price-value {
  font-family: var(--font-body);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.pd-price-est {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-olive);
}
.pd-price-est i { font-size: 12px; }

.pd-price-meta {
  list-style: none;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Agent block — photo + info, înlocuiește icon-ul mic */
.pd-agent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.pd-agent-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.pd-agent-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.pd-agent-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.pd-agent-name {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.pd-agent-title {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.pd-price-meta li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 12px;
  color: var(--color-text-soft);
}
.pd-price-meta li > i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-olive);
  font-size: 13px;
  flex-shrink: 0;
}
.pd-price-meta li > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; max-width: 100%; }
.pd-price-meta li strong {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pd-price-meta li span {
  font-size: 13px;
  color: var(--color-text-muted);
  word-break: break-word;
  line-height: 1.35;
}
.pd-price-meta li a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
  word-break: break-word;
}
.pd-price-meta li a:hover { color: var(--color-olive); }

.pd-price-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast);
}
.pd-btn-primary {
  background: var(--color-olive);
  color: var(--color-bg);
}
.pd-btn-primary:hover { background: var(--color-text); }
.pd-btn-secondary {
  background: var(--color-text);
  color: var(--color-bg);
}
.pd-btn-secondary:hover { background: var(--color-olive); }
.pd-btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-mid);
}
.pd-btn-outline:hover {
  background: var(--color-olive);
  color: var(--color-bg);
  border-color: var(--color-olive);
}

.pd-price-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.pd-price-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pd-price-trust i { color: var(--color-olive); font-size: 11px; }

/* Help card — gradient olive ca pe hero-ul de pe acasa */
.pd-help-card {
  position: relative;
  background:
    radial-gradient(ellipse at top right,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(155deg,
      #5a6a4f 0%,
      var(--color-olive) 45%,
      var(--color-olive-deep) 100%
    );
  border: 0;
  overflow: hidden;
  color: var(--color-bg);
}
.pd-help-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-bg);
  letter-spacing: -0.005em;
}
.pd-help-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}
.pd-help-card .pd-btn { width: 100%; }
.pd-help-card .pd-btn-outline {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-bg);
}
.pd-help-card .pd-btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}
/* Deco-bars scalate pentru a încăpea în card (top-right, descind din sus) */
.pd-help-card .process-deco-bars {
  top: 12px;
  right: 12px;
  bottom: auto;
  left: auto;
  gap: 6px;
  z-index: 1;
}
.pd-help-card .process-deco-bars .deco-bar {
  width: 10px;
  background: rgba(255, 255, 255, 0.18);
}
.pd-help-card .process-deco-bars .deco-bar:nth-child(1) { height: 22px; }
.pd-help-card .process-deco-bars .deco-bar:nth-child(2) { height: 32px; }
.pd-help-card .process-deco-bars .deco-bar:nth-child(3) { height: 44px; }
.pd-help-card .process-deco-bars .deco-bar:nth-child(4) { height: 56px; }
.pd-help-card .process-deco-bars .deco-bar:nth-child(5) { height: 70px; }
.pd-help-card .process-deco-bars .deco-bar:nth-child(6) { height: 86px; }
.pd-help-card > *:not(.process-deco-bars) { position: relative; z-index: 2; }

/* ─── CARD GENERIC (overview, description, location) ─── */
.pd-section {
  padding-top: clamp(24px, 2.5vw, 36px);
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

/* Section modifier — fundal olive pentru rupere vizuală */
.pd-section--olive {
  background: var(--color-olive);
  padding-top: clamp(40px, 4.5vw, 64px);
  padding-bottom: clamp(40px, 4.5vw, 64px);
}

/* Section modifier — gradient inversat: cream sus → olive jos */
.pd-section--pattern {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-bg) 0%,
    #7e8a72 55%,
    var(--color-olive) 100%
  );
  padding-top: 0;
  padding-bottom: clamp(24px, 2.5vw, 36px);
  overflow: hidden;
}
.pd-section--pattern > .container { position: relative; z-index: 2; }
.pd-section--pattern .process-deco-bars {
  top: auto;
  bottom: 0;
  left: auto;
  right: clamp(20px, 3vw, 50px);
  align-items: flex-end;
}

/* Section modifier flip — gradient sage sus (continuă din Descriere) → cream jos */
.pd-section--pattern-flip {
  position: relative;
  background: linear-gradient(
    to bottom,
    #b5c0a4 0%,
    #d8e0cc 55%,
    var(--color-bg) 100%
  );
  padding-top: 0;
  padding-bottom: clamp(24px, 2.5vw, 36px);
  overflow: hidden;
}
.pd-section--pattern-flip > .container { position: relative; z-index: 2; }

/* Decorative bars în interiorul .pd-section--pattern / flip */
.pd-section--pattern .process-deco-bars,
.pd-section--pattern-flip .process-deco-bars { z-index: 1; }

/* Modifier extra — content suprapus peste banda de bare */
.pd-section--pattern-overlap {
  padding-bottom: clamp(80px, 9vw, 120px);
}

/* Card cu gradient olive bogat (ca hero-ul de pe acasa) + text alb */
.pd-card.pd-card--pattern {
  position: relative;
  background:
    radial-gradient(ellipse at top right,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(155deg,
      #5a6a4f 0%,
      var(--color-olive) 45%,
      var(--color-olive-deep) 100%
    );
  border: 0;
  overflow: hidden;
  color: var(--color-bg);
}
.pd-card.pd-card--pattern .pd-card-head {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
.pd-card.pd-card--pattern .pd-card-head h2,
.pd-card.pd-card--pattern .pd-card-head h2 i {
  color: var(--color-bg);
}
.pd-card.pd-card--pattern .pd-specs-list li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.pd-card.pd-card--pattern .pd-specs-label {
  color: rgba(255, 255, 255, 0.72);
}
.pd-card.pd-card--pattern .pd-specs-value {
  color: var(--color-bg);
}

/* Modifier — secțiune cu padding-top 0 și bottom uniform */
.pd-section--spaced {
  padding-top: 0;
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

/* Modifier — secțiune cu padding generos sus și jos */
.pd-section--spaced-lg {
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: clamp(56px, 6vw, 96px);
}

/* Modifier — fundal gradient lighter pentru secțiunea Locație */
.pd-section--location-bg {
  padding-top: clamp(80px, 9vw, 100px);
  padding-bottom: clamp(80px, 9vw, 100px);
  background: linear-gradient(
    to bottom,
    var(--color-bg-alt) 0%,
    #e6ebd8 100%
  );
}
.pd-section--location-bg .pd-map {
  height: clamp(380px, 50vh, 560px);
}

/* Shadow fin elegant pentru cardurile din content-band + Locație */
.pd-content-band .pd-card,
.pd-section--location-bg .pd-card {
  box-shadow:
    0 8px 24px -6px rgba(0, 0, 0, 0.08),
    0 2px 8px -2px rgba(0, 0, 0, 0.05);
}
.pd-section--spaced-lg .pd-card {
  box-shadow:
    0 40px 80px -12px rgba(0, 0, 0, 0.22),
    0 18px 36px -8px rgba(0, 0, 0, 0.15),
    0 4px 10px -2px rgba(0, 0, 0, 0.10);
}

/* Modifier — fundal cu nuanțe ligh (sage → cream), aceeași compoziție ca hero dar deschisă */
.pd-section--soft {
  padding-top: clamp(24px, 2.5vw, 36px);
  padding-bottom: clamp(24px, 2.5vw, 36px);
  background:
    radial-gradient(ellipse at top right,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(155deg,
      #d8e0cc 0%,
      #e9e8d8 45%,
      #c9d2bd 100%
    );
}

/* Modifier — padding-bottom uniform */
.pd-section--space-bottom {
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

/* Modifier — gradient olive sus → light jos (inversat, ca pe sectiunea video) */
.pd-section--hero-bg {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-olive) 0%,
    #7e8a72 55%,
    #b5c0a4 100%
  );
  padding-top: clamp(24px, 2.5vw, 36px);
  overflow: hidden;
}
.pd-section--hero-bg > .container { position: relative; z-index: 2; }
.pd-section--hero-bg .process-deco-bars {
  left: clamp(20px, 3vw, 50px);
  right: auto;
  flex-direction: row-reverse;
  z-index: 1;
}
.pd-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: clamp(24px, 2.4vw, 36px);
}
.pd-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(20px, 2vw, 28px);
  padding-bottom: clamp(16px, 1.6vw, 22px);
  border-bottom: 1px solid var(--color-border);
}
.pd-card-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--color-text);
  margin: 0;
}
.pd-card-head h2 i { color: var(--color-olive); font-size: 18px; }
.pd-card-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  padding-left: 28px;
}

/* ─── OVERVIEW grid ─── */
.pd-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pd-overview-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}
.pd-overview-tile i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: var(--color-olive);
  font-size: 16px;
  flex-shrink: 0;
}
.pd-tile-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pd-tile-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.pd-tile-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.005em;
}

/* ─── DESCRIPTION ─── */
.pd-description p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-soft);
  margin: 0 0 14px;
}
.pd-description p:last-child { margin-bottom: 0; }

.pd-description-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-description.is-expanded .pd-description-extra {
  max-height: 1000px;
  opacity: 1;
}

.pd-description-toggle {
  margin-top: 18px;
  background: none;
  cursor: pointer;
  min-width: 0;
  font-family: var(--font-body);
}
.pd-description-toggle .pd-toggle-less { display: none; }
.pd-description.is-expanded .pd-description-toggle .pd-toggle-more { display: none; }
.pd-description.is-expanded .pd-description-toggle .pd-toggle-less { display: inline; }
.pd-description-toggle .pd-toggle-arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.pd-description.is-expanded .pd-description-toggle .pd-toggle-arrow {
  transform: rotate(-90deg);
}
.pd-description.is-expanded .pd-description-toggle:hover .pd-toggle-arrow {
  transform: rotate(-90deg) translateX(6px);
}

/* ─── CARACTERISTICI (specs list, 2 cols) ─── */
.pd-specs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(24px, 2.4vw, 40px);
}
.pd-specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--color-border);
}
.pd-specs-label {
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pd-specs-value {
  color: var(--color-text);
  font-weight: 700;
  text-align: right;
  letter-spacing: -0.005em;
}

/* ─── FACILITATI (grid bifate) ─── */
.pd-features-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pd-features-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.pd-features-grid li:hover {
  background: var(--color-bg);
  border-color: var(--color-olive);
}
.pd-features-grid li i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-olive);
  color: var(--color-bg);
  font-size: 10px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .pd-specs-list { grid-template-columns: 1fr; gap: 0; }
  .pd-features-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-map { height: clamp(180px, 28vh, 240px); }
}
@media (max-width: 480px) {
  .pd-features-grid { grid-template-columns: 1fr; }
}

/* ─── MEDIA (Video + Virtual Tour) ─── */
.pd-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pd-media-card { padding-bottom: clamp(20px, 2vw, 28px); }
.pd-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: pointer;
}
.pd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.pd-media:hover img { transform: scale(1.04); }
.pd-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.10) 0%, rgba(14, 14, 14, 0.45) 100%);
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-media:hover .pd-play-overlay {
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.22) 0%, rgba(14, 14, 14, 0.60) 100%);
}
.pd-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-media:hover .pd-play-btn {
  transform: scale(1.08);
  background: var(--color-olive);
  color: var(--color-bg);
}
.pd-play-btn i { font-size: 22px; margin-left: 3px; }
.pd-play-btn--tour i { margin-left: 0; }
.pd-play-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-bg);
}
.pd-media-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 10px;
  background: rgba(14, 14, 14, 0.65);
  color: var(--color-bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── CONTACT DIALOG ─── */
.pd-dialog {
  border: 0;
  padding: 0;
  background: var(--color-bg);
  max-width: 480px;
  width: calc(100% - 32px);
  margin: auto;
  box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.45),
              0 18px 36px -8px rgba(0, 0, 0, 0.30);
  color: var(--color-text);
  font-family: var(--font-body);
}
.pd-dialog::backdrop {
  background: rgba(14, 14, 14, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.pd-dialog[open] {
  animation: pdDialogIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pdDialogIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pd-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}
.pd-dialog-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--color-text);
}
.pd-dialog-close {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.pd-dialog-close:hover { color: var(--color-olive); background: var(--color-bg-alt); }
.pd-dialog-close i { font-size: 16px; }

.pd-dialog-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-field { display: flex; flex-direction: column; gap: 6px; }
.pd-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.pd-field input,
.pd-field textarea {
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border-mid);
  outline: 0;
  min-width: 0;
  width: 100%;
  transition: border-color var(--t-fast);
}
.pd-field input::placeholder,
.pd-field textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}
.pd-field input:focus,
.pd-field textarea:focus { border-color: var(--color-olive); }
.pd-field textarea { resize: vertical; min-height: 90px; }

.pd-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-soft);
  cursor: pointer;
  user-select: none;
}
.pd-checkbox input { display: none; }
.pd-checkbox .check-box {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border-mid);
  background: var(--color-bg);
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--t-fast);
}
.pd-checkbox input:checked + .check-box {
  background: var(--color-text);
  border-color: var(--color-text);
}
.pd-checkbox input:checked + .check-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid var(--color-bg);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.pd-checkbox a { color: var(--color-olive); text-decoration: underline; }
.pd-checkbox a:hover { color: var(--color-text); }

.pd-dialog-submit { width: 100%; margin-top: 4px; }

/* ─── LOCATION map ─── */
.pd-map {
  height: clamp(260px, 32vh, 360px);
  width: 100%;
  background: var(--color-bg-alt);
  position: relative;
  z-index: 0;
}

/* ─── ULTIMELE OFERTE — fundal cream-alt subtle să rupă alb-ul plat ─── */
.pd-section-related {
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: clamp(56px, 6vw, 96px);
  background: var(--color-bg-alt);
}

/* ─── .full-photo banner — mai mare pe pagina de detaliu proprietate ─── */
.full-photo--large {
  height: clamp(420px, 60vh, 640px);
}

/* ─── CONTENT BAND: wrapper unificat Descriere + Caracteristici + Facilități + Video ─── */
.pd-content-band {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-olive) 0%,
    #b5c0a4 22%,
    var(--color-bg) 50%,
    #b5c0a4 78%,
    var(--color-olive) 100%
  );
  overflow: hidden;
  padding-top: clamp(56px, 6vw, 96px);
  padding-bottom: clamp(56px, 6vw, 96px);
}
.pd-content-band > .pd-section {
  position: relative;
  z-index: 2;
  background: transparent;
  padding-top: clamp(12px, 1.4vw, 20px);
  padding-bottom: clamp(12px, 1.4vw, 20px);
}
/* Deco-bars top-left peste band */
.pd-content-bars-top {
  left: clamp(20px, 3vw, 50px);
  right: auto;
  top: 0;
  flex-direction: row-reverse;
  z-index: 1;
}
/* Deco-bars bottom-right peste band */
.pd-content-bars-bottom {
  bottom: 0;
  right: clamp(20px, 3vw, 50px);
  left: auto;
  top: auto;
  align-items: flex-end;
  z-index: 1;
}

/* ─── STATS INLINE STRIP (bandă orizontală fără card) ─── */
.pd-section--stats {
  padding-top: clamp(20px, 2vw, 28px);
  padding-bottom: clamp(20px, 2vw, 28px);
}
.pd-stats-row {
  list-style: none;
  margin: 0;
  padding: clamp(20px, 2.2vw, 30px) clamp(8px, 1vw, 16px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.pd-stats-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 clamp(8px, 1vw, 16px);
  border-right: 1px solid var(--color-border);
  min-width: 0;
}
.pd-stats-row li:last-child { border-right: 0; }
.pd-stats-row li i {
  color: var(--color-olive);
  font-size: 18px;
  margin-bottom: 2px;
}
.pd-stats-row .pd-stats-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.pd-stats-row .pd-stats-value {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
@media (max-width: 960px) {
  .pd-stats-row { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
  .pd-stats-row li:nth-child(3n) { border-right: 0; }
}
@media (max-width: 580px) {
  .pd-stats-row { grid-template-columns: repeat(2, 1fr); }
  .pd-stats-row li:nth-child(3n) { border-right: 1px solid var(--color-border); }
  .pd-stats-row li:nth-child(2n) { border-right: 0; }
}

/* ─── LOCATION secțiune cu gradient olive → cream (continuă din Video+Tur) ─── */
.pd-section--gradient-down {
  background: linear-gradient(
    to bottom,
    var(--color-olive) 0%,
    #7e8a72 55%,
    var(--color-bg) 100%
  );
  padding-top: 0;
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

/* ─── CTA TEASER OLIVE cu parallax photo + olive overlay ─── */
.pd-cta-olive {
  position: relative;
  background:
    linear-gradient(135deg, rgba(61, 74, 53, 0.78) 0%, rgba(44, 53, 39, 0.92) 100%),
    url('../mock-images/photo-1600210492486-724fe5c67fb0.webp') center / cover no-repeat;
  background-attachment: scroll, fixed;
  color: var(--color-bg);
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
  overflow: hidden;
}

@media (max-width: 720px) {
  .pd-cta-olive { background-attachment: scroll, scroll; }
}
.pd-cta-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Variant split: 2 coloane lipite de margini (paralel cu Ultimele oferte) */
.pd-cta-content--split {
  max-width: none;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.pd-cta-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: start;
}
.pd-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 14px;
  justify-self: end;
  max-width: 480px;
}
.pd-cta-content--split .pd-cta-title { max-width: 22ch; }
.pd-cta-content--split .pd-cta-phone { margin-top: 0; }
.pd-cta-content--split .pd-cta-sub { max-width: 38ch; }

@media (max-width: 720px) {
  .pd-cta-content--split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pd-cta-left, .pd-cta-right {
    align-items: center;
    text-align: center;
    justify-self: center;
  }
}
.pd-cta-olive .fh-label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.pd-cta-title {
  font-family: var(--font-body);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--color-bg);
  margin: 0;
  max-width: 22ch;
}
.pd-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-bg);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.pd-cta-phone:hover {
  border-color: var(--color-bg);
}
.pd-cta-phone i {
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-fast);
}
.pd-cta-phone:hover i { color: var(--color-bg); }
.pd-cta-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 40ch;
  letter-spacing: 0.02em;
}
.pd-cta-olive .pd-btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
}
.pd-cta-olive .pd-btn-primary:hover {
  background: var(--color-bg);
  color: var(--color-text);
}
.pd-cta-olive .pd-btn-outline {
  background: transparent;
  color: var(--color-bg);
  border-color: rgba(255, 255, 255, 0.5);
}
.pd-cta-olive .pd-btn-outline:hover {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-bg);
}

@media (max-width: 720px) {
  .pd-cta-grid { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .pd-hero-grid { grid-template-columns: 1fr; }
  .pd-sidebar { position: static; }
  .pd-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-gallery-overlay { max-width: 70%; }
}

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

@media (max-width: 580px) {
  .pd-overview-grid { grid-template-columns: 1fr; }
  .pd-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .pd-gallery-overlay { padding: 10px 14px; max-width: 80%; }
  .pd-gallery-title { font-size: 16px; }
  .pd-gallery-actions button { width: 34px; height: 34px; }
  .pd-play-btn { width: 60px; height: 60px; }
  .pd-play-btn i { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM agents.html
   ═══════════════════════════════════════════════════════════ */
  /* Override pe imaginea de fundal a header-ului doar pe pagina Echipa */
  .pd-header.pd-header--agents {
    background:
      linear-gradient(135deg, rgba(61, 74, 53, 0.72) 0%, rgba(61, 74, 53, 0.88) 100%),
      url('../mock-images/photo-1521737852567-6949f3f9f2b5.webp') center / cover no-repeat;
  }
  /* Team strip pentru pagina Echipa — 5 col, mai aerată */
  .agents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(6px, 0.8vw, 14px);
    margin-top: 0;
  }
  @media (max-width: 960px) {
    .agents-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 580px) {
    .agents-grid { grid-template-columns: repeat(2, 1fr); }
  }

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM blog.html
   ═══════════════════════════════════════════════════════════ */
  /* Override pe imaginea de fundal a header-ului doar pe pagina Blog */
  .pd-header.pd-header--blog {
    background:
      linear-gradient(135deg, rgba(61, 74, 53, 0.74) 0%, rgba(61, 74, 53, 0.90) 100%),
      url('../mock-images/photo-1481627834876-b7833e8f5570.webp') center / cover no-repeat;
  }
  /* Grid de articole adiționale */
  .blog-grid-more {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 48px);
  }
  @media (max-width: 960px) {
    .blog-grid-more { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 580px) {
    .blog-grid-more { grid-template-columns: 1fr; }
  }

  /* Pagination — stilizare elegantă pentru blog */
  .blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: clamp(48px, 6vw, 80px);
    padding-top: clamp(32px, 4vw, 48px);
    border-top: 1px solid var(--color-border);
  }
  .blog-pagination .page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--t-fast);
  }
  .blog-pagination .page-btn:hover {
    border-color: var(--color-olive);
    color: var(--color-olive);
  }
  .blog-pagination .page-btn.active {
    background: var(--color-olive);
    color: var(--color-bg);
    border-color: var(--color-olive);
  }
  .blog-pagination .page-arrow {
    width: 44px;
    color: var(--color-text-muted);
  }
  .blog-pagination .page-arrow i { font-size: 12px; }
  .blog-pagination .page-arrow:hover {
    color: var(--color-bg);
    background: var(--color-olive);
    border-color: var(--color-olive);
  }
  .blog-pagination .page-dots {
    padding: 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
  }

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM contact.html
   ═══════════════════════════════════════════════════════════ */
  /* ════════ HEADER BANNER ════════ */
  .pd-header.pd-header--contact {
    background:
      linear-gradient(135deg, rgba(61, 74, 53, 0.74) 0%, rgba(61, 74, 53, 0.90) 100%),
      url('../mock-images/photo-1497366216548-37526070297c.webp') center / cover no-repeat;
  }

  /* ════════ CONTACT GRID — formular + agenda ════════ */
  .contact-page-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
  }
  @media (max-width: 960px) {
    .contact-page-grid { grid-template-columns: 1fr; }
  }

  /* ════════ FORM ════════ */
  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
  }
  .contact-form .form-row-full { grid-column: 1 / -1; }
  .contact-form label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    font-weight: 600;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    transition: border-color var(--t-fast);
    outline: none;
  }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-bottom-color: var(--color-olive);
  }
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 10px;
  }
  .contact-form .form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 14px;
  }
  .contact-form .consent {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 380px;
  }
  .contact-form .consent a {
    color: var(--color-olive);
    border-bottom: 1px solid var(--color-olive);
    padding-bottom: 1px;
  }
  .btn-olive {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: var(--color-olive);
    border: none;
    cursor: pointer;
    transition: all var(--t-fast);
  }
  .btn-olive:hover {
    background: var(--color-olive-deep);
    transform: translateY(-1px);
  }
  .btn-olive i { font-size: 11px; }

  /* ════════ AGENDA — coloana dreapta cu detalii ════════ */
  .contact-agenda {
    background:
      linear-gradient(160deg, var(--color-accent) 0%, var(--color-olive-deep) 100%);
    color: var(--color-bg);
    padding: clamp(36px, 4vw, 56px);
    position: relative;
    overflow: hidden;
  }
  .contact-agenda::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 88% 12%, rgba(181, 192, 164, 0.16), transparent 55%);
    pointer-events: none;
  }
  .contact-agenda > * { position: relative; z-index: 1; }
  .contact-agenda .agenda-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 18px;
    display: block;
  }
  .contact-agenda h3 {
    font-family: var(--font-body);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 28px 0;
    color: var(--color-bg);
  }
  .agenda-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .agenda-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .agenda-icon {
    flex: 0 0 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(181, 192, 164, 0.16);
    color: var(--color-olive-light);
    font-size: 14px;
  }
  .agenda-body { flex: 1; }
  .agenda-body .a-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 4px;
  }
  .agenda-body .a-value {
    display: block;
    color: var(--color-bg);
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
  }
  .agenda-body .a-value:hover { color: var(--color-olive-light); }
  .agenda-socials {
    display: flex;
    gap: 10px;
    margin-top: 28px;
  }
  .agenda-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    background: rgba(255, 255, 255, 0.08);
    transition: all var(--t-fast);
    font-size: 13px;
  }
  .agenda-socials a:hover {
    background: var(--color-olive-light);
    color: var(--color-olive-deep);
  }

  /* ════════ MAP ════════ */
  .contact-map-section {
    padding: 0;
  }
  .contact-map {
    width: 100%;
    height: clamp(360px, 50vh, 520px);
    position: relative;
  }
  .contact-map .leaflet-control-attribution {
    font-size: 10px;
    opacity: 0.6;
  }

  /* ════════ FAQ — accordion ════════ */
  .faq-list {
    max-width: 880px;
    margin: 0 auto;
  }
  .faq-item {
    border-top: 1px solid var(--color-border);
    padding: 26px 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--color-border); }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-body);
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--t-fast);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:hover { color: var(--color-olive); }
  .faq-item .faq-body {
    padding-top: 18px;
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 720px;
  }

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM privacy.html
   ═══════════════════════════════════════════════════════════ */
  /* ════════ HEADER BANNER ════════ */
  .pd-header.pd-header--privacy {
    background:
      linear-gradient(135deg, rgba(61, 74, 53, 0.78) 0%, rgba(61, 74, 53, 0.92) 100%),
      url('../mock-images/photo-1450101499163-c8848c66ca85.webp') center / cover no-repeat;
  }

  /* ════════ PRINCIPII — patru carduri rezumat ════════ */
  .priv-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2vw, 32px);
    margin-top: clamp(40px, 4vw, 56px);
  }
  @media (max-width: 960px) {
    .priv-principles { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .priv-principles { grid-template-columns: 1fr; }
  }
  .priv-principle {
    padding: clamp(28px, 2.6vw, 36px);
    background: var(--color-bg-cream);
    position: relative;
    border-top: 2px solid var(--color-olive);
    transition: all var(--t-base);
  }
  .priv-principle:hover {
    background: var(--color-bg-cream);
    transform: translateY(-2px);
  }
  .priv-principle .pp-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-olive);
    color: var(--color-bg);
    margin-bottom: 22px;
    font-size: 16px;
  }
  .priv-principle h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
  }
  .priv-principle p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
  }

  /* ════════ CHAPTER — secțiune numerotată ════════ */
  .priv-chapter {
    padding: clamp(64px, 7vw, 110px) 0;
    border-top: 1px solid var(--color-border);
  }
  .priv-chapter:first-of-type { border-top: none; }
  .priv-chapter--alt {
    background: linear-gradient(180deg, var(--color-cream-50) 0%, var(--color-cream-100) 100%);
    border-top: none;
  }
  .priv-chapter-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 5vw, 96px);
    align-items: start;
  }
  @media (max-width: 880px) {
    .priv-chapter-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  .priv-chapter-head {
    position: sticky;
    top: 100px;
  }
  @media (max-width: 880px) {
    .priv-chapter-head { position: static; }
  }
  .priv-chapter-num {
    font-family: var(--font-body);
    font-size: clamp(72px, 9vw, 130px);
    font-weight: 200;
    line-height: 1;
    color: var(--color-olive);
    letter-spacing: -0.04em;
    margin: 0 0 18px 0;
    display: block;
    opacity: 0.85;
  }
  .priv-chapter-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
  }
  .priv-chapter-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.01em;
  }

  /* ── PROSE — col dreapta ── */
  .priv-prose {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.75;
    max-width: 660px;
  }
  .priv-prose p { margin: 0 0 18px 0; }
  .priv-prose p:last-child { margin-bottom: 0; }
  .priv-prose a {
    color: var(--color-olive);
    border-bottom: 1px solid var(--color-olive);
    padding-bottom: 1px;
  }
  .priv-prose a:hover { opacity: 0.7; }
  .priv-prose strong { font-weight: 600; }
  .priv-prose h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin: 28px 0 10px 0;
    color: var(--color-text);
  }
  .priv-prose ul {
    margin: 14px 0 18px 0;
    padding-left: 22px;
  }
  .priv-prose ul li {
    margin-bottom: 8px;
    line-height: 1.65;
  }
  .priv-prose ul li::marker { color: var(--color-olive); }

  /* ── tabel duratei stocării ── */
  .priv-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
  }
  .priv-table th,
  .priv-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.5;
    vertical-align: top;
  }
  .priv-table th {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--color-olive);
  }
  .priv-table tbody tr:hover { background: rgba(61, 74, 53, 0.03); }
  .priv-table td:last-child {
    font-weight: 600;
    color: var(--color-olive);
    white-space: nowrap;
  }

  /* ── accordion drepturi ── */
  .rights-list { margin: 6px 0 0 0; }
  .rights-item {
    border-top: 1px solid var(--color-border);
    padding: 18px 0;
  }
  .rights-item:last-child { border-bottom: 1px solid var(--color-border); }
  .rights-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--t-fast);
  }
  .rights-item summary::-webkit-details-marker { display: none; }
  .rights-item summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    color: var(--color-olive);
    flex: 0 0 auto;
    transition: transform var(--t-fast);
  }
  .rights-item[open] summary::after { content: "−"; }
  .rights-item summary:hover { color: var(--color-olive); }
  .rights-item .rights-body {
    padding-top: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  /* ════════ DPO CTA — final olive ════════ */
  .priv-dpo {
    background:
      linear-gradient(160deg, var(--color-accent) 0%, var(--color-olive-deep) 100%);
    color: var(--color-bg);
    padding: clamp(64px, 7vw, 110px) 0;
    position: relative;
    overflow: hidden;
  }
  .priv-dpo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 88%, rgba(181, 192, 164, 0.16), transparent 55%);
    pointer-events: none;
  }
  .priv-dpo-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 96px);
    align-items: center;
  }
  @media (max-width: 880px) {
    .priv-dpo-inner { grid-template-columns: 1fr; }
  }
  .priv-dpo-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.65;
    display: block;
    margin-bottom: 16px;
  }
  .priv-dpo h2 {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 400;
    line-height: 1.18;
    margin: 0;
    color: var(--color-bg);
    letter-spacing: -0.01em;
  }
  .priv-dpo-right {
    display: grid;
    gap: 18px;
  }
  .priv-dpo-row {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .priv-dpo-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .priv-dpo-icon {
    flex: 0 0 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(181, 192, 164, 0.16);
    color: var(--color-olive-light);
    font-size: 14px;
  }
  .priv-dpo-row .l {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 4px;
  }
  .priv-dpo-row .v {
    color: var(--color-bg);
    font-size: 15px;
    text-decoration: none;
  }
  .priv-dpo-row .v:hover { color: var(--color-olive-light); }
  .priv-dpo-footer {
    margin-top: 28px;
    font-size: 12px;
    opacity: 0.55;
    letter-spacing: 0.02em;
  }

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM terms.html
   ═══════════════════════════════════════════════════════════ */
  /* ════════ HEADER BANNER ════════ */
  .pd-header.pd-header--terms {
    background:
      linear-gradient(135deg, rgba(61, 74, 53, 0.78) 0%, rgba(61, 74, 53, 0.92) 100%),
      url('../mock-images/photo-1589829085413-56de8ae18c73.webp') center / cover no-repeat;
  }

  /* ════════ PRINCIPII — patru carduri rezumat ════════ */
  .priv-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2vw, 32px);
    margin-top: clamp(40px, 4vw, 56px);
  }
  @media (max-width: 960px) {
    .priv-principles { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .priv-principles { grid-template-columns: 1fr; }
  }
  .priv-principle {
    padding: clamp(28px, 2.6vw, 36px);
    background: var(--color-bg-cream);
    position: relative;
    border-top: 2px solid var(--color-olive);
    transition: all var(--t-base);
  }
  .priv-principle:hover {
    background: var(--color-bg-cream);
    transform: translateY(-2px);
  }
  .priv-principle .pp-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-olive);
    color: var(--color-bg);
    margin-bottom: 22px;
    font-size: 16px;
  }
  .priv-principle h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.3;
  }
  .priv-principle p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
  }

  /* ════════ CHAPTER — secțiune numerotată ════════ */
  .priv-chapter {
    padding: clamp(64px, 7vw, 110px) 0;
    border-top: 1px solid var(--color-border);
  }
  .priv-chapter:first-of-type { border-top: none; }
  .priv-chapter--alt {
    background: linear-gradient(180deg, var(--color-cream-50) 0%, var(--color-cream-100) 100%);
    border-top: none;
  }
  .priv-chapter-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 5vw, 96px);
    align-items: start;
  }
  @media (max-width: 880px) {
    .priv-chapter-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  .priv-chapter-head {
    position: sticky;
    top: 100px;
  }
  @media (max-width: 880px) {
    .priv-chapter-head { position: static; }
  }
  .priv-chapter-num {
    font-family: var(--font-body);
    font-size: clamp(72px, 9vw, 130px);
    font-weight: 200;
    line-height: 1;
    color: var(--color-olive);
    letter-spacing: -0.04em;
    margin: 0 0 18px 0;
    display: block;
    opacity: 0.85;
  }
  .priv-chapter-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
  }
  .priv-chapter-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.01em;
  }

  /* ── PROSE — col dreapta ── */
  .priv-prose {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.75;
    max-width: 660px;
  }
  .priv-prose p { margin: 0 0 18px 0; }
  .priv-prose p:last-child { margin-bottom: 0; }
  .priv-prose a {
    color: var(--color-olive);
    border-bottom: 1px solid var(--color-olive);
    padding-bottom: 1px;
  }
  .priv-prose a:hover { opacity: 0.7; }
  .priv-prose strong { font-weight: 600; }
  .priv-prose h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin: 28px 0 10px 0;
    color: var(--color-text);
  }
  .priv-prose ul {
    margin: 14px 0 18px 0;
    padding-left: 22px;
  }
  .priv-prose ul li {
    margin-bottom: 8px;
    line-height: 1.65;
  }
  .priv-prose ul li::marker { color: var(--color-olive); }

  /* ── callout box ── */
  .priv-prose .callout {
    background: linear-gradient(160deg, var(--color-cream-100) 0%, var(--color-cream-200) 100%);
    padding: 22px 26px;
    margin: 28px 0;
    border-left: 3px solid var(--color-olive);
    font-size: 15px;
    line-height: 1.7;
  }
  .priv-prose .callout strong { display: block; margin-bottom: 6px; }

  /* ── tabel ── */
  .priv-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
  }
  .priv-table th,
  .priv-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.5;
    vertical-align: top;
  }
  .priv-table th {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--color-olive);
  }
  .priv-table tbody tr:hover { background: rgba(61, 74, 53, 0.03); }
  .priv-table td:last-child {
    font-weight: 600;
    color: var(--color-olive);
    white-space: nowrap;
  }

  /* ── accordion ── */
  .rights-list { margin: 6px 0 0 0; }
  .rights-item {
    border-top: 1px solid var(--color-border);
    padding: 18px 0;
  }
  .rights-item:last-child { border-bottom: 1px solid var(--color-border); }
  .rights-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--t-fast);
  }
  .rights-item summary::-webkit-details-marker { display: none; }
  .rights-item summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    color: var(--color-olive);
    flex: 0 0 auto;
    transition: transform var(--t-fast);
  }
  .rights-item[open] summary::after { content: "−"; }
  .rights-item summary:hover { color: var(--color-olive); }
  .rights-item .rights-body {
    padding-top: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
  }
  .rights-item .rights-body ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
  }
  .rights-item .rights-body ul li { margin-bottom: 6px; }
  .rights-item .rights-body ul li::marker { color: var(--color-olive); }

  /* ════════ CTA FINAL — olive gradient ════════ */
  .priv-dpo {
    background:
      linear-gradient(160deg, var(--color-accent) 0%, var(--color-olive-deep) 100%);
    color: var(--color-bg);
    padding: clamp(64px, 7vw, 110px) 0;
    position: relative;
    overflow: hidden;
  }
  .priv-dpo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 88%, rgba(181, 192, 164, 0.16), transparent 55%);
    pointer-events: none;
  }
  .priv-dpo-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 96px);
    align-items: center;
  }
  @media (max-width: 880px) {
    .priv-dpo-inner { grid-template-columns: 1fr; }
  }
  .priv-dpo-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.65;
    display: block;
    margin-bottom: 16px;
  }
  .priv-dpo h2 {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 400;
    line-height: 1.18;
    margin: 0;
    color: var(--color-bg);
    letter-spacing: -0.01em;
  }
  .priv-dpo-right {
    display: grid;
    gap: 18px;
  }
  .priv-dpo-row {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .priv-dpo-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .priv-dpo-icon {
    flex: 0 0 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(181, 192, 164, 0.16);
    color: var(--color-olive-light);
    font-size: 14px;
  }
  .priv-dpo-row .l {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 4px;
  }
  .priv-dpo-row .v {
    color: var(--color-bg);
    font-size: 15px;
    text-decoration: none;
  }
  .priv-dpo-row .v:hover { color: var(--color-olive-light); }
  .priv-dpo-footer {
    margin-top: 28px;
    font-size: 12px;
    opacity: 0.55;
    letter-spacing: 0.02em;
  }

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM agent-detail.html
   ═══════════════════════════════════════════════════════════ */
  /* ════════ HEADER BANNER ════════ */
  .pd-header.pd-header--agent {
    background:
      linear-gradient(135deg, rgba(61, 74, 53, 0.78) 0%, rgba(61, 74, 53, 0.92) 100%),
      url('../mock-images/photo-1497366216548-37526070297c.webp') center / cover no-repeat;
  }

  /* ════════ PROFIL — grid foto + bio + form ════════ */
  .agent-profile-grid {
    display: grid;
    grid-template-columns: 380px 1fr 360px;
    gap: clamp(28px, 3.4vw, 56px);
    align-items: start;
  }
  @media (max-width: 1440px) and (min-width: 1101px) {
    .agent-profile-grid {
      grid-template-columns: 320px 1fr;
      grid-template-areas:
        "photo bio"
        "form  form";
      gap: clamp(24px, 2.6vw, 40px);
      align-items: start;
    }
    .agent-profile-photo { grid-area: photo; }
    .agent-profile-body { grid-area: bio; }
    .agent-profile-form { grid-area: form; width: 100%; max-width: 560px; justify-self: center; margin-top: clamp(24px, 3vw, 40px); }
    .agent-profile-actions { flex-wrap: wrap; }
  }
  @media (max-width: 1100px) {
    .agent-profile-grid {
      grid-template-columns: 320px 1fr;
    }
    .agent-profile-form {
      grid-column: 1 / -1;
      max-width: 560px;
      margin-top: 24px;
    }
    .agent-profile-actions { flex-wrap: wrap; }
  }
  @media (max-width: 720px) {
    .agent-profile-grid {
      grid-template-columns: 1fr;
    }
    .agent-profile-photo { max-width: 360px; margin: 0 auto; }
  }

  /* ── Foto agent ── */
  .agent-profile-photo {
    position: relative;
  }
  .agent-profile-photo img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  .agent-profile-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(20, 24, 18, 0.85) 0%, transparent 100%);
    padding: 24px 22px 18px;
    color: var(--color-bg);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .agent-profile-photo-caption .id {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-olive-light);
    font-weight: 600;
  }
  .agent-profile-photo-caption .num {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-bg);
  }

  /* ── Bio agent ── */
  .agent-profile-body { padding-top: 4px; }
  .agent-profile-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-olive);
  }
  .agent-profile-name {
    font-family: var(--font-body);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
  }
  .agent-profile-role {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0 0 28px 0;
    line-height: 1.5;
  }
  .agent-profile-rule {
    width: 40px;
    height: 2px;
    background: var(--color-olive);
    margin-bottom: 26px;
  }
  .agent-profile-bio {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .agent-profile-bio p { margin: 0 0 14px 0; }
  .agent-profile-office {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0 0 28px 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-border);
  }
  .agent-profile-office i { color: var(--color-olive); }

  /* Acțiuni — butoane + social, toate pe un singur rând */
  .agent-profile-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }
  @media (max-width: 540px) {
    .agent-profile-actions { flex-wrap: wrap; }
  }
  .btn-olive-solid,
  .btn-olive-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
    white-space: nowrap;
  }
  .btn-olive-solid {
    background: var(--color-olive);
    color: var(--color-bg);
  }
  .btn-olive-solid:hover {
    background: var(--color-olive-deep);
    transform: translateY(-1px);
  }
  .btn-olive-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
  }
  .btn-olive-outline:hover {
    background: var(--color-text);
    color: var(--color-bg);
  }
  .agent-whatsapp {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-whatsapp);
    color: var(--color-bg);
    font-size: 15px;
    transition: all var(--t-fast);
  }
  .agent-whatsapp:hover { background: var(--color-whatsapp-hover); transform: translateY(-1px); }
  .agent-profile-social {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 2px;
  }
  .agent-profile-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    background: var(--color-bg-cream);
    transition: all var(--t-fast);
    font-size: 11px;
  }
  .agent-profile-social a:hover {
    background: var(--color-olive);
    color: var(--color-bg);
  }

  /* ── Formular ── */
  .agent-profile-form {
    background:
      linear-gradient(160deg, var(--color-accent) 0%, var(--color-olive-deep) 100%);
    color: var(--color-bg);
    padding: clamp(28px, 2.6vw, 36px);
    position: relative;
    overflow: hidden;
  }
  .agent-profile-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 92% 8%, rgba(181, 192, 164, 0.16), transparent 55%);
    pointer-events: none;
  }
  .agent-profile-form > * { position: relative; z-index: 1; }
  .agent-profile-form h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-bg);
    margin: 0 0 6px 0;
    line-height: 1.3;
  }
  .agent-profile-form .form-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 22px 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .agent-profile-form label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
    margin-top: 14px;
    font-weight: 600;
  }
  .agent-profile-form input,
  .agent-profile-form textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--t-fast);
    outline: none;
  }
  .agent-profile-form input:focus,
  .agent-profile-form textarea:focus {
    border-bottom-color: var(--color-olive-light);
  }
  .agent-profile-form input::placeholder,
  .agent-profile-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }
  .agent-profile-form textarea { resize: vertical; min-height: 68px; }
  .agent-profile-form button {
    margin-top: 26px;
    width: 100%;
    padding: 14px 22px;
    background: var(--color-olive-light);
    color: var(--color-olive-deep);
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--t-fast);
  }
  .agent-profile-form button:hover {
    background: var(--color-bg);
    gap: 14px;
  }

  /* ════════ METRICS strip ════════ */
  .agent-metrics {
    margin-top: clamp(60px, 6vw, 88px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--color-bg-cream);
    padding: clamp(28px, 3vw, 44px);
    border-top: 2px solid var(--color-olive);
  }
  @media (max-width: 720px) {
    .agent-metrics { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  }
  .agent-metrics .metric {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding: 0 16px;
  }
  .agent-metrics .metric:last-child { border-right: none; }
  @media (max-width: 720px) {
    .agent-metrics .metric:nth-child(2) { border-right: none; }
    .agent-metrics .metric:nth-child(1),
    .agent-metrics .metric:nth-child(2) {
      border-bottom: 1px solid var(--color-border);
      padding-bottom: 22px;
    }
  }
  .agent-metrics .metric-num {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: var(--color-olive);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .agent-metrics .metric-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1.4;
  }

  /* ════════ AGENT OFFERS — grid ════════ */
  .listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 32px);
  }
  @media (max-width: 1024px) {
    .listings-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .listings-grid { grid-template-columns: 1fr; }
  }

  /* ════════ Paginare ════════ */
  .blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: clamp(48px, 6vw, 80px);
    padding-top: clamp(32px, 4vw, 48px);
    border-top: 1px solid var(--color-border);
  }
  .blog-pagination .page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--t-fast);
  }
  .blog-pagination .page-btn:hover {
    border-color: var(--color-olive);
    color: var(--color-olive);
  }
  .blog-pagination .page-btn.active {
    background: var(--color-olive);
    color: var(--color-bg);
    border-color: var(--color-olive);
  }
  .blog-pagination .page-arrow {
    width: 44px;
    color: var(--color-text-muted);
  }
  .blog-pagination .page-arrow i { font-size: 12px; }
  .blog-pagination .page-arrow:hover {
    color: var(--color-bg);
    background: var(--color-olive);
    border-color: var(--color-olive);
  }
  .blog-pagination .page-dots {
    padding: 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
  }

  /* ════════ Echipa rest — strip orizontal ════════ */
  .related-agents {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(6px, 0.8vw, 14px);
  }
  @media (max-width: 960px) {
    .related-agents { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 580px) {
    .related-agents { grid-template-columns: repeat(2, 1fr); }
  }

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM blog-post.html
   ═══════════════════════════════════════════════════════════ */
  /* ════════ HEADER BANNER ════════ */
  .pd-header.pd-header--post {
    background:
      linear-gradient(180deg, rgba(20, 24, 18, 0.50) 0%, rgba(20, 24, 18, 0.85) 100%),
      url('../mock-images/photo-1600585154526-990dced4db0d.webp') center / cover no-repeat;
    min-height: clamp(380px, 56vh, 580px);
  }
  .pd-header--post .pd-title {
    font-size: clamp(32px, 4.6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 18ch;
    font-weight: 400;
  }
  .pd-header--post .post-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-olive-light);
    font-weight: 600;
    margin-bottom: 22px;
  }
  .pd-header--post .pd-loc { margin-top: 18px; }

  /* ── meta strip sub banner: autor + dată + reading time ── */
  .post-meta-strip {
    border-bottom: 1px solid var(--color-border);
    padding: clamp(28px, 3vw, 44px) 0;
  }
  .post-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .post-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .post-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
  }
  .post-author .pa-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
  }
  .post-author .pa-role {
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
  }
  .post-meta-info {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .post-meta-info .pm-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
  }
  .post-meta-info .pm-item i {
    color: var(--color-olive);
    font-size: 11px;
  }
  .post-meta-info .pm-item strong {
    color: var(--color-text);
    font-weight: 600;
  }
  .post-share-inline {
    display: flex;
    gap: 6px;
  }
  .post-share-inline a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    background: var(--color-bg-cream);
    transition: all var(--t-fast);
    font-size: 13px;
  }
  .post-share-inline a:hover {
    background: var(--color-olive);
    color: var(--color-bg);
  }

  /* ════════ BODY LAYOUT — sticky share + prose ════════ */
  .post-body-section { padding: clamp(56px, 6vw, 96px) 0; }
  .post-grid {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: clamp(28px, 3vw, 56px);
    max-width: 920px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .pd-header.pd-header--post { min-height: 0; }
    .post-grid { grid-template-columns: 48px 1fr; gap: 16px; }
    .post-share-vert .share-label,
    .post-share-vert .share-saves { display: none; }
    .post-share-vert a { width: 36px; height: 36px; font-size: 12px; }
    .fh-section--related { padding-top: clamp(24px, 6vw, 40px); }
  }

  /* ── Sticky vertical share rail ── */
  .post-share-vert {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .post-share-vert .share-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 14px;
    margin-left: 6px;
  }
  .post-share-vert a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
    transition: all var(--t-fast);
    font-size: 14px;
  }
  .post-share-vert a:hover {
    background: var(--color-olive);
    color: var(--color-bg);
    border-color: var(--color-olive);
  }
  .post-share-vert .share-saves {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
  }
  .post-share-vert .share-saves strong {
    display: block;
    font-size: 16px;
    color: var(--color-olive);
    letter-spacing: 0;
    margin-bottom: 2px;
  }

  /* ── PROSE — corp articol ── */
  .post-prose {
    color: var(--color-text);
    font-family: 'Fraunces', 'Manrope', serif;
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.75;
    font-weight: 400;
  }
  .post-prose .lead {
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.55;
    color: var(--color-text);
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
    font-weight: 400;
  }
  .post-prose .lead::first-letter {
    font-family: 'Fraunces', serif;
    font-size: 4.2em;
    float: left;
    line-height: 0.88;
    margin: 8px 14px 0 0;
    color: var(--color-olive);
    font-weight: 500;
  }
  .post-prose p {
    margin: 0 0 22px 0;
  }
  .post-prose h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    line-height: 1.25;
    margin: 56px 0 22px 0;
    color: var(--color-text);
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .post-prose h2::before {
    content: attr(data-num);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: var(--color-olive);
    font-weight: 600;
    letter-spacing: 0.18em;
    flex: 0 0 auto;
  }
  .post-prose h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin: 36px 0 14px 0;
    color: var(--color-text);
  }
  .post-prose a {
    color: var(--color-olive);
    border-bottom: 1px solid var(--color-olive);
    padding-bottom: 1px;
  }
  .post-prose a:hover { opacity: 0.7; }
  .post-prose strong {
    font-weight: 600;
    color: var(--color-text);
  }
  .post-prose em {
    font-style: italic;
    color: var(--color-text);
  }
  .post-prose ul {
    margin: 18px 0 22px 0;
    padding-left: 24px;
  }
  .post-prose ul li {
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .post-prose ul li::marker { color: var(--color-olive); }

  /* ── Pull quote ── */
  .pull-quote {
    margin: 48px 0;
    padding: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.32;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text);
    border-left: 3px solid var(--color-olive);
    padding-left: clamp(20px, 2.5vw, 36px);
    letter-spacing: -0.01em;
  }
  .pull-quote cite {
    display: block;
    margin-top: 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-style: normal;
    font-weight: 600;
  }

  /* ── Inline figure ── */
  .post-figure {
    margin: 48px 0;
  }
  .post-figure--wide {
    margin-left: calc(50% - 48vw);
    margin-right: calc(50% - 48vw);
    max-width: 96vw;
  }
  @media (max-width: 720px) {
    .post-figure--wide {
      margin-left: 0;
      margin-right: 0;
      max-width: 100%;
    }
  }
  .post-figure--small {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .post-figure img {
    width: 100%;
    height: auto;
    display: block;
  }
  .post-figure figcaption {
    margin-top: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    line-height: 1.55;
    padding-left: 14px;
    border-left: 2px solid var(--color-olive);
  }

  /* ── Stats inline strip ── */
  .post-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 48px 0;
    background: var(--color-bg-cream);
    padding: 32px 28px;
    border-top: 2px solid var(--color-olive);
  }
  @media (max-width: 600px) {
    .post-stats { grid-template-columns: 1fr; gap: 22px; }
  }
  .post-stats .stat-cell {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding: 0 18px;
    font-family: 'Manrope', sans-serif;
  }
  .post-stats .stat-cell:last-child { border-right: none; }
  @media (max-width: 600px) {
    .post-stats .stat-cell { border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: 22px; }
    .post-stats .stat-cell:last-child { border-bottom: none; padding-bottom: 0; }
  }
  .post-stats .stat-num {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--color-olive);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .post-stats .stat-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1.4;
  }

  /* ── Tags strip ── */
  .post-tags {
    margin: 56px 0 0 0;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .post-tags .tags-label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-right: 8px;
  }
  .post-tags a {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    padding: 7px 14px;
    background: var(--color-bg-cream);
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all var(--t-fast);
  }
  .post-tags a:hover {
    background: var(--color-olive);
    color: var(--color-bg);
  }

  /* ════════ AUTHOR BOX ════════ */
  .author-box {
    margin-top: 80px;
    padding: clamp(32px, 4vw, 48px);
    background:
      linear-gradient(160deg, var(--color-accent) 0%, var(--color-olive-deep) 100%);
    color: var(--color-bg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .author-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(181, 192, 164, 0.16), transparent 50%);
    pointer-events: none;
  }
  .author-box > * { position: relative; z-index: 1; }
  @media (max-width: 600px) {
    .author-box { grid-template-columns: 1fr; text-align: center; }
  }
  .author-box img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(181, 192, 164, 0.4);
  }
  @media (max-width: 600px) {
    .author-box img { width: 110px; height: 110px; margin: 0 auto; }
  }
  .author-box .ab-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-olive-light);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
  }
  .author-box h3 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 400;
    margin: 0 0 10px 0;
    color: var(--color-bg);
    line-height: 1.2;
  }
  .author-box h3 .ab-role {
    font-size: 14px;
    color: var(--color-olive-light);
    font-weight: 400;
    display: block;
    margin-top: 2px;
  }
  .author-box p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 18px 0;
  }
  .author-box .author-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-bg);
    font-weight: 600;
    border-bottom: 1px solid #b5c0a4;
    padding-bottom: 4px;
    text-decoration: none;
  }
  .author-box .author-cta:hover { color: var(--color-olive-light); }

  /* ════════ NEWSLETTER CTA ════════ */
  .news-cta {
    background: linear-gradient(180deg, var(--color-cream-50) 0%, var(--color-cream-100) 100%);
    padding: clamp(64px, 7vw, 100px) 0;
  }
  .news-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .news-cta-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-olive);
  }
  .news-cta h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 14px 0;
    color: var(--color-text);
    letter-spacing: -0.01em;
  }
  .news-cta p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0 0 32px 0;
  }
  .news-form {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--color-text);
    max-width: 480px;
    margin: 0 auto;
  }
  .news-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--color-text);
    outline: none;
  }
  .news-form button {
    background: transparent;
    border: none;
    padding: 14px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-olive);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap var(--t-fast);
  }
  .news-form button:hover { gap: 14px; }
  .news-cta-fine {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 16px;
    letter-spacing: 0.02em;
  }
      @media (max-width: 960px) {
        .fh-section .blog-grid-more { grid-template-columns: repeat(2, 1fr) !important; }
      }
      @media (max-width: 580px) {
        .fh-section .blog-grid-more { grid-template-columns: 1fr !important; }
      }

/* ═══════════════════════════════════════════════════════════
   INLINE STYLES FROM about.html
   ═══════════════════════════════════════════════════════════ */
  /* ════════ HEADER BANNER ════════ */
  .pd-header.pd-header--about {
    background:
      linear-gradient(135deg, rgba(61, 74, 53, 0.74) 0%, rgba(61, 74, 53, 0.90) 100%),
      url('../mock-images/photo-1497366216548-37526070297c.webp') center / cover no-repeat;
  }

  /* ════════ MANIFEST — filosofia studio ════════ */
  .about-manifest .manifest-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: clamp(48px, 5vw, 96px);
    align-items: start;
    padding-bottom: clamp(56px, 6vw, 88px);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: clamp(56px, 6vw, 88px);
  }
  @media (max-width: 880px) {
    .fh-section.about-manifest { padding-top: clamp(28px, 6vw, 48px); }
    .about-manifest .manifest-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .manifest-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-olive);
  }
  .manifest-quote blockquote {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.32;
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: -0.015em;
  }
  .manifest-quote .quote-mark {
    position: absolute;
    top: -28px;
    left: -8px;
    font-family: var(--font-body);
    font-size: clamp(80px, 9vw, 130px);
    line-height: 1;
    color: var(--color-olive);
    opacity: 0.18;
    font-weight: 400;
    pointer-events: none;
  }

  /* Semnătură */
  .manifest-signature {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 22px;
    align-items: start;
    padding-top: 28px;
  }
  @media (max-width: 540px) {
    .manifest-signature { grid-template-columns: 96px 1fr; }
  }
  .manifest-signature figure {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-bg-cream);
  }
  .manifest-signature figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .manifest-signature .sig-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .manifest-signature .sig-name {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
  }
  .manifest-signature p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0 0 14px 0;
  }

  /* Cele trei principii */
  .manifest-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 48px);
  }
  @media (max-width: 760px) {
    .manifest-principles { grid-template-columns: 1fr; gap: 32px; }
  }
  .principle {
    padding-top: 28px;
    border-top: 2px solid var(--color-olive);
    position: relative;
  }
  .principle .p-num {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.18em;
    color: var(--color-olive);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .principle h3 {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-text);
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }
  .principle p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
  }

  /* ════════ COMMON CREAM SECTION ════════ */
  .cream-section {
    background: var(--color-bg-cream);
    position: relative;
    padding: clamp(72px, 8vw, 130px) 0;
    overflow: hidden;
  }
  .cream-section::before,
  .cream-section::after {
    content: "";
    position: absolute;
    inset: 24px clamp(20px, 3vw, 56px);
    pointer-events: none;
    border: 1px dashed rgba(61, 74, 53, 0.22);
    border-radius: 0;
  }
  .cream-section::after { display: none; }

  /* ════════ HOW WE WORK — Cum Lucrăm ════════ */
  .hw-head {
    max-width: 540px;
    margin-bottom: clamp(40px, 5vw, 80px);
  }
  .hw-head h2 {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 0 0 18px 0;
  }
  .hw-head p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
  }
  .hw-curve {
    position: relative;
    width: 100%;
    height: clamp(360px, 38vw, 480px);
    margin: 0 auto;
  }
  .hw-curve-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .hw-step {
    position: absolute;
    transform: translateX(-50%);
    text-align: left;
    font-family: var(--font-body);
  }
  .hw-step::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color-olive);
    border-radius: 50%;
    margin-bottom: 14px;
    margin-left: -4px;
  }
  .hw-step .hw-num {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .hw-step .hw-label {
    display: block;
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--color-text);
    line-height: 1.4;
    font-weight: 500;
    max-width: 140px;
  }
  /* Pozițiile dot-urilor pe arc — de la stânga jos spre dreapta sus */
  .hw-step--1 { left: 6%;  top: 70%; }
  .hw-step--2 { left: 25%; top: 52%; }
  .hw-step--3 { left: 47%; top: 36%; }
  .hw-step--4 { left: 68%; top: 22%; }
  .hw-step--5 { left: 88%; top: 14%; }

  .hw-foot {
    max-width: 320px;
    margin-left: auto;
    margin-top: clamp(40px, 5vw, 64px);
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text-muted);
    border-left: 2px solid var(--color-olive);
    padding-left: 16px;
  }

  @media (max-width: 720px) {
    .hw-curve { display: none; }
    .hw-foot { margin-left: 0; }
    .hw-steps-mobile { display: grid; gap: 24px; }
    .hw-steps-mobile .hw-step-m {
      padding-left: 22px;
      border-left: 2px solid rgba(61, 74, 53, 0.22);
      position: relative;
      font-family: var(--font-body);
    }
    .hw-steps-mobile .hw-step-m::before {
      content: "";
      position: absolute;
      left: -5px;
      top: 4px;
      width: 8px;
      height: 8px;
      background: var(--color-olive);
      border-radius: 50%;
    }
    .hw-steps-mobile .hw-num-m {
      font-size: 11px;
      letter-spacing: 0.18em;
      color: var(--color-text-muted);
      display: block;
      margin-bottom: 4px;
    }
    .hw-steps-mobile .hw-label-m {
      font-size: 15px;
      font-weight: 500;
      color: var(--color-text);
      line-height: 1.4;
    }
  }
  @media (min-width: 721px) {
    .hw-steps-mobile { display: none; }
  }

  /* ════════ WHO WE HELP — Pentru Cine Lucrăm ════════ */
  .who-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(420px, 50vw, 560px);
  }
  @media (max-width: 880px) {
    .who-section { grid-template-columns: 1fr; }
  }
  .who-panel {
    background: linear-gradient(160deg, var(--color-accent) 0%, var(--color-olive-deep) 100%);
    color: var(--color-bg);
    padding: clamp(48px, 6vw, 96px) clamp(36px, 5vw, 88px);
    position: relative;
    overflow: hidden;
  }
  .who-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 95%, rgba(181, 192, 164, 0.18), transparent 55%);
    pointer-events: none;
  }
  .who-panel-content {
    position: relative;
    z-index: 2;
    max-width: 380px;
  }
  .who-panel h2 {
    font-family: var(--font-body);
    font-size: clamp(36px, 4.8vw, 60px);
    font-weight: 400;
    color: var(--color-bg);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px 0;
  }
  .who-panel p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
  }
  .who-line-art {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0.5;
    width: 100%;
  }
  .who-photo {
    background: var(--color-bg-deep-olive) url('../mock-images/photo-1502672260266-1c1ef2d93688.webp') center / cover no-repeat;
    position: relative;
  }

  /* ════════ CLARITY — Claritate În Fiecare Tranzacție ════════ */
  .clarity-section {
    background: var(--color-bg-cream);
    position: relative;
    padding: clamp(72px, 8vw, 130px) 0;
    overflow: hidden;
  }
  /* dashed diagonal background lines */
  .clarity-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(108deg,
        transparent 0,
        transparent 78px,
        rgba(61, 74, 53, 0.16) 78px,
        rgba(61, 74, 53, 0.16) 79px,
        transparent 79px,
        transparent 86px,
        rgba(61, 74, 53, 0.16) 86px,
        rgba(61, 74, 53, 0.16) 87px,
        transparent 87px,
        transparent 240px);
    pointer-events: none;
    opacity: 0.55;
  }
  .clarity-section > .container { position: relative; z-index: 1; }
  .clarity-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(48px, 5vw, 80px);
  }
  @media (max-width: 880px) {
    .clarity-head { grid-template-columns: 1fr; }
  }
  .clarity-head h2 {
    font-family: var(--font-body);
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 400;
    line-height: 0.98;
    color: var(--color-text);
    letter-spacing: -0.03em;
    margin: 0;
  }
  .clarity-mission .label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-olive);
  }
  .clarity-mission p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
  }

  /* ════════ CRONOLOGIE — 23 de ani ════════ */
  .about-history .history-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 5vw, 96px);
    align-items: end;
    margin-bottom: clamp(56px, 6vw, 88px);
    padding-bottom: clamp(28px, 3vw, 40px);
    border-bottom: 1px solid var(--color-border);
  }
  @media (max-width: 880px) {
    .about-history .history-head { grid-template-columns: 1fr; gap: 24px; }
  }
  .history-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-olive);
  }
  .about-history .history-head h2 {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 0;
  }
  .history-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 380px;
    margin: 0;
  }

  /* Lista cronologică */
  .history-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    max-width: 980px;
  }
  /* Linie verticală punctată care unește anii */
  .history-list::before {
    content: "";
    position: absolute;
    left: clamp(72px, 8vw, 112px);
    top: 14px;
    bottom: 14px;
    width: 0;
    border-left: 1px dashed rgba(61, 74, 53, 0.32);
  }
  @media (max-width: 600px) {
    .history-list::before { left: 8px; }
  }

  .ms {
    display: grid;
    grid-template-columns: clamp(140px, 16vw, 200px) 1fr;
    gap: clamp(20px, 3vw, 48px);
    align-items: start;
    padding: clamp(28px, 3vw, 40px) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
  }
  .ms:last-child { border-bottom: none; }
  @media (max-width: 600px) {
    .ms {
      grid-template-columns: 1fr;
      gap: 8px;
      padding-left: 32px;
    }
    .ms::before {
      left: 4px;
    }
  }

  /* Dot pe linia verticală */
  .ms::before {
    content: "";
    position: absolute;
    left: clamp(68px, 8vw, 108px);
    top: clamp(36px, 3.5vw, 50px);
    width: 9px;
    height: 9px;
    background: var(--color-olive);
    border-radius: 50%;
    z-index: 1;
  }
  @media (max-width: 600px) {
    .ms::before { left: 4px; top: 36px; }
  }
  .ms:hover::before {
    transform: scale(1.5);
    transition: transform var(--t-fast);
  }

  .ms-year {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 200;
    line-height: 1;
    color: var(--color-olive);
    letter-spacing: -0.03em;
    align-self: start;
  }
  @media (max-width: 600px) {
    .ms-year { font-size: 28px; }
  }

  .ms-content {
    padding-left: clamp(28px, 4vw, 56px);
  }
  @media (max-width: 600px) {
    .ms-content { padding-left: 0; }
  }
  .ms-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .ms-content h3 {
    font-family: var(--font-body);
    font-size: clamp(19px, 1.9vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
  }
  .ms-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 580px;
  }
  .ms:hover .ms-content h3 {
    color: var(--color-olive);
    transition: color var(--t-fast);
  }

  /* ════════ CLOSING CTA — split olive + foto ════════ */
  .about-closing {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: clamp(520px, 60vw, 680px);
  }
  @media (max-width: 880px) {
    .about-closing { grid-template-columns: 1fr; }
  }
  .closing-photo {
    background: var(--color-bg-deep-olive) url('../mock-images/photo-1600585154526-990dced4db0d.webp') center / cover no-repeat;
    min-height: 320px;
  }
  .closing-panel {
    background: linear-gradient(160deg, var(--color-accent) 0%, var(--color-olive-deep) 100%);
    color: var(--color-bg);
    padding: clamp(56px, 6vw, 96px) clamp(36px, 5vw, 88px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .closing-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(181, 192, 164, 0.16), transparent 55%);
    pointer-events: none;
  }
  .closing-inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
  }
  .closing-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-olive-light);
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(181, 192, 164, 0.5);
  }
  .closing-panel h2 {
    font-family: var(--font-body);
    font-size: clamp(56px, 8vw, 110px);
    font-weight: 200;
    line-height: 0.95;
    color: var(--color-bg);
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
  }
  .closing-panel > .closing-inner > p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 36px 0;
    max-width: 460px;
  }

  .closing-paths {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .closing-paths .path {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-bg);
    text-decoration: none;
    transition: all var(--t-fast);
  }
  .closing-paths .path:hover {
    padding-left: 8px;
    padding-right: 8px;
    background: rgba(181, 192, 164, 0.08);
  }
  .closing-paths .path-num {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-olive-light);
    letter-spacing: 0.14em;
    font-weight: 600;
    min-width: 28px;
  }
  .closing-paths .path-label {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 500;
    color: var(--color-bg);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .closing-paths .path-sub {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
  }
  .closing-paths .path i {
    color: var(--color-olive-light);
    font-size: 13px;
    transition: transform var(--t-fast);
  }
  .closing-paths .path:hover i {
    transform: translateX(6px);
  }

  /* 4-photo strip */
  .clarity-strip {
    display: grid;
    grid-template-columns: 1fr 1.8fr 0.85fr 0.95fr;
    gap: clamp(14px, 2vw, 28px);
    align-items: end;
  }
  @media (max-width: 760px) {
    .clarity-strip { grid-template-columns: 1fr 1fr; }
  }
  .clarity-strip figure {
    margin: 0;
    overflow: hidden;
    background: var(--color-bg-deep-olive);
  }
  .clarity-strip figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .clarity-strip figure:hover img { transform: scale(1.04); }
  .clarity-strip figure:nth-child(1) { aspect-ratio: 3 / 4.2; }
  .clarity-strip figure:nth-child(2) { aspect-ratio: 16 / 11; transform: translateY(-22px); }
  .clarity-strip figure:nth-child(3) { aspect-ratio: 3 / 4; }
  .clarity-strip figure:nth-child(4) { aspect-ratio: 3 / 4; transform: translateY(-14px); }
  @media (max-width: 760px) {
    .clarity-strip figure:nth-child(n) {
      transform: none;
      aspect-ratio: 4 / 5;
    }
  }

/* ═══════════════════════════════════════════════════════════
   MERGED FROM properties.css
   ═══════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════
   PROPERTIES PAGE — sidebar filtre + hartă + grid carduri
   Style match Paris Imobiliare (Manrope, olive accent, square corners)
   ──────────────────────────────────────────── */

.properties-page {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* ─── Top bar: tabs + count + map toggle ─── */
.properties-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--color-border);
}

.properties-page-title {
  font-family: var(--font-body);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--color-text);
  margin: 0;
}

.prop-tabs {
  display: inline-flex;
  border: 1px solid var(--color-border-mid);
  padding: 4px;
}
.prop-tab {
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
}
.prop-tab.active {
  background: var(--color-text);
  color: var(--color-bg);
}
.prop-tab:not(.active):hover {
  color: var(--color-text);
}

.prop-meta {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}
.prop-count {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.prop-count strong {
  color: var(--color-text);
  font-weight: 700;
  font-size: 16px;
  margin-right: 4px;
}

/* Map toggle switch */
.map-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.map-toggle-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.map-toggle input { display: none; }
.map-toggle-track {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  background: var(--color-border-mid);
  transition: background var(--t-fast);
}
.map-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-bg);
  transition: transform var(--t-fast);
}
.map-toggle input:checked + .map-toggle-track {
  background: var(--color-olive);
}
.map-toggle input:checked + .map-toggle-track .map-toggle-thumb {
  transform: translateX(20px);
}

/* ─── Main layout: sidebar + content ─── */
.properties-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(28px, 3.4vw, 56px);
  align-items: start;
}

/* ════════════════════════════════════════════
   SIDEBAR FILTERS
   ════════════════════════════════════════════ */
.filters-sidebar {
  position: sticky;
  top: clamp(80px, 9vw, 110px);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.4vw, 32px);
}

.filters-form {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.4vw, 32px);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
}

/* Filter checkbox (square, olive accent) */
.filter-check {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-soft);
  transition: color var(--t-fast);
  user-select: none;
}
.filter-check:hover { color: var(--color-text); }
.filter-check input { display: none; }
.filter-check .check-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-mid);
  background: var(--color-bg);
  position: relative;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.filter-check input:checked + .check-box {
  background: var(--color-text);
  border-color: var(--color-text);
}
.filter-check input:checked + .check-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid var(--color-bg);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* Filter select & text input — uniform cu range-text */
.filter-select,
.filter-input {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border-mid);
  outline: 0;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}
.filter-select { cursor: pointer; padding-right: 32px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23606060' d='M0 0l5 6 5-6z'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; }
.filter-select:focus,
.filter-input:focus { border-color: var(--color-olive); }
.filter-input::placeholder { color: var(--color-text-muted); opacity: 0.7; }

/* Multiselect dropdown (Zona, Camere) — same aspect as .filter-select */
.filter-multidrop {
  position: relative;
}
.filter-multidrop-trigger {
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.filter-multidrop-value {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text);
}
.filter-multidrop-value.is-empty {
  color: var(--color-text-muted);
  opacity: 0.85;
}
.filter-multidrop-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 240px;
  overflow-y: auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border-mid);
  box-shadow: 0 8px 24px rgba(14, 14, 14, 0.08);
  padding: 6px;
  display: none;
}
.filter-multidrop.is-open .filter-multidrop-panel {
  display: block;
}
.filter-multidrop.is-open .filter-multidrop-trigger {
  border-color: var(--color-olive);
}
.filter-multidrop-option {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft);
  transition: background var(--t-fast), color var(--t-fast);
  user-select: none;
}
.filter-multidrop-option:hover {
  background: var(--color-bg-alt, #f4f1ec);
  color: var(--color-text);
}
.filter-multidrop-option input { display: none; }
.filter-multidrop-option .check-box {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border-mid);
  background: var(--color-bg);
  position: relative;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.filter-multidrop-option input:checked + .check-box {
  background: var(--color-text);
  border-color: var(--color-text);
}
.filter-multidrop-option input:checked + .check-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid var(--color-bg);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.filter-multidrop-label { flex: 1; min-width: 0; }

/* Range filter */
.filter-range {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.range-track {
  position: relative;
  height: 3px;
  background: var(--color-border-mid);
}
.range-track-active {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--color-text);
}
.range-thumb {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--color-text);
  border: 2px solid var(--color-bg);
  box-shadow: 0 1px 4px rgba(14, 14, 14, 0.2);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.range-text {
  flex: 1;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border-mid);
  outline: 0;
  width: 100%;
  min-width: 0;
}
.range-text:focus { border-color: var(--color-olive); }
.range-dash {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Filter pills (radio-like buttons) */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pill {
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border-mid);
  cursor: pointer;
  transition: all var(--t-fast);
}
.pill:hover { border-color: var(--color-text); }
.pill.active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

/* Reset filters button */
.filters-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-olive);
  border: 1px solid var(--color-olive);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filters-submit:hover {
  background: transparent;
  color: var(--color-olive);
}

/* ════════════════════════════════════════════
   MAIN CONTENT — Map + Cards Grid
   ════════════════════════════════════════════ */
.properties-main {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.6vw, 36px);
}

/* MAP with pins */
.properties-map {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
  height: clamp(280px, 36vh, 380px);
  width: 100%;
  z-index: 0;
}
.properties-map img {
  width: 100%;
  height: clamp(280px, 36vh, 380px);
  object-fit: cover;
  filter: saturate(0.4) contrast(0.95);
}
/* Leaflet custom price pin — neutralizează position absolute din .map-pin */
.leaflet-price-pin .map-pin {
  position: relative;
  transform: none;
  display: inline-block;
}
.map-pin {
  position: absolute;
  padding: 7px 13px;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(14, 14, 14, 0.25);
  cursor: pointer;
  transition: all var(--t-fast);
}
.map-pin::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-text);
}
.map-pin:hover {
  background: var(--color-olive);
  z-index: 2;
}
.map-pin:hover::after { border-top-color: var(--color-olive); }

/* View toolbar: grid/list toggle + sort */
.view-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--color-border-mid);
}
.view-btn {
  padding: 10px 14px;
  background: var(--color-bg);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
}
.view-btn:hover { color: var(--color-text); }
.view-btn.active {
  background: var(--color-text);
  color: var(--color-bg);
}
.view-btn i { font-size: 13px; }

.sort-select {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border-mid);
  outline: 0;
  cursor: pointer;
}

/* ════════════════════════════════════════════
   PROPERTY CARDS GRID (2 cols în main area)
   ════════════════════════════════════════════ */
.properties-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.prop-card {
  position: relative;
  background: var(--color-bg);
  box-shadow: 0 4px 24px rgba(61, 74, 53, 0.08);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.prop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(61, 74, 53, 0.14);
}
.prop-card-link { display: block; }
.prop-card-image {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
}
.prop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.prop-card-link:hover .prop-card-image img { transform: scale(1.04); }

.prop-card-info {
  padding: 18px clamp(18px, 1.6vw, 24px) 22px;
}
.prop-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.prop-card-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-body);
}
.prop-card-price strong {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  color: var(--color-text);
}
.prop-card-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}
.prop-card-addr {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-soft);
  margin: 0 0 14px;
}
.prop-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
}
.prop-card-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prop-card-meta i {
  font-size: 12px;
  color: var(--color-olive);
}

/* Heart favorite */
.prop-card-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  cursor: pointer;
  z-index: 3;
  transition: all var(--t-fast);
}
.prop-card-fav:hover,
.prop-card-fav.is-active {
  background: var(--color-olive);
  color: var(--color-bg);
  border-color: var(--color-olive);
}
.prop-card-fav i { font-size: 13px; }

/* ════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════ */
.properties-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding-top: 24px;
}
.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--t-fast);
}
.page-btn:hover { border-color: var(--color-text); }
.page-btn.active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}
.page-arrow i { font-size: 11px; }
.page-dots {
  padding: 0 6px;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .properties-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .filters-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .properties-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .filters-sidebar { grid-template-columns: 1fr; }
  .filters-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
  .filters-form .filters-submit { grid-column: 1 / -1; }
  .properties-cards-grid { grid-template-columns: 1fr; }
  .properties-topbar { flex-direction: column; align-items: stretch; }
  .prop-meta { justify-content: space-between; }
  .view-toolbar { flex-direction: row; align-items: center; flex-wrap: nowrap; }
  .view-toolbar .sort-select { flex: 1; min-width: 0; }
  .properties-pagination { flex-wrap: wrap; }
}

/* ═══ View toggle: List mode pentru .listings-grid ═══ */
.listings-grid.is-list-view {
  --img-col-w: 380px;
  --img-h: 320px;
}
.listings-grid.is-list-view .listing-link {
  display: grid;
  grid-template-columns: var(--img-col-w) 1fr;
  align-items: stretch;
  min-height: var(--img-h);
}
.listings-grid.is-list-view .listing-image {
  aspect-ratio: auto;
  height: var(--img-h);
  min-height: 0;
  align-self: start;
}
.listings-grid.is-list-view .listing-image img {
  height: var(--img-h);
}
.listings-grid.is-list-view .listing-info {
  padding: 32px clamp(28px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.listings-grid.is-list-view .listing-head { margin-bottom: 20px; }
.listings-grid.is-list-view .listing-title { font-size: clamp(20px, 1.8vw, 24px); }
.listings-grid.is-list-view .listing-price { font-size: clamp(17px, 1.5vw, 20px); }
.listings-grid.is-list-view .listing-loc { margin-bottom: 22px; padding-bottom: 20px; }
.listings-grid.is-list-view .listing-desc {
  margin: 0 0 22px;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.listings-grid.is-list-view .listing-meta { padding-top: 6px; font-size: 14px; }
/* Heart pe imagine, nu pe info (img col width - heart width 38 - 14 gap = -52) */
.listings-grid.is-list-view .listing-fav {
  right: auto;
  left: calc(var(--img-col-w) - 52px);
}

/* Descriere scurtă — vizibilă doar în modul listă, sub localitate, max 2 rânduri */
.listing-desc {
  display: none;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-soft);
}
.listings-grid.is-list-view .listing-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 720px) {
  .listings-grid.is-list-view .listing-link {
    grid-template-columns: 1fr;
  }
  .listings-grid.is-list-view .listing-image {
    aspect-ratio: 4/3;
    min-height: 0;
  }
  .listings-grid.is-list-view .listing-fav {
    right: 14px;
    left: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ADĂUGATE LA CONVERSIA VDI (CONTRACT-TEME.md)
   — submeniu nav (regula 2.9), etichete Vândută/Închiriată (2.10),
     share pe detaliu (2.11), badge Nou.
   Limbajul vizual al temei: colțuri drepte, uppercase, tracking mare,
   alb + near-black + olive.
   ═══════════════════════════════════════════════════════════════ */

/* ═══ Submeniu derulabil Vânzare / Închirieri (regula 2.9) ═══ */
.nav-item-sub {
  position: relative;
  display: inline-flex;
}
.nav-item-sub > a { display: inline-flex; align-items: center; }
/* Pod invizibil între link și panou — meniul nu se închide în drum spre el */
.nav-item-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  padding: 8px 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 120;
}
.nav-item-sub:hover .nav-submenu,
.nav-item-sub:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-submenu a:last-child { border-bottom: 0; }
.nav-submenu a:hover {
  background: var(--color-cream-50);
  color: var(--color-olive);
}
/* Sublinierile globale din .main-nav a::after nu au sens pe rândurile panoului */
.nav-submenu a::after { display: none; }
.nav-submenu-count {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 2px 8px;
}
.nav-submenu a:hover .nav-submenu-count {
  color: var(--color-olive);
  border-color: var(--color-olive);
}

/* Mobil: panoul devine listă statică sub punctul de meniu (nu există hover) */
@media (max-width: 720px) {
  .nav-item-sub { display: block; }
  .nav-item-sub::after { display: none; }
  .nav-item-sub > a { display: flex; width: 100%; }
  .nav-submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: var(--color-cream-50);
  }
  .nav-submenu a {
    padding: 12px clamp(32px, 8vw, 48px);
    font-size: 12px;
  }
}

/* ═══ Etichete pe oferte (regula 2.10) ═══ */
/* Badge Nou — tema statică avea doar sale + exclusive */
.listing-badge-new {
  background: var(--color-olive-light);
  color: var(--color-olive-deep);
}
/* Vândută / Închiriată — roșu închis, prioritate peste toate */
.listing-badge--vanduta {
  background: #b3261e;
  color: #ffffff;
}
/* Cardul vândut: imaginea se desaturează */
.listing-card.is-sold .listing-image img {
  filter: saturate(0.15);
}
.listing-card.is-sold:hover .listing-image img {
  filter: saturate(0.35);
}
/* Galeria de pe detaliu, la ofertă vândută */
.pd-gallery.is-sold .pd-swiper-main img,
.pd-gallery.is-sold .pd-swiper-thumbs img {
  filter: saturate(0.2);
}
/* Eticheta în antetul paginii de detaliu */
.pd-sold-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ═══ Distribuire pe detaliu (regula 2.11) ═══ */
.pd-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.pd-share-row .pd-share-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-right: auto;
}
.pd-share-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.pd-share-row a:hover {
  background: var(--color-olive);
  border-color: var(--color-olive);
  color: var(--color-bg);
}

/* ═══ Buton WhatsApp în cardul de preț ═══ */
.pd-btn-whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
}
.pd-btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: #ffffff;
}
