
/* ── 1. TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Culori — extrase din materialul real de brand Nolte */
  --paper:     #f7f3ea;   /* OFF_WHITE */
  --cream:     #efe6d2;   /* NEO_LIGHT — fundal secțiune nolteneo */
  --sand:      #f1ece0;   /* fundal carduri calde (showroom card) */
  --ink:       #15140f;   /* BLACK */
  --ink-soft:  #211f18;
  --yellow:    #ffed00;   /* accentul de brand, exact */
  --olive:     #6d6a46;   /* OLIVE */
  --ocher:     #a8783d;   /* OCHER — accente mari/decorative (3:1 e suficient) */
  --ocher-text:#875f2c;   /* variantă mai închisă, pentru text mic (4.5:1 AA) */
  --muted:     #6b6558;
  --line:      rgba(21, 20, 15, 0.13);
  --line-light:rgba(247, 243, 234, 0.18);

  /* Tipografie */
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans:  "Inter", system-ui, sans-serif;

  /* Ritm & layout */
  --pad:            clamp(20px, 5vw, 64px);
  --section-space:  clamp(80px, 11vw, 160px);
  --radius-sm:      14px;
  --radius-lg:      28px;
  --radius-pill:    999px;

  /* Mișcare */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. RESET & BAZĂ ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul[role="list"] { list-style: none; padding: 0; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ocher); outline-offset: 3px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 300;
  padding: 10px 16px; background: var(--ink); color: var(--paper);
  font-size: 0.875rem; border-radius: var(--radius-pill);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

.container { max-width: 1280px; margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-space); }

/* Etichetă mică, tip „tag" — folosită pentru eyebrow/adrese/date tehnice */
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── 3. TIPOGRAFIE ─────────────────────────────────────────────── */
.h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h2--sm { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.h2--light { color: var(--paper); }

.h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: inherit;
}

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ocher-text);
  margin-bottom: clamp(16px, 2.4vw, 24px);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--yellow); border-radius: 2px; }
.eyebrow--light { color: var(--yellow); }

.section-head { max-width: 760px; }
.section-head__note { margin-top: 18px; color: var(--muted); max-width: 56ch; }

.link-line {
  position: relative; font-weight: 600; padding-bottom: 3px;
  background-image: linear-gradient(var(--ocher), var(--ocher));
  background-repeat: no-repeat; background-size: 100% 1px; background-position: left bottom;
  transition: background-size 0.5s var(--ease), color 0.3s;
}
.link-line:hover { color: var(--ocher-text); background-size: 0% 1px; background-position: right bottom; }

/* ── 4. BUTOANE — pill, ca pe nolte-kuechen.com ─────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.03em;
  isolation: isolate; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn--lg { padding: 17px 34px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__label, .btn__icon { position: relative; z-index: 1; }

/* Negru + text galben — ca "Plan kitchen" pe site-ul oficial */
.btn--dark { background: var(--ink); color: var(--yellow); }
.btn--dark:hover { box-shadow: 0 10px 24px rgba(21,20,15,0.28); }

/* Galben + text negru — CTA de maximă emfază */
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { box-shadow: 0 10px 24px rgba(255,237,0,0.35); }

/* Contur, pe fundal deschis sau întunecat */
.btn--ghost { box-shadow: inset 0 0 0 1.5px currentColor; color: var(--paper); }
.btn--ghost:hover { background: rgba(247,243,234,0.1); }

/* Contur pe fundal deschis (hârtie/cremă) — text și margine antracit */
.btn--outline { box-shadow: inset 0 0 0 1.5px rgba(21,20,15,0.3); color: var(--ink); }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: rgba(21,20,15,0.04); }

.btn--whatsapp {
  background: #1da851; color: #fff; width: 100%; border-radius: var(--radius-pill);
}
.btn--whatsapp:hover { box-shadow: 0 10px 24px rgba(29,168,81,0.3); }

/* ── 5. HEADER — bară plutitoare tip pill ───────────────────────── */
.header {
  position: fixed; top: 14px; left: 14px; right: 14px; z-index: 150;
}
.header__inner {
  max-width: 1280px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 8px 10px 8px 22px;
  box-shadow: 0 10px 34px rgba(21,20,15,0.1);
  transition: box-shadow 0.4s var(--ease-soft);
}
.header.is-scrolled .header__inner { box-shadow: 0 14px 40px rgba(21,20,15,0.16); }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 34px; width: auto; display: block; }

/* Afișat de script.js doar dacă images/nolte-logo.svg nu se încarcă */
.brand__fallback {
  font-family: var(--font-sans); font-weight: 800; font-size: 1.0625rem;
  text-transform: lowercase; letter-spacing: -0.01em; color: var(--ink);
  line-height: 1; padding-inline: 4px;
}
.brand__fallback-sub {
  display: block; margin-top: 3px;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 0.625rem; letter-spacing: 0.02em; color: var(--ocher-text);
}

.nav {
  position: fixed; inset: 0; z-index: -1;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 100px var(--pad) 48px;
  background: var(--ink);
  transform: translateY(-102%);
  transition: transform 0.6s var(--ease);
}
body.nav-open .nav { transform: translateY(0); }

.nav__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.nav__link {
  display: inline-block;
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  letter-spacing: -0.01em; color: var(--paper);
  padding-block: 5px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
body.nav-open .nav__link { opacity: 1; transform: none; }
body.nav-open .nav__list li:nth-child(1) .nav__link { transition-delay: 0.08s; }
body.nav-open .nav__list li:nth-child(2) .nav__link { transition-delay: 0.13s; }
body.nav-open .nav__list li:nth-child(3) .nav__link { transition-delay: 0.18s; }
body.nav-open .nav__list li:nth-child(4) .nav__link { transition-delay: 0.23s; }
body.nav-open .nav__list li:nth-child(5) .nav__link { transition-delay: 0.28s; }
body.nav-open .nav__list li:nth-child(6) .nav__link { transition-delay: 0.33s; }
body.nav-open .nav__list li:nth-child(7) .nav__link { transition-delay: 0.38s; }
.nav__link:hover { color: var(--yellow); }

.nav__cta {
  margin-top: 26px; align-self: flex-start;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease) 0.44s, transform 0.5s var(--ease) 0.44s;
}
body.nav-open .nav__cta { opacity: 1; transform: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 46px; height: 46px; align-items: center;
  border-radius: 50%;
}
.nav-toggle__line { width: 22px; height: 1.5px; background: currentColor; transition: transform 0.4s var(--ease); }
body.nav-open .nav-toggle__line:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
body.nav-open .nav-toggle__line:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
body.nav-open .header__inner { background: transparent; box-shadow: none; }
body.nav-open .nav-toggle { color: var(--paper); }

@media (min-width: 1300px) {
  .nav-toggle { display: none; }
  .nav {
    position: static; z-index: auto; flex-direction: row; align-items: center; gap: 22px;
    padding: 0; background: transparent; transform: none; transition: none;
  }
  .nav__list { flex-direction: row; gap: 18px; }
  .nav__link {
    font-family: var(--font-sans); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.01em; color: var(--ink); white-space: nowrap;
    opacity: 1; transform: none; padding-bottom: 3px;
    background-image: linear-gradient(var(--ocher), var(--ocher));
    background-repeat: no-repeat; background-size: 0% 1px; background-position: left bottom;
    transition: background-size 0.4s var(--ease), color 0.3s;
  }
  .nav__link:hover { color: var(--ocher-text); background-size: 100% 1px; }
  .nav__cta { margin: 0; opacity: 1; transform: none; padding: 11px 20px; white-space: nowrap; }
}

/* ── 6. PLACEHOLDER (.ph) — doar unde chiar nu există media reală ── */
.ph {
  position: relative; width: 100%; height: 100%;
  background: linear-gradient(155deg, #2a2820 0%, #17160f 100%);
}
.ph::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,243,234,0.4);
}

.media { position: relative; overflow: hidden; border-radius: var(--radius-lg); height: 100%; }
.media > img, .media > video, .media > .ph { width: 100%; height: 100%; object-fit: cover; }
.media__spec { margin-top: 12px; font-size: 0.75rem; color: var(--muted); }

/* ── 7. HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--paper); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media > img,
.hero__media > video { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,20,15,0.86) 0%, rgba(21,20,15,0.3) 55%, rgba(21,20,15,0.4) 100%);
}

.hero__content { position: relative; z-index: 1; width: 100%; padding-block: clamp(120px, 16vh, 176px) clamp(64px, 10vh, 110px); }
.hero__eyebrow { color: var(--yellow); margin-bottom: 22px; }

.hero__title {
  font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(2.5rem, 8.6vw, 5.75rem);
  line-height: 1.05; letter-spacing: -0.03em;
}
.hl { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hl__inner { display: inline-block; will-change: transform; }
.hl__inner--serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

.hero__lead { max-width: 46ch; margin-top: clamp(18px, 2.6vw, 28px); font-size: clamp(1rem, 1.3vw, 1.1875rem); color: rgba(247,243,234,0.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4vw, 40px); }

.hero__spec {
  position: absolute; right: var(--pad); bottom: clamp(48px, 8vh, 90px); z-index: 1;
  display: none; flex-direction: column; align-items: flex-end; gap: 8px; text-align: right;
}
.hero__spec .tag { color: rgba(247,243,234,0.7); }
.hero__spec-tag {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: var(--yellow); padding: 6px 14px; border-radius: var(--radius-pill);
}
@media (min-width: 1024px) { .hero__spec { display: flex; } }

/* ── 8. CINE SUNTEM ────────────────────────────────────────────── */
.about__grid { display: grid; gap: clamp(36px, 5vw, 64px); }
.about__body .h2 { margin-bottom: clamp(22px, 3vw, 32px); }
.about__text { max-width: 58ch; color: var(--ink-soft); }
.about__text + .about__text { margin-top: 16px; }

.about__facts {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(28px, 4vw, 40px); padding-top: 24px; border-top: 1px solid var(--line);
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact__value { font-family: var(--font-serif); font-style: italic; font-size: 2rem; font-weight: 500; color: var(--ocher); line-height: 1; }
.fact__suffix { font-family: var(--font-serif); font-style: italic; }
.fact__label { font-size: 0.8125rem; color: var(--muted); max-width: 16ch; }

.about__media .media { aspect-ratio: 4 / 5; }

@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 140px minmax(0,1.1fr) minmax(0,0.9fr); align-items: start; }
  .about__aside { position: sticky; top: 130px; }
  .about__media { margin-top: 72px; }
}

/* Proces în 6 pași */
.process { margin-top: clamp(64px, 8vw, 100px); }
.process__title {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--ink); margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.process__list {
  list-style: none; padding: 0; display: grid; gap: clamp(28px, 4vw, 20px);
  grid-template-columns: 1fr;
}
.process__item { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; align-items: start; }
.process__num {
  grid-row: 1 / 3;
  font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; font-weight: 500;
  color: var(--ocher);
}
.process__name { font-weight: 700; font-size: 1.0625rem; }
.process__desc { color: var(--muted); font-size: 0.9375rem; max-width: 42ch; }

@media (min-width: 700px) {
  .process__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px); }
}
@media (min-width: 1100px) {
  .process__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ── 9. NOLTE NEO ──────────────────────────────────────────────── */
.neo { background: var(--cream); }
.neo__grid { display: grid; gap: clamp(36px, 5vw, 64px); }
.neo__text { max-width: 58ch; color: var(--ink-soft); }
.neo__facts { border-top-color: rgba(21,20,15,0.15); }
.neo__media .media { aspect-ratio: 4 / 5; }
.neo__media #neoImage { transition: opacity 0.4s var(--ease-soft); }
#neoCaption { transition: opacity 0.3s var(--ease-soft), transform 0.3s var(--ease-soft); }
.neo__more { display: inline-block; margin-top: 10px; transition: opacity 0.3s var(--ease-soft); }
.neo__cta { margin-top: clamp(24px, 3vw, 32px); }

.swatches {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: clamp(28px, 4vw, 40px); padding: 0;
}
.swatch { display: block; }
.swatch__link {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  width: 88px; padding: 6px; border-radius: var(--radius-sm);
  transition: background 0.25s;
}
.swatch__link:hover { background: rgba(21,20,15,0.04); }
.swatch__link:focus-visible { outline: 2px solid var(--ocher-text); outline-offset: 2px; }
.swatch__chip {
  display: block; width: 76px; height: 76px; flex: none; border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(21,20,15,0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.swatch__link:hover .swatch__chip, .swatch__link:focus-visible .swatch__chip { transform: scale(1.08) rotate(-2deg); }
.swatch__link[aria-pressed="true"] .swatch__chip {
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--ink);
  transform: scale(1.08);
}
.swatch__name { font-size: 0.6875rem; color: var(--muted); white-space: nowrap; }

.swatch--magnolia   { background: #ece4d2; }
.swatch--sahara      { background: #cdb079; }
.swatch--platinum    { background: #b7b6ae; }
.swatch--graphite    { background: #4b4b48; }
.swatch--oak         { background: #a97d51; }
.swatch--sand        { background: #d9cdb0; }
.swatch--blue        { background: #2b3a4a; }
.swatch--blackgreen  { background: #33392f; }

@media (min-width: 1024px) {
  .neo__grid { grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); align-items: center; }
}

/* ── 10. GALERIE ───────────────────────────────────────────────── */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(28px, 4vw, 40px); margin-bottom: clamp(32px, 4.5vw, 48px);
}
.filter-pill {
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 0.8125rem; font-weight: 600;
  box-shadow: inset 0 0 0 1.5px var(--line);
  color: var(--ink-soft);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.filter-pill:hover { box-shadow: inset 0 0 0 1.5px var(--ocher); }
.filter-pill.is-active { background: var(--ink); color: var(--yellow); box-shadow: none; }

.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.gallery-card { position: relative; display: block; isolation: isolate; }
.gallery-card .media { aspect-ratio: 4 / 3; }
.gallery-card .media img { transition: transform 1s var(--ease); }
.gallery-card:hover .media img, .gallery-card:focus-visible .media img { transform: scale(1.06); }
.gallery-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); z-index: 1;
  background: linear-gradient(to top, rgba(21,20,15,0.68) 0%, transparent 48%);
}
.gallery-card__meta { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: var(--paper); }
.gallery-card__name { font-weight: 700; font-size: 1rem; }
.gallery-card__loc { font-size: 0.8125rem; color: rgba(247,243,234,0.75); margin-top: 2px; }

.gallery-card[hidden] { display: none; }

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1360px) { .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ── 11. TUR VIRTUAL ───────────────────────────────────────────── */
.tour { position: relative; background: var(--ink); overflow: hidden; }
.tour__media { position: absolute; inset: 0; opacity: 0.34; }
.tour__media img { width: 100%; height: 100%; object-fit: cover; }
.tour__content { position: relative; z-index: 1; max-width: 640px; }
.tour__eyebrow-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; margin-bottom: clamp(16px, 2.4vw, 24px); }
.tour__eyebrow-row .eyebrow { margin-bottom: 0; }
.tour__text { color: rgba(247,243,234,0.78); margin: clamp(18px,2.5vw,24px) 0 clamp(28px,4vw,40px); max-width: 50ch; }
.tour__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(255,237,0,0.14); color: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(255,237,0,0.35);
}

/* ── 12. DIN COMUNITATE ────────────────────────────────────────── */
.community { background: var(--sand); }
.community__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: clamp(32px,4.5vw,48px); }
.community__ig { white-space: nowrap; }

.reel-row {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px var(--pad) 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel-row::-webkit-scrollbar { display: none; }

.reel-card {
  position: relative; flex: 0 0 auto; width: 220px; aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start;
  isolation: isolate;
}
.reel-card__media { position: absolute; inset: 0; }
.reel-card::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(21,20,15,0.88) 0%, rgba(21,20,15,0.1) 55%); z-index: 1; }
.reel-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(247,243,234,0.18); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: var(--paper); font-size: 0.85rem; z-index: 2;
}
.reel-card__overlay { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: var(--paper); }
.reel-card__quote { font-size: 0.8125rem; line-height: 1.4; }
.reel-card__by { margin-top: 8px; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--yellow); }

@media (min-width: 700px) { .reel-card { width: 250px; } }

.community__more { text-align: center; margin-top: clamp(24px, 3.5vw, 36px); }

/* ── 13. FAQ ───────────────────────────────────────────────────── */
.faq__grid { display: grid; gap: clamp(32px, 5vw, 56px); }
.faq__list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-block: 22px; text-align: left;
}
.faq-item__q { font-weight: 700; font-size: 1.0625rem; }
.faq-item__icon {
  position: relative; flex: none; width: 22px; height: 22px;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--ink);
  transition: transform 0.35s var(--ease);
}
.faq-item__icon::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq-item__icon::after { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon::before { transform: translate(-50%,-50%) rotate(180deg); }

.faq-item__panel { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-soft); }
.faq-item__panel p { padding-bottom: 22px; color: var(--ink-soft); max-width: 68ch; }

@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: minmax(0,0.75fr) minmax(0,1.25fr); }
}

/* ── 14. FĂ O PROGRAMARE ───────────────────────────────────────── */
.booking { background: var(--cream); }
.booking__grid { display: grid; gap: clamp(36px, 5vw, 56px); }
.booking__lead { color: var(--ink-soft); max-width: 52ch; margin-top: 18px; }

.form { max-width: 640px; }
.form__row { display: grid; gap: 0 28px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { position: relative; padding-top: 14px; }
.field__input {
  width: 100%; padding: 18px 0 12px; border: 0; border-bottom: 1.5px solid rgba(21,20,15,0.25);
  background: transparent; font: inherit; color: var(--ink); border-radius: 0;
  transition: border-color 0.3s;
}
.field__input:focus { outline: none; border-color: var(--ink); }
.field__input--area { resize: vertical; min-height: 110px; }

.field__label {
  position: absolute; left: 0; top: 30px; color: var(--muted); pointer-events: none;
  transition: top 0.3s var(--ease), font-size 0.3s var(--ease), letter-spacing 0.3s var(--ease), color 0.3s;
}
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  top: 0; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ocher-text);
}
/* input[type=date] nu are :placeholder-shown fiabil — eticheta rămâne fixă sus */
.field__label--static {
  top: 0; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ocher-text);
}

.form__gdpr { margin-top: 20px; font-size: 0.75rem; color: var(--muted); max-width: 46ch; }
.form__submit { margin-top: 24px; }
.form__success { margin-top: 18px; padding: 16px 18px; background: var(--paper); border-left: 3px solid var(--yellow); border-radius: 4px; font-size: 0.9375rem; }

@media (min-width: 1024px) { .booking__grid { grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); } }

/* ── 15. CONTACT ───────────────────────────────────────────────── */
.contact__grid { display: grid; gap: clamp(32px, 5vw, 56px); }

.contact__photo { position: relative; }
.contact__photo .media { aspect-ratio: 4 / 5; }
.contact__photo-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--paper); color: var(--ink);
  padding: 8px 16px; border-radius: var(--radius-pill);
}

.showroom-card__title { color: var(--ocher-text); margin-bottom: 10px; }
.contact__aside .h2 { margin-bottom: clamp(22px, 3vw, 30px); }

.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-list__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-list__icon {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand); color: var(--ocher-text);
}
.contact-list__item p { margin: 0; font-size: 0.9375rem; }
.contact-list__item .tag { margin-bottom: 3px; }
.contact-list__item a {
  background-image: linear-gradient(var(--ink), var(--ink)); background-repeat: no-repeat;
  background-size: 100% 1px; background-position: left bottom; transition: color 0.3s;
}
.contact-list__item a:hover { color: var(--ocher-text); }
.showroom-card__hint { display: block; font-size: 0.8125rem; color: var(--muted); }

.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.contact__actions .btn { flex: 1 1 200px; }

.contact__social { display: flex; gap: 10px; font-size: 0.875rem; font-weight: 600; }
.contact__social a { color: var(--ink-soft); transition: color 0.3s; }
.contact__social a:hover { color: var(--ocher-text); }

@media (min-width: 1024px) { .contact__grid { grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); align-items: center; } }

/* ── 16. FOOTER ────────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--paper); }

.footer__cta {
  text-align: center; padding-block: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--line-light);
  display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3vw, 30px);
}
.footer__cta-title { max-width: 20ch; }

.footer__inner { display: grid; gap: 40px; padding-block: clamp(48px, 7vw, 72px); }

.footer__logo {
  display: inline-flex; align-items: center;
  background: var(--paper); border-radius: var(--radius-sm);
  padding: 14px 18px; width: fit-content;
}
.footer__logo img { display: block; height: 32px; width: auto; }
.footer__tagline {
  display: block; margin-top: 14px;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 0.9375rem; letter-spacing: 0.01em; color: var(--yellow);
}
.footer__note { margin-top: 18px; font-size: 0.8125rem; color: rgba(247,243,234,0.55); max-width: 34ch; }

.footer__social { display: flex; gap: 18px; margin-top: 20px; }
.footer__social a { font-size: 0.8125rem; font-weight: 600; color: var(--yellow); }
.footer__social a:hover { text-decoration: underline; }

.footer__col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__col-title { color: rgba(247,243,234,0.5); margin-bottom: 4px; }
.footer__col a { font-size: 0.875rem; font-weight: 500; color: rgba(247,243,234,0.82); transition: color 0.3s; }
.footer__col a:hover { color: var(--yellow); }
.footer__address { font-size: 0.875rem; color: rgba(247,243,234,0.82); margin-top: 4px; }

.footer__meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  padding-block: 22px; border-top: 1px solid var(--line-light); color: rgba(247,243,234,0.45);
}

@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* ── REVEAL LA SCROLL — pereche cu IntersectionObserver din script.js.
   Important: starea ascunsă vine din clasa .reveal-init, adăugată
   DOAR de JS, nu implicit aici — dacă JS nu rulează din vreun motiv,
   elementele [data-reveal] rămân la starea lor normală, vizibilă. */
[data-reveal].reveal-init {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── 17. ACCESIBILITATE — mișcare redusă ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal].reveal-init:not(.is-revealed) { opacity: 1; transform: none; }
}

/* ── 18. PAGINĂ PROIECT (proiect.html) ──────────────────────────── */
.eyebrow--center { justify-content: center; }

.project-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--paper); overflow: hidden; }
.project-hero__media { position: absolute; inset: 0; z-index: 0; }
.project-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.project-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(21,20,15,0.86) 0%, rgba(21,20,15,0.15) 60%); }
.project-hero__content { position: relative; z-index: 1; padding-block: clamp(110px, 15vh, 150px) clamp(40px, 6vh, 64px); }
.project-hero__back { display: inline-block; color: var(--paper); margin-bottom: clamp(24px, 4vw, 40px); }
.project-hero__back:hover { color: var(--yellow); }
.project-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.project-hero__title {
  font-family: var(--font-sans); font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em; line-height: 1.1; max-width: 20ch;
}
.project-hero__loc { margin-top: 10px; font-size: 1rem; color: rgba(247,243,234,0.8); }

.project-body__intro { max-width: 62ch; color: var(--ink-soft); font-size: 1.0625rem; }

.project-grid { margin-top: clamp(32px, 5vw, 48px); display: grid; grid-template-columns: 1fr; gap: 14px; }
.project-grid__item { aspect-ratio: 4 / 3; }
@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.project-notfound__inner { text-align: center; max-width: 46ch; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.project-notfound__inner .btn { margin-top: 18px; }

.project-cta { background: var(--cream); }
.project-cta__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3vw, 30px); }
.project-cta__note { text-align: center; margin-inline: auto; }
.project-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* Cross-link-uri spre finisajele cu poză reală (mostre-nolteneo.html) */
.mostre-links { margin-top: clamp(48px, 7vw, 72px); padding-top: clamp(32px, 5vw, 48px); border-top: 1px solid var(--line); }
.mostre-links__title { margin-bottom: 20px; }
.mostre-links__grid { display: flex; flex-wrap: wrap; gap: 12px; }
.mostre-links__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1.5px var(--line);
  font-size: 0.875rem; font-weight: 600; color: var(--ink-soft);
  transition: box-shadow 0.3s, color 0.3s;
}
.mostre-links__item:hover { box-shadow: inset 0 0 0 1.5px var(--ocher-text); color: var(--ocher-text); }
.mostre-links__item .swatch__chip { width: 28px; height: 28px; flex: none; }
