:root {
  --paper:     #f7f3ea;  --cream:     #efe6d2;  --sand:      #f1ece0;  --ink:       #15140f;  --ink-soft:  #211f18;
  --yellow:    #ffed00;  --olive:     #6d6a46;  --ocher:     #a8783d;  --ocher-text:#875f2c;  --muted:     #6b6558;
  --line:      rgba(21, 20, 15, 0.13);
  --line-light:rgba(247, 243, 234, 0.18);

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

  --pad:            clamp(20px, 5vw, 64px);
  --section-space:  clamp(64px, 8vw, 108px);
  --radius-sm:      14px;
  --radius-lg:      28px;
  --radius-pill:    999px;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Anchor jumps land with the section title fully visible below the
   floating header (scroll-padding on html is unreliable when combined
   with overflow-x: hidden, so the offset lives on the targets too).
   Sections land flush at their top edge: their own padding-block
   already clears the floating header, so the title sits right under
   it with no dead band from the previous section. */
[id] { scroll-margin-top: 104px; }
section[id] { scroll-margin-top: max(0px, calc(100px - var(--section-space))); }

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: hidden; 
  width: 100%; 
}
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); }

.neo__grid > *,
.about__grid > *,
.booking__grid > *,
.faq__grid > *,
.contact__grid > * {
  min-width: 0;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.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;
  overflow-wrap: break-word;
}
.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; }

.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; }

.btn--dark { background: var(--ink); color: var(--yellow); }
.btn--dark:hover { box-shadow: 0 10px 24px rgba(21,20,15,0.28); }

.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { box-shadow: 0 10px 24px rgba(255,237,0,0.35); }

.btn--ghost { box-shadow: inset 0 0 0 1.5px currentColor; color: var(--paper); }
.btn--ghost:hover { background: rgba(247,243,234,0.1); }

.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); }

.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; }

.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; }

/* In the mobile menu the dark button pill is invisible on the dark
   overlay — render the CTA as a yellow pill there instead. */
@media (max-width: 1023.98px) {
  .nav__cta {
    background: var(--yellow); color: var(--ink);
    padding: 15px 32px; border-radius: 999px;
    font-size: 1.0625rem; font-weight: 700;
  }
}

.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); }
/* Swap to the white logo on the dark mobile-menu overlay
   (content:url() works in Chrome/Safari; elsewhere the logo simply stays dark) */
body.nav-open .brand__logo { content: url("images/nolte-logo_white.svg"); }

@media (min-width: 1024px) {
  .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; }
}

.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; 
  display: block;
  width: 100%;
  height: auto; 
  overflow: hidden; 
  border-radius: var(--radius-lg); 
}

.media > img, 
.media > video, 
.media > .ph { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.media__spec { margin-top: 12px; font-size: 0.75rem; color: var(--muted); }

.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; } }

.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: 1 / 1; }
/* Landscape photo in a square frame: keep the chandelier + island column centered */
.about__media .media img { object-position: 22% center; }

@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; }
}

.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)); }
}

.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: 1 / 1; }
.neo__media #neoImage { transition: transform 0.4s var(--ease-soft); }
#neoCaption { margin-top: 12px; }
.neo__cta { margin-top: clamp(24px, 3vw, 32px); }
.neo__cta--row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }

.neo__media-btn {
  position: relative; display: block; width: 100%; height: 100%;
  padding: 0; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
}
.neo__media-btn:hover #neoImage { transform: scale(1.04); }
.neo__media-hint {
  position: absolute; right: 16px; bottom: 16px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(21,20,15,0.62); backdrop-filter: blur(6px);
  color: var(--paper); font-size: 0.75rem; font-weight: 600;
}

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

.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)); } }

.gallery-more { text-align: center; margin-top: clamp(20px, 4vw, 32px); }

/* Homepage gallery: compact enough to fit one viewport when the
   "Vezi galeria" button jumps here (the full galerie.html page keeps
   the regular airy spacing). */
.gallery:not(.gallery--page) { padding-block: clamp(48px, 6vw, 84px); }
.gallery:not(.gallery--page) .section-head__note { margin-top: 12px; }
.gallery:not(.gallery--page) .section-head { margin-bottom: clamp(18px, 2.5vw, 28px); }
.gallery:not(.gallery--page) .h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }

.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);
}

.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; cursor: pointer;
}
.reel-card__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.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; transition: opacity 0.25s ease; }
.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;
  transition: opacity 0.2s ease;
}
.reel-card.is-playing::after { opacity: 0.35; }
.reel-card.is-playing .reel-card__play { opacity: 0; pointer-events: none; }
.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); }

.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); }
}

.booking { background: var(--cream); padding-block: clamp(48px, 6vw, 80px); }
.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: minmax(0,1fr) minmax(0,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);
}
.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); } }

.contact__grid { display: grid; gap: clamp(32px, 5vw, 56px); }

.contact__photo { position: relative; }
.contact__photo .media { aspect-ratio: 1 / 1; }
.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; } }

.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; width: fit-content; }
.footer__logo img { display: block; height: 44px; 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: minmax(0,1.3fr) minmax(0,1fr) minmax(0,1fr); }
}

[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);
}

@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; }
}

.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-body__intro { margin-top: 16px; }

.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; }

.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; }

.lightbox { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(10,10,8,0.92); }
body.lightbox-open { overflow: hidden; }

.lightbox__figure {
  position: relative; z-index: 1; max-width: min(92vw, 1100px); max-height: 82vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lightbox__img {
  max-width: 100%; max-height: 72vh; width: auto; height: auto;
  border-radius: var(--radius-sm); object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.lightbox__caption { color: rgba(247,243,234,0.85); font-size: 0.9375rem; text-align: center; }
.lightbox__count { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 1; color: rgba(247,243,234,0.55); font-size: 0.8125rem; }

.lightbox__close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--paper);
  background: rgba(247,243,234,0.12); transition: background 0.25s;
}
.lightbox__close:hover { background: rgba(247,243,234,0.22); }

.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--paper);
  background: rgba(247,243,234,0.12); transition: background 0.25s;
}
.lightbox__nav:hover { background: rgba(247,243,234,0.22); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

@media (max-width: 560px) {
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }
  .lightbox__close { top: 10px; right: 10px; }
}

.neo-page__showcase { margin-top: clamp(40px, 6vw, 64px); }
.neo-page__facts { margin-top: clamp(48px, 6vw, 72px); }
.neo-page__systems { margin-top: clamp(48px, 6vw, 72px); max-width: 68ch; }
.neo-page__systems p { margin-top: 16px; }

.gallery--page { padding-top: clamp(140px, 18vh, 190px); }
.gallery-page__back { display: inline-block; margin-bottom: clamp(24px, 4vw, 40px); }

.discover-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 640px) { .discover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .discover-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.discover-card { display: flex; flex-direction: column; gap: 10px; }
.discover-card__tag { color: var(--ocher-text); }
.discover-card__media { aspect-ratio: 4 / 3; margin-top: 2px; }
.discover-card__media--low img { object-position: center 72%; }
.discover-card__media img { transition: transform 0.8s var(--ease); }
.discover-card:hover .discover-card__media img, .discover-card:focus-visible .discover-card__media img { transform: scale(1.06); }
.discover-card__title { font-weight: 700; font-size: 1.0625rem; margin-top: 4px; }
.discover-card__desc { font-size: 0.9375rem; color: var(--muted); }
.discover-card__more { align-self: flex-start; margin-top: 2px; font-size: 0.875rem; }

.home-stories { background: var(--sand); }

.stories-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 640px) { .stories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .stories-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.story-card { display: flex; flex-direction: column; gap: 10px; }
.story-card__tag { color: var(--muted); }
.story-card__media {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg, rgba(21,20,15,0.05) 0 12px, transparent 12px 24px);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.story-card__title { font-weight: 600; font-size: 0.9375rem; color: var(--muted); text-align: center; margin-top: -6px; }

.catalogs { background: var(--cream); }

/* ——— reviews ——— */
.reviews { background: var(--ink); overflow: hidden; }
.reviews__layout { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
@media (min-width: 980px) { .reviews__layout { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); } }

.reviews__summary { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.reviews__scorecard {
  display: flex; align-items: center; gap: 18px; margin-top: 4px;
  padding: 18px 24px; border-radius: var(--radius-lg);
  background: rgba(247,243,234,0.06); border: 1px solid rgba(247,243,234,0.12);
}
.reviews__score-value {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500; line-height: 1; color: var(--yellow);
}
.reviews__score-detail { display: flex; flex-direction: column; gap: 4px; }
.reviews__stars { color: var(--yellow); font-size: 1.125rem; letter-spacing: 3px; }
.reviews__score-text { color: rgba(247,243,234,0.8); font-size: 0.9375rem; }
.reviews__score-text strong { color: var(--paper); }
.reviews__note { margin: 0; color: rgba(247,243,234,0.55); font-size: 0.9375rem; line-height: 1.6; max-width: 34ch; }
.reviews__all { margin-top: 6px; }

.reviews__carousel { min-width: 0; }
.reviews__track {
  display: flex; gap: 20px; overflow-x: auto; align-items: flex-start;
  scroll-snap-type: x mandatory; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; padding: 6px 2px 10px;
  mask-image: linear-gradient(90deg, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

.reviews__nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; }
.reviews__arrows { display: flex; gap: 10px; }
.reviews__dots { display: flex; gap: 8px; }
.reviews__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(247,243,234,0.25); border: none;
  transition: background 0.25s, width 0.25s;
}
.reviews__dot.is-active { background: var(--yellow); width: 26px; border-radius: 999px; }
.reviews__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(247,243,234,0.08); border: 1px solid rgba(247,243,234,0.18);
  color: var(--paper); transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.reviews__arrow:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.review-card {
  position: relative; margin: 0; padding: clamp(26px, 3vw, 34px);
  background: rgba(247,243,234,0.06); border: 1px solid rgba(247,243,234,0.12);
  border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 16px;
  flex: 0 0 min(86%, 400px); scroll-snap-align: start; min-height: 360px;
  transition: border-color 0.3s, background 0.3s;
}
.review-card:hover { border-color: rgba(255,237,0,0.35); background: rgba(247,243,234,0.09); }
.review-card::before {
  content: "„"; position: absolute; top: -6px; right: 22px;
  font-family: var(--font-serif); font-size: 6rem; line-height: 1;
  color: rgba(255,237,0,0.14); pointer-events: none;
}
.review-card__stars { color: var(--yellow); font-size: 0.9375rem; letter-spacing: 2.5px; }
.review-card__text {
  margin: 0; color: rgba(247,243,234,0.85); line-height: 1.7;
  font-family: var(--font-sans); font-size: 0.9375rem; font-weight: 400;
  letter-spacing: 0.005em;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6;
  line-clamp: 6; overflow: hidden;
}
.review-card.is-expanded .review-card__text {
  display: block; -webkit-line-clamp: unset; line-clamp: unset; overflow: visible;
}
.review-card__more {
  align-self: flex-start; margin: -6px 0 0; padding: 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--yellow);
  display: inline-flex; align-items: center; gap: 5px;
  transition: opacity 0.2s;
}
.review-card__more:hover { opacity: 0.75; }
.review-card__more::after {
  content: "↓"; font-size: 0.9em; transition: transform 0.2s;
}
.review-card.is-expanded .review-card__more::after { transform: rotate(180deg); }
.review-card__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1rem; color: var(--ink);
  background: var(--yellow);
}
.review-card:nth-child(3n+2) .review-card__avatar { background: var(--ocher, #a8783d); color: var(--paper); }
.review-card:nth-child(3n) .review-card__avatar { background: var(--paper); }
.review-card__who { display: flex; flex-direction: column; gap: 3px; }
.review-card__name { color: var(--paper); font-weight: 700; font-size: 0.9375rem; }
.review-card__source { display: inline-flex; align-items: center; gap: 6px; color: rgba(247,243,234,0.6); font-size: 0.8125rem; letter-spacing: 0.02em; }
.review-card__g { flex: none; }

/* ——— project showcase (editorial) ——— */
.pstory__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); align-items: end; }
@media (min-width: 900px) { .pstory__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.pstory__text { margin-top: 18px; color: var(--muted); line-height: 1.7; max-width: 54ch; }
.pstory__specs { margin: 0; border-top: 1px solid rgba(21,20,15,0.14); }
.pstory__spec { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(21,20,15,0.14); }
.pstory__spec dt { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ocher-text, #8a6230); }
.pstory__spec dd { margin: 0; font-size: 0.9375rem; }

.pchapters { background: var(--cream); }
.pchapter { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; margin-bottom: clamp(28px, 4vw, 44px); }
@media (min-width: 860px) {
  .pchapter { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); }
  .pchapter--flip .pchapter__media { order: 2; }
  .pchapter--flip .pchapter__body { order: 1; }
}
.pchapter__media { aspect-ratio: 4 / 3; }
.pchapter__num {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1; color: rgba(21,20,15,0.16); margin: 0 0 6px; font-weight: 500;
}
.pchapter__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 2.8vw, 2.2rem); letter-spacing: -0.01em; margin: 0 0 14px; }
.pchapter__text { margin: 0; color: var(--muted); line-height: 1.7; max-width: 44ch; }

.pmosaic { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: clamp(28px, 4vw, 44px); }
.pmosaic .media { aspect-ratio: 4 / 5; }
.pmosaic--trio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pmosaic--trio .media { aspect-ratio: 3 / 4; }
@media (max-width: 640px) { .pmosaic--trio { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pmosaic--trio .media:last-child { grid-column: span 2; aspect-ratio: 16 / 10; } }

.pquote { margin: clamp(40px, 6vw, 72px) auto; max-width: 760px; text-align: center; }
.pquote p {
  margin: 0; font-family: var(--font-serif); font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.45; letter-spacing: -0.01em;
}
.pquote em { color: var(--ocher-text, #8a6230); }

.pfinal { aspect-ratio: 16 / 9; }
/* Portrait photos never get stretched into the wide slot — they sit
   centered, at their natural orientation */
.pfinal--portrait { max-width: 640px; margin-inline: auto; aspect-ratio: 4 / 5; }

/* Cinematic image reveal: photos settle from a gentle zoom when revealed.
   Parallax images are excluded — GSAP already drives their transform. */
.media-zoom:not([data-parallax]) img { transform: scale(1.07); transition: transform 1.4s var(--ease); }
.media-zoom.is-revealed:not([data-parallax]) img { transform: scale(1); }

/* Related projects on photo-light pages */
.psimilar { background: var(--cream); }
.psimilar__grid { margin-top: clamp(22px, 3vw, 32px); }
@media (min-width: 1024px) { .psimilar__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Next-project band */
.pnext { position: relative; display: block; overflow: hidden; background: var(--ink); }
.pnext__media { position: absolute; inset: 0; opacity: 0.34; transition: opacity 0.5s, transform 1.2s var(--ease); }
.pnext__media img { width: 100%; height: 100%; object-fit: cover; }
.pnext:hover .pnext__media { opacity: 0.5; transform: scale(1.04); }
.pnext__inner { position: relative; padding-block: clamp(56px, 8vw, 96px); }
.pnext__title {
  margin: 10px 0 0; font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 3rem); letter-spacing: -0.01em; color: var(--paper);
}
.pnext__arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.pnext:hover .pnext__arrow { transform: translateX(12px); }

/* ——— legal pages ——— */
/* Extra top padding so the fixed header never overlaps the back link */
.legal { padding-block-start: clamp(120px, 16vh, 170px); }
.legal a[href^="tel:"] { white-space: nowrap; }
.legal__container { max-width: 780px; }
.legal__back { display: inline-block; margin-bottom: clamp(24px, 4vw, 40px); }
.legal__title { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; margin: 10px 0 8px; }
.legal__updated { color: var(--muted); font-size: 0.875rem; margin: 0 0 clamp(28px, 4vw, 44px); }
.legal__body h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem); letter-spacing: -0.01em;
  margin: clamp(32px, 4vw, 44px) 0 12px;
}
.legal__body p, .legal__body li { color: var(--ink-soft, #3a382f); line-height: 1.7; font-size: 0.9875rem; }
.legal__body p { margin: 0 0 14px; }
.legal__body ul { margin: 0 0 14px; padding-left: 22px; }
.legal__body li { margin-bottom: 8px; }
.legal__body strong { color: var(--ink); }

/* ——— nolteneo page (editorial) ——— */
.neo-quote {
  margin: clamp(36px, 5vw, 56px) auto 0; max-width: 720px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 4vw, 44px);
  border-left: 3px solid var(--yellow); background: var(--cream);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.neo-quote p {
  margin: 0; font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.375rem); line-height: 1.6;
}
.neo-quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 0.8125rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

.neo-editorial { background: var(--cream); }
.neo-editorial__list { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 88px); margin-top: clamp(32px, 5vw, 56px); }
.neo-editorial__item { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 860px) {
  .neo-editorial__item { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); }
  .neo-editorial__item--flip .neo-editorial__media { order: 2; }
  .neo-editorial__item--flip .neo-editorial__body { order: 1; }
}
.neo-editorial__media { aspect-ratio: 4 / 3; }
.neo-editorial__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.01em; margin: 0 0 14px; }
.neo-editorial__body p { margin: 0 0 18px; color: var(--muted); line-height: 1.65; max-width: 46ch; }

.neo-systems__grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 720px) { .neo-systems__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.neo-system {
  padding: clamp(24px, 3vw, 32px); background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(21,20,15,0.05), 0 12px 28px rgba(21,20,15,0.07);
}
.neo-system__name { margin: 0 0 10px; font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; }
.neo-system__desc { margin: 0; color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }

.neo-journal { background: var(--ink); }
.neo-journal__inner { display: grid; justify-items: start; }
.neo-journal__body { max-width: 640px; }
.neo-journal__text { color: rgba(247,243,234,0.72); line-height: 1.65; margin: 16px 0 26px; }

/* Compact enough that a nav jump shows the whole section without scrolling */
.catalogs { padding-block: clamp(48px, 6vw, 76px); }
.catalogs .section-head__note { margin-top: 10px; }

.catalogs-gate {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: clamp(18px, 2.5vw, 26px); align-items: stretch;
}
@media (min-width: 900px) { .catalogs-gate { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 32px; } }

.catalogs-gate__info {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
}
.catalogs-gate__badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255,237,0,0.14); color: var(--yellow);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.02em;
}
.catalogs-gate__title { margin: 0; font-size: 1.375rem; letter-spacing: -0.01em; }
.catalogs-gate__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.catalogs-gate__list li { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; }
.catalogs-gate__list svg { flex: none; color: var(--yellow); }
.catalogs-gate__hint { margin: 0; margin-top: auto; padding-top: 10px; color: rgba(247,243,234,0.6); font-size: 0.875rem; line-height: 1.55; }

.catalogs-gate__form {
  margin-top: 0; max-width: none;
  padding: clamp(24px, 3vw, 32px);
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(21,20,15,0.05), 0 12px 28px rgba(21,20,15,0.07);
}
.catalogs-gate__form-title { margin: 0 0 6px; font-size: 1.375rem; letter-spacing: -0.01em; }
.catalogs-gate__form-note { margin: 0 0 18px; color: var(--muted); font-size: 0.9375rem; }

.catalogs-unlocked__note {
  display: flex; align-items: center; gap: 10px;
  margin: clamp(28px, 4vw, 40px) 0 0; font-weight: 600; color: var(--ink);
}
.catalogs-unlocked__note svg { flex: none; color: var(--ocher-text); }
.catalogs-unlocked .catalogs-grid { margin-top: 20px; }

.catalogs-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 640px) { .catalogs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .catalogs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.catalog-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  text-align: left; width: 100%; padding: clamp(24px, 3vw, 30px);
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(21,20,15,0.05), 0 12px 28px rgba(21,20,15,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.catalog-card:hover, .catalog-card:focus-visible {
  box-shadow: 0 1px 2px rgba(21,20,15,0.06), 0 20px 40px rgba(21,20,15,0.14);
  transform: translateY(-3px);
}
.catalog-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; flex: none;
}
.catalog-card__icon--bucatarii { background: rgba(168,120,61,0.16); color: var(--ocher-text); }
.catalog-card__icon--bai { background: rgba(109,106,70,0.16); color: var(--olive); }
.catalog-card__icon--living { background: rgba(255,237,0,0.32); color: var(--ink); }
.catalog-card__icon--nolteneo { background: rgba(21,20,15,0.9); color: var(--yellow); }
.catalog-card__icon--international { background: rgba(168,120,61,0.16); color: var(--ocher-text); }

.catalog-card__meta { display: flex; flex-direction: column; gap: 6px; }
.catalog-card__name { font-weight: 700; font-size: 1.125rem; letter-spacing: -0.01em; }
.catalog-card__desc { font-size: 0.9375rem; line-height: 1.5; color: var(--muted); }

.catalog-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px; padding: 11px 18px; border-radius: var(--radius-pill);
  background: var(--ink); color: var(--yellow);
  font-size: 0.8125rem; font-weight: 700;
  transition: background 0.25s, transform 0.25s;
}
.catalog-card__cta svg { transition: transform 0.25s; }
.catalog-card:hover .catalog-card__cta, .catalog-card:focus-visible .catalog-card__cta { background: var(--ocher-text); }
.catalog-card:hover .catalog-card__cta svg, .catalog-card:focus-visible .catalog-card__cta svg { transform: translateY(2px); }

.catalog-form { margin-top: clamp(20px, 3vw, 28px); max-width: none; }
.catalog-form__hp { position: absolute; left: -9999px; top: -9999px; }
.catalog-form__consent {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 20px;
  font-size: 0.8125rem; color: var(--muted); cursor: pointer;
}
.catalog-form__consent input { margin-top: 3px; flex: none; }
.catalog-form__submit { width: 100%; }
.catalog-form__error { margin-top: 14px; font-size: 0.875rem; color: #b3372c; }
