/* ==========================================================================
   Miotur — sistem de design „precizie elegantă”
   Fonturi: Fraunces (titluri, cifre) · Instrument Sans (text) · JetBrains Mono (etichete)
   ========================================================================== */

:root {
  --forest: #1E3327;
  --forest-line: #35533F;
  --moss: #8FAF95;
  --brand: #4B7B58;
  --brand-deep: #3A6146;
  --brand-soft: #DCE8DE;
  --paper: #F3F4EF;
  --stone: #E8E6DE;
  --stone-line: #D6D2C6;
  --surface: #FFFFFF;
  --ink: #17231C;
  --ink-2: #3F4B44;
  --muted: #6F7B74;
  --line: #D6DAD2;
  --line-strong: #AEB8B0;
  --clay: #C4754F;
  --clay-deep: #9E5A3A;
  --road: #C9C6BB;
  --on-dark-2: #D5E0D6;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --wrap: 1240px;
  color-scheme: light;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; font-optical-sizing: auto; }
a { color: var(--brand-deep); text-decoration-color: var(--line-strong); text-underline-offset: 3px; transition: color 160ms ease, text-decoration-color 160ms ease; }
a:hover { text-decoration-color: var(--brand-deep); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
img { display: block; max-width: 100%; height: auto; }
p { margin: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.005em; text-wrap: balance; margin: 0; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.012em; }
h2 { font-size: clamp(1.9rem, 3.3vw, 2.9rem); line-height: 1.08; }
h3 { font-size: 1.35rem; line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.3; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--brand-deep); }
.on-dark h1 em, .on-dark h2 em { color: var(--moss); }
strong { font-weight: 600; }
::selection { background: var(--brand-soft); color: var(--ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 860px; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-deep); font-weight: 500; }
.on-dark .eyebrow { color: var(--moss); }
.mono { font-family: var(--mono); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--forest); color: var(--paper); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- view transitions ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 320ms; animation-timing-function: var(--ease); }
.hd { view-transition-name: site-header; }
@media (prefers-reduced-motion: reduce) { ::view-transition-old(root), ::view-transition-new(root) { animation: none; } }

/* ---------- reveal (progressive, only with JS) ---------- */
html.js .rv { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
html.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 15.5px; padding: 14px 22px; border: 1.5px solid var(--forest); text-decoration: none; cursor: pointer; line-height: 1; white-space: nowrap; transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease; color: var(--forest); background: transparent; }
.btn:active { transform: translateY(1px); }
.btn--pri { background: var(--forest); color: var(--paper); }
.btn--pri:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
.btn--sec:hover { background: var(--brand-soft); }
.btn--sm { padding: 11px 16px; font-size: 14px; }
.on-dark .btn--pri { background: var(--paper); color: var(--forest); border-color: var(--paper); }
.on-dark .btn--pri:hover { background: #FFFFFF; border-color: #FFFFFF; }
.on-dark .btn--sec { color: var(--paper); border-color: var(--moss); }
.on-dark .btn--sec:hover { background: var(--forest-line); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.more { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.02em; }

/* ---------- sections ---------- */
.section { padding: 104px 0; }
.section--stone { background: var(--stone); }
.section--dark { background: var(--forest); color: var(--paper); }
.section--flush { padding-top: 0; }
.section--tight { padding: 64px 0; }
.sec-head { display: grid; gap: 16px; max-width: 62ch; margin-bottom: 48px; }
.sec-head p { color: var(--ink-2); font-size: 1.12rem; line-height: 1.5; }
.on-dark .sec-head p { color: var(--on-dark-2); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width: 760px) { .section { padding: 72px 0; } .sec-head { margin-bottom: 36px; } }

/* ---------- hero (dark, photo) ---------- */
.hero { background: var(--forest); color: var(--paper); padding: 72px 0 0; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.hero h1 { margin: 18px 0 26px; max-width: 15ch; }
.hero__sub { font-size: 1.22rem; line-height: 1.5; color: var(--on-dark-2); max-width: 48ch; }
.hero__sub b { color: var(--paper); font-weight: 600; }
.hero .cta-row { margin-top: 32px; }
.hero__img { position: relative; overflow: hidden; border: 1px solid var(--forest-line); margin: 0; }
.hero__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
html.js .hero__img img { animation: settle 1400ms var(--ease) both; }
@keyframes settle { from { transform: scale(1.04); } to { transform: scale(1); } }
.hero__img figcaption { position: absolute; left: 0; bottom: 0; background: var(--forest); color: var(--moss); font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; padding: 7px 12px; }
.assure { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--forest-line); margin-top: 72px; }
@media (min-width: 760px) { .assure { grid-template-columns: repeat(4, 1fr); } }
.assure div { display: flex; align-items: center; gap: 12px; padding: 22px 20px 22px 0; font-size: 15px; font-weight: 500; line-height: 1.3; color: var(--paper); }
.assure svg { width: 22px; height: 22px; flex: none; stroke: var(--moss); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- hero (paper, inner pages) ---------- */
.hero-p { padding: 64px 0 56px; border-bottom: 1px solid var(--line); }
.hero-p h1 { margin: 16px 0 22px; max-width: 18ch; font-size: clamp(2.3rem, 4.4vw, 3.9rem); }
.hero-p__lede { font-size: 1.22rem; line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.hero-p__lede b { color: var(--ink); font-weight: 600; }
.hero-p .cta-row { margin-top: 28px; }
.hero-p__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: end; }
@media (min-width: 1000px) { .hero-p__grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.hero-p__img { margin: 0; border: 1px solid var(--line); overflow: hidden; }
.hero-p__img img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.hero-p__img figcaption { font-family: var(--mono); font-size: 11.5px; color: var(--muted); padding: 8px 12px; border-top: 1px solid var(--line); }
.crumbs { font-family: var(--mono); font-size: 12px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand-deep); }
.crumbs span::before { content: "/"; margin-right: 8px; color: var(--line-strong); }
.crumbs span:first-child::before { content: none; margin: 0; }

/* ---------- plan ---------- */
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 1000px) { .plan-grid { grid-template-columns: 1fr 320px; gap: 32px; } }
.plan { border: 1px solid var(--line-strong); background: var(--surface); }
.plan svg { display: block; width: 100%; height: auto; }
.plan__info { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--line); font-size: 15px; min-height: 60px; }
.plan__info b { font-family: var(--serif); font-weight: 500; font-size: 1.05rem; }
.plan__info span { color: var(--ink-2); }
.plan__info a { font-family: var(--mono); font-size: 12px; white-space: nowrap; }
.plan__info .hint { color: var(--muted); font-family: var(--mono); font-size: 12px; }
.plan-aside { display: grid; gap: 16px; }
.inset { border: 1px solid var(--line-strong); background: var(--surface); }
.inset svg { display: block; width: 100%; height: auto; }
.inset p { font-family: var(--mono); font-size: 11.5px; color: var(--muted); padding: 9px 12px; border-top: 1px solid var(--line); line-height: 1.5; }
.legend { border: 1px solid var(--line); background: var(--surface); padding: 16px 18px; display: grid; gap: 10px; font-size: 14.5px; }
.legend div { display: flex; align-items: center; gap: 10px; }
.legend i { width: 14px; height: 14px; flex: none; border: 1px solid var(--line-strong); display: inline-block; }
.legend .i-clay { background: var(--clay); border-color: var(--clay-deep); }
.legend .i-park { background: var(--stone); }
.legend .i-green { background: var(--brand-soft); border-color: var(--brand); }
.legend .i-forest { background: var(--brand); opacity: 0.35; }
.legend .facts { font-family: var(--mono); font-size: 12px; color: var(--ink-2); line-height: 1.7; border-top: 1px solid var(--line); padding-top: 10px; display: block; }
.field-pat { fill: var(--stone); }
.fence { fill: none; stroke: var(--brand-deep); stroke-width: 1.5; stroke-dasharray: 6 4; }
.forest-fill { fill: var(--brand); opacity: 0.16; }
.tree { fill: var(--brand); opacity: 0.55; }
.road { fill: var(--road); }
.roof { fill: var(--clay); stroke: var(--clay-deep); stroke-width: 1; transition: fill 160ms ease, stroke 160ms ease; }
.park { fill: var(--stone); stroke: var(--line-strong); stroke-width: 1; transition: fill 160ms ease; }
.lawn { fill: var(--brand-soft); stroke: var(--brand); stroke-width: 1; transition: fill 160ms ease; }
.alley { fill: var(--stone); }
g.unit { cursor: pointer; outline: none; }
g.unit:hover .roof, g.unit:focus .roof, g.unit.active .roof,
g.unit:hover .park, g.unit:focus .park, g.unit.active .park,
g.unit:hover .lawn, g.unit:focus .lawn, g.unit.active .lawn { fill: var(--forest); stroke: var(--forest); }
g.unit:hover .lbl, g.unit:focus .lbl, g.unit.active .lbl { fill: var(--paper); }
.lbl { font-family: var(--mono); font-size: 11px; fill: var(--ink-2); pointer-events: none; }
.lbl.b { font-weight: 500; fill: var(--ink); }
.lbl.s { font-size: 10px; fill: var(--muted); }
.lbl.on-roof { fill: var(--ink); }
.dot { fill: var(--brand); }
.pin { fill: var(--forest); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--stone-line); border-bottom: 1px solid var(--stone-line); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(5, 1fr); } .stats--4 { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 30px 22px 28px 0; border-right: 1px solid var(--stone-line); margin-right: 22px; }
.stat:nth-child(2n) { border-right: 0; margin-right: 0; }
@media (min-width: 760px) { .stat:nth-child(2n) { border-right: 1px solid var(--stone-line); margin-right: 22px; } .stat:last-child { border-right: 0; margin-right: 0; } }
.stat b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(3.2rem, 5.8vw, 5rem); line-height: 0.95; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--forest); }
.stat span { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--muted); margin-top: 12px; line-height: 1.4; }
.section--paper .stats, .section .stats--paper { border-color: var(--line); }

/* ---------- configurator ---------- */
.conf { border: 1px solid var(--stone-line); background: var(--surface); padding: 36px; display: grid; gap: 22px; }
@media (min-width: 900px) { .conf { grid-template-columns: 1.1fr 1fr; gap: 20px 64px; align-items: start; } .conf__out { border-left: 1px solid var(--line); padding-left: 48px; } }
.conf label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.conf__row { display: flex; align-items: center; gap: 24px; margin-top: 12px; }
.conf input[type=range] { flex: 1; accent-color: var(--brand); height: 32px; }
.conf output { font-family: var(--serif); font-weight: 400; font-size: 4.6rem; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; min-width: 2.2ch; text-align: right; color: var(--forest); }
.conf__scale { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 6px; }
.conf__alloc { font-size: 1.2rem; line-height: 1.45; font-family: var(--serif); font-weight: 400; }
.conf__alloc b { font-weight: 600; font-family: var(--sans); font-size: 1.05rem; }
.conf__rest { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.conf .btn { margin-top: 20px; }
.conf__fine { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 16px; line-height: 1.5; }
.stats + .conf { margin-top: 56px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line-strong); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 28px 28px 28px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .step { border-bottom: 0; border-right: 1px solid var(--line); margin-right: 28px; padding-bottom: 8px; } .step:last-child { border-right: 0; margin-right: 0; } }
.step .n { font-family: var(--serif); font-size: 2rem; color: var(--brand); display: block; margin-bottom: 12px; line-height: 1; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 16px; }

/* ---------- ledger (argumente numerotate) ---------- */
.ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.ledger li { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .ledger li { grid-template-columns: 64px 1fr 1.6fr; gap: 32px; } }
.ledger .n { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--brand); }
.ledger h3 { font-size: 1.3rem; }
.ledger p { color: var(--ink-2); grid-column: 2; }
@media (min-width: 900px) { .ledger p { grid-column: auto; } }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(4, 1fr); } .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--2 { grid-template-columns: repeat(2, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card__ph { overflow: hidden; }
.card__ph img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; transition: transform 800ms var(--ease); }
.card:hover .card__ph img { transform: scale(1.03); }
.card__body { padding: 20px 20px 22px; display: grid; gap: 10px; }
.card__beds { display: flex; gap: 4px; color: var(--brand); }
.card__beds svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card__spec { font-family: var(--mono); font-size: 12px; color: var(--ink-2); line-height: 1.6; }
.card__spec b { color: var(--ink); font-weight: 500; }
.card__for { font-size: 14.5px; color: var(--muted); }
.card__price { font-family: var(--serif); font-size: 1.25rem; color: var(--forest); }
.card__price small { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-left: 6px; }
.details { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
@media (min-width: 640px) { .details { grid-template-columns: 1fr 1fr; } }
.detail { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; border: 1px solid var(--line); background: var(--surface); }
.detail img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; height: 100%; }
.detail p { padding: 12px 18px 12px 0; font-size: 15px; color: var(--ink-2); }
.detail p b { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--ink); margin-bottom: 2px; }

/* ---------- split (media + text) ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; padding: 40px 0; border-top: 1px solid var(--line); }
.split:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } .split--rev .split__media { order: 2; } }
.split__media { margin: 0; border: 1px solid var(--line); overflow: hidden; background: var(--surface); }
.split__media img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; transition: transform 800ms var(--ease); }
.split:hover .split__media img { transform: scale(1.02); }
.split__media figcaption { font-family: var(--mono); font-size: 11.5px; color: var(--muted); padding: 8px 12px; border-top: 1px solid var(--line); }
.split__text { display: grid; gap: 14px; }
.split__text h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.split__text p { color: var(--ink-2); }
.split__text .spec { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); line-height: 1.7; }
.split__text .spec b { color: var(--ink); font-weight: 500; }

/* ---------- lists ---------- */
.list { list-style: none; padding: 0; margin: 0; }
@media (min-width: 640px) { .list--two { columns: 2; column-gap: 44px; } }
.list li { break-inside: avoid; padding: 11px 0 11px 26px; border-bottom: 1px solid var(--line); position: relative; font-size: 16px; }
.section--stone .list li { border-color: var(--stone-line); }
.list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 12px; height: 2px; background: var(--brand); }
.list--plain li::before { background: var(--line-strong); }
.incl { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .incl { grid-template-columns: 1.4fr 1fr; gap: 72px; } }
.box { border: 1px solid var(--stone-line); background: var(--surface); padding: 26px; }
.box .eyebrow { display: block; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-weight: 500; font-size: 15px; padding: 11px 15px; border: 1px solid var(--line-strong); background: var(--surface); }
.chips + p { margin-top: 24px; max-width: 64ch; color: var(--ink-2); }

/* ---------- gallery (cadrul) ---------- */
.gallery { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } .gallery__wide { grid-column: 1 / 3; } .gallery__quote { grid-column: 3; } }
.gallery figure { margin: 0; border: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.gallery img { width: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.gallery figure:hover img { transform: scale(1.02); }
.gallery__wide img { aspect-ratio: 2 / 1; }
.gallery__tall img { aspect-ratio: 3 / 2; }
.gallery figcaption { font-family: var(--mono); font-size: 11.5px; color: var(--muted); padding: 8px 12px; border-top: 1px solid var(--line); }
.gallery__quote { display: grid; gap: 18px; align-content: center; padding: 8px 0 8px 8px; }
.gallery__quote .big { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; color: var(--forest); }
.gallery__quote p { color: var(--ink-2); }

/* ---------- location ---------- */
.loc { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .loc { grid-template-columns: 1.15fr 1fr; gap: 64px; } }
.map { border: 1px solid var(--line-strong); background: var(--surface); }
.map svg { display: block; width: 100%; height: auto; }
.ring { fill: none; stroke: var(--line-strong); stroke-width: 1; }
.ring.k { stroke: var(--brand); stroke-width: 1.5; }
.center { fill: var(--forest); }
.center-lbl { font-family: var(--serif); font-weight: 500; font-size: 14px; fill: var(--paper); }
.route { fill: none; stroke: var(--line-strong); stroke-width: 6; opacity: 0.5; }
.route-lbl { font-family: var(--mono); font-size: 10px; fill: var(--muted); }
.map__src { font-family: var(--mono); font-size: 11.5px; color: var(--muted); padding: 9px 12px; border-top: 1px solid var(--line); }
.times { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.times li { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.times li span { color: var(--ink-2); font-size: 15px; }
.times li b { font-family: var(--mono); font-weight: 500; font-size: 14px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.times li strong { font-weight: 600; color: var(--ink); }
.addr { font-family: var(--mono); font-size: 13px; color: var(--ink-2); line-height: 1.6; margin-bottom: 20px; }

/* ---------- tables ---------- */
.tbl { overflow-x: auto; border: 1px solid var(--line); background: var(--surface); }
.tbl table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 15.5px; }
.tbl th, .tbl td { text-align: left; vertical-align: top; padding: 12px 16px; border-top: 1px solid var(--line); }
.tbl thead th { border-top: 0; font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); background: var(--stone); }
.tbl td.num { font-family: var(--mono); font-size: 14px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.tbl td.k { font-weight: 600; }
.tbl .yes { color: var(--brand-deep); font-weight: 600; }
.tbl .no { color: var(--muted); }
.tbl + .tbl { margin-top: 24px; }
.tbl-cap { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin: 10px 0 0; }

/* ---------- secondary promos ---------- */
.two { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .two { grid-template-columns: 1fr 1fr; } }
.promo { display: grid; grid-template-columns: 1fr; border: 1px solid var(--stone-line); background: var(--surface); overflow: hidden; text-decoration: none; color: inherit; }
@media (min-width: 560px) { .promo { grid-template-columns: 220px 1fr; } }
.promo img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 3 / 2; transition: transform 800ms var(--ease); }
@media (min-width: 560px) { .promo img { height: 100%; aspect-ratio: auto; } }
.promo:hover img { transform: scale(1.03); }
.promo__body { padding: 24px 26px; display: grid; gap: 10px; align-content: center; }
.promo p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line-strong); max-width: 78ch; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; font-family: var(--serif); font-weight: 500; font-size: 1.2rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--brand-deep); font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; color: var(--ink-2); max-width: 66ch; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--line-strong); }
@media (min-width: 900px) { .form-grid { grid-template-columns: 1fr 1.5fr; } }
.side { background: var(--forest); color: var(--paper); padding: 40px 36px; display: grid; align-content: start; gap: 8px; }
.side .eyebrow { color: var(--moss); }
.side h2 { margin-top: 10px; color: var(--paper); }
.side p { color: var(--on-dark-2); margin-top: 12px; }
.side__contact { margin-top: 28px; display: grid; gap: 10px; font-family: var(--mono); font-size: 14px; }
.side__contact a { text-decoration: none; color: var(--paper); }
.side__contact a:hover { color: var(--moss); }
.form { display: grid; grid-template-columns: 1fr; gap: 16px; background: var(--surface); padding: 36px; margin: 0; }
@media (min-width: 640px) { .form { grid-template-columns: 1fr 1fr; } .form .full { grid-column: 1 / -1; } }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-2); }
.field label b { color: var(--brand-deep); font-weight: 500; }
.field input, .field select, .field textarea { font: inherit; font-size: 16px; padding: 12px 12px; border: 1px solid var(--line-strong); background: var(--paper); color: var(--ink); width: 100%; border-radius: 0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.field textarea { min-height: 96px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.check input { margin-top: 4px; accent-color: var(--brand); }
.form-note { font-family: var(--mono); font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.form-msg { display: none; grid-column: 1 / -1; padding: 12px 14px; background: var(--brand-soft); color: var(--brand-deep); font-size: 15px; }
.form-msg.show { display: block; }
.hp { position: absolute; left: -9999px; }
.switch { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line-strong); margin-bottom: 28px; }
.switch label { flex: 1 1 auto; padding: 14px 18px; font-weight: 500; font-size: 15px; cursor: pointer; border-right: 1px solid var(--line); display: flex; gap: 10px; align-items: center; }
.switch label:last-child { border-right: 0; }
.switch input { accent-color: var(--brand); }
.switch label:has(input:checked) { background: var(--brand-soft); }

/* ---------- prose (articole, legal) ---------- */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1em; }
.prose h2 { margin-top: 2.2em; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.prose h3 { margin-top: 1.8em; }
.prose p, .prose li { color: var(--ink-2); font-size: 17.5px; line-height: 1.6; }
.prose p.lead { font-size: 1.22rem; color: var(--ink); line-height: 1.5; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-top: 6px; }
.prose li::marker { color: var(--brand-deep); }
.prose .tbl { margin-top: 1.4em; }
.prose blockquote { margin: 1.6em 0; padding-left: 20px; border-left: 3px solid var(--brand); font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--forest); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.article-meta { font-family: var(--mono); font-size: 12px; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- ghid cards ---------- */
.guide { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-strong); }
.guide a { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 26px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
@media (min-width: 800px) { .guide a { grid-template-columns: 1fr 1.4fr auto; gap: 32px; align-items: baseline; } }
.guide h3 { font-size: 1.35rem; transition: color 160ms ease; }
.guide a:hover h3 { color: var(--brand-deep); }
.guide p { color: var(--ink-2); font-size: 15.5px; }
.guide .more { color: var(--brand-deep); }

/* ---------- kitchen equipment ---------- */
.kit { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .kit { grid-template-columns: repeat(3, 1fr); } }
.kit div { border: 1px solid var(--line); background: var(--surface); padding: 22px; }
.kit h4 { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: 12px; }
.kit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 15.5px; color: var(--ink-2); }
.kit li { padding-left: 18px; position: relative; }
.kit li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 2px; background: var(--brand); }

/* ---------- CTA band ---------- */
.band { background: var(--forest); color: var(--paper); padding: 72px 0; }
.band__in { display: grid; gap: 20px; align-items: center; }
@media (min-width: 900px) { .band__in { grid-template-columns: 1fr auto; gap: 48px; } }
.band h2 { color: var(--paper); max-width: 22ch; }
.band p { color: var(--on-dark-2); max-width: 56ch; margin-top: 10px; }

/* ---------- footer ---------- */
.ft { background: var(--forest); color: var(--paper); padding: 64px 0 128px; }
.ft__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .ft__grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 64px; } }
.ft dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 7px 18px; font-size: 14.5px; }
.ft dt { font-family: var(--mono); font-size: 12px; color: var(--moss); padding-top: 2px; letter-spacing: 0.03em; }
.ft dd { margin: 0; color: var(--on-dark-2); }
.ft h4 { margin: 0 0 14px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--moss); }
.ft ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 15px; }
.ft ul a { text-decoration: none; color: var(--paper); }
.ft ul a:hover { color: var(--moss); }
.ft__nap { font-size: 15px; line-height: 1.7; color: var(--on-dark-2); }
.ft__nap a { text-decoration: none; color: var(--paper); }
.ft__brand { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 18px; }
.ft__brand i { font-style: italic; color: var(--moss); }
.ft__legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--forest-line); font-family: var(--mono); font-size: 11.5px; color: var(--moss); line-height: 1.7; display: flex; flex-wrap: wrap; gap: 6px 20px; }
.ft__legal a { color: var(--moss); }
@media (min-width: 761px) { .ft { padding-bottom: 72px; } }

/* ---------- mobile bar ---------- */
/* fără bandă albă: umbră-gradient transparentă, butoanele plutesc peste conținut */
.mbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: linear-gradient(180deg, rgba(20,33,25,0) 0%, rgba(20,33,25,.07) 45%, rgba(20,33,25,.2) 100%); border-top: 0; padding: 26px 16px 12px; gap: 10px; pointer-events: none; }
.mbar .btn { flex: 1; pointer-events: auto; box-shadow: 0 5px 16px rgba(15,25,19,.22); }
.mbar .btn--sec { background: var(--paper); }
.mbar .btn--sec:hover { background: var(--brand-soft); }
@media (max-width: 760px) { .mbar { display: flex; } }

/* ---------- cookie banner ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 76px; z-index: 70; background: var(--surface); border: 1px solid var(--line-strong); padding: 16px 18px; display: none; gap: 14px; align-items: center; flex-wrap: wrap; font-size: 14.5px; max-width: 720px; margin: 0 auto; }
@media (min-width: 761px) { .cookie { bottom: 20px; } }
.cookie.show { display: flex; }
.cookie p { flex: 1 1 320px; color: var(--ink-2); }
.cookie .btn { padding: 10px 14px; font-size: 14px; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html.js .hero__img img { animation: none; }
  .card__ph img, .split__media img, .gallery img, .promo img, .roof, .park, .lawn, .hd__in { transition: none; }
  .card:hover .card__ph img, .split:hover .split__media img, .gallery figure:hover img, .promo:hover img { transform: none; }
}

/* ==========================================================================
   Stratul „Awwwards”: opener, cortină, cursor, story fixată, galerie orizontală,
   marquee, parallax, grain, footer cu wordmark. Totul degradează fără JS.
   ========================================================================== */

:root { --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
h1 { font-size: clamp(2.8rem, 6.4vw, 6.2rem); line-height: 0.96; letter-spacing: -0.02em; }
.hero-p h1 { font-size: clamp(2.6rem, 5.4vw, 5.2rem); max-width: 16ch; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 1.04; letter-spacing: -0.015em; }

/* cortină la încărcare */
.curtain { position: fixed; inset: 0; z-index: 200; background: var(--forest); transform: translateY(0); pointer-events: none; display: none; }
html.js .curtain { display: block; animation: curtain 900ms cubic-bezier(.76, 0, .24, 1) 120ms both; }
@keyframes curtain { to { transform: translateY(-101%); } }
html.js .curtain::after { content: "Miotur"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 5vw, 4rem); color: var(--moss); animation: curtainWord 700ms var(--ease) both; }
@keyframes curtainWord { from { opacity: 0; transform: translate(-50%, -40%); } to { opacity: 1; transform: translate(-50%, -50%); } }

/* bară de progres + cursor */
.progress { position: fixed; left: 0; top: 0; height: 2px; width: 0; background: var(--moss); z-index: 120; pointer-events: none; }
.cursor { position: fixed; left: 0; top: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--paper); mix-blend-mode: difference; pointer-events: none; z-index: 150; transform: translate(-50%, -50%); transition: width 260ms var(--ease), height 260ms var(--ease), opacity 200ms; opacity: 0; }
.cursor.is-link { width: 56px; height: 56px; }
.cursor.is-img { width: 84px; height: 84px; background: transparent; border: 1.5px solid var(--paper); }
.cursor.is-img::after { content: "vezi"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--paper); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
html.has-cursor a, html.has-cursor button, html.has-cursor .card, html.has-cursor input[type=range] { cursor: none; }

/* intrare pe linii (mască) */
.line { display: block; overflow: hidden; }
.line > span { display: block; }
html.js .line > span { transform: translateY(112%); transition: transform 1100ms cubic-bezier(.2, .85, .2, 1); transition-delay: calc(var(--i, 0) * 110ms + 700ms); }
html.js.is-loaded .line > span { transform: none; }
html.js .rv.line > span { transform: translateY(112%); }
html.js .rv.in.line > span { transform: none; }

/* opener */
.opener { position: relative; min-height: 100svh; display: grid; grid-template-rows: 1fr auto; background: var(--forest); color: var(--paper); overflow: hidden; isolation: isolate; }
.opener__bg { position: absolute; inset: 0; z-index: 0; }
.opener__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.05) brightness(.9); transform-origin: 50% 40%; }
html.js .opener__bg img { animation: openerZoom 2600ms var(--ease) both; }
@keyframes openerZoom { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.opener__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,51,39,.6) 0%, rgba(30,51,39,.48) 45%, rgba(30,51,39,.93) 100%); }
/* pe mobil textul stă peste zona cea mai luminoasă a fotografiei — scrim mai puternic */
@media (max-width: 760px) { .opener__bg::after { background: linear-gradient(180deg, rgba(30,51,39,.68) 0%, rgba(30,51,39,.6) 45%, rgba(30,51,39,.95) 100%); } }
/* lizibilitate peste fotografie: umbră difuză, fără margini, în spatele
   blocului de text + halo fin pe litere (fără casete vizibile) */
/* umbra difuză din spatele textului — pe mobil e legată de blocul de text
   (se întinde dincolo de marginile ecranului, nu se percepe ca formă) */
@media (max-width: 760px) {
  .opener__in::before { content: ""; position: absolute; z-index: -1; left: -18%; right: -8%; top: 12%; bottom: -8%; background: radial-gradient(ellipse 74% 66% at 32% 58%, rgba(14,24,18,.52), rgba(14,24,18,0) 74%); pointer-events: none; }
}
/* pe desktop umbra e ancorată de MARGINEA STÂNGĂ a ecranului (cerință client:
   plină la stânga de tot, inclusiv pe ecrane late, stinsă treptat spre dreapta) */
@media (min-width: 760.02px) {
  .opener::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse 125% 84% at 0% 60%, rgba(14,24,18,.52), rgba(14,24,18,0) 80%); pointer-events: none; }
}
.opener__in .eyebrow { color: var(--paper); }
.opener__title em { color: #C2D8C6; }
.opener__in .eyebrow, .opener__title, .opener__sub { text-shadow: 0 1px 2px rgba(12,20,15,.55), 0 0 16px rgba(12,20,15,.5), 0 2px 30px rgba(12,20,15,.4); }
.opener__bg::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .10; z-index: 1; mix-blend-mode: soft-light; }
.opener__in { position: relative; z-index: 2; padding-top: clamp(88px, 14vh, 140px); padding-bottom: 48px; display: grid; align-content: end; gap: 24px; }
.opener__title { font-size: clamp(2.5rem, 6vw, 5.9rem); line-height: .96; letter-spacing: -0.022em; font-weight: 500; margin: 0; }
@media (max-height: 700px) and (min-width: 900px) { .opener__title { font-size: clamp(2.4rem, 5vw, 4.6rem); } .opener__in { padding-top: 84px; gap: 18px; } }
.opener__title em { color: var(--moss); }
.opener__row { display: grid; gap: 28px; align-items: end; }
@media (min-width: 900px) { .opener__row { grid-template-columns: minmax(0, 46ch) auto; justify-content: space-between; gap: 48px; } }
.opener__sub { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.5; color: var(--on-dark-2); }
.opener__sub b { color: var(--paper); }
.opener .cta-row { --i: 5; }
.opener__cue { position: absolute; right: 28px; bottom: 76px; z-index: 3; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); text-decoration: none; writing-mode: vertical-rl; display: none; }
@media (min-width: 900px) { .opener__cue { display: block; } }
.opener__cue::after { content: ""; display: block; width: 1px; height: 48px; background: var(--moss); margin: 12px auto 0; animation: cue 1800ms ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%, 100% { transform: scaleY(.3); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* marquee */
.marquee { position: relative; z-index: 2; border-top: 1px solid rgba(143,175,149,.35); overflow: hidden; padding: 14px 0; background: rgba(30,51,39,.6); backdrop-filter: blur(6px); }
.marquee__track { display: flex; gap: 0; width: max-content; font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--moss); white-space: nowrap; animation: marquee 42s linear infinite; }
.marquee__track span { padding: 0 28px; }
.marquee__track span::after { content: "·"; margin-left: 56px; color: rgba(143,175,149,.5); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* intro cu număr uriaș */
.intro { padding: clamp(96px, 14vh, 160px) 0; position: relative; overflow: hidden; }
.intro__grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .intro__grid { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.intro__num { font-family: var(--serif); font-weight: 300; font-size: clamp(9rem, 26vw, 24rem); line-height: .8; letter-spacing: -0.05em; color: var(--forest); font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 12px; }
.intro__num small { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 500; writing-mode: vertical-rl; transform: rotate(180deg); }
.intro__text { display: grid; gap: 18px; }
.intro__text h2 { font-size: clamp(1.7rem, 2.8vw, 2.6rem); max-width: 24ch; }
.intro__text p { color: var(--ink-2); font-size: 1.08rem; max-width: 52ch; }
.facts-row { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line-strong); }
.facts-row li { padding: 14px 24px 0 0; margin-right: 24px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--ink-2); }
.facts-row li b { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--forest); line-height: 1; margin-bottom: 4px; }

/* story fixată: planul complexului */
.story { position: relative; background: var(--stone); }
.story__sticky { position: sticky; top: 0; min-height: 100svh; display: flex; align-items: center; padding: 96px 0 64px; }
.story__grid { display: grid; gap: 32px; align-items: center; width: 100%; }
@media (min-width: 900px) { .story__grid { grid-template-columns: minmax(0, 32rem) 1fr; gap: 56px; } }
.story__copy { position: relative; }
.story__steps { position: relative; min-height: 20rem; margin-top: 18px; }
.story__step { display: grid; gap: 14px; }
html.js.story-on .story__step { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); pointer-events: none; }
html.js.story-on .story__step.is-on { opacity: 1; transform: none; pointer-events: auto; }
html:not(.story-on) .story__step + .story__step { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--stone-line); }
.story__step h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.story__step p { color: var(--ink-2); font-size: 1.05rem; max-width: 46ch; }
.story__step .k { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-deep); }
.story__dots { display: none; gap: 8px; margin-top: 28px; }
html.story-on .story__dots { display: flex; }
.story__dots i { width: 28px; height: 2px; background: var(--stone-line); transition: background 300ms; }
.story__dots i.is-on { background: var(--forest); }
.story__plan { border: 1px solid var(--line-strong); background: var(--surface); position: relative; }
.story__plan svg { display: block; width: 100%; height: auto; }
.story__plan .fence, .story__plan .road-line { stroke-dasharray: 2400; stroke-dashoffset: 0; }
html.story-on .story__plan .fence { stroke-dashoffset: var(--draw, 0); transition: none; }
.story__plan g.unit .roof, .story__plan g.unit .park, .story__plan g.unit .lawn { transition: fill 400ms var(--ease), stroke 400ms var(--ease), opacity 400ms; }
html.story-on .story__plan.is-focus g.unit:not(.is-hl) .roof, html.story-on .story__plan.is-focus g.unit:not(.is-hl) .park, html.story-on .story__plan.is-focus g.unit:not(.is-hl) .lawn { opacity: .28; }
html.story-on .story__plan.is-focus g.unit:not(.is-hl) .lbl { opacity: .35; }
.story__plan g.unit.is-hl .roof, .story__plan g.unit.is-hl .park, .story__plan g.unit.is-hl .lawn { fill: var(--forest); stroke: var(--forest); }
.story__plan g.unit.is-hl .lbl { fill: var(--paper); }
.story__plan .plan__tag { position: absolute; left: 14px; top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* galerie orizontală fixată: tipurile de cazare */
.rooms { position: relative; background: var(--paper); }
.rooms__sticky { position: sticky; top: 0; min-height: 100svh; display: grid; grid-template-rows: auto 1fr; overflow: hidden; padding-top: 88px; padding-bottom: 32px; }
.rooms__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.rooms__head h2 { max-width: 16ch; }
.rooms__count { font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; color: var(--muted); white-space: nowrap; }
.rooms__count b { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--forest); letter-spacing: 0; margin-right: 6px; }
.rooms__track { display: flex; gap: 20px; padding: 0 28px; will-change: transform; }
html:not(.rooms-on) .rooms__track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.room { flex: 0 0 min(78vw, 560px); scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line); display: grid; grid-template-rows: auto 1fr; text-decoration: none; color: inherit; }
.room__ph { overflow: hidden; aspect-ratio: 4 / 3; }
.room__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.room:hover .room__ph img { transform: scale(1.04); }
.room__body { padding: 22px 24px 26px; display: grid; gap: 10px; align-content: start; }
.room__body h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
.room__idx { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--muted); }
.room__spec { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }
.room__spec b { color: var(--ink); font-weight: 500; }
.room--cta { background: var(--forest); color: var(--paper); border-color: var(--forest); align-content: center; display: grid; padding: 32px; gap: 18px; position: relative; overflow: hidden; }
.room--cta::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .12; mix-blend-mode: soft-light; pointer-events: none; }
.room--cta h3 { color: var(--paper); font-size: clamp(1.8rem, 2.6vw, 2.4rem); position: relative; }
.room--cta p { color: var(--on-dark-2); position: relative; }
.room--cta .btn { position: relative; justify-self: start; }

/* configurator pe fond închis */
.section--dark .conf { background: transparent; border-color: var(--forest-line); }
.section--dark .conf label, .section--dark .conf__scale, .section--dark .conf__rest, .section--dark .conf__fine { color: var(--moss); }
.section--dark .conf output, .section--dark .conf__alloc { color: var(--paper); }
.section--dark .conf__alloc b { color: var(--paper); }
.section--dark .conf input[type=range] { accent-color: var(--moss); }
@media (min-width: 900px) { .section--dark .conf__out { border-left-color: var(--forest-line); } }
.section--dark .conf output { font-size: clamp(5rem, 9vw, 8rem); }
.section--dark { position: relative; overflow: hidden; }
.section--dark::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .09; mix-blend-mode: soft-light; pointer-events: none; }
.section--dark > .wrap { position: relative; }

/* pași cu numere uriașe */
.steps--big { border-top: 0; gap: 0; }
.steps--big .step { padding: 8px 32px 24px 0; border-top: 1px solid var(--line-strong); }
.steps--big .step .n { font-size: clamp(4rem, 7vw, 6.5rem); font-style: italic; font-weight: 300; color: var(--forest); margin: 12px 0 18px; letter-spacing: -0.03em; }

/* parallax + reveal cu mască pe imagini */
.px { overflow: hidden; }
.px img { will-change: transform; transform: translateY(var(--py, 0)) scale(1.12); transition: none; }
html.js .mask { clip-path: inset(0 0 100% 0); transition: clip-path 1100ms cubic-bezier(.2, .85, .2, 1); }
html.js .mask.in { clip-path: inset(0 0 0 0); }

/* cadrul: imagine full-bleed cu citat suprapus */
.setting { position: relative; }
.setting__bleed { position: relative; height: clamp(420px, 78vh, 760px); overflow: hidden; }
.setting__bleed img { width: 100%; height: 120%; object-fit: cover; filter: saturate(.85); }
.setting__bleed::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,51,39,0) 40%, rgba(30,51,39,.45) 100%); }
.setting__card { position: relative; z-index: 2; background: var(--paper); padding: 40px 44px; margin: -120px 0 0; max-width: 620px; display: grid; gap: 16px; border: 1px solid var(--line); }
@media (min-width: 900px) { .setting__card { margin-left: auto; margin-right: 28px; } }
.setting__card .big { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1.15; color: var(--forest); }
.setting__card p { color: var(--ink-2); }
.setting__strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 700px) { .setting__strip { grid-template-columns: 1fr; } }
.setting__strip figure { margin: 0; border: 1px solid var(--line); background: var(--surface); }
.setting__strip img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.setting__strip figcaption { font-family: var(--mono); font-size: 11.5px; color: var(--muted); padding: 8px 12px; border-top: 1px solid var(--line); }

/* magnetic */
.magnet { display: inline-block; will-change: transform; }

/* footer cu wordmark */
.ft__word { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(5rem, 21vw, 19rem); line-height: .85; letter-spacing: -0.04em; color: var(--moss); opacity: .35; margin: 0 0 40px; user-select: none; overflow: hidden; }
.ft { position: relative; overflow: hidden; }
.ft::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .08; mix-blend-mode: soft-light; pointer-events: none; }
.ft > .wrap { position: relative; }

@media (prefers-reduced-motion: reduce) {
  html.js .curtain, html.js .curtain::after { animation: none; display: none; }
  html.js .line > span { transform: none; transition: none; }
  html.js .opener__bg img { animation: none; }
  .marquee__track { animation: none; }
  .opener__cue::after { animation: none; }
  .px img { transform: none; }
  html.js .mask { clip-path: none; transition: none; }
  .cursor { display: none; }
}

.line > span.cta-row { display: flex; }
.curtain { display: none !important; }
html.js .page-acasa .curtain { display: block !important; }
.curtain.is-gone { display: none !important; }

/* fără story / galerie fixată (mobil, fără JS, mișcare redusă): blocuri normale */
html:not(.story-on) .story__sticky { position: static; min-height: 0; padding: 72px 0; }
html:not(.rooms-on) .rooms__sticky { position: static; min-height: 0; overflow: visible; padding-top: 72px; }
.story__steps { min-height: 24rem; }

/* ==========================================================================
   Header v2: mega-meniuri, subliniere animată, selector de limbă, meniu mobil pe tot ecranul
   ========================================================================== */
.hd { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid transparent; transition: border-color 200ms ease, background 240ms ease; }
.hd.is-scrolled { border-bottom-color: var(--line); }
.hd__in { display: flex; align-items: center; gap: 36px; height: 80px; transition: height 240ms var(--ease); }
.hd.is-scrolled .hd__in { height: 66px; }
.hd__logo { display: flex; align-items: center; height: 44px; flex: none; }
.hd__logo img { height: 42px; width: auto; transition: height 240ms var(--ease); }
.hd.is-scrolled .hd__logo img { height: 36px; }
.hd__logo img.light { display: none; }
.hd__nav { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 0; }
.menu { list-style: none; margin: 0 auto 0 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.menu__item { position: relative; }
.menu__top { display: inline-flex; align-items: center; gap: 7px; padding: 10px 13px; font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: .005em; color: var(--ink); text-decoration: none; background: none; border: 0; cursor: pointer; position: relative; line-height: 1; transition: color 160ms; }
.menu__top::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 1.5px; background: var(--brand); transform: scaleX(0); transform-origin: right; transition: transform 340ms var(--ease); }
.menu__item:hover > .menu__top::after, .menu__item.is-current > .menu__top::after, .menu__item.open > .menu__top::after, .menu__item:focus-within > .menu__top::after, .menu__top[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu__item:hover > .menu__top, .menu__item.open > .menu__top { color: var(--brand-deep); }
.menu__top svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 260ms var(--ease); }
.menu__item:hover > .menu__top svg, .menu__item.open > .menu__top svg, .menu__item:focus-within > .menu__top svg { transform: rotate(180deg); }
.menu__panel { position: absolute; left: -8px; top: calc(100% + 12px); min-width: 620px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 30px 70px -30px rgba(23, 35, 28, .32); padding: 16px; display: grid; grid-template-columns: 1fr 220px; gap: 16px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 0s linear 240ms; z-index: 60; }
.menu__panel--wide { min-width: 860px; grid-template-columns: 1fr 1fr 230px; }
.menu__panel::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.menu__item:hover > .menu__panel, .menu__item.open > .menu__panel, .menu__item:focus-within > .menu__panel { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.menu__col { display: grid; gap: 2px; align-content: start; }
.menu__head { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 6px 12px 8px; }
.menu__link { display: grid; gap: 3px; padding: 10px 12px; text-decoration: none; color: var(--ink); transition: background 160ms ease; }
.menu__link:hover, .menu__link:focus-visible { background: var(--stone); }
.menu__link b { font-weight: 600; font-size: 15px; line-height: 1.25; }
.menu__link[aria-current="page"] b { color: var(--brand-deep); }
.menu__link span { font-size: 13px; color: var(--muted); line-height: 1.35; }
.menu__link i { font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: .03em; color: var(--brand-deep); margin-top: 2px; }
.menu__feature { position: relative; display: block; overflow: hidden; background: var(--forest); color: var(--paper); text-decoration: none; min-height: 180px; }
.menu__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: transform 900ms var(--ease), opacity 300ms; }
.menu__feature:hover img { transform: scale(1.04); opacity: .6; }
.menu__feature span { position: relative; display: block; padding: 18px; font-family: var(--serif); font-size: 1.05rem; line-height: 1.3; }
.hd__aside { display: flex; align-items: center; gap: 18px; flex: none; }
.hd__phone { font-family: var(--mono); font-size: 13.5px; color: var(--ink); text-decoration: none; white-space: nowrap; transition: color 160ms; }
.hd__phone:hover { color: var(--brand-deep); }
.hd__lang { display: inline-flex; border: 1px solid var(--line-strong); font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; }
.hd__lang b, .hd__lang span { padding: 6px 9px; line-height: 1; }
.hd__lang b { background: var(--ink); color: var(--paper); font-weight: 500; }
.hd__lang span { color: var(--muted); }
.hd__burger { display: none; }

/* meniul mobil: pe tot ecranul, verde-pădure */
@media (max-width: 1080px) {
  .hd__in { gap: 16px; }
  .hd__burger { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; background: none; border: 1.5px solid var(--line-strong); padding: 10px 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; color: var(--ink); position: relative; z-index: 52; transition: color 200ms, border-color 200ms; }
  .hd__burger::before { content: ""; width: 16px; height: 10px; border-top: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transition: transform 200ms; }
  html.menu-open .hd__burger::before { transform: rotate(45deg) scaleY(.2); }
  .hd__nav { position: fixed; inset: 0; z-index: 45; background: var(--forest); color: var(--paper); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 104px 28px 120px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 300ms var(--ease), transform 300ms var(--ease), visibility 0s linear 300ms; }
  .hd__nav::before { content: ""; position: absolute; inset: 0; background-image: var(--grain); opacity: .09; mix-blend-mode: soft-light; pointer-events: none; }
  .hd__nav.open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  html.menu-open { overflow: hidden; }
  html.menu-open .hd { background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  html.menu-open .hd__logo img.dark { display: none; }
  html.menu-open .hd__logo img.light { display: block; }
  html.menu-open .hd__burger { color: var(--paper); border-color: rgba(243,244,239,.45); }
  .menu { flex-direction: column; align-items: stretch; gap: 0; margin: 0; position: relative; }
  .menu__item { border-bottom: 1px solid var(--forest-line); }
  .menu__top { width: 100%; justify-content: space-between; padding: 20px 0; font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--paper); letter-spacing: -0.01em; }
  .menu__top::after { display: none; }
  .menu__item:hover > .menu__top, .menu__item.open > .menu__top { color: var(--moss); }
  .menu__top svg { width: 18px; height: 18px; }
  .menu__panel { position: static; min-width: 0; background: transparent; border: 0; box-shadow: none; padding: 0 0 18px; grid-template-columns: 1fr; gap: 6px; opacity: 1; visibility: visible; transform: none; transition: none; display: none; }
  .menu__item.open > .menu__panel { display: grid; }
  .menu__item:hover > .menu__panel:not(.x) { display: none; }
  .menu__item.open:hover > .menu__panel { display: grid; }
  .menu__feature { display: none; }
  .menu__head { color: var(--moss); padding-left: 0; }
  .menu__link { color: var(--paper); padding: 10px 0; }
  .menu__link:hover, .menu__link:focus-visible { background: transparent; }
  .menu__link b { font-size: 1.05rem; }
  .menu__link span { color: var(--on-dark-2); }
  .menu__link i { color: var(--moss); }
  .hd__aside { position: relative; flex-direction: column; align-items: stretch; gap: 14px; margin-top: 32px; }
  .hd__phone { color: var(--paper); font-size: 1.15rem; }
  .hd__aside .btn--pri { background: var(--paper); color: var(--forest); border-color: var(--paper); justify-content: center; padding: 16px; font-size: 16px; }
  .hd__lang { align-self: flex-start; border-color: var(--forest-line); }
  .hd__lang b { background: var(--paper); color: var(--forest); }
  .hd__lang span { color: var(--moss); }
}

/* header transparent peste opener (doar Acasă, până la scroll) */
.page-acasa .hd { position: fixed; left: 0; right: 0; top: 0; }
.page-acasa .hd:not(.is-scrolled) { background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
/* umbră sub header: meniul alb rămâne lizibil și pe zonele luminoase ale fotografiei */
.page-acasa .hd::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 220%; background: linear-gradient(180deg, rgba(14,24,18,.58) 0%, rgba(14,24,18,.34) 46%, rgba(14,24,18,0) 100%); pointer-events: none; z-index: -1; opacity: 1; transition: opacity 240ms ease; }
.page-acasa .hd.is-scrolled::before, html.menu-open .page-acasa .hd::before { opacity: 0; }
.page-acasa .hd:not(.is-scrolled) .menu__top, .page-acasa .hd:not(.is-scrolled) .hd__phone { text-shadow: 0 1px 2px rgba(10,18,14,.35), 0 2px 14px rgba(10,18,14,.4); }
.page-acasa .hd:not(.is-scrolled) .hd__logo img.light { filter: drop-shadow(0 1px 8px rgba(10,18,14,.45)); }
.page-acasa .hd:not(.is-scrolled) .menu__top, .page-acasa .hd:not(.is-scrolled) .hd__phone { color: var(--paper); }
.page-acasa .hd:not(.is-scrolled) .menu__item:hover > .menu__top, .page-acasa .hd:not(.is-scrolled) .menu__item.open > .menu__top { color: var(--moss); }
.page-acasa .hd:not(.is-scrolled) .menu__top::after { background: var(--moss); }
.page-acasa .hd:not(.is-scrolled) .hd__lang { border-color: rgba(243,244,239,.45); }
.page-acasa .hd:not(.is-scrolled) .hd__lang b { background: var(--paper); color: var(--forest); }
.page-acasa .hd:not(.is-scrolled) .hd__lang span { color: var(--moss); }
.page-acasa .hd:not(.is-scrolled) .hd__aside .btn--pri { background: var(--paper); color: var(--forest); border-color: var(--paper); }
.page-acasa .hd:not(.is-scrolled) .hd__aside .btn--pri:hover { background: #FFFFFF; }
.page-acasa .hd:not(.is-scrolled) .hd__burger { color: var(--paper); border-color: rgba(243,244,239,.45); }
.page-acasa .hd:not(.is-scrolled) .hd__logo img.dark { display: none; }
.page-acasa .hd:not(.is-scrolled) .hd__logo img.light { display: block; }
.ft__grid--4 { grid-template-columns: 1fr; }
@media (min-width: 900px) { .ft__grid--4 { grid-template-columns: 1.3fr .8fr 1fr .8fr; gap: 48px; } }

/* ==========================================================================
   Stratul „fluid”: colțuri rotunjite, benzi moi, litere cu terminații rotunjite
   ========================================================================== */
:root { --r-sm: 12px; --r: 18px; --r-lg: 28px; --r-xl: 40px; --pill: 999px; }
@media (max-width: 760px) { :root { --r-lg: 20px; --r-xl: 26px; } }


/* butoane, pastile, etichete */
.btn { border-radius: var(--pill); padding-left: 24px; padding-right: 24px; }
.btn--sm { padding-left: 18px; padding-right: 18px; }
.chip { border-radius: var(--pill); }
.hd__lang { border-radius: var(--pill); overflow: hidden; }
.hd__burger { border-radius: var(--pill); }
.switch { border-radius: var(--pill); overflow: hidden; }
.hero__img figcaption { border-radius: 0 var(--r) 0 0; }
.menu__panel { border-radius: var(--r-lg); }
.menu__link { border-radius: var(--r-sm); }
.menu__feature { border-radius: var(--r); }
.cookie { border-radius: var(--r); }
.mbar { border-radius: var(--r) var(--r) 0 0; }
.form-msg { border-radius: var(--r-sm); }
.field input, .field select, .field textarea { border-radius: var(--r-sm); }

/* rame: carduri, fotografii, panouri */
.card, .promo, .room, .box, .conf, .plan, .story__plan, .inset, .legend, .map, .tbl, .detail, .hero__img, .hero-p__img, .split__media, .gallery figure, .setting__card, .setting__strip figure, .form-grid, .kit div, .card__ph, .room__ph { border-radius: var(--r-lg); overflow: hidden; }
.card .card__ph, .room .room__ph { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.detail { border-radius: var(--r); }
.detail img { border-radius: var(--r) 0 0 var(--r); }
.promo img { border-radius: 0; }
.box, .kit div, .legend { border-radius: var(--r); }
.hero__img img, .hero-p__img img, .gallery img, .split__media img { border-radius: 0; }
.plan__info, .map__src, .inset p, .gallery figcaption, .split__media figcaption, .hero-p__img figcaption, .setting__strip figcaption { border-radius: 0; }

/* benzi de secțiune moi, ușor mai înguste decât pagina */
.section--stone, .section--dark, .band, .story { border-radius: var(--r-xl); margin-left: 12px; margin-right: 12px; }
.section--stone + .section--stone, .story + .section--stone { margin-top: 12px; }
.opener { border-radius: 0 0 var(--r-xl) var(--r-xl); }
.setting__bleed { border-radius: var(--r-xl); margin-left: 12px; margin-right: 12px; }
.ft { border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: 12px; }
.hero-p { border-bottom: 0; }
.hero-p + .section { padding-top: 40px; }
@media (max-width: 760px) { .section--stone, .section--dark, .band, .story, .setting__bleed { margin-left: 8px; margin-right: 8px; } }

/* linii mai blânde */
:root { --line: #DCDFD8; --line-strong: #BCC5BE; --stone-line: #DAD6CA; }
.stat { border-right-color: var(--line); }
.steps, .ledger, .faq, .times, .facts-row, .guide { border-top-color: var(--line); }

/* footer: logo în loc de wordmark */
.ft__word { display: none; }
.ft__logo { display: inline-block; margin-bottom: 18px; }
.ft__logo img { height: 72px; width: auto; }
.ft__brand { font-size: 1.15rem; color: var(--moss); margin-bottom: 22px; }
.ft { padding-top: 72px; }

/* cursor: contur moale */
.cursor { background: var(--moss); mix-blend-mode: normal; opacity: 0; }
.cursor.is-link { background: transparent; border: 1.5px solid var(--moss); }
.cursor.is-img { border-color: var(--paper); }

/* mega-meniu: umbră mai moale */
.menu__panel { box-shadow: 0 24px 60px -20px rgba(23, 35, 28, .22), 0 2px 8px rgba(23, 35, 28, .06); border-color: var(--line); }
/* aliniere: conținutul din benzile rotunjite rămâne pe aceeași verticală cu restul paginii */
.section--stone > .wrap, .section--dark > .wrap, .band > .wrap, .story .wrap { padding-left: 16px; padding-right: 16px; }
@media (max-width: 760px) { .section--stone > .wrap, .section--dark > .wrap, .band > .wrap, .story .wrap { padding-left: 20px; padding-right: 20px; } }
/* aliniere optică: prima literă a titlului din opener începe la aceeași verticală cu logo-ul */
.opener__title { margin-left: calc(var(--lsb, 0.03) * -1em); }
.opener .eyebrow { margin-left: -0.06em; }

/* .wrap în containere grid/flex cu margin auto se strângea la lățimea conținutului; forțăm lățimea completă */
.opener__in, .rooms__head { width: 100%; }

/* ==========================================================================
   Forme organice care se transformă: pete de culoare, măști pe fotografii, benzi cu colțuri inegale
   ========================================================================== */
@keyframes morph {
  0%   { border-radius: 58% 42% 33% 67% / 55% 34% 66% 45%; }
  33%  { border-radius: 42% 58% 60% 40% / 48% 62% 38% 52%; }
  66%  { border-radius: 35% 65% 45% 55% / 62% 40% 60% 38%; }
  100% { border-radius: 62% 38% 52% 48% / 42% 58% 42% 58%; }
}
@keyframes morphSoft {
  0%   { border-radius: 48px 84px 40px 96px; }
  50%  { border-radius: 92px 44px 88px 52px; }
  100% { border-radius: 56px 96px 48px 72px; }
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to   { transform: translate3d(6%, 5%, 0) rotate(14deg); }
}

/* pete de culoare în fundal (pseudo-elemente, fără HTML în plus) */
.intro::before, .intro::after, .side::before, .side::after, .section--dark::after, .ft::after, .band::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0; filter: blur(48px); opacity: .6;
  animation: morph 18s ease-in-out infinite alternate, drift 30s ease-in-out infinite alternate;
}
.intro::before { width: min(42vw, 560px); height: min(42vw, 560px); left: -10vw; top: -14%; background: var(--brand-soft); }
.intro::after { width: min(30vw, 420px); height: min(30vw, 420px); right: -8vw; bottom: -22%; background: #E3E8DE; animation-delay: -9s, -12s; }
.intro__grid { position: relative; z-index: 1; }
.side { position: relative; overflow: hidden; }
.side > * { position: relative; z-index: 1; }
.side::before { width: 70%; aspect-ratio: 1; left: -28%; top: -18%; background: var(--forest-line); opacity: .75; }
.side::after { width: 56%; aspect-ratio: 1; right: -22%; bottom: -14%; background: var(--brand); opacity: .35; animation-delay: -7s, -15s; }
.section--dark::after { width: min(46vw, 640px); height: min(46vw, 640px); right: -12vw; top: -24%; background: var(--forest-line); opacity: .65; }
.section--dark > .wrap { z-index: 1; }
.ft::after { width: min(40vw, 560px); height: min(40vw, 560px); left: -10vw; bottom: -32%; background: var(--forest-line); opacity: .55; }
.ft > .wrap { z-index: 1; }
.band { position: relative; overflow: hidden; }
.band::after { width: min(36vw, 480px); height: min(36vw, 480px); right: -10vw; top: -40%; background: var(--forest-line); opacity: .6; }
.band__in { position: relative; z-index: 1; }

/* benzi de secțiune cu colțuri inegale, care respiră */
.section--stone, .section--dark, .band, .story, .setting__bleed { border-radius: 48px 84px 40px 96px; animation: morphSoft 24s ease-in-out infinite alternate; }
.section--dark, .band { animation-delay: -8s; }
.setting__bleed { animation-delay: -14s; }
.opener { border-radius: 0 0 96px 48px; }
.ft { border-radius: 96px 48px 0 0; }

/* fotografii cu contur organic */
.hero-p__img, .gallery figure, .setting__strip figure { border: 0; background: transparent; overflow: visible; border-radius: 0; }
.hero-p__img img, .gallery__tall img, .setting__strip img, .detail img { border-radius: 58% 42% 33% 67% / 55% 34% 66% 45%; animation: morph 22s ease-in-out infinite alternate; }
.gallery__tall:nth-child(3) img, .setting__strip figure:nth-child(2) img { animation-delay: -7s; }
.gallery__tall:nth-child(4) img, .setting__strip figure:nth-child(3) img { animation-delay: -14s; }
.gallery__wide img { border-radius: 48px 84px 40px 96px; animation: morphSoft 26s ease-in-out infinite alternate; }
.hero-p__img figcaption, .gallery figcaption, .setting__strip figcaption { border: 0; padding: 12px 6px 0; }
.detail { overflow: visible; border: 0; background: transparent; }
.detail p { padding-left: 4px; }
.card__ph img, .room__ph img { border-radius: 0; }
.menu__feature { border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%; }
.menu__feature span { padding: 22px 26px; }

/* fără mișcare: formele rămân organice, dar statice */
@media (prefers-reduced-motion: reduce) {
  .intro::before, .intro::after, .side::before, .side::after, .section--dark::after, .ft::after, .band::after,
  .section--stone, .section--dark, .band, .story, .setting__bleed,
  .hero-p__img img, .gallery img, .setting__strip img, .detail img { animation: none; }
}
/* pe ecrane mici: colțuri mai mici, pete mai discrete */
@media (max-width: 760px) {
  .section--stone, .section--dark, .band, .story, .setting__bleed { animation: none; border-radius: 28px 44px 24px 52px; }
  .opener { border-radius: 0 0 44px 24px; }
  .ft { border-radius: 44px 24px 0 0; }
  .gallery__wide img { animation: none; border-radius: 28px 44px 24px 52px; }
  .intro::before, .intro::after, .band::after { opacity: .4; }
}

/* ==========================================================================
   Corecție: benzile pe toată lățimea rămân drepte; formele organice devin pietre netede
   ========================================================================== */
.section--stone, .section--dark, .band, .story, .setting__bleed { border-radius: 0; margin-left: 0; margin-right: 0; animation: none; }
.section--stone + .section--stone, .story + .section--stone { margin-top: 0; }
.opener, .ft { border-radius: 0; }
.ft { margin-top: 0; }
.section--stone > .wrap, .section--dark > .wrap, .band > .wrap, .story .wrap { padding-left: 28px; padding-right: 28px; }
@media (max-width: 760px) {
  .section--stone, .section--dark, .band, .story, .setting__bleed { border-radius: 0; margin-left: 0; margin-right: 0; }
  .opener, .ft { border-radius: 0; }
  .section--stone > .wrap, .section--dark > .wrap, .band > .wrap, .story .wrap { padding-left: 28px; padding-right: 28px; }
}

/* pietre netede: asimetrie mică, mișcare lentă */
@keyframes pebble {
  0%   { border-radius: 46% 54% 52% 48% / 58% 44% 56% 42%; }
  50%  { border-radius: 52% 48% 46% 54% / 50% 56% 44% 50%; }
  100% { border-radius: 48% 52% 55% 45% / 54% 46% 52% 48%; }
}
.hero-p__img img, .gallery__tall img, .setting__strip img, .detail img { border-radius: 46% 54% 52% 48% / 58% 44% 56% 42%; animation: pebble 28s ease-in-out infinite alternate; }
.gallery__tall:nth-child(3) img, .setting__strip figure:nth-child(2) img { animation-delay: -9s; }
.gallery__tall:nth-child(4) img, .setting__strip figure:nth-child(3) img { animation-delay: -18s; }
.gallery__wide img { border-radius: var(--r-lg); animation: none; }
.menu__feature { border-radius: var(--r); }
.menu__feature span { padding: 18px; }

/* o formă de culoare în spatele fotografiei din hero, decalată, pentru adâncime */
.hero-p__img { position: relative; }
.hero-p__img::before { content: ""; position: absolute; z-index: 0; left: 5%; top: -5%; width: 100%; height: calc(100% - 36px); background: var(--brand-soft); border-radius: 54% 46% 48% 52% / 44% 58% 42% 56%; animation: pebble 34s ease-in-out infinite alternate-reverse; }
.hero-p__img img, .hero-p__img figcaption { position: relative; z-index: 1; }

/* petele de fundal: mai discrete */
.intro::before, .intro::after, .side::before, .side::after, .section--dark::after, .ft::after, .band::after { opacity: .45; animation-name: pebble, drift; }
.side::before { opacity: .6; }
.side::after { opacity: .28; }

@media (prefers-reduced-motion: reduce) {
  .hero-p__img::before, .hero-p__img img, .gallery__tall img, .setting__strip img, .detail img { animation: none; }
}

/* rotunjire mai discretă (corecție Mihai, 4 sept. 2026) */
:root { --r-sm: 8px; --r: 12px; --r-lg: 16px; --r-xl: 16px; --pill: 12px; }
@media (max-width: 760px) { :root { --r-lg: 14px; --r-xl: 14px; } }
.btn { padding-left: 22px; padding-right: 22px; }
.btn--sm { padding-left: 16px; padding-right: 16px; }
.menu__link { border-radius: 8px; }
.cookie, .mbar { border-radius: 12px; }
.mbar { border-radius: 12px 12px 0 0; }

/* titluri: spațiere ca la început și mărime optică fixă, cu desen mai calm (cerere Mihai, 4 sept. 2026) */
h1, h2, h3, h4, .opener__title, .hero-p h1 { letter-spacing: -0.012em; }
h1, .opener__title, .hero-p h1 { line-height: 1.02; }
h2 { line-height: 1.08; }
h1, .opener__title, .hero-p h1, .intro__num, .stat b, .conf output, .steps--big .step .n { font-optical-sizing: none; font-variation-settings: "opsz" 64; }
h2, h3, h4, .faq summary, .gallery__quote .big, .setting__card .big, .prose blockquote, .rooms__count b, .ledger .n, .step .n, .menu__feature span, .plan__info b, .detail p b, .ft__brand { font-optical-sizing: none; font-variation-settings: "opsz" 36; }

/* paletă mai deschisă, plăcută (cerere Mihai, 4 sept. 2026). Logo-ul nu e atins: fișierele și regulile .hd__logo / .ft__logo rămân neschimbate. */
:root {
  --forest: #2E5140;
  --forest-line: #46725B;
  --moss: #A9C7B0;
  --brand-deep: #3D6A4B;
  --brand-soft: #E4EEE6;
  --paper: #F8F9F5;
  --stone: #EFEEE8;
  --stone-line: #E1DED4;
  --ink: #1F2D25;
  --ink-2: #4A5750;
  --muted: #5F6D66;
  --line: #E3E6DF;
  --line-strong: #C6CEC8;
  --on-dark-2: #DDE7DE;
}
.opener__bg img { filter: saturate(.85) contrast(1.03) brightness(.98); }
.opener__bg::after { background: linear-gradient(180deg, rgba(46,81,64,.34) 0%, rgba(46,81,64,.20) 40%, rgba(46,81,64,.86) 100%); }
.marquee { background: rgba(46,81,64,.55); border-top-color: rgba(169,199,176,.35); }
.marquee__track span::after { color: rgba(169,199,176,.5); }
.setting__bleed::after { background: linear-gradient(180deg, rgba(46,81,64,0) 40%, rgba(46,81,64,.40) 100%); }
.intro::after { background: #E8EEE9; }
.page-acasa .hd:not(.is-scrolled) .hd__lang, .page-acasa .hd:not(.is-scrolled) .hd__burger, html.menu-open .hd__burger { border-color: rgba(248,249,245,.45); }
.menu__panel { box-shadow: 0 24px 60px -20px rgba(31, 45, 37, .18), 0 2px 8px rgba(31, 45, 37, .05); }

/* paletă și mai deschisă + gradienturi pe fundalurile colorate (cerere Mihai, 4 sept. 2026). Logo-ul nu e atins. */
:root {
  --forest: #35604B;
  --forest-hi: #3F6F55;
  --forest-lo: #2A4D3C;
  --forest-line: #4C7D63;
  --moss: #D8E8DB;
  --on-dark-2: #E8EFE9;
  --brand-soft: #E8F1EA;
  --paper: #FAFBF8;
  --stone: #F2F2EC;
  --stone-line: #E4E2D9;
  --line: #E5E8E1;
  --line-strong: #C9D0CA;
  --grad-dark: linear-gradient(160deg, var(--forest-hi) 0%, var(--forest) 48%, var(--forest-lo) 100%);
  --grad-dark-v: linear-gradient(180deg, var(--forest) 0%, var(--forest-lo) 100%);
  --grad-stone: linear-gradient(160deg, #F6F5F0 0%, var(--stone) 52%, #ECF0EA 100%);
  --grad-btn: linear-gradient(160deg, var(--forest-hi) 0%, var(--forest-lo) 100%);
  --grad-btn-hover: linear-gradient(160deg, #467A5F 0%, var(--forest) 100%);
}
/* suprafețe închise: gradient diagonal, de la verde luminos la verde adânc */
.section--dark, .band, .side, .room--cta, .menu__feature, .curtain, .opener, .hero { background: var(--grad-dark); }
.ft { background: var(--grad-dark-v); }
@media (max-width: 1080px) { .hd__nav { background: var(--grad-dark); } }
/* suprafețe deschise colorate: piatră caldă spre salvie */
.section--stone, .story { background: var(--grad-stone); }
/* butoane principale */
.btn--pri { background: var(--grad-btn); border-color: var(--forest); }
.btn--pri:hover { background: var(--grad-btn-hover); border-color: var(--forest); }
.on-dark .btn--pri { background: var(--paper); }
.on-dark .btn--pri:hover { background: var(--surface); }
/* hero: voal mai transparent sus, dens jos */
.opener__bg img { filter: saturate(.88) contrast(1.02) brightness(1); }
.opener__bg::after { background: linear-gradient(180deg, rgba(53,96,75,.24) 0%, rgba(53,96,75,.10) 38%, rgba(42,77,60,.86) 100%); }
.marquee { background: rgba(53,96,75,.5); border-top-color: rgba(216,232,219,.35); }
.marquee__track span::after { color: rgba(216,232,219,.5); }
.setting__bleed::after { background: linear-gradient(180deg, rgba(42,77,60,0) 40%, rgba(42,77,60,.40) 100%); }
.intro::after { background: #EAF0EB; }
.section--dark::after, .ft::after, .band::after { background: var(--forest-line); opacity: .5; }

/* masca de reveal a rândurilor: loc pentru descendente (g, p, ț) sub linia de bază, fără să schimbe așezarea (cerere Mihai, 4 sept. 2026) */
.line { padding-bottom: .16em; margin-bottom: -.16em; }
html.js .line > span { transform: translateY(130%); }
html.js.is-loaded .line > span, html.js .rv.in.line > span { transform: none; }
html.js .rv.line > span { transform: translateY(130%); }
@media (prefers-reduced-motion: reduce) { html.js .line > span, html.js .rv.line > span { transform: none; transition: none; } }

/* harta reală (SVG din date OpenStreetMap), în paleta site-ului (cerere Mihai, 4 sept. 2026) */
.map { overflow: hidden; }
.m-bg { fill: var(--paper); }
.m-city { fill: var(--stone); stroke: var(--stone-line); stroke-width: .8; }
.m-forest { fill: var(--brand-soft); }
.m-water { fill: #DCE6E2; }
.m-river { fill: none; stroke: #DCE6E2; stroke-width: 1.2; }
.m-road { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.m-sec { stroke: var(--line); stroke-width: .7; }
.m-pri { stroke: var(--line-strong); stroke-width: 1.2; }
.m-mot { stroke: var(--brand); stroke-width: 2.2; opacity: .85; }
.m-metro { fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-dasharray: 4 3; opacity: .55; }
.m-st { fill: var(--surface); stroke: var(--ink); stroke-width: 1.2; }
.m-st--k { stroke: var(--forest); stroke-width: 1.6; }
.m-ref rect { fill: var(--brand); }
.m-ref text { font-family: var(--mono); font-size: 9.5px; font-weight: 500; fill: var(--paper); letter-spacing: .04em; }
.m-halo { fill: var(--brand); opacity: .16; }
html.js .m-halo { animation: mapHalo 3200ms ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes mapHalo { 0%, 100% { transform: scale(.85); opacity: .18; } 50% { transform: scale(1.15); opacity: .08; } }
.m-pin { fill: var(--paper); }
.m-name { font-family: var(--serif); font-weight: 500; font-size: 15px; fill: var(--ink); }
.m-scale { fill: none; stroke: var(--ink-2); stroke-width: 1; }
.m-north path { fill: none; stroke: var(--ink-2); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.map .lbl { paint-order: stroke; stroke: var(--paper); stroke-width: 3px; stroke-linejoin: round; }
.map .m-name { paint-order: stroke; stroke: var(--paper); stroke-width: 4px; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) { html.js .m-halo { animation: none; } }
.m-cityname { font-family: var(--mono); font-size: 10px; letter-spacing: .28em; fill: var(--muted); paint-order: stroke; stroke: var(--stone); stroke-width: 3px; }
.map .lbl { font-size: 12px; } .map .lbl.s { font-size: 10.5px; }
.m-credit { font-family: var(--mono); font-size: 8.5px; fill: var(--muted); opacity: .7; }

/* planul complexului peste fotografia din satelit (cerere Mihai, 4 sept. 2026) */
.plan-svg--photo .p-photo { filter: saturate(.9) brightness(1.05) contrast(.98); }
.plan-svg--photo .p-veil { fill: #1E3327; opacity: .10; pointer-events: none; }
.plan-svg--photo .lbl { paint-order: stroke; stroke: rgba(248,249,245,.9); stroke-width: 3px; stroke-linejoin: round; fill: #17231C; }
.plan-svg--photo .lbl.b { fill: #17231C; }
.plan-svg--photo .fence { stroke: rgba(255,255,255,.9); }
.plan-svg--photo .pin { fill: rgba(255,255,255,.95); }
.plan-svg--photo .roof, .plan-svg--photo .park { fill: rgba(255,255,255,.10); stroke: rgba(255,255,255,.92); stroke-width: 1.3; }
.plan-svg--photo .lawn { fill: rgba(232,241,234,.16); stroke: rgba(255,255,255,.92); stroke-width: 1.3; }
.plan-svg--photo .dot { fill: #fff; stroke: rgba(23,35,28,.6); stroke-width: 1; }
.plan-svg--photo g.unit:hover .roof, .plan-svg--photo g.unit:focus .roof, .plan-svg--photo g.unit.active .roof,
.plan-svg--photo g.unit:hover .park, .plan-svg--photo g.unit:focus .park, .plan-svg--photo g.unit.active .park,
.plan-svg--photo g.unit:hover .lawn, .plan-svg--photo g.unit:focus .lawn, .plan-svg--photo g.unit.active .lawn,
.plan-svg--photo g.unit.is-hl .roof, .plan-svg--photo g.unit.is-hl .park, .plan-svg--photo g.unit.is-hl .lawn { fill: rgba(46,81,64,.72); stroke: #fff; }
.plan-svg--photo g.unit:hover .lbl, .plan-svg--photo g.unit:focus .lbl, .plan-svg--photo g.unit.active .lbl, .plan-svg--photo g.unit.is-hl .lbl { fill: #FAFBF8; stroke: rgba(23,35,28,.55); }
html.story-on .story__plan.is-focus .plan-svg--photo g.unit:not(.is-hl) .roof,
html.story-on .story__plan.is-focus .plan-svg--photo g.unit:not(.is-hl) .park,
html.story-on .story__plan.is-focus .plan-svg--photo g.unit:not(.is-hl) .lawn { opacity: .45; }
.legend .i-unit { background: rgba(255,255,255,.6); border: 1.5px solid var(--forest); }
html.story-on .story__plan.is-focus .plan-svg--photo g.unit:not(.is-hl) .roof,
html.story-on .story__plan.is-focus .plan-svg--photo g.unit:not(.is-hl) .park,
html.story-on .story__plan.is-focus .plan-svg--photo g.unit:not(.is-hl) .lawn { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.5); }
.plan-svg--photo .p-extra { fill: rgba(255,255,255,.05); stroke: rgba(255,255,255,.55); stroke-width: 1; stroke-dasharray: 4 3; }
.plan-svg--photo g.extra .lbl { fill: #3F4B44; }
html.story-on .story__plan.is-focus .plan-svg--photo g.extra { opacity: .25; }

/* footer reorganizat: bandă de brand + 4 coloane echilibrate + rând legal (cerere Mihai, 5 sept. 2026) */
.ft__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px 40px; padding-bottom: 34px; margin-bottom: 46px; border-bottom: 1px solid var(--forest-line); }
.ft__top .ft__logo { margin-bottom: 12px; }
.ft__top .ft__brand { margin-bottom: 0; }
.ft__nap--top { margin: 0; font-family: var(--mono); font-size: 13px; line-height: 2.1; text-align: right; }
@media (max-width: 760px) { .ft__nap--top { text-align: left; } }
.ft__grid--4 { grid-template-columns: 1fr; }
@media (min-width: 900px) { .ft__grid--4 { grid-template-columns: .9fr 1.7fr .8fr 1.4fr; gap: 48px; } }
.ft ul.ft__2col { display: block; }
.ft ul.ft__2col li { margin-bottom: 10px; break-inside: avoid; }
@media (min-width: 560px) { .ft ul.ft__2col { columns: 2; column-gap: 30px; } }
.ft dl { align-content: start; }
.ft__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-family: var(--mono); font-size: 13px; justify-items: end; }
.ft__contact li { display: flex; align-items: center; gap: 10px; color: var(--on-dark-2); }
.ft__contact svg { width: 16px; height: 16px; flex: none; stroke: var(--moss); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ft__contact a { color: var(--paper); text-decoration: none; }
.ft__contact a:hover { color: var(--moss); }
.ft__contact .sep { color: var(--moss); }
@media (max-width: 760px) { .ft__contact { justify-items: start; } }

.hd__lang a { padding: 6px 9px; line-height: 1; color: var(--muted); text-decoration: none; }
.hd__lang a:hover { color: var(--brand-deep); }
.page-acasa .hd:not(.is-scrolled) .hd__lang a { color: var(--on-dark-2); }

/* comutator de limbă compact, în verdele site-ului (cerere Mihai, 5 sept. 2026) */
.hd__lang { border: none; background: var(--stone); border-radius: var(--pill); padding: 2px; font-size: 10.5px; letter-spacing: .05em; }
.hd__lang b, .hd__lang a, .hd__lang span { padding: 4px 8px; line-height: 1; border-radius: calc(var(--pill) - 2px); }
.hd__lang b { background: var(--brand-deep); color: var(--paper); font-weight: 500; }
.hd__lang a { color: var(--ink-2); transition: color 160ms; }
.hd__lang a:hover { color: var(--brand-deep); }
.page-acasa .hd:not(.is-scrolled) .hd__lang { background: rgba(248,249,245,.14); border: none; }
.page-acasa .hd:not(.is-scrolled) .hd__lang a { color: var(--on-dark-2); }
.page-acasa .hd:not(.is-scrolled) .hd__lang b { background: var(--paper); color: var(--forest); }
/* comutatorul arată doar cealaltă limbă, ca buton unic */
a.hd__lang { display: inline-flex; align-items: center; padding: 6px 11px; border-radius: var(--pill); background: var(--stone); color: var(--ink-2); text-decoration: none; font-weight: 500; transition: background 160ms, color 160ms; }
a.hd__lang:hover { background: var(--brand-soft); color: var(--brand-deep); }
.page-acasa .hd:not(.is-scrolled) a.hd__lang { background: rgba(248,249,245,.14); color: var(--on-dark-2); }
.page-acasa .hd:not(.is-scrolled) a.hd__lang:hover { background: rgba(248,249,245,.28); color: #fff; }
