/* Vistas Villa · Brand styles
   Palette:
   - Crem închis #F4EFE6 (fundal calm)
   - Alb cald   #FBFAF6 (fundal luminos)
   - Gri antracit #2D2D2D (text, titluri, logo)
   - Accent arămiu #B8754D (CTA, accente, max 10%)

   Fonts:
   - Headline: Plus Jakarta Sans (SemiBold)
   - Body: Inter
   - Accent: Inter Medium uppercase, letter-spacing +15-20%

   Reguli:
   - Fără drop-shadow agresive
   - Colțuri drepte (border-radius mic doar pe imagini)
   - Spațiu alb generos
   - Linii subțiri pt separatori (0.5-1px)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

:root {
  --crem-inchis: #F4EFE6;
  --alb-cald: #FBFAF6;
  --gri-antracit: #2D2D2D;
  --aram: #B8754D;
  --gri-mediu: #6b6b6b;
  --gri-deschis: #e7e2d8;
  --max-width: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-headline: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gri-antracit);
  background: var(--alb-cald);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gri-antracit);
}

h1 { font-size: clamp(1.85rem, 5vw, 4rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.6rem); margin-bottom: 0.85rem; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); margin-bottom: 0.6rem; }
h4 { font-size: clamp(0.95rem, 1.4vw, 1.15rem); }

p { margin-bottom: 0.95rem; line-height: 1.6; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(60px, 8vw, 120px) 0; }
.section--crem { background: var(--crem-inchis); }
.section--white { background: var(--alb-cald); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aram);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gri-deschis);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo img { height: 68px; width: auto; display: block; }
.nav__menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gri-antracit);
  transition: color 0.2s;
}
.nav__menu a:hover,
.nav__menu a.is-active { color: var(--aram); }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gri-antracit);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 880px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--alb-cald);
    flex-direction: column;
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--gri-deschis);
    gap: 20px;
    align-items: flex-start;
  }
  .nav__menu.is-open { display: flex; }
  .nav__toggle { display: block; }
  .nav__cta { margin-left: 0; width: 100%; text-align: center; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn--primary {
  background: var(--gri-antracit);
  color: var(--alb-cald);
}
.btn--primary:hover { background: var(--aram); border-color: var(--aram); }
.btn--outline {
  background: transparent;
  color: var(--gri-antracit);
  border-color: var(--gri-antracit);
}
.btn--outline:hover { background: var(--gri-antracit); color: var(--alb-cald); }
.btn--light {
  background: var(--alb-cald);
  color: var(--gri-antracit);
}
.btn--light:hover { background: var(--aram); color: var(--alb-cald); }

/* ---------- HERO ---------- */
.hero {
  padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 8vw, 120px);
  background: var(--crem-inchis);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__title { margin-bottom: 1.5rem; max-width: 14ch; }
.hero__tagline {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--gri-mediu);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero__cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__visual {
  aspect-ratio: 4 / 5;
  background: var(--gri-deschis);
  position: relative;
  overflow: hidden;
}
.hero__visual .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gri-mediu);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__visual::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(45, 45, 45, 0.15);
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 16 / 11; order: -1; }
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gri-deschis);
  border-bottom: 1px solid var(--gri-deschis);
  margin-top: 60px;
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gri-deschis);
}
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gri-antracit);
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gri-mediu);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--gri-deschis); }
}

/* ---------- INTRO SPLIT ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
  aspect-ratio: 4 / 3;
  background: var(--gri-deschis);
  position: relative;
}
.split__media .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gri-mediu);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse > :first-child { order: 0; }
}

/* ---------- VALUES ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value {
  padding: 24px 0;
  border-top: 1px solid var(--gri-deschis);
}
.value p { font-size: 0.95rem; line-height: 1.55; }
.value__num {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aram);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.value h3 { margin-bottom: 12px; }
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }

/* ---------- HOUSE GRID ---------- */
.houses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.house-card {
  display: block;
  background: var(--alb-cald);
  border: 1px solid var(--gri-deschis);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.house-card:hover {
  transform: translateY(-2px);
  border-color: var(--aram);
}
.house-card__media {
  aspect-ratio: 16 / 10;
  background: var(--gri-deschis);
  position: relative;
}
.house-card__media .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gri-mediu);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.house-card__body { padding: 28px 28px 32px; }
.house-card__type {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aram);
  font-weight: 500;
  margin-bottom: 8px;
}
.house-card h3 { margin-bottom: 12px; }
.house-card__meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gri-deschis);
  font-size: 0.85rem;
  color: var(--gri-mediu);
}
.house-card__meta strong {
  display: block;
  color: var(--gri-antracit);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-headline);
}
@media (max-width: 720px) { .houses { grid-template-columns: 1fr; } }

/* ---------- SPEC TABLE ---------- */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gri-deschis);
}
.spec {
  padding: 24px 0;
  border-bottom: 1px solid var(--gri-deschis);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding-right: 32px;
}
.spec:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--gri-deschis); }
.spec:nth-child(even) { padding-left: 32px; }
.spec__label {
  font-size: 0.85rem;
  color: var(--gri-mediu);
  letter-spacing: 0.04em;
}
.spec__value {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: right;
}
@media (max-width: 720px) {
  .specs { grid-template-columns: 1fr; }
  .spec, .spec:nth-child(odd) {
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid var(--gri-deschis);
  }
  .spec__value { text-align: left; }
}

/* ---------- PLAN DISPLAY ---------- */
.plan {
  background: var(--alb-cald);
  border: 1px solid var(--gri-deschis);
  padding: 24px;
  margin-top: 32px;
}
.plan__placeholder {
  aspect-ratio: 16 / 11;
  background: var(--gri-deschis);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gri-mediu);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 8px;
}

/* ---------- ROOM TABLE ---------- */
.rooms {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.rooms th, .rooms td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gri-deschis);
}
.rooms th {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gri-mediu);
  font-weight: 500;
}
.rooms td {
  font-size: 0.95rem;
}
.rooms td:last-child {
  text-align: right;
  font-family: var(--font-headline);
  font-weight: 600;
}

/* ---------- MATERIALS LIST ---------- */
.materials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gri-deschis);
}
.material {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--gri-deschis);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.material:nth-child(odd) { border-right: 1px solid var(--gri-deschis); padding-right: 32px; }
.material:nth-child(even) { padding-left: 32px; }
.material__num {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--aram);
}
.material h3 { font-size: 1.15rem; margin-bottom: 8px; }
.material p { font-size: 0.92rem; color: var(--gri-mediu); margin: 0; }
@media (max-width: 720px) {
  .materials { grid-template-columns: 1fr; }
  .material, .material:nth-child(odd) { padding: 24px 0; border-right: none; }
}

/* ---------- CONTACT FORM ---------- */
.form { display: grid; gap: 20px; max-width: 540px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gri-mediu);
}
.form__input,
.form__textarea,
.form__select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--alb-cald);
  border: 1px solid var(--gri-deschis);
  border-radius: 2px;
  color: var(--gri-antracit);
  transition: border-color 0.2s;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--aram);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__submit { margin-top: 8px; }

@media (max-width: 720px) {
  .form__row { grid-template-columns: 1fr; }
  .form { gap: 14px; }
  .form__field { margin-bottom: 0; }
  .form__label { font-size: 0.72rem; margin-bottom: 6px; }
  .form__input, .form__textarea, .form__select { font-size: 0.95rem; padding: 10px 12px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--gri-antracit);
  color: var(--crem-inchis);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer h4 {
  color: var(--alb-cald);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 0.9rem; }
.footer a { color: var(--crem-inchis); opacity: 0.7; transition: opacity 0.2s; }
.footer a:hover { opacity: 1; color: var(--aram); }
.footer__logo { height: 56px; margin-bottom: 12px; opacity: 0.9; }
.footer__brand p { font-size: 0.88rem; opacity: 0.7; max-width: 28ch; line-height: 1.5; }
.footer__tagline { font-size: 0.82rem !important; opacity: 0.5 !important; font-style: italic; margin-top: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.55;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom a { color: inherit; opacity: 1; }
.footer__disclaimer { text-align: right; }
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px 24px; }
  .footer__brand { grid-column: span 3; }
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer__disclaimer { text-align: left; }
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--gri-mediu);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gri-mediu); }
.breadcrumb a:hover { color: var(--aram); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ---------- PAGE HERO (small) ---------- */
.page-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
  background: var(--crem-inchis);
}
.page-hero h1 { max-width: 18ch; margin-bottom: 0.75rem; line-height: 1.15; }
.page-hero p { font-size: 1.05rem; color: var(--gri-mediu); max-width: 56ch; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; }
.faq__item { border-bottom: 1px solid var(--gri-deschis); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gri-antracit);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--aram);
  transition: transform 0.2s;
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: var(--gri-mediu);
}
.faq__item.is-open .faq__a { max-height: 500px; padding-bottom: 24px; }

/* ---------- NOTES & LEGAL ---------- */
.legal-note {
  margin-top: 48px;
  padding: 24px;
  background: var(--crem-inchis);
  border-left: 2px solid var(--aram);
  font-size: 0.85rem;
  color: var(--gri-mediu);
  font-style: italic;
}

/* ---------- IMAGE PLACEHOLDER COMMON ---------- */
.img-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--gri-deschis);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gri-mediu);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(45, 45, 45, 0.2);
}
.img-placeholder span {
  position: relative;
  z-index: 1;
}
.img-placeholder--wide { aspect-ratio: 16 / 9; }
.img-placeholder--tall { aspect-ratio: 3 / 4; }
.img-placeholder--square { aspect-ratio: 1; }

/* ---------- MAP ---------- */
.map-wrap {
  margin-top: 48px;
  border: 1px solid var(--gri-deschis);
  overflow: hidden;
}
#map {
  width: 100%;
  height: 480px;
  background: var(--gri-deschis);
}
.map-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding: 24px 28px;
  background: var(--alb-cald);
  border-top: 1px solid var(--gri-deschis);
}
.map-legend__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gri-antracit);
}
.map-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--alb-cald);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.map-legend__dot--home { background: var(--aram); }
.map-legend__dot--access { background: #6b6b6b; }
.map-legend__dot--nature { background: #5a7a4a; }
.map-legend__dot--shopping { background: #c08454; }
.map-legend__dot--education { background: #8b6b9a; }
.map-legend__dot--airport { background: #4a6b7a; }

@media (max-width: 720px) {
  .map-legend { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  #map { height: 360px; }
  .map-wrap { margin-top: 32px; }
}

/* Custom Leaflet marker */
.vv-marker {
  background: var(--aram);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid var(--alb-cald);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.vv-marker--small {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

/* ---------- STORY QUOTE ---------- */
.story-quote {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--gri-antracit);
  padding-left: 24px;
  border-left: 2px solid var(--aram);
  margin: 32px 0;
  max-width: 56ch;
}

/* ---------- TIMELINE ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gri-deschis);
  margin-top: 32px;
}
.timeline__step {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--gri-deschis);
}
.timeline__step:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.timeline__step:not(:first-child) { padding-left: 28px; }
.timeline__year {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aram);
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}
.timeline__year::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: var(--aram);
  border-radius: 50%;
}
.timeline__step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.timeline__step p { font-size: 0.9rem; color: var(--gri-mediu); margin: 0; }
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline__step {
    border-right: none;
    border-bottom: 1px solid var(--gri-deschis);
    padding: 24px 0;
  }
  .timeline__step:last-child { border-bottom: none; }
  .timeline__step:not(:first-child) { padding-left: 0; }
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.max-w-prose { max-width: 60ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Hartă · markeri */
.vv-marker {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.vv-marker--home {
  width: 28px;
  height: 28px;
  border-width: 4px;
  box-shadow: 0 2px 10px rgba(220,38,38,0.5);
}
.vv-marker--ref {
  width: 18px;
  height: 18px;
}
.vv-label-tooltip {
  background: #DC2626 !important;
  color: white !important;
  border: 2px solid white !important;
  border-radius: 3px !important;
  padding: 4px 10px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.4px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3) !important;
}
.vv-label-tooltip::before {
  border-top-color: #DC2626 !important;
}

/* FAB · Buton Descarca Brosura */
.brosura-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--aram);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(184,117,77,0.4), 0 2px 6px rgba(0,0,0,0.1);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.brosura-fab svg {
  width: 20px;
  height: 20px;
}
.brosura-fab:hover {
  background: #a16440;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,117,77,0.5), 0 2px 8px rgba(0,0,0,0.15);
}
@media (max-width: 600px) {
  .brosura-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
}

/* Imagini în containere */
.hero__visual img,
.split__media img,
.house-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.house-card__media {
  aspect-ratio: 4 / 3;
  background: var(--gri-deschis);
  overflow: hidden;
}
.split__media {
  overflow: hidden;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}




/* Spații optimizate - secțiuni mai compacte */
.section { padding: clamp(48px, 7vw, 100px) 0; }
.page-hero { padding: clamp(36px, 5vw, 80px) 0 clamp(20px, 3vw, 40px); }
.page-hero p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); }

/* Butoane - feedback vizual */
.btn { transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(184,117,77,0.3); }

/* Hero - intrare lină */
.hero__title, .hero__tagline, .hero__cta-group, .hero__visual {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s ease-out forwards;
}
.hero__title { animation-delay: 0.1s; }
.hero__tagline { animation-delay: 0.25s; }
.hero__cta-group { animation-delay: 0.4s; }
.hero__visual { animation-delay: 0.3s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Nav - sticky cu umbră la scroll */
.nav.scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Hover subtil pe carduri */
.house-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.house-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Fix: linkurile din butoane păstrează culorile butonului */
.btn, .btn:visited, .btn:hover, .btn:active { color: inherit; text-decoration: none; }
.btn--primary, .btn--primary:visited, .btn--primary:hover, .btn--primary:active {
  background: var(--gri-antracit);
  color: var(--alb-cald) !important;
}
.btn--outline, .btn--outline:visited, .btn--outline:hover, .btn--outline:active {
  background: transparent;
  color: var(--gri-antracit) !important;
  border-color: var(--gri-antracit);
}

/* ============================================
   HERO CINEMATIC (full-width)
   ============================================ */
.hero-cinema {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #FBFAF6;
}
.hero-cinema__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-cinema__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45,45,45,0.45) 0%,
    rgba(45,45,45,0.25) 40%,
    rgba(45,45,45,0.65) 100%
  );
  z-index: 1;
}
.hero-cinema__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0 100px;
}
.hero-cinema__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251,250,246,0.85);
  margin-bottom: 1.4rem;
}
.hero-cinema__title {
  font-family: var(--font-headline);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #FBFAF6;
  margin-bottom: 1.4rem;
  max-width: 14ch;
}
.hero-cinema__tagline {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(251,250,246,0.92);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}
.hero-cinema__cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn--lg { padding: 18px 32px; font-size: 0.98rem; }
.btn--outline--light {
  background: rgba(251,250,246,0.95);
  color: #2D2D2D !important;
  border-color: rgba(251,250,246,0.95);
  font-weight: 600;
}
.btn--outline--light:hover {
  background: rgba(251,250,246,1);
  border-color: rgba(251,250,246,1);
}

/* Nav overlay (peste hero întunecat) */
.nav--overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(251,250,246,0.1);
}
.nav--overlay .nav__menu a { color: #FBFAF6; }
.nav--overlay .nav__menu a:hover { color: #FBFAF6; opacity: 0.75; }
.nav--overlay .nav__menu a.is-active { color: #FBFAF6; }
.nav--overlay .nav__menu a.btn--primary {
  background: rgba(251,250,246,0.95);
  color: var(--gri-antracit) !important;
  border: 1px solid rgba(251,250,246,0.95);
}
.nav--overlay .nav__menu a.btn--primary:hover {
  background: rgba(251,250,246,1);
  color: var(--gri-antracit) !important;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-cinema { min-height: 60vh; }
  .hero-cinema__content { padding: 60px 0 70px; }
  .hero-cinema__cta-group { flex-direction: column; align-items: stretch; }
  .hero-cinema__cta-group .btn { width: 100%; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--gri-antracit);
  color: var(--alb-cald);
  padding: clamp(28px, 4vw, 40px) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-bar__item {
  border-right: 1px solid rgba(251,250,246,0.15);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__value {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--alb-cald);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,250,246,0.7);
}
@media (max-width: 720px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-bar__item { border-right: none; padding-bottom: 12px; }
}

/* ============================================
   EDITORIAL BLOCKS (text + imagine mare)
   ============================================ */
.editorial-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.editorial-block__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gri-deschis);
}
.editorial-block__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.editorial-block__media:hover img { transform: scale(1.03); }
.image-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(251,250,246,0.85);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gri-antracit);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .editorial-block { grid-template-columns: 1fr; }
}

/* Editorial split (2 imagini + text) */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(40px, 6vw, 60px);
}
.editorial-split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--gri-deschis);
}
.editorial-split__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-split__text {
  max-width: 60ch;
}
@media (max-width: 720px) {
  .editorial-split { grid-template-columns: 1fr; }
}

/* ============================================
   COMPARATIV TIPOLOGII
   ============================================ */
.compare-table {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--gri-deschis);
  background: var(--alb-cald);
}
.compare-table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--gri-deschis);
}
.compare-table__row:last-child { border-bottom: none; }
.compare-table__row--head { background: var(--gri-antracit); color: var(--alb-cald); }
.compare-table__row--cta { background: var(--crem-inchis); padding: 16px 0; }
.compare-cell {
  padding: 18px 24px;
  font-size: 0.95rem;
  border-right: 1px solid var(--gri-deschis);
}
.compare-cell:last-child { border-right: none; }
.compare-cell--name {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
}
.compare-cell--label {
  font-weight: 600;
  color: var(--gri-antracit);
}
.btn--full { width: 100%; padding: 12px 16px; }

/* ============================================
   CTA TILES (3 puncte de conversie)
   ============================================ */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 720px) { .cta-grid { grid-template-columns: 1fr; gap: 16px; } }
.cta-tile {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px);
  background: var(--alb-cald);
  border: 1px solid var(--gri-deschis);
  text-decoration: none;
  color: var(--gri-antracit);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.cta-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--aram);
}
.cta-tile__num {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--aram);
  margin-bottom: 16px;
}
.cta-tile h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gri-antracit);
}
.cta-tile p {
  font-size: 0.95rem;
  color: var(--gri-mediu);
  margin-bottom: 32px;
  flex: 1;
}
.cta-tile__arrow {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--aram);
  align-self: flex-end;
  transition: transform 0.3s ease;
}
.cta-tile:hover .cta-tile__arrow { transform: translateX(6px); }

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

/* Buton Formular de disponibilitate */
.availability-form {
  max-width: 540px;
  margin: 32px auto;
  background: var(--alb-cald);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--gri-deschis);
}
.availability-form h2 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.availability-form .form__intro {
  color: var(--gri-mediu);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.form__privacy {
  font-size: 0.8rem;
  color: var(--gri-mediu);
  margin-top: 8px;
  margin-bottom: 0;
}
.form__privacy a { color: var(--aram); text-decoration: underline; }



/* Logo footer alb - asigur lizibilitate pe fundal antracit */
.footer img,
.footer__brand img {
  filter: brightness(0) invert(1);
}

/* Asigur că butonul 2 din hero e vizibil */
.hero-cinema__cta-group {
  position: relative;
  z-index: 4;
}
.hero-cinema__cta-group .btn {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

/* Plan + tabel orizontal */
.plan-with-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
}
.plan-with-table__image {
  display: flex;
  flex-direction: column;
  background: var(--alb-cald);
  border: 1px solid var(--gri-deschis);
  padding: 24px;
}
.plan-with-table__title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gri-deschis);
}
.plan-with-table__image img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  margin-bottom: 24px;
  background: var(--crem-inchis);
}

.rooms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.rooms-table thead {
  background: var(--gri-antracit);
  color: var(--alb-cald);
}
.rooms-table th {
  text-align: left;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.rooms-table th:last-child {
  text-align: right;
}
.rooms-table td {
  padding: 7px 12px;
  border-bottom: 1px solid var(--gri-deschis);
}
.rooms-table td:last-child {
  text-align: right;
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--aram);
}
.rooms-table tr.total td {
  border-top: 2px solid var(--gri-antracit);
  border-bottom: none;
  font-weight: 700;
  color: var(--gri-antracit);
  padding-top: 12px;
}
.rooms-table tr.total td:last-child {
  color: var(--gri-antracit);
}

@media (max-width: 880px) {
  .plan-with-table { grid-template-columns: 1fr; }
}

/* Footer logo alb */
.footer img,
.footer__brand img {
  filter: brightness(0) invert(1);
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

/* Logo mai mic pe mobil */
@media (max-width: 720px) {
  .nav__logo img { height: 48px !important; }
  .footer img, .footer__brand img { height: 40px !important; }
}

/* Meniu burger - container relative ca dropdown-ul să funcționeze */
@media (max-width: 880px) {
  .nav { position: relative !important; }
  .nav--overlay { position: absolute !important; }

  .nav__inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 50;
  }

  /* Logo pe mobil - mai mic, fără overlay */
  .nav__logo img { height: 56px; }

  /* Burger toggle */
  .nav__toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(251,250,246,0.9);
    border-radius: 4px;
    z-index: 100;
  }
  .nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--gri-antracit);
    margin: 3px 0;
    transition: 0.3s ease;
  }
  .nav__toggle.is-open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* Meniu dropdown - funcțional */
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--alb-cald);
    flex-direction: column;
    padding: 16px var(--gutter);
    border-top: 1px solid var(--gri-deschis);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    gap: 0;
    align-items: stretch;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 49;
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__menu li {
    width: 100%;
    border-bottom: 1px solid rgba(45,45,45,0.08);
  }
  .nav__menu li:last-child {
    border-bottom: none;
  }
  .nav__menu a {
    display: block;
    width: 100%;
    padding: 18px 0;
    color: var(--gri-antracit) !important;
    font-size: 1.05rem;
    font-weight: 500;
  }
  .nav__menu a:hover {
    opacity: 0.7;
  }
  .nav__menu a.btn--primary {
    background: var(--gri-antracit) !important;
    color: var(--alb-cald) !important;
    padding: 16px 24px !important;
    margin-top: 12px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600 !important;
  }
  .nav__cta { width: 100% !important; }
}

/* Hero pe mobil - micșorez puțin */
@media (max-width: 720px) {
  .hero-cinema { min-height: 70vh; }
  .hero-cinema__content { padding: 50px 0 60px; }
  .hero-cinema__title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    margin-bottom: 1.2rem;
  }
  .hero-cinema__tagline {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }
  .hero-cinema__cta-group { gap: 10px; }
  .hero-cinema__cta-group .btn { width: 100%; }
  .hero-cinema__cta-group .btn--outline--light { font-size: 0.95rem; }

  .stats-bar__grid { gap: 16px; }
  .stats-bar__value { font-size: 1.6rem; }
  .stats-bar__label { font-size: 0.7rem; }

  /* Ascund bara de scroll pe meniu deschis */
  body.menu-open {
    overflow: hidden;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   - Desktop: > 1024px
   - Tablet: 720px - 1024px
   - Mobile: < 720px
   ============================================ */

/* Tablet (720-1024px) */
@media (max-width: 1024px) {
  .hero-cinema { min-height: 75vh; }
  .hero-cinema__title { font-size: clamp(2.6rem, 5vw, 4rem); }
  .compare-table__row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .editorial-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Telefoane mici (< 480px) */
@media (max-width: 480px) {
  .hero-cinema { min-height: 80vh; }
  .hero-cinema__content { padding: 40px 0 50px; }
  .hero-cinema__title {
    font-size: 2.2rem;
    line-height: 1.05;
  }
  .hero-cinema__tagline {
    font-size: 0.95rem;
  }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .btn--lg { padding: 14px 24px; font-size: 0.95rem; }

  /* Stats 1 coloană pe telefon foarte mic */
  .stats-bar__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stats-bar__item {
    border-right: none;
    border-bottom: 1px solid rgba(251,250,246,0.15);
    padding-bottom: 12px;
  }
  .stats-bar__item:last-child { border-bottom: none; }

  .section { padding: 36px 0; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Plan with table - stivuit pe telefon mic */
  .plan-with-table { gap: 32px; }
  .plan-with-table__image {
    padding: 16px;
  }
  .plan-with-table__image img {
    max-height: 280px;
  }

  /* Tabel mai mic */
  .rooms-table { font-size: 0.82rem; }
  .rooms-table th,
  .rooms-table td {
    padding: 6px 8px;
  }

  /* Editorial split - stivuit */
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split__media { aspect-ratio: 4 / 3; }

  /* Compare table - blocuri */
  .compare-table__row {
    grid-template-columns: 1fr;
    border-bottom: 2px solid var(--gri-deschis);
  }
  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--gri-deschis);
  }
  .compare-cell:last-child { border-bottom: none; }
}

/* iPhone X / notch phones - safe area */
@supports (padding-top: env(safe-area-inset-top)) {
  .nav__inner {
    padding-top: max(env(safe-area-inset-top), 0);
    padding-bottom: max(env(safe-area-inset-bottom), 0);
  }
  .hero-cinema__content {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0));
  }
}

/* Imagine brand wall - perete cu logouri */
.brand-wall-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--gri-deschis);
  overflow: hidden;
}
.brand-wall-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
}

/* === CONTACT DIRECT BLOCK === */
.contact-direct { padding-top: 8px; }
.contact-direct .eyebrow { margin-bottom: 16px; }
.contact-direct__phone { font-family: var(--font-headline); font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; }
.contact-direct__phone a { color: var(--gri-antracit); text-decoration: none; }
.contact-direct__phone a:hover { color: var(--aramiu); }
.contact-direct__hours { color: var(--gri-mediu); font-size: 0.9rem; margin-bottom: 1.5rem; }
.contact-direct__email { font-size: 1.05rem; margin-bottom: 4px; }
.contact-direct__email a { color: var(--gri-antracit); text-decoration: none; }
.contact-direct__email a:hover { color: var(--aramiu); }
.contact-direct__address { color: var(--gri-mediu); font-size: 0.95rem; line-height: 1.6; margin-top: 1.5rem; }
.contact-direct__note { font-size: 0.85rem; color: var(--gri-mediu); opacity: 0.75; }

.legal__content { max-width: 800px; margin: 0 auto; }
.legal__content h2 { font-family: var(--font-headline); font-size: 1.5rem; color: var(--gri-antracit); margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--crem); }
.legal__content h3 { font-family: var(--font-headline); font-size: 1.15rem; color: var(--gri-antracit); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.legal__content p { margin-bottom: 1rem; line-height: 1.7; color: var(--gri-mediu); }
.legal__content ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.legal__content li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--gri-mediu); }
.legal__content a { color: var(--aramiu); text-decoration: underline; text-underline-offset: 2px; }
.legal__content a:hover { color: var(--gri-antracit); }
.legal__content strong { color: var(--gri-antracit); font-weight: 600; }

/* === PLAN MODAL ZOOM === */
.plan-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.plan-modal.is-visible { opacity: 1; pointer-events: auto; }
.plan-modal__backdrop { position: absolute; inset: 0; background: rgba(45, 45, 45, 0.92); cursor: zoom-out; }
.plan-modal__content { position: relative; z-index: 1; max-width: 95vw; max-height: 95vh; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.plan-modal__image { max-width: 95vw; max-height: 90vh; object-fit: contain; background: #fff; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.plan-modal__close { position: absolute; top: -50px; right: 0; background: none; border: none; color: #FBFAF6; font-size: 2.5rem; line-height: 1; cursor: pointer; padding: 8px 16px; font-family: var(--font-body); transition: color 0.2s; }
.plan-modal__close:hover { color: #B8754D; }
.plan-modal__caption { color: #FBFAF6; font-size: 0.95rem; text-align: center; opacity: 0.85; }

/* Plan images - cursor zoom-in pe toate */
.plan-with-table__image img { cursor: zoom-in; transition: opacity 0.2s; }
.plan-with-table__image img:hover { opacity: 0.9; }


/* === LEGAL: COMPANIES TABLE === */
.legal__content .company-info {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.92rem;
}
.legal__content .company-info th,
.legal__content .company-info td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gri-deschis);
  vertical-align: top;
}
.legal__content .company-info th {
  background: var(--crem-inchis);
  font-weight: 600;
  color: var(--gri-antracit);
  width: 35%;
  white-space: nowrap;
}
.legal__content .company-info tr:last-child th,
.legal__content .company-info tr:last-child td {
  border-bottom: none;
}

/* === COOKIE BANNER === */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--alb-cald); border-top: 1px solid rgba(0,0,0,0.1); box-shadow: 0 -4px 24px rgba(0,0,0,0.08); padding: 1.25rem 1rem; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__text { flex: 1; min-width: 280px; font-size: 0.9rem; color: var(--gri-mediu); line-height: 1.5; }
.cookie-banner__text strong { color: var(--gri-antracit); }
.cookie-banner__text a { color: var(--aramiu); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-banner__btn { padding: 0.65rem 1.5rem; border: 1px solid transparent; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; border-radius: 4px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.cookie-banner__btn--accept { background: var(--gri-antracit); color: var(--alb-cald); }
.cookie-banner__btn--accept:hover { background: var(--aramiu); }
.cookie-banner__btn--reject { background: transparent; color: var(--gri-mediu); border-color: var(--gri-mediu); }
.cookie-banner__btn--reject:hover { background: var(--gri-mediu); color: var(--alb-cald); }
@media (max-width: 720px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
}
