/* ═══════════════════════════════════════════════════════════
   SEVEN Private Collection — quiet luxury design system
   Ink #171D1A · Pine #24312A · Limestone #EFECE4 · Bone #F8F6F1
   Brass #B4915A · Stone #55524A
   Type: Marcellus (display) · Raleway (body) · IBM Plex Mono (data)
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #131714;
  --pine: #1c241f;
  --pine-soft: #27322b;
  --limestone: #edeae2;
  --bone: #f6f4ef;
  --brass: #c09a5f;
  --brass-deep: #96753f;
  --stone: #524f47;
  --line: rgba(23, 29, 26, .14);
  --line-light: rgba(239, 236, 228, .16);
  --text-light: #e9e6dd;
  --text-light-muted: #b8b5aa;
  --ff-display: "Marcellus", "Times New Roman", serif;
  --ff-body: "Raleway", system-ui, sans-serif;
  --ff-mono: "IBM Plex Mono", monospace;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --z-nav: 50;
  --z-lightbox: 90;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

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

/* granulație fină de film — textura întregii pagini */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

/* ── lenis smooth scroll ──────────────────────────── */

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── galerie pinned orizontal (desktop) ───────────── */

.gallery--pin { overflow: hidden; }
.gallery--pin .gallery__strip {
  overflow-x: visible;
  scroll-snap-type: none;
  will-change: transform;
}

/* ── preloader ────────────────────────────────────── */

.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.4rem;
  transition: transform .85s var(--ease);
  /* plasă de siguranță: dispare singur chiar dacă JS nu rulează */
  animation: loader-auto .5s ease 2.8s forwards;
}
.loader__numeral {
  font-family: var(--ff-display);
  font-size: 3rem; line-height: 1;
  color: var(--brass);
  border: 1px solid var(--brass);
  padding: .85rem 1rem .65rem;
  opacity: 0;
  animation: loader-fade .7s ease .1s forwards;
}
.loader__line {
  width: 150px; height: 1px;
  background: var(--line-light);
  position: relative; overflow: hidden;
}
.loader__line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  animation: loader-line 1.5s var(--ease) .3s forwards;
}
.loader__name {
  font-family: var(--ff-mono);
  font-size: .62rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--text-light-muted);
  opacity: 0;
  animation: loader-fade .7s ease .5s forwards;
}
.loader.is-done { transform: translateY(-101%); }
@keyframes loader-fade { to { opacity: 1; } }
@keyframes loader-line { to { transform: scaleX(1); } }
@keyframes loader-auto { to { opacity: 0; visibility: hidden; } }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--bone); padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

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

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

::selection { background: var(--brass); color: #fff; }
.section--dark { background: var(--ink); color: var(--text-light); }
.section--tint { background: var(--limestone); }

.mono { font-family: var(--ff-mono); font-size: .85em; }

/* ── typography roles ─────────────────────────────── */

.eyebrow {
  font-family: var(--ff-mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem; height: 1px;
  background: var(--brass);
  flex: none;
}
.eyebrow--brass { color: var(--brass); }
.eyebrow--light { color: #d8d4c8; }

.display {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: .01em;
  max-width: 20ch;
  margin-bottom: 1.2rem;
}
.display em { font-style: normal; color: var(--brass); }
.section--dark .display em { color: var(--brass); }

.section__sub { max-width: 58ch; color: var(--stone); margin-bottom: 2.5rem; }
.section__sub--light { color: var(--text-light-muted); }

/* ── buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--ff-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .3s var(--ease);
}
.btn--brass { background: var(--brass); color: #fff; }
.btn--brass:hover { background: var(--brass-deep); }
.btn--brass::after {
  content: "\2192";
  font-size: 1em;
  line-height: 1;
  transition: transform .25s var(--ease);
}
.btn--brass:hover::after { transform: translateX(4px); }
.btn--ink { background: var(--ink); color: var(--bone); }
.btn--ink:hover { background: var(--pine-soft); }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--bone); }
.btn--whatsapp { background: transparent; border-color: rgba(233, 230, 221, .35); color: var(--text-light); }
.btn--whatsapp:hover { border-color: var(--brass); color: var(--brass); }
.btn--whatsapp svg { width: 1.15rem; height: 1.15rem; }
.btn--sm { padding: .62rem 1.2rem; font-size: .68rem; letter-spacing: .16em; white-space: nowrap; }
.btn--full { width: 100%; }

/* ── nav ──────────────────────────────────────────── */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  color: #fff;
  transition: background-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .4s var(--ease);
}
.nav.is-hidden { transform: translateY(-101%); }
.nav__inner {
  max-width: 1320px;
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}
.nav__brand {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none; margin-right: auto;
}
.nav__numeral {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  line-height: 1;
  border: 1px solid var(--brass);
  color: var(--brass);
  padding: .42rem .5rem .3rem;
}
.nav__name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: .22em;
  display: flex; flex-direction: column; line-height: 1.25;
}
.nav__name em {
  font-family: var(--ff-mono); font-style: normal;
  font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; opacity: .75;
}
.nav__links { display: flex; gap: clamp(1rem, 1.8vw, 1.6rem); }
.nav__links a {
  font-family: var(--ff-mono);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; opacity: .85;
  padding-block: .3rem;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.nav__links a:hover { opacity: 1; border-color: var(--brass); }
.nav__actions { display: flex; align-items: center; gap: 1.1rem; flex: none; }
.nav__sep { width: 1px; height: 1.6rem; background: rgba(255, 255, 255, .25); }
.nav__phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .1em;
  white-space: nowrap;
  text-decoration: none; opacity: .92;
  transition: color .2s, opacity .2s;
}
.nav__phone svg { width: .95rem; height: .95rem; color: var(--brass); flex: none; }
.nav__phone:hover { color: var(--brass); opacity: 1; }

.nav.is-solid { background: rgba(23, 29, 26, .96); box-shadow: 0 1px 0 rgba(255,255,255,.07); }
@supports (backdrop-filter: blur(8px)) {
  .nav.is-solid { background: rgba(23, 29, 26, .82); backdrop-filter: blur(10px); }
}

.nav__burger {
  display: none;
  flex-direction: column; gap: 7px;
  background: none; border: 0; padding: 1.1rem .7rem; cursor: pointer;
  color: inherit;
}
.nav__burger span { width: 26px; height: 2px; background: var(--brass); transition: transform .25s var(--ease), opacity .25s; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: .4rem;
  padding: 1rem var(--gutter) 2rem;
  background: var(--ink);
}
.nav__mobile a {
  font-family: var(--ff-mono); font-size: .85rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; padding: .8rem 0;
  border-bottom: 1px solid var(--line-light);
}
.nav__mobile .btn { margin-top: 1.2rem; border-bottom: 0; }
.nav.is-open .nav__mobile { display: flex; }

/* ── hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.hero__media { position: absolute; inset: -7% 0; overflow: hidden; will-change: transform; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: hero-drift 26s var(--ease) both;
  transform-origin: 60% 40%;
}
@keyframes hero-drift {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(19,23,20,.85) 0%, rgba(19,23,20,.55) 42%, rgba(19,23,20,.15) 80%),
    linear-gradient(180deg, rgba(19,23,20,.6) 0%, rgba(19,23,20,.2) 38%, rgba(19,23,20,.55) 75%, rgba(19,23,20,.95) 100%);
}
.hero__watermark {
  position: absolute;
  right: -1%;
  top: 16%;
  font-family: var(--ff-display);
  font-size: clamp(11rem, 30vw, 27rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .16);
  pointer-events: none;
  user-select: none;
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 10rem var(--gutter) 3rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .45), 0 8px 40px rgba(0, 0, 0, .35);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.7rem, 7.4vw, 6rem);
  line-height: 1.05;
  letter-spacing: .015em;
  margin: 0 0 1.5rem;
  max-width: 14ch;
}
.hero__title span { display: block; }
.hero__title em { font-style: normal; color: var(--brass); }
.hero__sub {
  max-width: 46ch;
  font-weight: 400;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .95);
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 3.5rem 0 0;
  background: var(--ink);
  border-top: 1px solid rgba(192, 154, 95, .35);
}
.stat {
  padding: 2rem 1rem 2.3rem;
  text-align: center;
  border-left: 1px solid var(--line-light);
}
.stat:first-child { border-left: 0; }
.stat strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
}
.stat > span {
  display: block;
  margin-top: .5rem;
  font-family: var(--ff-mono);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(233, 230, 221, .78);
}
.stat strong span { font: inherit; color: inherit; }

/* ── marquee ──────────────────────────────────────── */

.marquee {
  background: var(--ink);
  overflow: hidden;
  padding-block: 1.5rem;
  border-block: 1px solid var(--line-light);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee span {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233, 230, 221, .38);
}
@keyframes marquee {
  to { transform: translateX(calc(-50% - 1.5rem)); }
}

/* ── about ────────────────────────────────────────── */

/* fundal opac + stacking peste hero: împiedică imaginea închisă
   din .hero__scrim (absolut, overflow hero) să se scurgă în spatele
   titlului, ceea ce făcea textul ink invizibil pe mobil */
.about {
  position: relative;
  z-index: 1;
  background: var(--bone);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about__lede .display { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.about__body { color: var(--stone); }
.about__body strong { color: var(--ink); font-weight: 500; }
.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.25rem, 5vw, 2rem);
  row-gap: 0;
  margin: 2.2rem 0;
  border-top: 1px solid var(--line);
}
.about__facts div { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.about__facts dt {
  font-family: var(--ff-mono);
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: .3rem;
}
.about__facts dd { margin: 0; font-family: var(--ff-display); font-size: 1.12rem; color: var(--ink); }
.about__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── benefits ─────────────────────────────────────── */

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.benefit {
  padding: 2.4rem 2.2rem 2.6rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color .3s var(--ease);
}
.benefit:hover { background: rgba(180, 145, 90, .07); }
.benefit svg {
  width: 2.1rem; height: 2.1rem;
  color: var(--brass);
  margin-bottom: 1.3rem;
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.benefit:hover svg { transform: translateY(-4px); color: #d8b57e; }
.benefit h3 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: .55rem; }
.benefit p { color: var(--text-light-muted); font-size: .96rem; margin: 0; }

/* ── partners strip ───────────────────────────────── */

.partners {
  margin-top: 4.5rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
.partners__label {
  font-family: var(--ff-mono);
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass);
  padding-top: .35rem;
}
.partners ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 2rem 3.5rem;
}
.partners li {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--text-light);
  letter-spacing: .04em;
}
.partners li span {
  display: block;
  font-family: var(--ff-mono);
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: .35rem;
}

/* ── masterplan ───────────────────────────────────── */

.masterplan {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  border: 1px solid var(--line);
  background: var(--limestone);
}
.masterplan__map { padding: clamp(1rem, 2.5vw, 2rem); position: relative; }

/* tooltip la hover pe parcele */
.mp-tip {
  position: absolute;
  top: 0; left: 0;
  z-index: 5;
  min-width: 165px;
  background: var(--ink);
  color: var(--text-light);
  border: 1px solid rgba(192, 154, 95, .45);
  padding: .75rem .95rem .85rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), visibility .2s;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .45);
}
.mp-tip.is-on { opacity: 1; visibility: visible; }
.mp-tip .tip-status {
  display: block;
  font-family: var(--ff-mono);
  font-size: .56rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .3rem;
}
.mp-tip b {
  display: block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: .03em;
}
.mp-tip .tip-price {
  display: block;
  margin-top: .35rem;
  font-family: var(--ff-mono);
  font-size: .8rem;
  color: rgba(255, 255, 255, .92);
}
.masterplan__map svg { width: 100%; height: auto; display: block; }

.mp-parcel { fill: none; stroke: var(--stone); stroke-width: 1; stroke-dasharray: 3 4; opacity: .55; }
.mp-road { stroke: var(--stone); stroke-width: 14; opacity: .16; stroke-linecap: square; }
.mp-roadlabel, .mp-street, .mp-compass text {
  font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: .22em;
  fill: var(--stone); text-transform: uppercase;
}
.mp-street { font-size: 10.5px; }
.mp-gate { fill: var(--brass); animation: gate-pulse 3s ease-in-out infinite; }
@keyframes gate-pulse { 50% { opacity: .45; } }
.mp-compass circle { stroke: var(--stone); stroke-width: 1; opacity: .5; }
.mp-compass path { fill: var(--brass); }

.mp-plot { cursor: pointer; }
.mp-plot > rect:first-of-type {
  fill: var(--bone);
  stroke: var(--stone);
  stroke-width: 1;
  opacity: .9;
  transition: fill .25s var(--ease), stroke .25s var(--ease);
}
.mp-plot .mp-house { fill: none; stroke: var(--stone); stroke-width: 1.1; opacity: .6; }
.mp-plot .mp-num {
  font-family: var(--ff-display); font-size: 26px; fill: var(--ink);
  pointer-events: none;
}
.mp-plot .mp-num--in { opacity: .5; }
.mp-plot[data-status="disponibila"] > rect:first-of-type { fill: #eee4d2; stroke: var(--brass); stroke-width: 1.4; }
.mp-plot[data-status="rezervata"] > rect:first-of-type { stroke: var(--brass-deep); stroke-dasharray: 5 4; stroke-width: 1.3; }
.mp-plot[data-status="vanduta"] > rect:first-of-type { fill: #e3ded2; }
.mp-plot[data-status="indisponibila"] > rect:first-of-type { fill: url(#hatch); }
.mp-plot:hover > rect:first-of-type, .mp-plot:focus-visible > rect:first-of-type { stroke: var(--ink); stroke-width: 1.6; }
.mp-plot.is-selected > rect:first-of-type { fill: var(--brass); stroke: var(--brass-deep); opacity: 1; }
.mp-plot.is-selected .mp-num { fill: #fff; opacity: 1; }
.mp-plot.is-selected .mp-house { stroke: rgba(255,255,255,.75); }

.masterplan__legend {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  margin: 1.2rem 0 0;
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone);
}
.masterplan__legend span { display: inline-flex; align-items: center; gap: .5rem; }
.dot { width: .72rem; height: .72rem; display: inline-block; border: 1px solid var(--stone); }
.dot--av { background: #eee4d2; border-color: var(--brass); }
.dot--rez { border-color: var(--brass-deep); border-style: dashed; }
.dot--sold { background: #e3ded2; }
.dot--in { background: repeating-linear-gradient(45deg, transparent 0 2px, rgba(85,82,74,.3) 2px 3px); }

.masterplan__panel {
  background: var(--ink);
  color: var(--text-light);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
}
.mp-panel__status {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 .8rem;
}
.mp-panel__title { font-family: var(--ff-display); font-size: 1.9rem; margin-bottom: .2rem; }
.mp-panel__meta { color: var(--text-light-muted); font-size: .95rem; margin-bottom: 1.4rem; }
.mp-panel__specs { list-style: none; margin: 0 0 1.6rem; padding: 0; border-top: 1px solid var(--line-light); }
.mp-panel__specs li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .68rem 0; border-bottom: 1px solid var(--line-light);
  font-size: .95rem;
}
.mp-panel__specs b { font-family: var(--ff-mono); font-weight: 500; font-size: .88rem; }
.mp-panel__price {
  font-family: var(--ff-display); font-size: 2rem; line-height: 1;
  margin: auto 0 1.4rem;
}
.mp-panel__price small { font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-light-muted); display: block; margin-top: .5rem; }
.mp-panel__cta { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ── residence cards ──────────────────────────────── */

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
.res-card {
  background: transparent;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.res-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.res-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.res-card:hover .res-card__media img { transform: scale(1.045); }
.res-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  font-family: var(--ff-mono); font-size: .6rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  padding: .5rem .85rem;
  background: rgba(19, 23, 20, .78);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--bone);
  backdrop-filter: blur(4px);
}
.res-card__badge--disponibila { border-color: var(--brass); color: var(--brass); }
.res-card__badge--rezervata { color: var(--text-light-muted); }
.res-card__badge--vanduta { border-color: transparent; }
.res-card--muted .res-card__media img { filter: grayscale(.55); opacity: .75; }
.res-card__body { padding: 1.5rem 0 1.9rem; display: flex; flex-direction: column; flex: 1; }
.res-card__title { font-family: var(--ff-display); font-size: 1.55rem; }
.res-card__orient { color: var(--stone); font-size: .92rem; margin: .2rem 0 1.2rem; }
.res-card__specs {
  list-style: none; padding: 0; margin: 0 0 1.2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem;
  font-size: .9rem; color: var(--stone);
}
.res-card__specs b { font-family: var(--ff-mono); font-weight: 500; color: var(--ink); font-size: .84rem; display: block; }
.res-card__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 1.1rem; border-top: 1px solid var(--line);
}
.res-card__price { font-family: var(--ff-display); font-size: 1.6rem; }
.res-card__price small { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .18em; color: var(--stone); display: block; }
.res-card__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-top: 1.15rem;
}
.res-card__cta .btn {
  width: 100%;
  padding-inline: .6rem;
  font-size: .62rem;
  letter-spacing: .12em;
  white-space: nowrap;
}
.res-card__cta .btn svg { width: 1rem; height: 1rem; flex: none; }
.res-card__cta .btn--brass::after { content: none; }

/* ── plans ────────────────────────────────────────── */

.plans__wrap { max-width: 980px; }
.plans__tabs { display: flex; gap: .6rem; margin-bottom: 2rem; }
.tab {
  font-family: var(--ff-mono); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; gap: .2rem; align-items: flex-start;
  padding: .9rem 1.6rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--stone);
  cursor: pointer;
  transition: background-color .22s, color .22s, border-color .22s;
}
.tab small { font-size: .62rem; letter-spacing: .12em; opacity: .7; text-transform: none; }
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.plan-panel { display: none; grid-template-columns: 1.25fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); margin-bottom: 2rem; }
.plan-panel.is-active { display: grid; }
.plan-panel__img {
  margin: 0; background: #fff; border: 1px solid var(--line); padding: 1rem;
}
.plan-panel__img img { width: 100%; height: auto; cursor: zoom-in; }
.plan-table { width: 100%; border-collapse: collapse; align-self: start; }
.plan-table caption {
  text-align: left; font-family: var(--ff-display); font-size: 1.15rem;
  padding-bottom: .9rem;
}
.plan-table td { padding: .62rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.plan-table td:last-child { text-align: right; font-family: var(--ff-mono); font-size: .86rem; }

/* ── progress timeline ────────────────────────────── */

.timeline {
  list-style: none;
  margin: 3.5rem 0 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute; top: 6px; left: 0; right: 0;
  height: 1px; background: var(--line-light);
}
.timeline::after {
  content: "";
  position: absolute; top: 5.5px; left: 0;
  width: calc((var(--done) + var(--active) * .5) / 8 * 100%);
  height: 2px; background: var(--brass);
}
.timeline li { position: relative; padding: 2rem .8rem 0 0; }
.timeline li::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--text-light-muted);
}
.timeline li.is-done::before { background: var(--brass); border-color: var(--brass); }
.timeline li.is-active::before {
  border-color: var(--brass);
  box-shadow: 0 0 0 5px rgba(180, 145, 90, .22);
  background: var(--ink);
}
.timeline__stage {
  display: block;
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: .35rem;
}
.timeline strong { display: block; font-family: var(--ff-display); font-weight: 400; font-size: 1.05rem; }
.timeline em {
  font-style: normal;
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-light-muted);
}
.timeline li.is-done em { color: var(--brass); }
.timeline li.is-active em { color: var(--brass); }

/* ── gallery ──────────────────────────────────────── */

.gallery__strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 38vw, 560px);
  gap: 1rem;
  overflow-x: auto;
  padding: 2.5rem var(--gutter) 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}
.gallery__strip figure { margin: 0; scroll-snap-align: center; }
.gallery__strip img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  cursor: zoom-in;
  transition: opacity .3s;
}
.gallery__strip img:hover { opacity: .92; }

/* ── location ─────────────────────────────────────── */

.location__quote {
  margin: 0 0 3rem;
  max-width: 52ch;
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--stone);
  border-left: 2px solid var(--brass);
  padding-left: 1.6rem;
}
.location__quote em { font-style: normal; color: var(--brass-deep); }
.location__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.location__map iframe {
  width: 100%; aspect-ratio: 16/10; border: 1px solid var(--line); display: block;
  filter: grayscale(.35);
}
.location__addr {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .95rem;
  padding-top: 1rem;
  color: var(--stone);
}
.location__lists { display: grid; gap: 2.2rem; align-content: start; }
.location__lists h3 {
  font-family: var(--ff-mono); font-weight: 500; font-size: .72rem;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: .9rem;
}
.dist { list-style: none; margin: 0; padding: 0; }
.dist li {
  display: flex; align-items: baseline; gap: .8rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.dist li::after { content: ""; order: 2; flex: 1; border-bottom: 1px dotted rgba(85, 82, 74, .4); }
.dist span { order: 1; }
.dist b { order: 3; font-family: var(--ff-mono); font-weight: 500; font-size: .85rem; }

/* ── testimoniale ─────────────────────────────────── */

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 3.2rem;
}
.review {
  margin: 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 2.6rem; height: 2px;
  background: var(--brass);
}
.review blockquote {
  margin: 0 0 1.8rem;
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
}
.review figcaption {
  margin-top: auto;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
}
.review figcaption span {
  display: block;
  margin-top: .35rem;
  font-family: var(--ff-mono);
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass-deep);
}

/* ── banda disponibilitate ────────────────────────── */

.cta-band {
  background: var(--ink);
  color: var(--text-light);
  padding-block: clamp(4.5rem, 8vw, 7rem);
  border-block: 1px solid rgba(192, 154, 95, .28);
}
.cta-band__inner { text-align: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::after { content: ""; width: 2.4rem; height: 1px; background: var(--brass); flex: none; }
.cta-band .display { max-width: none; margin-inline: auto; }
.cta-band__sub {
  max-width: 52ch;
  margin: 0 auto 2.4rem;
  color: var(--text-light-muted);
}
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── faq ──────────────────────────────────────────── */

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--ff-display);
  font-size: 1.14rem;
  cursor: pointer;
  transition: color .2s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--brass-deep); }
.faq__list summary span {
  flex: none;
  width: 1.9rem; height: 1.9rem;
  position: relative;
}
.faq__list summary span::before, .faq__list summary span::after {
  content: "";
  position: absolute; inset: 0; margin: auto;
  background: var(--brass-deep);
  transition: transform .3s var(--ease);
}
.faq__list summary span::before { width: 15px; height: 1.5px; }
.faq__list summary span::after { width: 1.5px; height: 15px; }
.faq__list details[open] summary span::after { transform: rotate(90deg); }
.faq__list details p { padding: 0 3rem 1.4rem 0; color: var(--stone); margin: 0; }
.faq .btn { margin-top: .8rem; }

/* ── contact ──────────────────────────────────────── */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact__info > p { color: var(--text-light-muted); max-width: 46ch; }
.contact__details {
  list-style: none; margin: 2.2rem 0; padding: 0;
  border-top: 1px solid var(--line-light);
}
.contact__details li {
  display: grid; grid-template-columns: 7rem 1fr; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line-light);
  font-size: .98rem;
}
/* valorile lungi (email/adresă) trebuie să se strângă și să se rupă,
   altfel coloana 1fr depășește ecranul pe mobil (overflow orizontal) */
.contact__details li > * { min-width: 0; }
.contact__details a, .contact__details li > :last-child { overflow-wrap: anywhere; }
.contact__details span {
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass); align-self: center;
}
.contact__details a { text-decoration: none; }
.contact__details a:hover { color: var(--brass); }

.contact__form {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--line-light);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.contact__form h3 { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: 2rem; }
.field { margin-bottom: 1.5rem; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field label {
  display: block;
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: .4rem;
}
.field label b { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--ff-body); font-size: 1rem;
  color: var(--text-light);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(233, 230, 221, .3);
  border-radius: 0;
  padding: .6rem 0;
  transition: border-color .25s;
}
.field select { cursor: pointer; }
.field select option { color: var(--ink); background: var(--bone); }
.field input::placeholder, .field textarea::placeholder { color: rgba(233, 230, 221, .35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--brass);
}
.field:focus-within label { color: var(--brass); }
.field input.is-invalid { border-bottom-color: #d98b80; }
.field textarea { resize: vertical; }
.form-error { color: #d98b80; font-size: .9rem; }
.form-note { font-size: .82rem; color: var(--text-light-muted); margin-top: 1.1rem; text-align: center; }

/* ── footer ───────────────────────────────────────── */

.footer { background: var(--ink); color: var(--text-light-muted); border-top: 1px solid rgba(192, 154, 95, .32); }
.footer__inner {
  padding-block: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__numeral {
  font-family: var(--ff-display); font-size: 1.3rem;
  border: 1px solid var(--brass); color: var(--brass);
  padding: .4rem .5rem .28rem;
}
.footer__brand p { margin: 0; color: var(--text-light); font-family: var(--ff-display); letter-spacing: .12em; }
.footer__brand p span { font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-light-muted); }
.footer__nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer__nav a {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none;
}
.footer__nav a:hover { color: var(--brass); }
.footer__legal { margin: 0; font-size: .78rem; text-align: right; line-height: 1.7; }

/* ── lightbox ─────────────────────────────────────── */

.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: rgba(23, 29, 26, .94);
  display: flex; align-items: center; justify-content: center;
  padding: 3vmin;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 94vw; max-height: 92vh; width: auto; height: auto; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1.4rem;
  background: none; border: 0; color: var(--bone);
  font-size: 2.6rem; line-height: 1; cursor: pointer;
  transition: color .2s;
}
.lightbox__close:hover { color: var(--brass); }

/* ── reveal on scroll ─────────────────────────────── */

html.js .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--rd, 0s);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* titlurile intră cu un blur cinematic */
html.js .display.reveal, html.js .section__sub.reveal, html.js .hero__sub.reveal {
  filter: blur(10px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter 1s var(--ease);
  transition-delay: var(--rd, 0s);
}
html.js .display.reveal.is-in, html.js .section__sub.reveal.is-in, html.js .hero__sub.reveal.is-in { filter: blur(0); }
.reveal.d1 { --rd: .08s; }
.reveal.d2 { --rd: .18s; }
.reveal.d3 { --rd: .3s; }
.reveal.d4 { --rd: .42s; }

/* linia aurie a eyebrow-ului se desenează la reveal */
html.js .eyebrow.reveal::before { transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease) .25s; }
html.js .eyebrow.reveal.is-in::before { transform: scaleX(1); }

/* derivă orizontală subtilă în galerie */
.gallery__strip figure { transform: translateX(var(--drift, 0px)); }

/* conținutul FAQ intră lin */
.faq__list details[open] p { animation: faq-open .45s var(--ease); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* cuvinte care urcă din mască (titluri) */
html.js .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .1em; margin-bottom: -.1em; }
html.js .w__i { display: inline-block; transform: translateY(112%); transition: transform .85s var(--ease); }
html.js .is-in .w__i { transform: none; }

/* cortină pe imagini */
.img-reveal { position: relative; overflow: hidden; }
html.js .img-reveal::after {
  content: "";
  position: absolute; inset: -1px;
  background: var(--limestone);
  transform-origin: top;
  transition: transform 1s var(--ease) .15s;
  z-index: 1;
  pointer-events: none;
}
html.js .img-reveal.is-in::after { transform: scaleY(0); }
html.js .gallery__strip .img-reveal img,
html.js .plan-panel__img.img-reveal img { transform: scale(1.12); transition: transform 1.4s var(--ease) .15s; }
html.js .gallery__strip .img-reveal.is-in img,
html.js .plan-panel__img.img-reveal.is-in img { transform: scale(1); }

/* etapele progresului intră în cascadă, apoi linia se desenează peste ele */
.timeline li:nth-child(1) { --i: 0; }
.timeline li:nth-child(2) { --i: 1; }
.timeline li:nth-child(3) { --i: 2; }
.timeline li:nth-child(4) { --i: 3; }
.timeline li:nth-child(5) { --i: 4; }
.timeline li:nth-child(6) { --i: 5; }
.timeline li:nth-child(7) { --i: 6; }
.timeline li:nth-child(8) { --i: 7; }
html.js .timeline li {
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i) * .12s);
}
html.js .timeline:not(.is-in) li { opacity: 0; transform: translateY(18px); }
.timeline li::before {
  transition: transform .5s var(--ease), background-color .3s, border-color .3s;
  transition-delay: calc(var(--i) * .12s + .15s);
}
html.js .timeline:not(.is-in) li::before { transform: scale(0); }
.timeline li.is-active::before { animation: stage-pulse 2.6s ease-in-out 1.6s infinite; }
@keyframes stage-pulse {
  50% { box-shadow: 0 0 0 10px rgba(192, 154, 95, .1); }
}
.timeline::after { transition: width 1.5s var(--ease) 1.15s, height 1.5s var(--ease) 1.15s; }
html.js .timeline:not(.is-in)::after { width: 0; }

/* parcelele din masterplan apar eșalonat */
.mp-plot { transition: opacity .7s var(--ease); }
html.js .masterplan:not(.is-in) .mp-plot { opacity: 0; }
.mp-plot[data-res="2"] { transition-delay: .08s; }
.mp-plot[data-res="3"] { transition-delay: .16s; }
.mp-plot[data-res="4"] { transition-delay: .24s; }
.mp-plot[data-res="5"] { transition-delay: .32s; }
.mp-plot[data-res="6"] { transition-delay: .4s; }
.mp-plot[data-res="7"] { transition-delay: .48s; }

/* bară de progres scroll */
.scrollprog {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: calc(var(--sp, 0) * 100%);
  background: var(--brass);
  z-index: 2;
}

/* Animațiile rulează pentru toți utilizatorii (decizie de brand).
   Blocul @media (prefers-reduced-motion: reduce) a fost eliminat intenționat. */

/* ── responsive ───────────────────────────────────── */

@media (max-width: 1280px) {
  .nav__phone span { display: none; }
  .nav__phone svg { width: 1.15rem; height: 1.15rem; }
  .nav__sep { display: none; }
}

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  /* timeline vertical pe ecrane înguste */
  .timeline { grid-template-columns: 1fr; row-gap: 0; padding-left: 32px; margin-top: 2.8rem; }
  .timeline::before { top: 4px; bottom: 4px; left: 6px; right: auto; width: 1px; height: auto; }
  .timeline::after { top: 4px; left: 5.5px; width: 2px; height: calc((var(--done) + var(--active) * .5) / 8 * 100%); }
  html.js .timeline:not(.is-in)::after { width: 2px; height: 0; }
  .timeline li { padding: 0 0 2.1rem; }
  .timeline li:last-child { padding-bottom: .2rem; }
  .timeline li::before { left: -32.5px; top: 2px; }
  .masterplan { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__legal { text-align: center; }
}

@media (max-width: 860px) {
  .hero__watermark { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open { background: var(--ink); }
  .about__grid, .plan-panel, .location__grid, .faq__grid, .contact__grid, .reviews__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { border-top: 1px solid var(--line-light); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { border-left: 0; }
}

@media (max-width: 640px) {
  /* masterplan mai lizibil pe telefon */
  .masterplan__map { padding: .6rem .35rem .9rem; }
  .mp-plot .mp-num { font-size: 38px; }
  .mp-roadlabel, .mp-compass text { font-size: 14px; }
  .mp-street { font-size: 15px; letter-spacing: .14em; }
  .mp-road { stroke-width: 20; }
  .masterplan__legend { gap: .8rem 1.2rem; padding-inline: .5rem; justify-content: center; }
  .benefits__grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .field--split { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .res-card__cta { grid-template-columns: 1fr; }
  .res-card__cta .btn { font-size: .68rem; letter-spacing: .16em; }
  .display { max-width: none; }
}
