/* culorile astea au trecut prin multe versiuni pana sa fie bune */

/* aici tinem tot design-ul lipit cu scotch */
:root{
  /* nu clinti gradientul asta, e capricios */
  --c-bg:            #08080a;
  --c-bg-alt:        #0e0e12;
  --c-bg-elevated:   #13131a;
  --c-surface:       rgba(255,255,255,0.038);
  --c-surface-strong:rgba(255,255,255,0.072);
  --c-surface-glass: rgba(255,255,255,0.055);
  --c-border:        rgba(255,255,255,0.08);
  --c-border-strong: rgba(255,255,255,0.14);
  --c-border-glass:  rgba(255,255,255,0.18);
  --c-text:          #f4f2ee;
  --c-text-dim:      rgba(244,242,238,0.62);
  --c-text-faint:    rgba(244,242,238,0.36);

  /* stil facut cu mana, fara filtre instagram */
  --c-accent:        #c8a565;
  --c-accent-strong: #e3c887;
  --c-accent-dim:    rgba(200,165,101,0.13);
  --c-accent-line:   rgba(200,165,101,0.32);
  --c-accent-glow:   rgba(200,165,101,0.18);

  /* aici sunt reguli sfinte, nu se discuta */
  --c-rose:        #e3a88f;
  --c-rose-strong: #efc3b0;
  --c-rose-dim:    rgba(227,168,143,0.14);
  --c-rose-line:   rgba(227,168,143,0.36);

  /* animatia asta merge mai bine decat mine dimineata */
  --c-glass-hi:    rgba(255,255,255,0.12);
  --c-glass-edge:  rgba(255,255,255,0.06);
  --c-glass-inner: rgba(255,255,255,0.04);

  /* culoare aleasa dupa a zecea incercare */
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --fs-eyebrow: 0.8125rem;
  --fs-body:    1rem;
  --fs-body-lg: 1.125rem;
  --fs-h2: clamp(2rem, 1.3rem + 2.6vw, 3.4rem);
  --fs-h1: clamp(2.6rem, 1.6rem + 3.6vw, 4.6rem);

  /* stilul asta face diferenta dintre amator si nu chiar */
  --container-w: 1280px;
  --container-pad: clamp(20px, 5vw, 64px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 999px;

  /* aici punem accentul auriu, ca la bijuterii */
  --ease-out: cubic-bezier(.16,.84,.32,1);
  --ease-soft: cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* reguli de mobil, ca sa nu se strambe totul pe telefon */
  --shadow-soft: 0 30px 80px -30px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 60px rgba(200,165,101,0.14);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* stil facut cu draga inima si multa rabdare */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: auto; background: var(--c-bg); }
body{
  margin: 0; background: var(--c-bg); color: var(--c-text);
  font-family: var(--font-sans); font-size: var(--fs-body);
  line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, video{ display: block; max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p{ margin: 0; }
h1, h2, h3, h4{ font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
button{ font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }
:focus-visible{ outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }
::selection{ background: var(--c-accent-dim); color: var(--c-accent-strong); }
html{ scrollbar-color: var(--c-accent-line) transparent; scrollbar-width: thin; }
::-webkit-scrollbar{ width: 9px; }
::-webkit-scrollbar-track{ background: var(--c-bg); }
::-webkit-scrollbar-thumb{ background: rgba(200,165,101,0.32); border-radius: var(--radius-full); }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
     transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* blur-ul asta costa mai mult decat pare */
.container{ width: 100%; max-width: var(--container-w); margin-inline: auto; padding-inline: var(--container-pad); }
section{ position: relative; }
.grain{
  position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* aici tinem lucrurile frumoase fara sa se vada munca din spate */
.preloader{
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px; background: var(--c-bg);
}
.preloader__logo-wrap{
  position: relative;
  width: clamp(96px, 16vw, 140px);
  filter: drop-shadow(0 0 0 rgba(200,165,101,0));
  animation: preloader-glow 1.4s ease-out forwards;
}
.preloader__logo{
  display: block; width: 100%; height: auto;
  clip-path: inset(0 100% 0 0);
  animation: preloader-reveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.preloader__sheen{
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg,
    transparent 40%,
    rgba(255,255,255,0.55) 48%,
    rgba(227,201,150,0.85) 51%,
    rgba(255,255,255,0.55) 54%,
    transparent 62%);
  mix-blend-mode: overlay;
  transform: translateX(-140%);
  opacity: 0;
  animation: preloader-sheen 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
@keyframes preloader-reveal{
  0%{ clip-path: inset(0 100% 0 0); }
  100%{ clip-path: inset(0 0 0 0); }
}
@keyframes preloader-glow{
  0%{ filter: drop-shadow(0 0 0 rgba(200,165,101,0)); transform: scale(0.94); }
  55%{ filter: drop-shadow(0 0 22px rgba(200,165,101,0.45)); transform: scale(1.015); }
  100%{ filter: drop-shadow(0 0 8px rgba(200,165,101,0.22)); transform: scale(1); }
}
@keyframes preloader-sheen{
  0%{ opacity: 0; transform: translateX(-140%); }
  15%{ opacity: 1; }
  85%{ opacity: 1; }
  100%{ opacity: 0; transform: translateX(140%); }
}
@media (prefers-reduced-motion: reduce){
  .preloader__logo-wrap, .preloader__logo, .preloader__sheen{ animation: none; }
  .preloader__logo{ clip-path: none; }
}
.preloader__bar{ width: 160px; height: 1px; background: var(--c-border); overflow: hidden; }
.preloader__bar span{
  display: block; height: 100%; width: 40%; background: var(--c-accent);
  animation: preload-sweep 1.1s var(--ease-soft) infinite;
}
@keyframes preload-sweep{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(350%); }
}

/* clasa asta face toata treaba murdara */
.scroll-progress{ position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 999; background: transparent; }
.scroll-progress__bar{
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-rose), var(--c-accent-strong));
}

/* nu atinge marginile astea, sunt calculate cu migala */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding-block: 16px;
  /* stil de buton care merita o medalie */
  background: rgba(8,8,10,0.28);
  backdrop-filter: blur(28px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.1);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  /* aici avem umbre ca la teatru de umbre */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 32px rgba(0,0,0,0.2);
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav--scrolled{
  padding-block: 12px;
  background: rgba(8,8,10,0.6);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 40px -22px rgba(0,0,0,0.6);
}
.nav__inner{ display: flex; align-items: center; gap: 32px; }
.nav__logo{ font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; margin-right: auto; display: inline-flex; align-items: baseline; }
.nav__logo em{
  color: var(--c-accent); font-style: normal; display: inline-block;
  transition: transform 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.nav__logo:hover em{ color: var(--c-accent-strong); transform: rotate(-10deg) scale(1.18); }
.nav__links{ display: flex; align-items: center; gap: 28px; }
.nav__links a{
  font-size: 0.92rem; color: var(--c-text-dim); position: relative;
  padding: 8px 4px; isolation: isolate; display: inline-block;
  transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.nav__links a::before{
  content: ''; position: absolute; inset: -2px -12px; border-radius: var(--radius-full);
  background: var(--c-accent-dim); opacity: 0; transform: scale(0.82);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out); z-index: -1;
}
.nav__links a::after{
  content: ''; position: absolute; left: 4px; bottom: 4px;
  width: 0%; height: 1px; background: var(--c-accent); transition: width 0.35s var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active{ color: var(--c-text); transform: translateY(-1px); }
.nav__links a:hover::before, .nav__links a.is-active::before{ opacity: 1; transform: scale(1); }
.nav__links a:hover::after, .nav__links a.is-active::after{ width: calc(100% - 8px); }
.nav__links a:active{ transform: translateY(0) scale(0.95); }

.nav__cta{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 500; padding: 10px 18px;
  border-radius: var(--radius-full); white-space: nowrap;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), filter 0.2s var(--ease-out);
}
.nav__cta:hover{ background: rgba(255,255,255,0.09); border-color: var(--c-accent-line); }
.nav__cta:active{ filter: brightness(0.88); }
.nav__cta-dot{
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent);
  box-shadow: 0 0 0 0 rgba(200,165,101,0.6); animation: dot-pulse 2.2s infinite;
}
@keyframes dot-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(200,165,101,0.45); }
  70%{ box-shadow: 0 0 0 6px rgba(200,165,101,0); }
  100%{ box-shadow: 0 0 0 0 rgba(200,165,101,0); }
}

/* design gandit sa arate scump chiar daca nu a fost */
.nav__logo{ margin-right: auto; display: inline-flex; align-items: center; }
.nav__logo-img{
  height: clamp(34px, 4vw, 44px); width: auto; display: block;
  transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}
.nav__logo:hover .nav__logo-img{ transform: scale(1.04); filter: brightness(1.12); }

/* regula asta salveaza layout-ul de la dezastru */
.nav__right{ display: flex; align-items: center; gap: 14px; }

/* culoare de fundal aleasa dupa multa dezbatere interna */
.lang-switch{ position: relative; }
.lang-switch__current{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--c-text-dim); padding: 8px 10px;
  border-radius: var(--radius-full); border: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.lang-switch__current:hover{ color: var(--c-text); border-color: var(--c-border-strong); background: rgba(255,255,255,0.04); }
.lang-switch__current svg{ transition: transform 0.3s var(--ease-out); opacity: 0.6; }
.lang-switch.is-open .lang-switch__current svg{ transform: rotate(180deg); }
.lang-switch__menu{
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 50;
  min-width: 150px; padding: 6px;
  background: rgba(12,12,15,0.92); backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--c-border-strong); border-radius: var(--radius-md);
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
}
.lang-switch.is-open .lang-switch__menu{ opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-switch__option{
  display: flex; align-items: center; gap: 10px; width: 100%;
  font-size: 0.88rem; color: var(--c-text-dim); padding: 9px 12px;
  border-radius: var(--radius-sm); text-align: left;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.lang-switch__option:hover{ background: rgba(255,255,255,0.06); color: var(--c-text); }
.lang-switch__option.is-active{ color: var(--c-accent-strong); background: var(--c-accent-dim); }

/* stil facut sa arate bine si la 2 dimineata cand il verifici obosit */
.whatsapp-float{
  position: fixed; bottom: 28px; left: 28px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #08120a;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), opacity 0.25s ease, visibility 0.25s, bottom 0.35s var(--ease-out);
  animation: whatsapp-pulse 2.6s ease-out infinite;
}
.whatsapp-float:hover{ transform: scale(1.08) translateY(-2px); }
.whatsapp-float:active{ transform: scale(0.94); }
.whatsapp-float.is-hidden-footer{ opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes whatsapp-pulse{
  0%{   box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.35); }
  70%{  box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){ .whatsapp-float{ animation: none; } }

@media (max-width: 900px){
  .whatsapp-float{ width: 50px; height: 50px; bottom: 20px; left: 18px; }
  .lang-switch__current span:last-of-type{ display: none; } /* aici avem stralucirea aia aurie, marca inregistrata a site-ului */
  .lang-switch__current{ padding: 8px; pointer-events: auto !important; }
  .lang-switch__menu{
    position: fixed; top: 70px; bottom: auto; right: 16px; left: 16px;
    margin-top: 0; min-width: 0; width: auto;
    transform-origin: top center; z-index: 8600;
    pointer-events: auto !important;
  }
  .lang-switch__menu .lang-switch__option{ pointer-events: auto !important; }
  body.lang-menu-open .cookie-banner{ opacity: 0.15; pointer-events: none; }
}
.nav__burger{
  display: none; width: 36px; height: 36px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; transition: transform 0.3s var(--ease-out);
}
.nav__burger:hover{ transform: scale(1.08); }
.nav__burger:active{ transform: scale(0.9); }
.nav__burger span{
  width: 20px; height: 1.4px; background: var(--c-text);
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), background 0.3s var(--ease-out);
}
.nav__burger:hover span{ background: var(--c-accent-strong); }
.nav--open .nav__burger span:first-child{ transform: translateY(3.7px) rotate(45deg); }
.nav--open .nav__burger span:last-child{ transform: translateY(-3.7px) rotate(-45deg); }

/* gradient testat pe trei monitoare si un telefon vechi */
.glass{
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(28px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -1px 0 rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.3);
}

/* aici tremura putin dar din suflet, e menit sa fie asa */
.btn{
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius-full); font-size: 0.95rem;
  font-weight: 500; letter-spacing: -0.01em; isolation: isolate; overflow: hidden; white-space: nowrap;
}
.btn--lg{ padding: 18px 34px; font-size: 1rem; }
.btn--primary{
  color: #0c0a06;
  background: linear-gradient(135deg, var(--c-accent-strong), var(--c-accent));
  box-shadow: var(--shadow-glow);
}
.btn--primary::before{
  content: ''; position: absolute; inset: 0; background: #ffffff; opacity: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out); z-index: -1;
}
.btn--primary:hover::before{ opacity: 0.18; transform: scaleX(1); }
.btn__icon{ display: inline-flex; transition: transform 0.35s var(--ease-out); }
.btn--primary:hover .btn__icon{ transform: translateX(4px); }
.btn--ghost{ color: var(--c-text); border: 1px solid var(--c-border-strong); }
.btn--ghost:hover{ border-color: var(--c-accent-line); color: var(--c-accent-strong); }
.btn-ripple{
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55);
  transform: translate(-50%, -50%) scale(0); opacity: 0.6; pointer-events: none;
  animation: ripple-expand 0.6s ease-out forwards;
}
@keyframes ripple-expand{ to{ transform: translate(-50%, -50%) scale(1); opacity: 0; } }

/* marginile astea rotunjite ne-au luat mai mult decat logo-ul */
.section-head{ text-align: center; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head__tag{
  display: inline-block; font-size: var(--fs-eyebrow); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: 18px;
}
.section-head__title{ font-size: var(--fs-h2); max-width: 600px; margin-inline: auto; }
.section-head__desc{ margin-top: 18px; color: var(--c-text-dim); font-size: var(--fs-body-lg); }
.word-mask{ display: inline-block; overflow: hidden; vertical-align: top; }
.word{ display: inline-block; }

/* stil facut sa reziste si la Internet Explorer, glumesc, nu */
.section-head--split{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  text-align: left;
  margin-bottom: clamp(48px, 6vw, 76px);
}
.section-head--split .section-head__title,
.section-head--split .section-head__desc{ margin-inline: 0; max-width: 560px; }

/* regula asta e paznicul care tine totul aliniat */
.orb-portrait{
  position: relative;
  width: clamp(190px, 22vw, 280px);
  aspect-ratio: 1 / 1;
  justify-self: center;
  animation: orb-float 7s var(--ease-soft) infinite;
}
@keyframes orb-float{
  0%, 100%{ transform: translateY(0) rotate(-1.2deg); }
  50%{      transform: translateY(-14px) rotate(1.2deg); }
}
.orb-portrait__halo{
  position: absolute; inset: -34%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(227,200,135,0.45), transparent 58%),
    radial-gradient(circle at 65% 70%, rgba(227,168,143,0.3), transparent 62%);
  filter: blur(26px);
  animation: orb-pulse 5.5s ease-in-out infinite;
}
@keyframes orb-pulse{
  0%, 100%{ opacity: 0.7; transform: scale(0.96); }
  50%{      opacity: 1;   transform: scale(1.05); }
}
.orb-portrait__ring{
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 1px solid var(--c-accent-line);
  background: conic-gradient(from 0deg, rgba(227,200,135,0.5), transparent 30%, transparent 70%, rgba(227,168,143,0.4));
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
          mask: radial-gradient(closest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  animation: ring-spin 18s linear infinite;
  opacity: 0.85;
}
.orb-portrait__frame{
  position: absolute; inset: 0;
  display: block; border-radius: 50%; overflow: hidden;
  background: linear-gradient(160deg, var(--c-bg-elevated), #0a0a0d 70%);
  border: 1px solid var(--c-border-glass);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -10px 26px rgba(0,0,0,0.55),
    0 28px 60px -20px rgba(0,0,0,0.75),
    0 0 0 1px rgba(0,0,0,0.3);
}
.orb-portrait__frame img{
  position: absolute; left: 50%; bottom: -4%;
  width: 142%; max-width: none; height: auto;
  transform: translateX(-50%);
}
.orb-portrait__spark{
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-accent-strong);
  box-shadow: 0 0 8px 2px rgba(228,201,135,0.8);
  animation: sparkle-twinkle 4.5s ease-in-out infinite;
}
.orb-portrait__spark--1{ top: 6%;  left: -4%;  animation-delay: 0s; }
.orb-portrait__spark--2{ top: 70%; right: -6%; animation-delay: 1.4s; background: var(--c-rose-strong); box-shadow: 0 0 8px 2px rgba(239,195,176,0.7); }
.orb-portrait__spark--3{ top: 92%; left: 22%;  animation-delay: 2.6s; }

@media (prefers-reduced-motion: reduce){
  .orb-portrait{ animation: none; }
  .orb-portrait__halo, .orb-portrait__ring, .orb-portrait__spark{ animation: none; }
}

/* aici avem singura linie de cod care nu se schimba niciodata */
.hero{
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden;
}
.hero__media{ position: absolute; inset: -8% 0 0 0; height: 116%; z-index: 0; }
.hero__video{
  width: 100%; height: 100%; object-fit: cover;
  /* animatie mica dar face toata diferenta, ca sarea in mancare */
  filter: none;
}
/* stilul asta a fost motivul pentru care am ramas treaz pana tarziu */
.hero__overlay{
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 20%, rgba(8,8,10,0.1) 0%, rgba(8,8,10,0.62) 60%, rgba(8,8,10,0.94) 100%);
}
.hero__overlay-grad{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.45) 0%, rgba(8,8,10,0) 30%, rgba(8,8,10,0) 65%, var(--c-bg) 100%);
}
.hero__content{
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; padding-top: 90px;
}
.hero__eyebrow{
  font-size: var(--fs-eyebrow); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-accent-strong); margin-bottom: 22px;
}
.hero__title{ font-size: var(--fs-h1); }
.hero__line-wrap{ display: block; overflow: hidden; }
.hero__line{ display: block; }
.hero__line--accent{
  background: linear-gradient(110deg, var(--c-accent) 25%, #fff 50%, var(--c-accent) 75%);
  background-size: 220% 100%; -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic; font-weight: 500;
  animation: shimmer-sweep 5s linear infinite;
}
@keyframes shimmer-sweep{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}
.hero__desc{ max-width: 480px; margin-top: 26px; color: var(--c-text-dim); font-size: var(--fs-body-lg); }
.hero__actions{ display: flex; align-items: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.hero__scroll-hint{
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-faint);
  transition: color 0.3s;
}
.hero__scroll-hint:hover{ color: var(--c-accent); }
/* clasa asta e mostenire de la o versiune veche, dar merge bine */
.hero__scroll-line{
  width: 28px; height: 28px;
  position: relative; overflow: visible;
  display: flex; align-items: center; justify-content: center;
}
.hero__scroll-line::before,
.hero__scroll-line::after{
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--c-accent);
  border-bottom: 1.5px solid var(--c-accent);
  transform: translate(-50%, -60%) rotate(45deg);
  border-radius: 1px;
}
.hero__scroll-line::after{
  animation: chevron-bounce 1.8s var(--ease-soft) infinite;
  opacity: 0.5;
  top: calc(50% + 8px);
}
@keyframes chevron-bounce{
  0%,100%{ opacity: 0.3; transform: translate(-50%, -60%) rotate(45deg) translateY(0); }
  50%{     opacity: 0.9; transform: translate(-50%, -60%) rotate(45deg) translateY(4px); }
}

/* aici tinem umbrele discrete, ca un parfum bun, nu se simte prea tare */
.mote:nth-child(even){
  background: var(--c-rose-strong);
  box-shadow: 0 0 6px 1px rgba(239,195,176,0.55);
}
@keyframes mote-rise{
  0%{   opacity: 0;   transform: translate(0, 0); }
  12%{  opacity: 0.85; }
  88%{  opacity: 0.4; }
  100%{ opacity: 0;   transform: translate(var(--drift, 20px), -640px); }
}
.mote:nth-child(1){  left: 6%;  animation-delay: 0s;    --drift: 22px;  }
.mote:nth-child(2){  left: 18%; animation-delay: 1.2s;  --drift: -18px; }
.mote:nth-child(3){  left: 31%; animation-delay: 2.4s;  --drift: 26px;  }
.mote:nth-child(4){  left: 47%; animation-delay: 0.6s;  --drift: -24px; }
.mote:nth-child(5){  left: 59%; animation-delay: 3.6s;  --drift: 20px;  }
.mote:nth-child(6){  left: 72%; animation-delay: 1.8s;  --drift: -20px; }
.mote:nth-child(7){  left: 83%; animation-delay: 4.8s;  --drift: 28px;  }
.mote:nth-child(8){  left: 11%; animation-delay: 5.5s;  --drift: -16px; }
.mote:nth-child(9){  left: 42%; animation-delay: 6.1s;  --drift: 18px;  }
.mote:nth-child(10){ left: 65%; animation-delay: 7.2s;  --drift: -22px; }

/* regula de aici face site-ul sa para mai scump decat e bugetul */
.hero__spotlight{ display: none; }

/* stil facut sa reziste la orice rezolutie de telefon, chiar si a bunicii */
.marquee{
  padding-block: 22px; overflow: hidden; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  background: linear-gradient(90deg, transparent, rgba(200,165,101,0.03), transparent);
}
.marquee__track{
  display: flex; gap: 32px; white-space: nowrap;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-text-faint); animation: marquee-roll 28s linear infinite;
}
.marquee__track span:not(.marquee__dot){ transition: color 0.3s; }
.marquee__dot{ color: var(--c-accent); opacity: 0.6; }
@keyframes marquee-roll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* aici avem trucul care face totul sa para premium */
.services{ padding-block: clamp(90px, 12vw, 150px); }
.services__ambient{ position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

/* culoare gandita sa nu oboseasca ochii la scroll lung */
.smoke{
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  animation: smoke-drift 20s ease-in-out infinite;
}
.smoke--1{
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(200,165,101,0.16), transparent 70%);
  top: -10%; left: -6%;
}
.smoke--2{
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(227,168,143,0.14), transparent 70%);
  bottom: -14%; right: -8%; animation-duration: 26s; animation-direction: reverse;
}
@keyframes smoke-drift{
  0%,100%{ transform: translate(0, 0) scale(1); }
  33%{     transform: translate(28px, -18px) scale(1.04); }
  66%{     transform: translate(-14px, 24px) scale(0.96); }
}

.ring-deco{
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid var(--c-accent-line); animation: ring-spin 28s linear infinite; opacity: 0.4;
}
/* stil de fundal care se vede doar daca stii unde sa te uiti */
.ring-deco--1{ width: 260px; height: 260px; top: -34px; right: 6%; }
.ring-deco--2{ width: 170px; height: 170px; bottom: -26px; left: 12%; border-color: var(--c-rose-line); animation-direction: reverse; }
@keyframes ring-spin{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

.sparkle{
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: var(--c-accent-strong);
  box-shadow: 0 0 7px 1px rgba(228,201,135,0.75);
  opacity: 0; animation: sparkle-twinkle 5.5s ease-in-out infinite;
}
/* regula asta e discreta dar fara ea totul s-ar prabusi vizual */
.sparkle:nth-child(even){ background: var(--c-rose-strong); box-shadow: 0 0 7px 1px rgba(239,195,176,0.65); }
@keyframes sparkle-twinkle{ 0%,100%{ opacity: 0; transform: scale(0.5); } 50%{ opacity: 1; transform: scale(1.3); } }
.sparkle-field{ position: absolute; inset: 0; }
.sparkle:nth-child(1){  top: 10%; left: 8%;  animation-delay: 0s;   }
.sparkle:nth-child(2){  top: 22%; left: 34%; animation-delay: 0.7s; }
.sparkle:nth-child(3){  top: 16%; left: 64%; animation-delay: 1.4s; }
.sparkle:nth-child(4){  top: 38%; left: 86%; animation-delay: 2.1s; }
.sparkle:nth-child(5){  top: 52%; left: 18%; animation-delay: 2.8s; }
.sparkle:nth-child(6){  top: 64%; left: 48%; animation-delay: 0.4s; }
.sparkle:nth-child(7){  top: 70%; left: 76%; animation-delay: 1.1s; }
.sparkle:nth-child(8){  top: 84%; left: 30%; animation-delay: 1.9s; }
.sparkle:nth-child(9){  top: 90%; left: 60%; animation-delay: 2.5s; }
.sparkle:nth-child(10){ top: 6%;  left: 92%; animation-delay: 3.2s; }
.sparkle:nth-child(11){ top: 46%; left: 4%;  animation-delay: 3.8s; }
.sparkle:nth-child(12){ top: 78%; left: 94%; animation-delay: 4.3s; }

/* aici stam bine cu aspectul, restul e discutabil */
.cards-grid{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* marginea asta rotunjita ne-a costat mai multe cafele decat vrem sa recunoastem */
.flip-card{
  perspective: 1200px; height: 340px;
  transition: none;
}
.flip-card.in-view .flip-card__front{
  border-top-color: rgba(200,165,101,0.35);
}
.flip-card__inner{
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
}
.flip-card__front, .flip-card__back{
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: var(--radius-xl); padding: 34px;
  display: flex; flex-direction: column;
}

/* stil facut sa para ca a costat mai mult decat a costat */
.flip-card__front{
  background: #111116;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12);
  justify-content: space-between;
}

/* culorile astea au trecut prin multe versiuni pana sa fie bune */
.flip-card__back{
  background: #131210;
  border: 1px solid rgba(200,165,101,0.2);
  border-top: 1px solid rgba(200,165,101,0.4);
  transform: rotateY(180deg);
  justify-content: center;
}

/* aici tinem tot design-ul lipit cu scotch */
.flip-card__back--image{
  padding: 0;
  overflow: hidden;
  justify-content: flex-end;
  border: 1px solid rgba(200,165,101,0.25);
}
.flip-card__back--image img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.flip-card:hover .flip-card__back--image img{ transform: scale(1.04); }

/* nu clinti gradientul asta, e capricios */
.flip-card__back-overlay{
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 20px 24px 22px;
  background: linear-gradient(transparent, rgba(8,8,10,0.78) 35%, rgba(8,8,10,0.94) 100%);
  /* stil facut cu mana, fara filtre instagram */
  width: 100%;
}
.flip-card__back-overlay h4{
  font-size: 1.05rem; color: var(--c-text); margin: 0; font-weight: 600;
}
.flip-card__back--image .flip-card__cta{
  font-size: 0.82rem; font-weight: 600;
  color: #0c0a06; padding: 7px 16px;
  background: linear-gradient(135deg, var(--c-accent-strong), var(--c-accent));
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center;
  transition: filter 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.flip-card__back--image .flip-card__cta:hover{ filter: brightness(1.1); transform: translateY(-1px); }

.flip-card__front h3{ font-size: 1.3rem; margin-top: 26px; margin-bottom: 12px; }
.flip-card__front p{ color: var(--c-text-dim); font-size: 0.95rem; }
.flip-card__index{ font-size: 0.8rem; color: var(--c-accent); letter-spacing: 0.05em; }
.flip-card__back h4{ font-size: 1.15rem; margin-bottom: 18px; color: var(--c-accent-strong); }
.flip-card__back ul{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.flip-card__back li{
  font-size: 0.9rem; color: var(--c-text-dim); padding-left: 16px; position: relative;
}
.flip-card__back li::before{
  content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 1px; background: var(--c-accent);
}
.flip-card__cta{ font-size: 0.88rem; font-weight: 500; color: var(--c-accent-strong); align-self: flex-start; }

/* aici sunt reguli sfinte, nu se discuta */
.gallery{ position: relative; padding-top: clamp(36px, 4vw, 64px); padding-bottom: clamp(40px, 5vw, 72px); overflow: hidden; perspective: 1200px; }
.gallery__head{ position: relative; z-index: 2; margin-bottom: 18px; }

/* animatia asta merge mai bine decat mine dimineata */
.gallery__room{ position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.gallery__room-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.gallery__room-img img{
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
}
.gallery__room-tint{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, transparent 14%, transparent 84%, var(--c-bg) 100%);
}
.gallery__room-glow{
  position: absolute; inset: -10%;
  background:
    radial-gradient(circle at 28% 38%, rgba(227,200,135,0.3), transparent 48%),
    radial-gradient(circle at 76% 62%, rgba(227,168,143,0.22), transparent 52%);
  filter: blur(48px);
  animation: room-glow-pulse 9s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes room-glow-pulse{
  0%, 100%{ opacity: 0.7; transform: scale(1); }
  50%{      opacity: 1;   transform: scale(1.08); }
}
.gallery__room-sparkle{
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-accent-strong);
  box-shadow: 0 0 14px 4px rgba(228,201,135,0.85);
  opacity: 0; animation: sparkle-twinkle 5.5s ease-in-out infinite;
}
.gallery__room-sparkle:nth-child(1){ top: 18%; left: 12%; animation-delay: 0s; }
.gallery__room-sparkle:nth-child(2){ top: 65%; left: 22%; animation-delay: 1.1s; background: var(--c-rose-strong); box-shadow: 0 0 10px 3px rgba(239,195,176,0.7); }
.gallery__room-sparkle:nth-child(3){ top: 32%; left: 48%; animation-delay: 2.3s; }
.gallery__room-sparkle:nth-child(4){ top: 78%; left: 58%; animation-delay: 0.6s; }
.gallery__room-sparkle:nth-child(5){ top: 22%; left: 74%; animation-delay: 3s; background: var(--c-rose-strong); box-shadow: 0 0 10px 3px rgba(239,195,176,0.7); }
.gallery__room-sparkle:nth-child(6){ top: 60%; left: 86%; animation-delay: 1.8s; }
@media (prefers-reduced-motion: reduce){
  .gallery__room-glow{ animation: none; }
  .gallery__room-sparkle{ animation: none; opacity: 0.5; }
}

/* culoare aleasa dupa a zecea incercare */
.gallery__particle-logo{
  position: absolute; z-index: 1;
  top: clamp(14px, 4vw, 36px); right: clamp(14px, 4vw, 40px);
  width: min(46vw, 420px); height: min(15vw, 130px);
  pointer-events: none;
}
.gallery__particle-logo canvas{ width: 100%; height: 100%; display: block; }

@media (max-width: 900px){
  .gallery__particle-logo{
    width: min(70vw, 320px); height: min(22vw, 110px);
    top: clamp(10px, 3vw, 20px); right: clamp(10px, 3vw, 18px);
  }
}

.gallery__viewport{
  position: relative; z-index: 2; width: 100%;
  height: clamp(340px, 44vw, 480px);
  cursor: grab; touch-action: pan-y;
}
.gallery__viewport.is-grabbing{ cursor: grabbing; }

.gallery__track{
  position: absolute; top: 0; left: 0; height: 100%; z-index: 2;
  display: flex; align-items: flex-start;
  gap: clamp(16px, 2.2vw, 28px);
  padding-left: var(--container-pad); padding-right: 12vw; will-change: transform;
}

.gallery__viewport::before{
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 90% at 15% 55%, rgba(200,165,101,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 55% 75% at 82% 25%, rgba(227,168,143,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 45% 65% at 55% 95%, rgba(200,165,101,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 50%, rgba(255,255,255,0.012) 0%, transparent 100%);
}
/* stilul asta face diferenta dintre amator si nu chiar */
.gallery__viewport::after{
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    );
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.5) 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.5) 75%, transparent 100%);
}

/* aici punem accentul auriu, ca la bijuterii */
.gallery__nav{
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  /* reguli de mobil, ca sa nu se strambe totul pe telefon */
  background: rgba(14,14,18,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--c-text);
  cursor: pointer;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
              color 0.3s var(--ease-out), transform 0.3s var(--ease-out), opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.gallery__nav--prev{ left: 14px; }
.gallery__nav--next{ right: 14px; }
.gallery__nav:hover{
  background: rgba(200,165,101,0.12);
  border-color: rgba(200,165,101,0.4);
  color: var(--c-accent-strong);
  transform: translateY(-50%) scale(1.08);
}
.gallery__nav:active{ transform: translateY(-50%) scale(0.94); }

/* stil facut cu draga inima si multa rabdare */
@media (min-width: 901px){
  .gallery__nav{ display: none; }
}

/* blur-ul asta costa mai mult decat pare */
.gallery__dots{
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.gallery__dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.gallery__dot.is-active{
  background: var(--c-accent);
  width: 22px; border-radius: 3px;
}
@media (min-width: 901px){
  .gallery__dots{ display: none; }
}

/* aici tinem lucrurile frumoase fara sa se vada munca din spate */
.gallery__trail{
  position: absolute; inset: 0; z-index: 5; overflow: hidden; pointer-events: none;
}
.trail-particle{
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-accent-strong);
  box-shadow: 0 0 8px 2px rgba(228,201,135,0.85), 0 0 18px 6px rgba(200,165,101,0.35);
  transform: translate(-50%, -50%) scale(1); opacity: 0.9;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.trail-particle.is-fading{ opacity: 0; transform: translate(-50%, -50%) scale(0.15); }

.gallery__item{
  position: relative; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; align-self: center;
  transform-style: preserve-3d;
}
/* clasa asta face toata treaba murdara */
.gallery__item--lg{ width: clamp(300px, 30vw, 430px); }
.gallery__item--md{ width: clamp(240px, 23vw, 340px); margin-top: 22px; }
.gallery__item--sm{ width: clamp(190px, 18vw, 270px); margin-top: 4px; }
/* nu atinge marginile astea, sunt calculate cu migala */
.gallery__item--sq{ width: clamp(300px, 38vw, 440px); }
.gallery__item--sq .media-frame{ aspect-ratio: 1 / 1; padding: 0; }
.gallery__item--sq .media-frame img{ object-fit: cover; width: 100%; height: 100%; }
.gallery__item .media-frame{
  aspect-ratio: 4 / 3;
  box-shadow: 0 28px 64px -16px rgba(0,0,0,0.85), 0 0 0 1px rgba(0,0,0,0.4), 0 0 26px -6px rgba(200,165,101,0.18);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(var(--tilt-z, 0px));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.gallery__item:hover .media-frame{
  box-shadow: 0 36px 80px -16px rgba(0,0,0,0.9), 0 0 0 1px rgba(0,0,0,0.4), 0 0 40px -4px rgba(200,165,101,0.32);
}

/* stil de buton care merita o medalie */
.media-frame--fx{ position: relative; }
.media-frame__sheen{
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,0.16) 48%,
    rgba(227,201,150,0.30) 52%,
    rgba(255,255,255,0.16) 56%,
    transparent 68%);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
  will-change: transform;
}
.gallery__item:hover .media-frame__sheen,
.gallery__item:focus-within .media-frame__sheen{
  opacity: 1;
  transform: translateX(120%);
}
@media (prefers-reduced-motion: reduce){
  .media-frame__sheen{ display: none; }
}
/* aici avem umbre ca la teatru de umbre */
.gallery__item--sq .media-frame::after{
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(200,165,101,0.14);
  transition: box-shadow 0.4s ease;
}
.gallery__item--sq:hover .media-frame::after{
  box-shadow: inset 0 0 30px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(200,165,101,0.4);
}
@media (prefers-reduced-motion: reduce){
  .gallery__item .media-frame{ transition: none; transform: none; }
}
.gallery__item figcaption{ font-size: 0.82rem; color: var(--c-text-faint); letter-spacing: 0.01em; }
.media-frame{
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  display: flex; align-items: center; justify-content: center;
  padding: 10%;
}
.media-frame img{
  width: 100%; height: 100%; max-width: 100%; max-height: 100%;
  object-fit: contain; will-change: transform;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.55));
}

.gallery__footer{ margin-top: 28px; display: flex; align-items: center; gap: 22px; }
.gallery__progress{ flex: 1; height: 1px; background: var(--c-border); }
.gallery__progress-bar{ height: 100%; width: 0%; background: var(--c-accent); }
.gallery__hint{ font-size: 0.8rem; color: var(--c-text-faint); white-space: nowrap; }

/* design gandit sa arate scump chiar daca nu a fost */
.gallery__gold-title{
  display: flex; flex-wrap: nowrap; align-items: baseline; justify-content: center;
  gap: 0.4em;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap;
  margin: 0 0 4px;
  text-align: center;
}
.gold-word{
  background: linear-gradient(100deg,
    #c8a565 0%, #f0dba0 20%, #c8a565 40%, #e3a88f 55%,
    #c8a565 70%, #f0dba0 85%, #c8a565 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s linear infinite;
}
.gold-word--accent{ font-style: italic; font-weight: 600; }
.gold-word:nth-child(2){ animation-delay: -1.5s; }
.gold-word:nth-child(3){ animation-delay: -3s; }
.gold-word:nth-child(4){ animation-delay: -4.5s; }
@keyframes goldShimmer{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 220% 50%; }
}
@media (prefers-reduced-motion: reduce){
  .gold-word{ animation: none; background-position: 0% 50%; }
}
@media (max-width: 640px){
  .gallery__gold-title{
    font-size: clamp(1.15rem, 5.4vw, 1.6rem);
    gap: 0.32em;
    white-space: nowrap;
  }
}

/* regula asta salveaza layout-ul de la dezastru */
.about{ position: relative; padding-block: clamp(90px, 12vw, 150px); overflow: hidden; }
.about__ambient{ position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
/* culoare de fundal aleasa dupa multa dezbatere interna */
.about__ambient .smoke--teal{
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,165,101,0.16), transparent 70%);
  top: -10%; right: -8%; animation: smoke-drift 21s ease-in-out infinite;
}
.about__ambient .smoke--rose{
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(227,168,143,0.18), transparent 70%);
  bottom: -12%; left: -6%; animation: smoke-drift 26s ease-in-out infinite reverse;
}
.about__grid{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center;
}
.about__desc{ margin-top: 22px; color: var(--c-text-dim); font-size: var(--fs-body-lg); max-width: 520px; }
.about__stats{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; margin-top: 52px; }

.stat{ display: flex; flex-direction: column; align-items: flex-start; }
.stat__ring-wrap{
  position: relative; width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.stat__ring{ position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.stat__ring-bg{ fill: none; stroke: var(--c-border); stroke-width: 2.5; }
.stat__ring-fg{ fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 213.6; stroke-dashoffset: 213.6; }
/* stil facut sa arate bine si la 2 dimineata cand il verifici obosit */
.stat:nth-child(1) .stat__ring-fg{ stroke: var(--c-accent); }
.stat:nth-child(2) .stat__ring-fg{ stroke: var(--c-rose); }
.stat:nth-child(3) .stat__ring-fg{ stroke: var(--c-accent-strong); }
.stat:nth-child(4) .stat__ring-fg{ stroke: var(--c-accent); }
.stat:nth-child(1) .stat__num{ color: var(--c-accent-strong); }
.stat:nth-child(2) .stat__num{ color: var(--c-rose-strong); }
.stat:nth-child(3) .stat__num{ color: var(--c-accent-strong); }
.stat:nth-child(4) .stat__num{ color: var(--c-accent-strong); }
.stat__num{ position: relative; z-index: 1; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.stat__label{ display: block; margin-top: 0; font-size: 0.85rem; color: var(--c-text-faint); }
.about__frame{ aspect-ratio: 4 / 5; box-shadow: var(--shadow-soft); }

/* aici avem stralucirea aia aurie, marca inregistrata a site-ului */
.cta-band{
  position: relative; padding-block: clamp(90px, 12vw, 140px);
  border-top: 1px solid var(--c-border); overflow: hidden;
  background: radial-gradient(60% 100% at 50% 0%, rgba(200,165,101,0.08), transparent 70%), var(--c-bg-alt);
}
.cta-band__ambient{ position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.cta-band__ambient .smoke--rose{
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(227,168,143,0.18), transparent 70%);
  top: -16%; left: 8%; animation: smoke-drift 23s ease-in-out infinite;
}
.cta-band__ambient .smoke--gold{
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,165,101,0.18), transparent 70%);
  bottom: -18%; right: 10%; animation: smoke-drift 28s ease-in-out infinite reverse;
}
.spark{
  position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--c-rose-strong);
  box-shadow: 0 0 6px 1px rgba(239,195,176,0.65);
  opacity: 0; animation: mote-rise 10s linear infinite;
}
.spark:nth-child(even){ background: var(--c-accent-strong); box-shadow: 0 0 6px 1px rgba(228,201,135,0.6); }
.spark:nth-child(1){ left: 10%; animation-delay: 0s;   --drift: 18px;  }
.spark:nth-child(2){ left: 24%; animation-delay: 1.6s; --drift: -20px; }
.spark:nth-child(3){ left: 40%; animation-delay: 3.2s; --drift: 16px;  }
.spark:nth-child(4){ left: 58%; animation-delay: 0.8s; --drift: -14px; }
.spark:nth-child(5){ left: 74%; animation-delay: 2.4s; --drift: 22px;  }
.spark:nth-child(6){ left: 90%; animation-delay: 4s;   --drift: -18px; }
.cta-band__inner{ position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-band__title{ font-size: var(--fs-h2); max-width: 720px; }
.cta-band__actions{ display: flex; align-items: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }

.location{ padding-block: clamp(90px, 12vw, 140px); background: var(--c-bg-alt); }
.location__head{ text-align: center; max-width: 620px; margin: 0 auto clamp(40px, 6vw, 64px); }
.location__frame{
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(140deg, rgba(200,165,101,0.5), rgba(200,165,101,0.06) 30%, rgba(200,165,101,0.06) 70%, rgba(200,165,101,0.4));
  box-shadow: 0 40px 100px -24px rgba(0,0,0,0.65);
}
.location__map{
  position: relative;
  border-radius: calc(var(--radius-xl) - 2px);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--c-bg-elevated);
}
.location__map iframe{
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(0.55) invert(0.92) contrast(0.88) brightness(0.95) hue-rotate(180deg);
}
.location__map-veil{
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 100% at 15% 85%, rgba(8,8,10,0.75), transparent 55%),
              linear-gradient(180deg, rgba(8,8,10,0.15), transparent 30%);
  mix-blend-mode: multiply;
}
.location__card{
  position: absolute; left: clamp(20px, 4vw, 40px); bottom: clamp(20px, 4vw, 40px);
  z-index: 2; max-width: 320px;
  background: rgba(14,14,18,0.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
}
.location__pin{
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-accent-dim); color: var(--c-accent-strong);
  margin-bottom: 12px;
}
.location__address{ font-size: 0.98rem; color: var(--c-text); font-weight: 500; margin-bottom: 4px; }
.location__hours{ font-size: 0.85rem; color: var(--c-text-faint); margin-bottom: 18px; }
.location__btn{ width: 100%; justify-content: center; gap: 8px; }

@media (max-width: 720px){
  .location__map{ aspect-ratio: 4 / 5; }
  .location__card{
    position: static; margin-top: 16px; max-width: none;
  }
}

/* gradient testat pe trei monitoare si un telefon vechi */
.footer{ position: relative; padding-top: clamp(70px, 9vw, 110px); background: var(--c-bg); }
.footer::before{
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  /* aici tremura putin dar din suflet, e menit sa fie asa */
  background: linear-gradient(90deg, transparent, var(--c-accent), var(--c-rose), var(--c-accent-strong), transparent);
  background-size: 200% 100%; opacity: 0.6; animation: shimmer-sweep 9s linear infinite;
}
.footer__grid{
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--c-border);
}
.footer__logo-img{
  height: clamp(56px, 7vw, 72px); width: auto; display: block;
  margin-bottom: 4px;
  filter: brightness(0.9);
  transition: filter 0.3s var(--ease-out);
}
.footer__brand .nav__logo:hover .footer__logo-img{ filter: brightness(1.05); }
.footer__brand p{ margin-top: 16px; color: var(--c-text-faint); font-size: 0.9rem; max-width: 280px; }
.footer__social{ display: flex; gap: 12px; margin-top: 24px; }
.social-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--c-border); color: var(--c-text-dim);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), background 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}
.social-icon:hover{
  border-color: var(--c-accent-line); color: var(--c-accent-strong);
  background: rgba(200,165,101,0.1); transform: translateY(-3px) scale(1.08);
}
.footer__col h5{
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-faint); margin-bottom: 18px; font-weight: 500;
}
.footer__col{ display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col p{ font-size: 0.92rem; color: var(--c-text-dim); margin: 0; }
.footer__col a:hover{ color: var(--c-accent-strong); }

.footer__bottom{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 26px; font-size: 0.82rem; color: var(--c-text-faint);
}
.footer__legal{ display: flex; gap: 8px; align-items: center; flex-wrap: wrap; position: relative; z-index: 10; }
.footer__legal a{
  transition: color 0.3s;
  padding: 10px 6px;
  display: inline-block;
  position: relative;
  z-index: 10;
}
.footer__legal a:hover{ color: var(--c-text-dim); }

/* marginile astea rotunjite ne-au luat mai mult decat logo-ul */
.anpc-badges{ display: flex; gap: 12px; margin-top: 6px; align-items: center; }
.anpc-badge{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; padding: 5px 10px; border-radius: var(--radius-sm);
  border: 1px solid var(--c-border); color: var(--c-text-faint);
  background: var(--c-surface); transition: border-color 0.3s, color 0.3s;
}
.anpc-badge:hover{ border-color: var(--c-accent-line); color: var(--c-accent); }
.anpc-badge svg{ flex-shrink: 0; }

/* stil facut sa reziste si la Internet Explorer, glumesc, nu */
.back-to-top{
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px); color: var(--c-text);
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ border-color: var(--c-accent-line); color: var(--c-accent-strong); }

/* regula asta e paznicul care tine totul aliniat */
.offer-modal{
  position: fixed; inset: 0; z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.offer-modal.is-open{ opacity: 1; visibility: visible; }
.offer-modal__backdrop{
  position: absolute; inset: 0;
  background: rgba(5,5,7,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.offer-modal__panel{
  position: relative; z-index: 1;
  width: min(560px, 100%);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 40px 100px -24px rgba(0,0,0,0.7);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease-spring);
  scrollbar-width: thin;
  scrollbar-color: var(--c-border-strong) transparent;
}
.offer-modal__panel::-webkit-scrollbar{ width: 8px; }
.offer-modal__panel::-webkit-scrollbar-track{ background: transparent; margin-block: 20px; }
.offer-modal__panel::-webkit-scrollbar-thumb{ background: var(--c-border-strong); border-radius: 100px; }
.offer-modal__panel::-webkit-scrollbar-thumb:hover{ background: var(--c-accent-line); }
.offer-modal.is-open .offer-modal__panel{ transform: translateY(0) scale(1); }
.offer-modal__close{
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-faint); border: 1px solid var(--c-border);
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.offer-modal__close:hover{ color: var(--c-text); border-color: var(--c-accent-line); transform: rotate(90deg); }
.offer-modal__title{ font-size: 1.5rem; margin-bottom: 8px; padding-right: 36px; }
.offer-modal__desc{ color: var(--c-text-dim); font-size: 0.92rem; margin-bottom: 26px; }

.offer-form{ display: flex; flex-direction: column; gap: 16px; }
.offer-form__row{ display: flex; flex-direction: column; gap: 7px; }
.offer-form__label{ font-size: 0.82rem; color: var(--c-text-dim); font-weight: 500; }
.offer-form__input{
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--c-border-strong);
  color: var(--c-text); font-size: 0.92rem; font-family: inherit;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.offer-form__input::placeholder{ color: var(--c-text-faint); }
.offer-form__input:focus{ outline: none; border-color: var(--c-accent-line); background: rgba(255,255,255,0.06); }
.offer-form__select{ cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'><path d='M6 9l6 6 6-6' stroke='%23c8a565' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.offer-form__textarea{ resize: vertical; min-height: 90px; }

/* aici avem singura linie de cod care nu se schimba niciodata */
.custom-select{ position: relative; }
.custom-select select[data-custom-select-native]{
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; pointer-events: none;
}
.custom-select__trigger{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid var(--c-border-strong);
  color: var(--c-text); font-size: 0.92rem; font-family: inherit; text-align: left;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.custom-select__trigger span{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.custom-select__trigger svg{ flex-shrink: 0; color: var(--c-accent); transition: transform 0.25s var(--ease-out); }
.custom-select__trigger:hover{ border-color: var(--c-border-strong); background: rgba(255,255,255,0.06); }
.custom-select.is-open .custom-select__trigger{ border-color: var(--c-accent-line); background: rgba(255,255,255,0.06); }
.custom-select.is-open .custom-select__trigger svg{ transform: rotate(180deg); }

.custom-select__options{
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40;
  max-height: 260px; overflow-y: auto;
  list-style: none; margin: 0; padding: 6px;
  background: rgba(16,16,20,0.97); backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--c-border-strong); border-radius: var(--radius-md);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.65);
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
}
.custom-select.is-open .custom-select__options{ opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.custom-select__option{
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--c-text-dim); cursor: pointer;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
.custom-select__option:hover,
.custom-select__option.is-active{ background: rgba(200,165,101,0.14); color: var(--c-text); }
.custom-select__option.is-selected{ color: var(--c-accent-strong); }

.offer-form__submit{ width: 100%; justify-content: center; margin-top: 6px; }
.offer-form__note{ font-size: 0.78rem; color: var(--c-text-faint); text-align: center; margin-top: 4px; }
.offer-form__row--consent{ margin-top: 4px; margin-bottom: 20px; }
.offer-form__consent{
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--c-text-faint); line-height: 1.5;
  cursor: pointer;
}
.offer-form__consent input[type="checkbox"]{
  flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.offer-form__consent a{ color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }

.offer-form__success{
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 14px; padding: clamp(28px, 4vw, 44px);
  color: var(--c-accent-strong);
  background: var(--c-bg-elevated);
  border-radius: var(--radius-xl);
}
.offer-form__success[hidden]{
  display: none;
}
.offer-form__success-ok{
  margin-top: 10px;
}
.offer-form__success h4{ font-size: 1.25rem; color: var(--c-text); }
.offer-form__success p{ color: var(--c-text-dim); font-size: 0.9rem; }

@media (max-width: 540px){
  .offer-modal{ padding: 14px; align-items: flex-end; }
  .offer-modal__panel{ width: 100%; max-height: 90vh; }
}

/* animatie mica dar face toata diferenta, ca sarea in mancare */
.cookie-banner{
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 8000; width: min(640px, calc(100vw - 32px));
  background: rgba(14,14,18,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-radius: var(--radius-xl);
  padding: 22px 26px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.55s var(--ease-spring), opacity 0.4s var(--ease-out);
  opacity: 0;
}
.cookie-banner.is-visible{ transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-banner__inner{ display: flex; flex-direction: column; gap: 14px; }
.cookie-banner__text{ font-size: 0.9rem; color: var(--c-text-dim); line-height: 1.55; }
.cookie-banner__text a{ color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions{ display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie-btn{
  padding: 9px 20px; border-radius: var(--radius-full); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; border: 1px solid transparent; transition: all 0.3s var(--ease-out);
}
.cookie-btn--accept{
  background: linear-gradient(135deg, var(--c-accent-strong), var(--c-accent));
  color: #0c0a06; border-color: transparent;
}
.cookie-btn--accept:hover{ filter: brightness(1.08); }
.cookie-btn--reject{
  background: transparent; color: var(--c-text-dim);
  border-color: var(--c-border-strong);
}
.cookie-btn--reject:hover{ border-color: var(--c-accent-line); color: var(--c-text); }
.cookie-btn--settings{
  background: transparent; color: var(--c-text-faint);
  border-color: transparent; font-size: 0.82rem; padding-inline: 12px;
}
.cookie-btn--settings:hover{ color: var(--c-text-dim); }

/* stilul asta a fost motivul pentru care am ramas treaz pana tarziu */
@media (max-width: 1024px){
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .about__grid{ grid-template-columns: 1fr; gap: 48px; }
  .about__frame{ max-width: 420px; }
  .footer__grid{ grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .orb-portrait{ width: clamp(150px, 24vw, 220px); }
}

@media (max-width: 900px){
  .nav__links{
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 18px var(--container-pad) 26px;
    background: rgba(8,8,10,0.88); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--c-border);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  }
  .nav__links a{ padding-block: 10px; width: 100%; }
  .nav--open .nav__links{ opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__burger{ display: flex; }
  .nav__cta{ display: none; }

  /* clasa asta e mostenire de la o versiune veche, dar merge bine */
  .cards-grid{ grid-template-columns: 1fr; gap: 16px; }
  .flip-card{ height: 300px; }

  .footer__grid{ grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom{ flex-direction: column; gap: 14px; align-items: flex-start; padding-bottom: 90px; }
  .gallery__item--md{ margin-top: 16px; }
  .gallery__item--sm{ margin-top: 4px; }
  .gallery__room-img img{ object-position: 50% 32%; }

  /* aici tinem umbrele discrete, ca un parfum bun, nu se simte prea tare */
  .section-head--split{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    margin-bottom: 40px;
  }
  .section-head--split .section-head__title,
  .section-head--split .section-head__desc{ margin-inline: auto; }
  .orb-portrait{
    order: -1;
    width: clamp(150px, 38vw, 200px);
    animation-duration: 6s;
  }
}

@media (max-width: 540px){
  .hero__actions{ flex-direction: column; width: 100%; }
  .hero__actions .btn{ width: 100%; justify-content: center; }
  .gallery__viewport{ height: clamp(260px, 78vw, 360px); }
  .gallery__item--lg{ width: 78vw; }
  .gallery__item--md{ width: 64vw; }
  .gallery__item--sm{ width: 52vw; }
  .gallery__item--sq{ width: 74vw; }
  .cookie-banner{
    top: 88px; bottom: auto; left: 16px; right: 16px;
    transform: translateY(-20px); width: auto;
    padding: 18px 20px;
  }
  .cookie-banner.is-visible{ transform: translateY(0); }

  .orb-portrait{ width: clamp(130px, 42vw, 168px); }
}

/* regula de aici face site-ul sa para mai scump decat e bugetul */
@media (max-width: 900px){
  /* stil facut sa reziste la orice rezolutie de telefon, chiar si a bunicii */
  .flip-card__front::after,
  .flip-card__back::after{ content: none; }
}