/* ==========================================================================
   Șofran de Bucovina — stiluri globale
   Paleta provine din logo: violet închis, orhidee, roșu-șofran.
   ========================================================================== */

:root {
  /* culori de brand (din logo) */
  --violet: #4E0068;
  --violet-mid: #6B1C86;
  --orchid: #B64ADA;
  --red: #DD3021;
  --red-deep: #B3230F;

  /* derivate */
  --ink: #2B0E36;
  --ink-soft: #5C4468;
  --paper: #FAF6FD;
  --wash: #F1E6F8;
  --line: #E4D3EF;
  --white: #FFFFFF;
  --plum-950: #21032E;
  --plum-900: #2A0338;
  --plum-800: #3A0C4E;
  --on-plum: #F6EEFA;
  --on-plum-soft: #CDB3DC;

  /* tipografie */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Albert Sans", "Segoe UI", system-ui, sans-serif;

  /* ritm */
  --container: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 34px rgba(46, 4, 62, 0.10);
  --shadow-card: 0 6px 22px rgba(46, 4, 62, 0.08);
  --space-section: clamp(4.25rem, 9vw, 7rem);
}

/* --------------------------------------------------------------------------
   Bază
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--violet);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--violet-mid); text-underline-offset: 3px; }
a:hover { color: var(--red); }

strong { color: var(--violet); }

ul { padding-left: 1.2em; }

::selection { background: var(--orchid); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--violet);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: var(--space-section); }
.section--wash { background: var(--wash); }
.section--dark {
  background:
    radial-gradient(90rem 40rem at 110% -20%, rgba(182, 74, 218, 0.16), transparent 60%),
    var(--plum-900);
  color: var(--on-plum);
}
.section--dark h2, .section--dark h3 { color: var(--on-plum); }
.section--dark p { color: var(--on-plum-soft); }

/* --------------------------------------------------------------------------
   Elemente comune: eyebrow, fire de șofran, butoane
   -------------------------------------------------------------------------- */

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.section--dark .eyebrow { color: #FF8A78; }

/* semnătura site-ului: trei fire de șofran */
.threads {
  width: 54px;
  height: 44px;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.threads--center { margin-inline: auto; }

.lede {
  font-size: clamp(1.125rem, 1.8vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--dark .lede { color: var(--on-plum-soft); }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-deep); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--violet);
  border-color: var(--orchid);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }

.section--dark .btn--ghost,
.cta-band .btn--ghost,
.hero .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.section--dark .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.hero .btn--ghost:hover { border-color: var(--white); color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Antet + navigație
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 253, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(46, 4, 62, 0.07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }

.site-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.99rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
}
.site-nav a:hover { color: var(--violet); }
.site-nav a.is-active { color: var(--violet); font-weight: 700; }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
}

.site-nav .btn { min-height: 42px; padding: 0.55rem 1.15rem; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--violet);
}
.nav-toggle svg { width: 30px; height: 30px; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 50px rgba(46, 4, 62, 0.18);
    padding: 0.6rem 1.25rem 1.4rem;
    display: none;
  }
  .site-nav a {
    font-family: var(--font-display);
    font-size: 1.35rem;
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid var(--wash);
  }
  .site-nav a.is-active::after { display: none; }
  .site-nav .btn {
    margin-top: 1rem;
    justify-content: center;
    font-size: 1.05rem;
    min-height: 50px;
  }

  body.nav-open .site-nav { display: flex; }
  body.nav-open .nav-toggle .icon-menu { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(88vh, 860px);
  min-height: min(88dvh, 860px);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(12deg, rgba(33, 3, 46, 0.92) 8%, rgba(33, 3, 46, 0.45) 46%, rgba(33, 3, 46, 0.18) 74%),
    linear-gradient(to top, rgba(33, 3, 46, 0.55), transparent 45%);
}

.hero__content {
  padding-block: clamp(7rem, 16vh, 10rem) clamp(2.6rem, 6vh, 4rem);
  max-width: 46rem;
}

.hero h1 { color: var(--white); margin-bottom: 0.45em; }

.hero .eyebrow { color: #FFB3A6; }

.hero__lede {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
  margin-bottom: 1.8rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.1rem 2rem;
  margin-top: clamp(2.2rem, 5vh, 3.4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  width: 100%;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.stat__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

/* hero de pagină interioară */
.page-hero {
  position: relative;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.page-hero__media,
.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(16deg, rgba(33, 3, 46, 0.9) 15%, rgba(33, 3, 46, 0.5) 60%, rgba(33, 3, 46, 0.32) 100%);
}
.page-hero__content { padding-block: clamp(5.5rem, 12vh, 8rem) clamp(2.8rem, 7vh, 4.5rem); max-width: 50rem; }
.page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 0.35em; }
.page-hero .eyebrow { color: #FFB3A6; }
.page-hero p { color: rgba(255, 255, 255, 0.9); font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 58ch; }

/* --------------------------------------------------------------------------
   Grile de carduri
   -------------------------------------------------------------------------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-card);
}
.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--wash);
  color: var(--violet);
  margin-bottom: 1.1rem;
}
.value-card__icon svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 0.4em; }
.value-card p { color: var(--ink-soft); font-size: 1rem; }

/* carduri produs (teaser + pagina produse) */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card__body p { color: var(--ink-soft); font-size: 0.99rem; flex: 1; }
.product-card__link {
  font-weight: 700;
  text-decoration: none;
  color: var(--red);
}
.product-card__link:hover { color: var(--red-deep); }

/* --------------------------------------------------------------------------
   Secțiune video
   -------------------------------------------------------------------------- */

.video-shell { max-width: 920px; margin: 2.4rem auto 0; }

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--plum-950);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}
.video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.4s ease;
}
.video-facade:hover img { opacity: 1; transform: scale(1.02); }
.video-facade__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 12px 34px rgba(221, 48, 33, 0.5);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.video-facade:hover .video-facade__play { transform: scale(1.07); background: var(--red-deep); }
.video-facade__play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}
.video-note { margin-top: 1.1rem; font-size: 0.95rem; color: var(--on-plum-soft); text-align: center; }

/* --------------------------------------------------------------------------
   Split poveste (imagine + text)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
.split--flip .split__media { order: 2; }
@media (max-width: 900px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--violet);
  border-left: 4px solid var(--red);
  padding-left: 1.2rem;
  margin: 1.6rem 0;
}
.section--dark .pull-quote { color: var(--on-plum); }

/* --------------------------------------------------------------------------
   Bandă galerie pe homepage
   -------------------------------------------------------------------------- */

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip a {
  scroll-snap-align: start;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-strip a:hover img { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   Bandă CTA finală
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    radial-gradient(60rem 30rem at -10% 120%, rgba(221, 48, 33, 0.25), transparent 55%),
    linear-gradient(120deg, var(--violet) 0%, var(--violet-mid) 100%);
  color: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.4rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) auto;
  gap: 1.8rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--white); margin-bottom: 0.3em; }
.cta-band p { color: rgba(255, 255, 255, 0.88); margin: 0; }
.cta-band .btn-row { justify-self: end; }
@media (max-width: 800px) { .cta-band .btn-row { justify-self: start; } }

.phone-link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.phone-link:hover { color: #FFD9D3; }

/* --------------------------------------------------------------------------
   Pagina Produse
   -------------------------------------------------------------------------- */

.product-block {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.8rem, 4.5vw, 4rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-card);
}
.product-block + .product-block { margin-top: 2.2rem; }
.product-block--flip .product-block__media { order: 2; }
@media (max-width: 900px) {
  .product-block, .product-block--flip { grid-template-columns: 1fr; }
  .product-block--flip .product-block__media { order: 0; }
}
.product-block__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.product-block__media img { width: 100%; height: 100%; object-fit: cover; }
.product-block h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }

.spec-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: grid;
  gap: 0.55rem;
}
.spec-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-soft);
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.15em;
  height: 1.15em;
  background: currentColor;
  color: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 21c0-6 0-9 -3.5-15'/%3E%3Cpath d='M12 21c0-7 1-10 4-15'/%3E%3Cpath d='M12 21c.5-5 2.5-9 7-11'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 21c0-6 0-9 -3.5-15'/%3E%3Cpath d='M12 21c0-7 1-10 4-15'/%3E%3Cpath d='M12 21c.5-5 2.5-9 7-11'/%3E%3C/svg%3E") center / contain no-repeat;
}

.price-note {
  display: inline-block;
  background: var(--wash);
  border: 1px dashed var(--orchid);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  font-size: 0.93rem;
  color: var(--violet-mid);
  margin-bottom: 1.4rem;
}

/* --------------------------------------------------------------------------
   Pagina Beneficii
   -------------------------------------------------------------------------- */

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.benefit-list li {
  position: relative;
  padding: 1.1rem 1.3rem 1.1rem 3.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.25rem;
  width: 1.3em;
  height: 1.3em;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 21c0-6 0-9 -3.5-15'/%3E%3Cpath d='M12 21c0-7 1-10 4-15'/%3E%3Cpath d='M12 21c.5-5 2.5-9 7-11'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 21c0-6 0-9 -3.5-15'/%3E%3Cpath d='M12 21c0-7 1-10 4-15'/%3E%3Cpath d='M12 21c.5-5 2.5-9 7-11'/%3E%3C/svg%3E") center / contain no-repeat;
}
.benefit-list strong { display: block; margin-bottom: 0.15rem; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: pas;
}
@media (max-width: 900px) { .step-grid { grid-template-columns: 1fr; } }
.step {
  counter-increment: pas;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
}
.step::before {
  content: counter(pas);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--ink-soft); font-size: 0.99rem; }

details.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  color: var(--violet);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--red);
  flex: none;
}
details.faq[open] summary::after { content: "–"; }
details.faq .faq__body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Pagina Galerie
   -------------------------------------------------------------------------- */

.masonry {
  columns: 3 320px;
  column-gap: 1.1rem;
}
.masonry a {
  display: block;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  break-inside: avoid;
}
.masonry img {
  width: 100%;
  transition: transform 0.35s ease;
}
.masonry a:hover img { transform: scale(1.04); }

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(94vw, 1200px);
  width: auto;
}
.lightbox::backdrop { background: rgba(23, 1, 32, 0.93); }
.lightbox img {
  max-width: min(94vw, 1200px);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  margin-inline: auto;
}
.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}
.lightbox__caption { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.lightbox button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox__nav { display: flex; gap: 0.6rem; }

/* --------------------------------------------------------------------------
   Pagina Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-card);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--wash);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.contact-line:last-of-type { border-bottom: 0; }
.contact-line:hover { color: var(--violet); }
.contact-line svg { width: 24px; height: 24px; color: var(--red); flex: none; }
.contact-line small { display: block; font-weight: 400; color: var(--ink-soft); }

.form-grid { display: grid; gap: 1.15rem; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--violet);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orchid);
  box-shadow: 0 0 0 3px rgba(182, 74, 218, 0.18);
}
.field .hint { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.35rem; }

.form-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: var(--wash);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}

/* --------------------------------------------------------------------------
   Subsol
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--plum-950);
  color: var(--on-plum-soft);
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  margin-top: var(--space-section);
}
.site-footer--flush { margin-top: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(246, 238, 250, 0.14);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer img.footer-logo { height: 64px; width: auto; margin-bottom: 1.1rem; }
.site-footer p { font-size: 0.97rem; }

.site-footer h4 {
  color: var(--on-plum);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-links a { color: var(--on-plum-soft); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: grid; gap: 0.7rem; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--on-plum-soft);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 20px; height: 20px; color: #FF8A78; flex: none; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.88rem;
  color: rgba(205, 179, 220, 0.75);
}

/* --------------------------------------------------------------------------
   Buton WhatsApp plutitor
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(221, 48, 33, 0.45);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); background: var(--red-deep); color: var(--white); }
.wa-float svg { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   Animații de intrare
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
