*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black:  #0a0908;
  --dark:   #111009;
  --white:  #f0ebe3;
  --gold:   #c9a87a;
  --grey:   #6a6259;
}
html { scroll-behavior: auto; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

  /* LOADER*/

#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#loader-text {
  font-family: 'Cormorant Upright', serif;
  font-size: clamp(52px, 12vw, 160px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -.02em;
  text-transform: uppercase;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}

  /* NAVBAR */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 52px;
  transition: background .5s, padding .4s;
}
nav.sc {
  background: rgba(10,9,8,.92);
  backdrop-filter: blur(24px);
  padding: 16px 52px;
}
.nav-logo { position: absolute; left: 50%; transform: translateX(-50%); text-align: center; }
.nav-logo-mark { font-family: 'Cormorant Upright', serif; font-size: 18px; font-weight: 300; text-transform: uppercase; letter-spacing: .08em; line-height: 1; }
.nav-logo-sub { font-size: 7px; letter-spacing: .35em; text-transform: uppercase; color: rgba(240,235,227,.45); margin-top: 2px; }
.nav-a { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--white); transition: color .3s; }
.nav-a:hover { color: var(--gold); }

  /* HERO */

.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-panels { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1.6fr 1fr; gap: 3px; }
.hp { overflow: hidden; position: relative; }
.hp img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); animation: hZoom 12s cubic-bezier(.16,1,.3,1) forwards; will-change: transform; }
.hp:nth-child(1) img { animation-delay: .2s; }
.hp:nth-child(2) img { animation-delay: .45s; }
.hp:nth-child(3) img { animation-delay: .7s; }
@keyframes hZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,9,8,.1) 0%, rgba(10,9,8,.4) 45%, rgba(10,9,8,.78) 100%); z-index: 1; }
.hero-txt { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-h1 { font-family: 'Cormorant Upright', serif; font-size: clamp(52px, 11vw, 158px); font-weight: 300; text-transform: uppercase; line-height: .88; letter-spacing: -.01em; opacity: 0; animation: fadeUp 1.2s cubic-bezier(.16,1,.3,1) forwards 3.4s; }
.hero-h1 .stroke { -webkit-text-stroke: 1px var(--white); color: transparent; }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(15px, 1.9vw, 22px); color: rgba(240,235,227,.52); margin-top: 22px; opacity: 0; animation: fadeUp .9s ease forwards 3.7s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

  /* SPLIT SCROLL */

.split-scroll {
  height: 180vh; 
  overflow: hidden;
  background: var(--black);
  position: relative;
}
.ss-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; height: 100%; }
.ss-col { display: flex; flex-direction: column; gap: 3px; will-change: transform; }
.ss-img-wrap { flex: 0 0 auto; overflow: hidden; }
.ss-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-left .ss-img-wrap, .ss-mid .ss-img-wrap, .ss-right .ss-img-wrap { height: 62vh; }
.ss-filler { display: none; }

  /* SERVICES */

.services { background: #c8bdb0; color: var(--black); padding: 64px 48px 72px; }
.sv-head { text-align: center; margin-bottom: 40px; }
.sv-title-lg { font-family: 'Melodrama', serif; font-size: clamp(28px, 3.6vw, 48px); font-weight: 400; color: var(--black); margin: 0 0 10px; letter-spacing: .01em; }
.sv-ornament { font-size: 9px; color: rgba(10,9,8,.3); letter-spacing: .5em; }
.sv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 1100px; margin: 0 auto; }
.sv-card { background: rgba(234,226,216,.72); border-radius: 3px; padding: 20px 20px 22px; box-shadow: 0 1px 8px rgba(10,9,8,.06); transition: box-shadow .4s ease, transform .4s ease, background .4s ease; cursor: pointer; position: relative; overflow: hidden; }
.sv-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,122,.2) 0%, transparent 55%); opacity: 0; transition: opacity .4s ease; pointer-events: none; }
.sv-card:hover { background: rgba(240,232,222,.95); box-shadow: 0 8px 32px rgba(10,9,8,.14); transform: translateY(-5px); }
.sv-card:hover::after { opacity: 1; }
.sv-num { display: none; }
.sv-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; gap: 12px; }
.sv-name { font-family: 'Melodrama', serif; font-size: clamp(26px, 2.8vw, 38px); font-weight: 400; color: var(--black); letter-spacing: .01em; transition: color .4s ease; flex: 1; }
.sv-card:hover .sv-name { color: #8a6a40; }
.sv-thumb { width: 120px; height: 80px; overflow: hidden; border-radius: 2px; flex-shrink: 0; }
.sv-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.sv-card:hover .sv-thumb img { transform: scale(1.07); }
.sv-desc { font-size: 13px; line-height: 1.75; color: rgba(10,9,8,.52); font-weight: 300; margin: 0; }

.sec-title { font-family: 'Cormorant Upright', serif; font-size: clamp(42px, 7vw, 96px); font-weight: 300; text-transform: uppercase; line-height: .92; letter-spacing: -.01em; white-space: nowrap; }

  /* MOSAIC GALLERY */

.mosaic-sec { background: var(--black); padding: 0 52px 0; }
.mosaic-head { padding: 80px 0 52px; text-align: center; }
.mosaic-grid { display: grid; grid-template-columns: 1.1fr .7fr 1fr .8fr; grid-template-rows: 420px 360px; gap: 4px; }
/* Pozitii desktop - definite in CSS ca sa poata fi override-uite pe mobil */
.mosaic-grid .m-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.mosaic-grid .m-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.mosaic-grid .m-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.mosaic-grid .m-item:nth-child(4) { grid-column: 4; grid-row: 1 / 3; }
.mosaic-grid .m-item:nth-child(5) { grid-column: 1; grid-row: 2; }
.mosaic-grid .m-item:nth-child(6) { grid-column: 2; grid-row: 2; }
.mosaic-grid .m-item:nth-child(7) { grid-column: 3; grid-row: 2; }
.m-item { position: relative; overflow: hidden; cursor: pointer; }
.m-item img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transition: transform .9s cubic-bezier(.16,1,.3,1); }
.m-item:hover img { transform: scale(1.06) !important; }
.m-item.m-tall { grid-row: span 2; }
.m-item.m-tall-3 { grid-row: span 3; }
.m-item.m-wide { grid-column: span 3; }

  /* ABOUT */

.about { background: #c8bdb0; color: var(--black); display: flex; align-items: center; justify-content: center; gap: 80px; padding: 36px 7vw; }
.ab-txt { flex: 1; max-width: 680px; display: flex; flex-direction: column; justify-content: space-between; align-self: stretch; padding-left: calc(2vw - 20px); }
.ab-name { font-family: 'Cormorant Upright', serif; font-size: clamp(28px, 3.4vw, 56px); font-weight: 300; text-transform: uppercase; line-height: 1; letter-spacing: .05em; color: var(--black); margin: 0 0 36px; white-space: nowrap; text-align: center; }
.ab-quote-row { display: flex; gap: 20px; align-items: center; margin-bottom: 0; padding: 24px 0; }
.ab-vline { width: 2px; align-self: stretch; min-height: 60px; background: var(--gold); flex-shrink: 0; }
.ab-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(18px, 2.2vw, 28px); line-height: 1.55; color: rgba(10,9,8,.72); font-weight: 400; margin: 0; }
.ab-body { font-family: 'Melodrama', serif; font-size: 22px; line-height: 1.9; color: rgba(10,9,8,.58); margin-bottom: 14px; font-weight: 400; }
.ab-stats { display: flex; gap: 36px; margin-top: 0; padding-top: 24px; border-top: 1px solid rgba(10,9,8,.14); justify-content: center; }
.stat-n { font-family: 'Cormorant Upright', serif; font-size: 38px; font-weight: 300; color: var(--black); display: block; }
.stat-l { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(10,9,8,.42); margin-top: 4px; }
.ab-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; }
.ab-deco-num { position: absolute; top: -28px; left: -20px; font-family: 'Cormorant Upright', serif; font-size: 72px; font-weight: 300; color: rgba(10,9,8,.08); line-height: 1; pointer-events: none; user-select: none; }
.ab-img { position: relative; overflow: hidden; width: 338px; height: 508px; }
.ab-img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; display: block; }

  /* TESTIMONIALS */

.testi { background: var(--black); padding: 120px 52px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }
.testi-left { display: flex; flex-direction: column; align-items: center; max-width: 780px; width: 100%; }
.t-txt { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px, 2.4vw, 32px); line-height: 1.65; color: rgba(240,235,227,.82); margin-bottom: 36px; position: relative; }
.t-name { font-family: 'Cormorant Upright', serif; font-size: 13px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.t-nav { display: flex; gap: 12px; margin-top: 48px; justify-content: center; }
.t-btn { width: 44px; height: 44px; border: 1px solid rgba(240,235,227,.2); background: none; color: var(--white); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.t-btn:hover { background: var(--white); color: var(--black); }

  /* CTA */

.cta { padding: 140px 52px; text-align: center; position: relative; overflow: hidden; background: var(--dark); }
.cta-bg { position: absolute; inset: -20%; background: url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?w=1600&q=80') center/cover; filter: grayscale(50%) brightness(.12); will-change: transform; }
.cta-in { position: relative; z-index: 1; }
.cta-h { font-family: 'Cormorant Upright', serif; font-size: clamp(42px, 9.5vw, 130px); font-weight: 300; text-transform: uppercase; line-height: .9; letter-spacing: -.01em; margin-bottom: 40px; }
.cta-h .stroke { -webkit-text-stroke: 1px var(--white); color: transparent; }
.cta-btn { display: inline-flex; align-items: center; gap: 16px; font-family: 'Cormorant Upright', serif; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--white); background: transparent; border: 1px solid rgba(240,235,227,.4); padding: 18px 50px; position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease, color .4s ease; }
.cta-btn::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.16,1,.3,1); z-index: 0; }
.cta-btn:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.45); border-color: var(--gold); color: var(--white); }
.cta-btn:hover::before { transform: scaleX(1); }
.cta-btn span { position: relative; z-index: 1; }

  /* FOOTER */

footer { background: var(--black); }
.foot-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 80px; padding: 52px 80px 34px; border-top: 1px solid rgba(240,235,227,.07); align-items: start; justify-items: center; }
.foot-social { display: flex; gap: 14px; margin-top: 22px; }
.foot-social a { width: 36px; height: 36px; border: 1px solid rgba(240,235,227,.18); display: flex; align-items: center; justify-content: center; color: var(--grey); font-size: 13px; transition: all .3s; }
.foot-social a:hover { border-color: var(--gold); color: var(--gold); }
.foot-col-t { font-family: 'Cormorant Upright', serif; font-size: 17px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 20px; color: rgba(240,235,227,.9); }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,235,227,.52); transition: color .3s; }
.foot-col a:hover { color: var(--white); }
.foot-bottom { padding: 18px 52px; border-top: 1px solid rgba(240,235,227,.05); display: flex; justify-content: center; }
.foot-c { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgb(255, 255, 255); text-align: center;}
.foot-logo-col { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 4px; }
.foot-logo-mark { font-family: 'Cormorant Upright', serif; font-size: 18px; letter-spacing: .22em; text-transform: uppercase; color: rgba(240,235,227,.9); white-space: nowrap; }
.foot-logo-sub { font-family: 'Montserrat', sans-serif; font-size: 8px; letter-spacing: .38em; text-transform: uppercase; color: rgba(240,235,227,.4); margin-top: 5px; }
.foot-grid > .foot-col:first-child { justify-self: end; text-align: right; }
.foot-grid > .foot-col:last-child { justify-self: start; text-align: left; }

/* ANIMATIONS & UTILITIES */

.reveal-el { opacity: 0; transform: translateY(48px); }
.parallax-img-wrap { overflow: hidden; }
.parallax-img { will-change: transform; }
body::after { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); opacity: .022; pointer-events: none; z-index: 9990; }

/* RESPONSIVE — TABLET (≤ 900px) */

@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.sc { padding: 12px 24px; }
  .hero-panels { grid-template-columns: 1fr 1.4fr 1fr; }
  .split-scroll { height: 120vh; }
  .services { padding: 60px 24px 72px; }
  .sv-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mosaic-sec { padding: 0 16px 60px; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 4px; }
  .mosaic-grid .m-item { grid-column: auto !important; grid-row: auto !important; }
  .m-item.m-tall { grid-row: auto !important; }
  .m-item { height: 260px; }
  .about { flex-direction: column; gap: 40px; padding: 52px 24px 60px; align-items: flex-start; }
  .ab-txt { max-width: 100%; padding-left: 0; }
  .ab-right { width: 100%; align-items: flex-start; }
  .ab-img { width: 100%; height: 70vw; max-height: 480px; }
  .ab-deco-num { display: none; }
  .testi { padding: 80px 24px; }
  .cta { padding: 100px 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; padding: 40px 24px 24px; gap: 40px; }
  .foot-logo-col { grid-column: 1 / -1; order: -1; border-bottom: 1px solid rgba(240,235,227,.07); padding-bottom: 28px; margin-bottom: 8px; }
  .foot-grid > .foot-col:first-child { justify-self: start; text-align: left; }
  .foot-bottom { padding: 14px 24px; }
}

/* RESPONSIVE — MOBILE (≤ 600px) */

@media (max-width: 600px) {
  nav { padding: 18px 20px; }
  nav.sc { padding: 12px 20px; }
  .nav-logo { display: none; }
  .nav-a { font-size: 10px; letter-spacing: .18em; }
  .lang-btn { font-size: 10px; padding: 4px 3px; }
  .lang-switcher { gap: 2px; }
  #loader-text { font-size: clamp(36px, 11vw, 80px); }

  .hero { height: 100vh; height: 100svh; } 
  .hero-panels { grid-template-columns: 0.9fr 1.6fr 0.9fr; gap: 2px; }
  .hp:nth-child(1), .hp:nth-child(3) { display: block; }
  .hero-overlay {
    background: 
      linear-gradient(to bottom, rgba(10,9,8,.1) 0%, rgba(10,9,8,.5) 50%, rgba(10,9,8,.85) 100%),
      linear-gradient(to right, rgba(10,9,8,.75) 0%, rgba(10,9,8,0) 25%, rgba(10,9,8,0) 75%, rgba(10,9,8,.75) 100%);
  }
  .hero-txt { padding: 0 20px; }
  .hero-h1 { font-size: clamp(48px, 14vw, 80px); }
  .hero-tagline { font-size: clamp(13px, 3.8vw, 17px); margin-top: 16px; }

  .split-scroll { height: auto; overflow: hidden; background: transparent; }
  .ss-col { display: contents; }
  .ss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: var(--black);
    /* 4 randuri complete (48vw) + jumatate din al 5-lea rand (24vw) + gap-uri */
    height: calc(4 * 48vw + 4 * 4px + 24vw);
    overflow: hidden;
  }
  .ss-img-wrap { width: 100% !important; height: 48vw !important; flex: none; }
  /* Ascundem imaginile de la randul 5 in sus (de la index 9+) */
  .ss-grid .ss-img-wrap:nth-child(n+9) { display: none !important; }
  /* Aratam randul 5 (img 9 si 10) pe jumatate */
  .ss-grid .ss-img-wrap:nth-child(9),
  .ss-grid .ss-img-wrap:nth-child(10) { display: block !important; }
  .ss-filler { display: none !important; }

  .sec-title { font-size: clamp(34px, 10vw, 54px); white-space: normal; }

  .services { padding: 48px 16px 32px; }
  .sv-head { margin-bottom: 28px; }
  .sv-grid { grid-template-columns: 1fr; gap: 10px; }
  .sv-thumb { width: 88px; height: 60px; }
  .sv-num { font-size: 44px; }

  .mosaic-sec { padding: 0 12px 0 !important; margin-bottom: 0 !important; overflow: hidden !important; }
  .mosaic-head { padding: 28px 0 20px; }
  .mosaic-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: unset !important;
    grid-auto-rows: 44vw !important;
    gap: 3px !important;
    height: auto !important;
  }
  /* Reset toate pozitiile inline si nth-child desktop */
  .mosaic-grid .m-item:nth-child(1),
  .mosaic-grid .m-item:nth-child(2),
  .mosaic-grid .m-item:nth-child(3),
  .mosaic-grid .m-item:nth-child(4),
  .mosaic-grid .m-item:nth-child(5),
  .mosaic-grid .m-item:nth-child(6),
  .mosaic-grid .m-item:nth-child(7) {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 44vw !important;
  }
  /* Ultimul item ocupa tot randul */
  .mosaic-grid .m-item:nth-child(7) {
    grid-column: 1 / -1 !important;
  }

  .about { padding: 60px 20px 70px; gap: 40px; }
  .ab-txt { align-items: center; padding: 0; }
  .ab-name { font-size: clamp(36px, 11vw, 50px); text-align: center; margin-bottom: 24px; }
  .ab-quote-row { flex-direction: column; gap: 16px; padding: 0 0 24px; text-align: center; }
  .ab-vline { width: 60px; height: 2px; min-height: 2px; align-self: center; } 
  .ab-quote { font-size: clamp(18px, 5.5vw, 24px); }
  .ab-body { font-size: 15px; text-align: center; margin-bottom: 16px; }
  .ab-stats { gap: 24px; justify-content: center; text-align: center; width: 100%; padding-top: 28px; }
  .stat-n { font-size: 32px; }
  .stat-l { font-size: 9px; letter-spacing: .2em; }
  .ab-right { width: 100%; margin-top: 10px; }
  .ab-img { width: 100%; height: auto; aspect-ratio: 2 / 3; max-height: none; border-radius: 3px; }
  .ab-deco-num { display: none; }

  .testi { padding: 60px 20px; }
  .t-txt { font-size: clamp(17px, 4.5vw, 24px); }
  .t-nav { margin-top: 32px; }

  .cta { padding: 80px 20px; }
  .cta-h { font-size: clamp(38px, 12vw, 68px); }
  .cta-btn { padding: 16px 34px; font-size: 11px; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px 60px; padding: 40px 24px 24px; }
  .foot-logo-col { grid-column: 1 / -1; order: -1; border-bottom: 1px solid rgba(240,235,227,.07); padding-bottom: 32px; align-items: center; text-align: center; }
  .foot-social { margin-top: 18px; justify-content: center; }
  .foot-grid > .foot-col:first-child { justify-self: center; text-align: center; }
  .foot-grid > .foot-col:last-child { justify-self: center; text-align: center; }
  .foot-grid > .foot-col:last-child li:first-child { display: none; }
  .foot-bottom { padding: 14px 20px; }

  div[style*="height:100px"], div[style*="height:80px"], div[style*="height:70px"] { height: 30px !important; }

  /* Fix zona neagra la sfarsit pe mobil */
  .mosaic-sec { padding-bottom: 0; }
  .testi { padding: 60px 20px 40px; }
  .cta { padding: 70px 20px 80px; }
  footer { padding-bottom: 0; }
}

/* RESPONSIVE — SMALL MOBILE (≤ 380px) */

@media (max-width: 380px) {
  .hero-h1 { font-size: clamp(40px, 13vw, 60px); }
  .sv-grid { gap: 8px; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-grid .m-item { height: 72vw; grid-column: auto !important; grid-row: auto !important; }
  .m-item { height: 72vw; }
  .ab-stats { flex-direction: column; gap: 14px; }
  .cta-h { font-size: clamp(34px, 12vw, 54px); }
}

/* Div-uri de tranzitie cu gradient */
.grad-transition { display: block; }
.grad-dark-top     { height: 100px; background: linear-gradient(to bottom, #c8bdb0 0%, #1a1714 60%, #0a0908 100%); }
.grad-dark-bottom  { height: 80px;  background: linear-gradient(to bottom, #0a0908 0%, #1a1714 25%, #8a7d72 65%, #c8bdb0 100%); }
.grad-about-bottom { height: 70px;  background: linear-gradient(to bottom, #c8bdb0 0%, #6b5f56 40%, #0a0908 100%); }

/* FIX: Elimina spatiul negru la sfarsit pe mobil */
@media (max-width: 600px) {
  /* Div-ul de tranzitie services→galerie: dispare complet */
  .grad-dark-top {
    height: 0 !important;
  }
  /* Celelalte tranzitii - mici */
  .grad-dark-bottom,
  .grad-about-bottom {
    height: 16px !important;
  }
  /* Sectiunea de galerie - zero padding negru inferior */
  .mosaic-sec {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  /* Testimoniale - mai compact */
  .testi {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  /* CTA section */
  .cta {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  /* Footer fara spatiu extra */
  footer {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  /* Eliminam orice overflow negru de pe body/html */
  body {
    overflow-x: hidden;
  }
}

/*  LANGUAGE SWITCHER */

.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn { font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: rgba(10,9,8,.75); background: none; border: none; cursor: pointer; padding: 6px 4px; transition: color .3s; }
.lang-btn:hover { color: rgba(10,9,8,1); }
.lang-btn.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
nav.sc .lang-btn { color: rgba(240,235,227,.38); }
nav.sc .lang-btn:hover { color: rgba(240,235,227,.8); }
nav.sc .lang-btn.active { color: var(--gold); border-bottom: 1px solid var(--gold); }

html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }

 /* CONTACT MODAL */

.cmodal-backdrop {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.cmodal-backdrop.active { opacity: 1; pointer-events: all; }

.cmodal-wrap {
  display: flex;
  width: 100%; max-width: 1100px;
  height: 680px;
  max-height: calc(100vh - 20px);
  overflow: hidden;
  border: 1px solid rgba(201,168,122,.2);
  box-shadow: 0 40px 100px rgba(0,0,0,.75);
  transform: translateY(22px) scale(.98);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.cmodal-backdrop.active .cmodal-wrap { transform: translateY(0) scale(1); }

.cmodal-img-side { flex: 1; min-width: 0; position: relative; overflow: hidden; }
.cmodal-img-side img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.8); }

.cmodal-panel {
  width: 460px; flex-shrink: 0;
  background: #191410;
  position: relative;
  padding: 64px 56px 56px;
  display: flex; flex-direction: column;
}

.cmodal-deco-line { position: absolute; background: rgba(201,168,122,.28); pointer-events: none; }
.cmodal-deco-line.top { top: 10px; left: 10px; right: 10px; height: 1px; }
.cmodal-deco-line.bottom { bottom: 10px; left: 10px; right: 10px; height: 1px; }
.cmodal-deco-line.left { left: 10px; top: 10px; bottom: 10px; width: 1px; }
.cmodal-deco-line.right { right: 10px; top: 10px; bottom: 10px; width: 1px; }

.cmodal-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: rgba(240,235,227,.4); font-size: 22px; line-height: 1;
  transition: color .25s; z-index: 2;
}
.cmodal-close:hover { color: var(--gold); }

.cmodal-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }

.cmodal-title { font-family: 'Cormorant Upright', serif; font-size: 32px; font-weight: 300; letter-spacing: .05em; color: var(--white); text-align: center; margin-bottom: 40px; }

.cmodal-items { display: flex; flex-direction: column; }

.cmodal-item { display: flex; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(201,168,122,.14); text-decoration: none; transition: opacity .25s; }
.cmodal-item:first-child { border-top: 1px solid rgba(201,168,122,.14); }
.cmodal-item:hover { opacity: .65; }

.cmodal-icon { width: 50px; height: 50px; border-radius: 12px; border: 1px solid rgba(201,168,122,.28); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.cmodal-info { display: flex; flex-direction: column; gap: 4px; }
.cmodal-label { font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(240,235,227,.88); }
.cmodal-sub { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; color: rgba(240,235,227,.75); font-style: normal; }

@media (max-width: 680px) {
  .cmodal-img-side { display: none; }
  .cmodal-panel { width: 100%; padding: 44px 28px 40px; }
}


  /* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 122, 0.2);
  z-index: 8000;
  padding: 20px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-text {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(240, 235, 227, 0.7);
  font-weight: 300;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.3s;
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.cookie-btn.accept:hover {
  background: transparent;
  color: var(--gold);
}
.cookie-btn.decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 235, 227, 0.2);
}
.cookie-btn.decline:hover {
  border-color: var(--white);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 20px;
    text-align: center;
    gap: 16px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  .cookie-text {
    font-size: 10px;
  }
}