/* ============================================================
   SEBMOB — GALERIE PRO
   Redesign premium pentru paginile de cameră.
   Self-contained: nu depinde de alte fișiere CSS.
   Paletă: charcoal + cream + auriu rafinat.
   Tipografie: Cormorant Garamond (display) + Inter (UI/body).
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream:        #f7f4ee;
    --cream-2:      #f1ebe1;
    --cream-3:      #eae2d6;
    --charcoal:     #1a1714;
    --charcoal-2:   #24201b;
    --charcoal-3:   #2e2922;
    --ink:          #1a1714;
    --muted:        #837a6c;
    --muted-light:  rgba(244,239,232,0.55);
    --line:         rgba(26,23,20,0.09);
    --line-light:   rgba(244,239,232,0.16);
    --accent:       #b08d57;   /* auriu antic */
    --accent-deep:  #95743f;
    --accent-soft:  rgba(176,141,87,0.14);

    --ease:    cubic-bezier(0.22, 1, 0.36, 1);
    --ease-io: cubic-bezier(0.77, 0, 0.175, 1);

    --pad: clamp(24px, 5.5vw, 80px);
    --maxw: 1320px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--cream); }

.serif { font-family: 'Playfair Display', Georgia, serif; }

/* Container helper */
.wrap { max-width: var(--maxw); margin-inline: auto; }

/* ---------- CUSTOM CURSOR (doar pe pointer fin) ---------- */
.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.cursor-dot  { width: 6px; height: 6px; background: var(--accent); transition: opacity .3s; }
.cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid rgba(176,141,87,.55);
    transition: opacity .3s, width .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }
.cursor-ring.is-hovering {
    width: 64px; height: 64px;
    background: var(--accent-soft);
    border-color: rgba(176,141,87,.35);
}
@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* ---------- PAGE LOADER ---------- */
#loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s var(--ease), visibility .7s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader-mark {
    font-family: 'Inter', sans-serif;
    font-size: .8rem; letter-spacing: 9px; font-weight: 500;
    color: var(--cream); text-transform: uppercase; padding-left: 9px;
}
.loader-bar { width: 160px; height: 1px; background: rgba(244,239,232,.14); overflow: hidden; }
.loader-bar i {
    display: block; height: 100%; width: 0;
    background: var(--accent); transition: width .3s ease;
}

/* ---------- SCROLL PROGRESS ---------- */
.progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0;
    background: var(--accent); z-index: 1200; transition: width .1s linear;
}

/* ---------- NAVBAR ---------- */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    height: 76px; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding-inline: var(--pad);
    transition: background .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
    height: 62px;
    background: rgba(244,239,232,.82);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}
.nav::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to bottom, rgba(20,18,15,.34), rgba(20,18,15,0));
    opacity: 0; transition: opacity .4s var(--ease);
}
.nav.on-dark:not(.scrolled)::before { opacity: 1; }
.nav.on-dark:not(.scrolled) .logo,
.nav.on-dark:not(.scrolled) .nav-cta { color: var(--cream); text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.nav.on-dark:not(.scrolled) .logo b { color: var(--accent); }
.nav.on-dark:not(.scrolled) .burger span { background: var(--cream); }

.logo {
    font-size: 1.05rem; font-weight: 500; letter-spacing: 5px;
    text-transform: uppercase; color: var(--charcoal); z-index: 1002;
}
.logo b { color: var(--accent); font-weight: 500; }

.nav-right { display: flex; align-items: center; gap: 26px; z-index: 1002; }
.nav-cta {
    font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--charcoal); padding-bottom: 3px; position: relative;
}
.nav-cta::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform .4s var(--ease);
}
.nav-cta:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 640px) { .nav-cta { display: none; } }

.burger {
    width: 30px; height: 16px; position: relative;
    background: none; border: 0; cursor: pointer; display: flex;
    flex-direction: column; justify-content: space-between;
}
.burger span {
    display: block; width: 100%; height: 1.6px; background: var(--charcoal);
    transition: transform .45s var(--ease-io), background .4s var(--ease), opacity .3s;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open .burger span { background: var(--charcoal) !important; }

/* ---------- FULLSCREEN MENU ---------- */
.menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--cream);
    opacity: 0; visibility: hidden;
    transition: opacity .55s var(--ease), visibility .55s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
.menu-inner {
    height: 100%; display: flex; flex-direction: column; justify-content: center;
    padding: 120px var(--pad) 56px; max-width: var(--maxw); margin-inline: auto;
}
.menu ul { list-style: none; margin-bottom: auto; }
.menu li { overflow: hidden; }
.menu li a {
    display: flex; align-items: baseline; gap: 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 400; font-style: normal;
    color: var(--charcoal); padding: 6px 0; line-height: 1.15;
    transform: translateY(110%);
    transition: transform .7s var(--ease-io), color .3s;
}
.menu li a::before {
    content: attr(data-n);
    font-family: 'Inter', sans-serif; font-style: normal;
    font-size: .6rem; letter-spacing: 2px; color: var(--accent);
    transform: translateY(-.4em);
}
.menu li a:hover { color: var(--accent); }
body.menu-open .menu li a { transform: translateY(0); }
body.menu-open .menu li:nth-child(1) a { transition-delay: .08s; }
body.menu-open .menu li:nth-child(2) a { transition-delay: .13s; }
body.menu-open .menu li:nth-child(3) a { transition-delay: .18s; }
body.menu-open .menu li:nth-child(4) a { transition-delay: .23s; }
body.menu-open .menu li:nth-child(5) a { transition-delay: .28s; }
body.menu-open .menu li:nth-child(6) a { transition-delay: .33s; }
body.menu-open .menu li:nth-child(7) a { transition-delay: .38s; }
body.menu-open .menu li:nth-child(8) a { transition-delay: .43s; }

.menu-foot {
    display: flex; flex-wrap: wrap; gap: 30px 60px; justify-content: space-between;
    align-items: flex-end; padding-top: 32px; border-top: 1px solid var(--line);
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s ease .45s, transform .5s ease .45s;
}
body.menu-open .menu-foot { opacity: 1; transform: translateY(0); }
.menu-foot h5 {
    font-size: .6rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px; font-weight: 500;
}
.menu-foot a { display: block; font-size: .9rem; margin-bottom: 4px; transition: color .3s; }
.menu-foot a:hover { color: var(--accent); }
.menu-social { display: flex; gap: 18px; }
.menu-social a { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 var(--pad) clamp(38px, 6vh, 70px);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transform: scale(1.12);
    animation: kenburns 14s ease-out forwards;
    will-change: transform;
}
@keyframes kenburns { to { transform: scale(1.0); } }
.hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to bottom, rgba(20,18,15,.28) 0%, rgba(20,18,15,0) 32%),
        linear-gradient(to top, rgba(20,18,15,.84) 0%, rgba(20,18,15,.18) 48%, rgba(20,18,15,0) 78%);
}
.hero-top {
    position: absolute; top: clamp(96px, 14vh, 140px); left: var(--pad); right: var(--pad);
    z-index: 2; display: flex; justify-content: space-between; align-items: flex-start;
}
.hero-index {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 300; font-style: normal;
    color: rgba(244,239,232,.5); line-height: 1;
}
.hero-kicker-v {
    writing-mode: vertical-rl; font-size: .62rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--muted-light);
}
.hero-content { position: relative; z-index: 2; max-width: var(--maxw); margin-inline: auto; width: 100%; }
.hero-eyebrow {
    font-size: .66rem; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(244,239,232,.62); margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--accent); }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.4rem, 13vw, 9rem); font-weight: 300;
    color: var(--cream); line-height: .92; letter-spacing: -.01em;
}
.hero-title .it { font-style: normal; color: #f0e4d2; }
.hero-title .char { display: inline-block; transform: translateY(115%); }
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-sub {
    margin-top: 22px; max-width: 30ch;
    font-size: clamp(.95rem, 2vw, 1.05rem); line-height: 1.7;
    color: rgba(244,239,232,.78); font-weight: 300;
}
.hero-meta {
    margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
}
.chip {
    font-size: .64rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(244,239,232,.8);
    border: 1px solid rgba(244,239,232,.28); border-radius: 100px;
    padding: 7px 16px; transition: background .35s var(--ease), border-color .35s;
}
.chip:hover { background: rgba(244,239,232,.1); border-color: rgba(244,239,232,.5); }
.hero-scroll {
    margin-left: auto; display: flex; align-items: center; gap: 10px;
    font-size: .58rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(244,239,232,.5);
}
.hero-scroll i {
    width: 1px; height: 46px; background: rgba(244,239,232,.25);
    position: relative; overflow: hidden; display: block;
}
.hero-scroll i::after {
    content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
    background: var(--accent); animation: scrolldown 1.8s var(--ease) infinite;
}
@keyframes scrolldown { 0% { top: -100%; } 60%,100% { top: 100%; } }
@media (max-width: 640px) { .hero-scroll { display: none; } .hero-meta { margin-top: 22px; } }

/* ============================================================
   SECTION FRAME
   ============================================================ */
section { position: relative; }
.section { padding: clamp(84px, 14vh, 168px) var(--pad); }
.eyebrow {
    font-size: .64rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent-deep); display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 22px; font-weight: 500;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

/* ---------- INTRO / PHILOSOPHY ---------- */
.intro { max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px);
    align-items: start; }
.intro-h {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.12; color: var(--charcoal);
}
.intro-h em { font-style: normal; color: var(--accent-deep); }
.intro-body p { color: var(--muted); font-weight: 300; font-size: 1.02rem; line-height: 1.95; }
.intro-body p + p { margin-top: 18px; }
.intro-sign {
    margin-top: 30px; display: flex; align-items: center; gap: 14px;
    font-size: .72rem; letter-spacing: 1px; color: var(--charcoal);
}
.intro-sign span { font-family: 'Playfair Display', serif; font-style: normal; font-size: 1.4rem; color: var(--accent-deep); }
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- STATS STRIP ---------- */
.stats {
    border-block: 1px solid var(--line);
    background: var(--cream-2);
}
.stats-grid {
    max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: clamp(38px, 6vh, 62px) var(--pad);
}
.stat { text-align: center; padding: 8px 14px; position: relative; }
.stat + .stat::before {
    content: ''; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--line);
}
.stat-num {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--charcoal); line-height: 1;
}
.stat-num b { color: var(--accent); font-weight: 400; }
.stat-label {
    margin-top: 10px; font-size: .64rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted);
}
@media (max-width: 760px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 0; }
    .stat:nth-child(3)::before, .stat:nth-child(odd)::before { display: none; }
    .stat:nth-child(even)::before { display: block; }
}

/* ============================================================
   GALERIE — EDITORIAL MASONRY (scalabilă)
   ============================================================ */
.gallery-head {
    max-width: var(--maxw); margin: 0 auto clamp(28px, 4vh, 48px);
    display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.gallery-head h2 {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--charcoal); line-height: 1.1;
}
.gallery-head p { color: var(--muted); font-weight: 300; max-width: 34ch; font-size: .95rem; }

.gallery {
    max-width: var(--maxw); margin-inline: auto;
    columns: 2; column-gap: clamp(20px, 2.6vw, 40px);
}
/* peste 1500px lăsăm 3 coloane când sunt multe poze */
@media (min-width: 1500px) { .gallery.dense { columns: 3; } }
.shot {
    position: relative; display: block; width: 100%;
    margin-bottom: clamp(20px, 2.4vw, 34px);
    break-inside: avoid; -webkit-column-break-inside: avoid;
    overflow: hidden; cursor: pointer; background: var(--cream-3);
    border-radius: 2px;
}
/* prima imagine = featured pe toată lățimea */
.shot.featured { column-span: all; -webkit-column-span: all; aspect-ratio: 16/7; }
.shot.featured img { height: 100%; object-fit: cover; }
.shot img {
    width: 100%; height: auto; display: block;
    transition: transform 1s var(--ease), filter .6s ease;
}
.shot:hover img { transform: scale(1.03); }
/* Galeria: reveal doar prin fade (fără translateY) ca să nu rebalanseze masonry-ul.
   width/height pe <img> rezervă spațiul => zero salt la lazy-load. */
.shot.reveal { transform: none; will-change: auto; transition: opacity .7s var(--ease); }
.shot.reveal.in { transform: none; }
.shot::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,18,15,.26), rgba(20,18,15,0) 55%);
    opacity: 0; transition: opacity .5s ease;
}
.shot:hover::after { opacity: 1; }
.shot-zoom {
    position: absolute; right: 16px; bottom: 16px; z-index: 2;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(244,239,232,.92);
    display: grid; place-items: center;
    opacity: 0; transform: scale(.7) translateY(6px);
    transition: opacity .4s var(--ease), transform .45s var(--ease);
}
.shot:hover .shot-zoom { opacity: 1; transform: scale(1) translateY(0); }
.shot-zoom svg { width: 19px; height: 19px; stroke: var(--charcoal); }
.shot-cap {
    position: absolute; left: 16px; bottom: 18px; z-index: 2;
    font-family: 'Playfair Display', serif; font-style: normal;
    font-size: 1.05rem; color: var(--cream);
    opacity: 0; transform: translateY(8px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.shot:hover .shot-cap { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) { .shot.featured { aspect-ratio: 16/8; } }
@media (max-width: 600px) {
    .gallery, .gallery.dense { columns: 1; }
    .shot.featured { aspect-ratio: 4/3; }
}

/* ============================================================
   PROCES DE LUCRU
   ============================================================ */
.process { background: var(--charcoal); color: var(--cream); }
.process .eyebrow { color: var(--accent); }
.process-head { max-width: var(--maxw); margin: 0 auto clamp(40px, 6vh, 70px); }
.process-head h2 {
    font-family: 'Playfair Display', serif; font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; color: var(--cream); max-width: 18ch;
}
.process-head h2 em { font-style: normal; color: var(--accent); }
.steps {
    max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.step { padding: 30px 26px 30px 0; border-top: 1px solid var(--line-light); position: relative; }
.step-n {
    font-family: 'Playfair Display', serif; font-style: normal;
    font-size: 1rem; color: var(--accent); margin-bottom: 26px;
    display: flex; align-items: center; gap: 10px;
}
.step-n::after { content: ''; flex: 1; height: 1px; background: var(--line-light); max-width: 60px; }
.step h3 {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: 1.5rem; margin-bottom: 12px; color: var(--cream);
}
.step p { font-size: .88rem; line-height: 1.7; color: rgba(244,239,232,.6); font-weight: 300; }
.step::before {
    content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 1px;
    background: var(--accent); transition: width .6s var(--ease);
}
.step.in::before { width: 70%; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .step { padding-right: 22px; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   MATERIALE & FINISAJE
   ============================================================ */
.materials-wrap {
    max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center;
}
.materials-intro h2 {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.12; color: var(--charcoal); margin-bottom: 18px;
}
.materials-intro h2 em { font-style: normal; color: var(--accent-deep); }
.materials-intro p { color: var(--muted); font-weight: 300; line-height: 1.9; max-width: 42ch; }
.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.swatch { text-align: left; }
.swatch-chip {
    width: 100%; aspect-ratio: 4/3; border-radius: 3px; border: 1px solid var(--line);
    position: relative; overflow: hidden; box-shadow: inset 0 0 30px rgba(0,0,0,.08);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.swatch:hover .swatch-chip { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(26,23,20,.16); }
.swatch-name { margin-top: 10px; font-size: .74rem; letter-spacing: .5px; color: var(--charcoal); }
.swatch-sub { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
/* texturi prin gradient (fără imagini) */
.fin-stejar  { background: linear-gradient(135deg,#cdab7e,#b8895a 60%,#a3744a); }
.fin-nuc     { background: linear-gradient(135deg,#6e4a32,#4f3220 60%,#3a2417); }
.fin-alb     { background: linear-gradient(135deg,#f7f3ec,#e9e1d4 60%,#ded4c3); }
.fin-antracit{ background: linear-gradient(135deg,#3b3b3d,#2a2a2c 60%,#1d1d1f); }
.fin-furnir  { background: linear-gradient(135deg,#c79a6b,#9c6f44 55%,#caa173); }
.fin-aur     { background: linear-gradient(135deg,#e7cd9b,#b08d57 55%,#8c6a39); }
@media (max-width: 860px) {
    .materials-wrap { grid-template-columns: 1fr; gap: 34px; }
}

/* ============================================================
   TESTIMONIALE
   ============================================================ */
.testi { background: var(--cream-2); border-block: 1px solid var(--line); }
.testi-head { max-width: var(--maxw); margin: 0 auto clamp(34px,5vh,54px); text-align: center; }
.testi-head .eyebrow { justify-content: center; }
.testi-head h2 {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(2rem, 4.6vw, 3rem); color: var(--charcoal);
}
.testi-grid {
    max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px);
}
.quote {
    background: var(--cream); border: 1px solid var(--line); border-radius: 3px;
    padding: 34px 30px; display: flex; flex-direction: column;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(26,23,20,.1); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 3.6rem; line-height: .6; color: var(--accent); height: 30px; }
.quote-stars { color: var(--accent); letter-spacing: 3px; font-size: .8rem; margin: 8px 0 14px; }
.quote p {
    font-family: 'Playfair Display', serif; font-size: 1.22rem; line-height: 1.5;
    color: var(--charcoal-2); font-style: normal; margin-bottom: auto;
}
.quote-by { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote-by b { font-size: .82rem; font-weight: 500; color: var(--charcoal); letter-spacing: .3px; }
.quote-by span { display: block; font-size: .64rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 540px; } }

/* ============================================================
   DETALII + CTA OFERTĂ
   ============================================================ */
.detail { max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.detail-list { display: flex; flex-direction: column; }
.drow {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 18px 0; border-bottom: 1px solid var(--line);
}
.drow:first-child { border-top: 1px solid var(--line); }
.dkey { font-size: .64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.dval { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--charcoal); transition: color .3s; }
.drow:hover .dval { color: var(--accent-deep); }

.cta-box { display: flex; flex-direction: column; gap: 26px; }
.cta-h {
    font-family: 'Playfair Display', serif; font-weight: 300; font-style: normal;
    font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.18; color: var(--charcoal);
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
    display: inline-flex; align-items: center; gap: 13px;
    padding: 17px 32px; font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase;
    border-radius: 100px; position: relative; overflow: hidden; cursor: pointer;
    transition: gap .3s var(--ease), background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
    transition: left .6s var(--ease);
}
.btn-dark:hover::before { left: 150%; }
.btn-dark:hover { background: var(--accent-deep); gap: 18px; }
.btn-ghost { border: 1px solid var(--line); color: var(--charcoal); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); gap: 18px; }
@media (max-width: 860px) { .detail { grid-template-columns: 1fr; gap: 44px; } }

/* ============================================================
   NEXT ROOMS
   ============================================================ */
.next { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.next-link {
    position: relative; min-height: 46vh; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(28px,4vw,44px);
}
.next-link:first-child { border-right: 1px solid var(--charcoal); }
.next-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.06); filter: brightness(.46);
    transition: transform 1s var(--ease), filter .6s ease;
}
.next-link:hover .next-bg { transform: scale(1.0); filter: brightness(.58); }
.next-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,15,.7), transparent 70%); }
.next-eyebrow {
    position: relative; z-index: 1; font-size: .6rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 8px;
}
.next-title {
    position: relative; z-index: 1;
    font-family: 'Playfair Display', serif; font-style: normal; font-weight: 300;
    font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--cream);
    display: inline-flex; align-items: center; gap: 14px;
    transition: gap .4s var(--ease);
}
.next-title svg { width: 24px; height: 24px; stroke: var(--accent); opacity: 0; transform: translateX(-8px); transition: opacity .4s, transform .4s var(--ease); }
.next-link:hover .next-title { gap: 22px; }
.next-link:hover .next-title svg { opacity: 1; transform: translateX(0); }
@media (max-width: 700px) {
    .next { grid-template-columns: 1fr; }
    .next-link:first-child { border-right: 0; border-bottom: 1px solid var(--charcoal); }
    .next-link { min-height: 38vh; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); color: var(--cream); padding: clamp(54px,8vh,90px) var(--pad) 40px; }
.footer-top {
    max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
    padding-bottom: 48px; border-bottom: 1px solid var(--line-light);
}
.footer-brand .logo { color: var(--cream); font-size: 1.3rem; }
.footer-brand p { margin-top: 18px; max-width: 32ch; color: rgba(244,239,232,.55); font-weight: 300; font-size: .92rem; line-height: 1.8; }
.footer-col h5 { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(244,239,232,.7); font-size: .9rem; margin-bottom: 10px; font-weight: 300; transition: color .3s; }
.footer-col a:hover { color: var(--cream); }
.footer-bot {
    max-width: var(--maxw); margin: 28px auto 0;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: .64rem; letter-spacing: 1px; color: rgba(244,239,232,.4);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
    position: fixed; right: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index: 1100;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: grid; place-items: center;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
    transform: translateY(120px); opacity: 0;
    transition: transform .6s var(--ease), opacity .5s, box-shadow .4s;
}
.wa-float.show { transform: translateY(0); opacity: 1; }
.wa-float:hover { box-shadow: 0 14px 40px rgba(37,211,102,.55); transform: translateY(0) scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::after {
    content: 'Scrie-ne pe WhatsApp'; position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    background: var(--charcoal); color: var(--cream); white-space: nowrap;
    font-size: .68rem; letter-spacing: .5px; padding: 9px 14px; border-radius: 8px;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.wa-float:hover::after { opacity: 1; }
@media (max-width: 640px) { .wa-float::after { display: none; } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
    position: fixed; inset: 0; z-index: 5000;
    background: rgba(16,14,12,.96);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.lb.open { opacity: 1; visibility: visible; }
.lb-stage { position: relative; max-width: 92vw; max-height: 84vh; }
.lb-img {
    max-width: 92vw; max-height: 84vh; object-fit: contain; border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    transform: scale(.96); opacity: 0; transition: transform .45s var(--ease), opacity .4s;
}
.lb.open .lb-img { transform: scale(1); opacity: 1; }
.lb-close, .lb-nav {
    position: absolute; z-index: 3; background: rgba(244,239,232,.1); border: 1px solid rgba(244,239,232,.2);
    color: var(--cream); cursor: pointer; display: grid; place-items: center;
    border-radius: 50%; transition: background .3s, border-color .3s;
}
.lb-close { top: -54px; right: 0; width: 44px; height: 44px; }
.lb-close:hover, .lb-nav:hover { background: rgba(244,239,232,.2); border-color: var(--accent); }
.lb-close svg, .lb-nav svg { width: 20px; height: 20px; stroke: var(--cream); }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lb-prev { left: -72px; }
.lb-next { right: -72px; }
.lb-bar {
    position: absolute; left: 0; right: 0; bottom: -54px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lb-count { font-size: .72rem; letter-spacing: 2px; color: rgba(244,239,232,.6); }
.lb-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25d366; color: #fff; border-radius: 100px;
    padding: 11px 20px; font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s;
}
.lb-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,.4); }
.lb-wa svg { width: 16px; height: 16px; fill: #fff; }
body.lb-open { overflow: hidden; }
@media (max-width: 760px) {
    .lb-prev { left: 8px; } .lb-next { right: 8px; }
    .lb-nav { width: 44px; height: 44px; }
    .lb-close { top: 12px; right: 12px; }
    .lb-bar { bottom: 14px; left: 14px; right: 14px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ============================================================
   HOMEPAGE — HERO SLIDESHOW
   ============================================================ */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transform: scale(1.08);
    transition: opacity 1.6s ease;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; animation: kenburns 9s ease-out forwards; }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn-light { background: var(--cream); color: var(--charcoal); }
.btn-light:hover { background: var(--accent); color: var(--cream); gap: 18px; }
.btn-outline { border: 1px solid rgba(244,239,232,.5); color: var(--cream); }
.btn-outline:hover { background: rgba(244,239,232,.1); border-color: var(--cream); gap: 18px; }

.hero-home .hero-title { font-size: clamp(2.8rem, 8.5vw, 6.6rem); line-height: .98; }
.hero-home .hero-title .it { display: inline; }

/* ============================================================
   HOMEPAGE — ROOMS BENTO GRID
   ============================================================ */
.rooms {
    max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(170px, 21vw, 268px);
    gap: clamp(10px, 1.4vw, 18px);
}
.room-card {
    position: relative; overflow: hidden; border-radius: 3px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: clamp(20px, 2vw, 34px); cursor: pointer;
}
.rc-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.05); filter: brightness(.6);
    transition: transform 1.1s var(--ease), filter .6s ease;
}
.room-card:hover .rc-bg { transform: scale(1.0); filter: brightness(.72); }
.room-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,18,15,.72), rgba(20,18,15,0) 62%);
}
.rc-n {
    position: relative; z-index: 1; font-size: .6rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.rc-title {
    position: relative; z-index: 1;
    font-family: 'Playfair Display', serif; font-style: normal; font-weight: 300;
    color: var(--cream); font-size: clamp(1.6rem, 3vw, 2.7rem); line-height: 1;
    display: inline-flex; align-items: center; gap: 12px; transition: gap .4s var(--ease);
}
.rc-title svg { width: 22px; height: 22px; stroke: var(--accent); opacity: 0; transform: translateX(-8px); transition: opacity .4s, transform .4s var(--ease); }
.room-card:hover .rc-title { gap: 20px; }
.room-card:hover .rc-title svg { opacity: 1; transform: none; }

.rc-bucatarie { grid-column: span 2; grid-row: span 2; }
.rc-living    { grid-column: span 2; }
.rc-dormitor  { grid-column: span 1; }
.rc-dressing  { grid-column: span 1; }
.rc-baie      { grid-column: span 2; }
.rc-hol       { grid-column: span 2; }

@media (max-width: 900px) {
    .rooms { grid-template-columns: repeat(2, 1fr); }
    .rc-bucatarie { grid-column: span 2; grid-row: span 1; }
    .rc-living, .rc-baie, .rc-hol { grid-column: span 2; }
    .rc-dormitor, .rc-dressing { grid-column: span 1; }
}
@media (max-width: 560px) {
    .rooms { grid-template-columns: 1fr; grid-auto-rows: 46vw; }
    .room-card, .rc-bucatarie, .rc-living, .rc-baie, .rc-hol, .rc-dormitor, .rc-dressing { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   HOMEPAGE — CTA BAND
   ============================================================ */
.cta-band { background: var(--charcoal); color: var(--cream); text-align: center; }
.cta-band-inner { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.cta-band .eyebrow { justify-content: center; color: var(--accent); }
.cta-band h2 {
    font-family: 'Playfair Display', serif; font-weight: 300;
    font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.1; color: var(--cream);
}
.cta-band h2 em { font-style: normal; color: var(--accent); }
.cta-band p { color: rgba(244,239,232,.6); font-weight: 300; max-width: 48ch; }

/* section header centrat (folosit pe homepage) */
.section-head { max-width: var(--maxw); margin: 0 auto clamp(34px, 5vh, 56px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(2rem, 4.8vw, 3.2rem); color: var(--charcoal); line-height: 1.1;
}
.section-head h2 em { font-style: normal; color: var(--accent-deep); }
.section-head p { color: var(--muted); font-weight: 300; max-width: 52ch; margin: 14px auto 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    max-width: var(--maxw); margin-inline: auto;
    display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 86px); align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif; font-weight: 400;
    font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.12; color: var(--charcoal); margin-bottom: 26px;
}
.contact-info h2 em { font-style: normal; color: var(--accent-deep); }
.cinfo-row {
    display: flex; gap: 18px; align-items: center;
    padding: 20px 0; border-bottom: 1px solid var(--line);
}
.cinfo-row:first-of-type { border-top: 1px solid var(--line); }
.cinfo-ic {
    flex: 0 0 46px; width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--line); display: grid; place-items: center;
    transition: background .3s var(--ease), border-color .3s;
}
.cinfo-row:hover .cinfo-ic { background: var(--charcoal); border-color: var(--charcoal); }
.cinfo-ic svg { width: 18px; height: 18px; stroke: var(--charcoal); transition: stroke .3s; }
.cinfo-row:hover .cinfo-ic svg { stroke: var(--cream); }
.cinfo-row > span:last-child { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cinfo-k { display: block; font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.cinfo-v { display: block; font-size: 1.05rem; color: var(--charcoal); transition: color .3s; word-break: break-word; }
.cinfo-row a.cinfo-v:hover { color: var(--accent-deep); }
.contact-social { display: flex; gap: 18px; margin-top: 28px; }
.contact-social a {
    font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
    padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color .3s, border-color .3s;
}
.contact-social a:hover { color: var(--charcoal); border-color: var(--accent); }

.form-card {
    background: var(--cream-2); border: 1px solid var(--line); border-radius: 4px;
    padding: clamp(26px, 3vw, 44px);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 15px 16px; border: 1px solid var(--line); background: var(--cream);
    font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--charcoal);
    border-radius: 3px; outline: none; transition: border-color .3s, background .3s, box-shadow .3s;
}
.field input::placeholder, .field textarea::placeholder { color: #b0a899; }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select { cursor: pointer; -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23837a6c' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .72rem; color: var(--muted); margin-top: 12px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important; scroll-behavior: auto !important;
    }
    .hero-bg { animation: none; transform: scale(1); }
    .reveal { opacity: 1; transform: none; }
    .hero-title .char { transform: none; }
    .cursor-dot, .cursor-ring { display: none !important; }
    .hero-scroll i::after { animation: none; }
}

/* FONT BOLDER OVERRIDES */
.hero-title { font-weight: 600; }
.hero-home .hero-title { font-weight: 700; }
.hero-title .it { font-weight: 600; }
.intro-h { font-weight: 600; }
.gallery-head h2 { font-weight: 600; }
.process-head h2 { font-weight: 600; }
.materials-intro h2 { font-weight: 600; }
.section-head h2 { font-weight: 600; }
.testi-head h2 { font-weight: 600; }
.contact-info h2 { font-weight: 600; }
.cta-h { font-weight: 500; }
.cta-band h2 { font-weight: 700; }
.intro-h em, .materials-intro h2 em, .section-head h2 em, .process-head h2 em, .cta-band h2 em { font-weight: 700; }
.stat-num { font-weight: 600; }
.stat-num b { font-weight: 700; }
.dval { font-weight: 500; }
.next-title { font-weight: 600; }
.rc-title { font-weight: 600; }
.menu li a { font-weight: 500; }
.quote p { font-weight: 500; }
.hero-index { font-weight: 500; }
.intro-sign span { font-weight: 600; }
.detail-value, .swatch-name { font-weight: 500; }
