/* ════════════════════════════════════════════════════════════
   DECO PREDA — style.css
   Architectural Surface Atelier
   Dark cinematic → warm architectural transition
   ════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────
   1. TOKENS
────────────────────────────────────────── */
:root {

  /* Warm light palette */
  --ivory:         #F6F3EE;
  --ivory-2:       #ECE6DD;
  --ivory-3:       #E4DDD3;
  --sand:          #D9D1C5;
  --taupe:         #8A8178;
  --taupe-d:       #7A736A;
  --stone:         #7A756F;
  --stone-l:       #9E9890;
  --ink:           #2B2826;

  /* Dark cinematic palette */
  --dark-bg:       #0F0E0C;
  --dark-mid:      #1A1915;
  --dark-surface:  #231F1A;
  --dark-rule:     rgba(183, 174, 163, 0.12);
  --dark-text:     rgba(236, 230, 221, 0.92);
  --dark-muted:    rgba(183, 174, 163, 0.55);

  /* Type */
  --serif:  'Cormorant Garamond', 'Georgia', serif;
  --sans:   'Jost', system-ui, sans-serif;

  /* Fluid type */
  --t-hero:   clamp(38px,  5.5vw,  80px);
  --t-h2:     clamp(38px,  5.5vw,  80px);
  --t-h3:     clamp(26px,  3vw,    44px);
  --t-lg:     clamp(17px,  1.7vw,  22px);
  --t-base:   clamp(14px,  1.3vw,  16px);
  --t-sm:     clamp(11px,  1vw,    13px);
  --t-xs:     clamp(11px,  1vw,  13px);

  /* Spacing */
  --s-xs:  8px;
  --s-sm: 16px;
  --s-md: 32px;
  --s-lg: 64px;
  --s-xl: clamp(80px, 10vw, 140px);
  --s-2xl: clamp(120px, 14vw, 200px);

  /* Layout */
  --max:    1440px;
  --gut:    clamp(24px, 5vw, 88px);
  --nav-h:  72px;

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:   0.25s;
  --dur-mid:    0.5s;
  --dur-slow:   0.9s;
  --dur-xslow:  1.4s;
}


/* ──────────────────────────────────────────
   2. RESET
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--dark-bg);
  color: var(--dark-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body.light-body {
  background: var(--ivory);
  color: var(--ink);
}

a, button { cursor: none; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
img, picture { display: block; max-width: 100%; }

button {
  font: inherit;
  background: none;
  border: none;
  cursor: none;
}


/* ──────────────────────────────────────────
   3. LAYOUT WRAP
────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}


/* ──────────────────────────────────────────
   4. SCROLL PROGRESS
────────────────────────────────────────── */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--taupe-d);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.06s linear;
}


/* ──────────────────────────────────────────
   5. CUSTOM CURSOR
────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: exclusion;
}

.cursor__ring {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid rgba(183, 174, 163, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--dur-mid) var(--ease),
              height var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease),
              background var(--dur-mid) var(--ease);
}

.cursor__dot {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--taupe);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-fast);
  z-index: 1;
}

.cursor.hovering .cursor__ring {
  width: 40px; height: 40px;
  border: none;
  background: rgba(183, 174, 163, 0.10);
}

.cursor.hovering .cursor__dot {
  transform: translate(-50%, -50%) scale(1);
}


/* ──────────────────────────────────────────
   6. LOADER
────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease), visibility 1s;
}

.loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-md);
}

.loader__mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.15em;
  color: var(--dark-text);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.loader__line {
  width: 120px; height: 1px;
  background: rgba(255,255,255,0.08);
}

.loader__fill {
  height: 100%;
  width: 0%;
  background: var(--taupe);
  animation: fill 1.3s var(--ease-slow) 0.5s forwards;
}

.loader__sub {
  font-family: var(--sans);
  font-weight: 200;
  font-size: var(--t-xs);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(236, 230, 221, 0.85);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.6s forwards;
}

@keyframes fill     { to { width: 100%; } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }


/* ──────────────────────────────────────────
   7. NAVIGATION
────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gut);
  z-index: 1000;
  transition: background var(--dur-mid) var(--ease),
              border-color var(--dur-mid);
  border-bottom: 1px solid transparent;
}

.nav.on-dark {
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.55) 0%,
    rgba(10, 9, 8, 0.18) 70%,
    transparent 100%
  );
}

.nav.on-light {
  background: rgba(246, 243, 238, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--sand);
}

.nav__wordmark {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--t-xs);
  letter-spacing: 0.38em;
  color: var(--dark-text);
  transition: color var(--dur-mid);
}

.nav.on-light .nav__wordmark { color: var(--ink); }

.nav__wordmark-thin {
  font-weight: 200;
  margin-left: 3px;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: var(--s-lg);
}

.nav__item {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(214, 204, 192, 0.85);
  position: relative;
  transition: color var(--dur-fast);
}

.nav__item::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--taupe-d);
  transition: width var(--dur-mid) var(--ease);
}

.nav__item:hover { color: var(--dark-text); }
.nav__item:hover::after { width: 100%; }

.nav.on-light .nav__item        { color: var(--stone); }
.nav.on-light .nav__item:hover  { color: var(--ink); }

.nav__item--cta {
  border: 1px solid rgba(214, 204, 192, 0.5);
  padding: 8px 22px;
  color: rgba(236, 230, 221, 0.95);
  background: rgba(246, 243, 238, 0.08);
  transition: background var(--dur-mid) var(--ease),
              border-color var(--dur-mid),
              color var(--dur-mid);
}

.nav__item--cta::after { display:none; }

.nav__item--cta:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.nav.on-light .nav__item--cta {
  border-color: var(--sand);
  color: var(--ink);
}

.nav.on-light .nav__item--cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: var(--s-xs);
  z-index: 10;
}

.nav__burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--dark-text);
  transition: transform var(--dur-mid) var(--ease),
              opacity var(--dur-fast),
              background var(--dur-mid);
}

.nav.on-light .nav__burger span { background: var(--ink); }

.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(8px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}


/* ──────────────────────────────────────────
   8. INTRO — Dark cinematic hero
────────────────────────────────────────── */
.intro {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

.intro__layer--base,
.intro__layer--mid { display: none; }

.intro__scene {
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  animation: breathe 12s ease-in-out infinite;
}

.intro__scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 9, 8, 0.85) 0%,
      rgba(10, 9, 8, 0.60) 30%,
      rgba(10, 9, 8, 0.10) 60%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 9, 8, 0.45) 0%,
      transparent 25%,
      transparent 75%,
      rgba(10, 9, 8, 0.50) 100%
    );
  pointer-events: none;
}

.intro__rule-v--left { display: none; }

.intro__layer--grain {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: screen;
}

.intro__light {
  position: absolute;
  top: -20%;
  right: 12%;
  width: 1px;
  height: 140%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(214, 196, 170, 0.04) 25%,
    rgba(214, 196, 170, 0.08) 50%,
    rgba(214, 196, 170, 0.04) 75%,
    transparent 100%
  );
  transform: rotate(-8deg);
  pointer-events: none;
}

.intro__light::after {
  content: '';
  position: absolute;
  top: 0; left: 48px;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(214, 196, 170, 0.03) 50%,
    transparent 100%
  );
}

.intro__rule-v {
  position: absolute;
  top: 10%;
  width: 1px;
  height: 50%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(183, 174, 163, 0.15),
    transparent
  );
  animation: ruleReveal 2s var(--ease) 2.2s both;
}

.intro__rule-v--left  { left: var(--gut); }
.intro__rule-v--right { right: calc(var(--gut) + 60px); }

@keyframes ruleReveal {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}

.intro__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--gut);
  padding-top: calc(var(--nav-h) + clamp(4px, 0.5vw, 8px));
  max-width: var(--max);
  margin-inline: auto;
  width: 100%;
  padding-bottom: clamp(80px, 10vw, 120px);
}

.intro__overline {
  font-family: var(--sans);
  font-weight: 200;
  font-size: var(--t-xs);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(183, 174, 163, 0.75);
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.intro__title {
  font-family: var(--serif);
  font-weight: 200;
  font-size: var(--t-hero);
  line-height: 0.96;
  color: var(--dark-text);
  margin-bottom: clamp(28px, 4vw, 48px);
  letter-spacing: -0.01em;
}

.intro__title-row {
  display: block;
  overflow: hidden;
}

.intro__title-row--italic {
  font-style: italic;
  font-weight: 200;
  color: rgba(214, 196, 170, 0.65);
}

.intro__actions {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: var(--gut);
}

.intro__scroll {
  position: absolute;
  bottom: var(--s-lg);
  left: var(--gut);
  z-index: 2;
}

.intro__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(183,174,163,0.5), transparent);
  animation: scrollBob 2.5s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.2); opacity: 1; }
}

.intro__tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(236, 230, 221, 0.72);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 480px;
  margin-top: clamp(16px, 2vw, 24px);
}

.intro__desc {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(214, 196, 170, 0.60);
  letter-spacing: 0.01em;
  line-height: 1.6;
  max-width: 460px;
  margin-top: clamp(12px, 1.5vw, 20px);
}

/* ──────────────────────────────────────────
   9. TRANSITION BAND
────────────────────────────────────────── */
.transition-band {
  height: 72px;
  background: linear-gradient(
    to bottom,
    var(--dark-bg)   0%,
    #1e1b17         25%,
    #3d3328         55%,
    #8a7e72         78%,
    #ECE6DD         100%
  );
  pointer-events: none;
}


/* ──────────────────────────────────────────
   10. SECTION COMMON
────────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-idx {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.section-rule {
  display: block;
  width: 40px; height: 1px;
  background: var(--sand);
}

.section-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
}

.divider {
  height: 1px;
  background: var(--sand);
  margin-block: var(--s-xl);
}


/* ──────────────────────────────────────────
   11. BUTTONS
────────────────────────────────────────── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(183, 174, 163, 0.55);
  padding: 15px 30px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-muted);
  position: relative;
  overflow: hidden;
  transition: color var(--dur-mid) var(--ease),
              border-color var(--dur-mid),
              transform var(--dur-mid) var(--ease);
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(183, 174, 163, 0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
}

.btn-ghost:hover {
  color: var(--dark-text);
  border-color: rgba(183, 174, 163, 0.5);
  transform: translateY(-2px);
}

.btn-ghost:hover::before { transform: scaleX(1); }

.btn-ghost__label,
.btn-ghost__icon { position: relative; z-index: 1; }

.btn-ghost__icon { transition: transform var(--dur-mid) var(--ease); }
.btn-ghost:hover .btn-ghost__icon { transform: translateY(4px); }

.btn-line {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--dur-fast);
}

.btn-line__label { pointer-events: none; }

.btn-line__line {
  display: block;
  height: 1px;
  background: var(--taupe-d);
  width: 40%;
  transition: width var(--dur-mid) var(--ease);
}

.btn-line:hover { color: var(--stone); }
.btn-line:hover .btn-line__line { width: 100%; }

.btn-submit {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 32px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease);
  justify-content: space-between;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--taupe-d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
}

.btn-submit__label,
.btn-submit__arrow { position: relative; z-index: 1; }

.btn-submit__arrow { transition: transform var(--dur-mid) var(--ease); }

.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(43,40,38,0.18); }
.btn-submit:hover .btn-submit__arrow { transform: translateX(6px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--dur-fast), gap var(--dur-mid) var(--ease);
  margin-top: var(--s-md);
}

.link-arrow::after { content: '→'; }
.link-arrow:hover { color: var(--ink); gap: 16px; }


/* ──────────────────────────────────────────
   12. REVEAL ANIMATIONS
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--dur-xslow) var(--ease-slow),
    transform var(--dur-xslow) var(--ease-slow);
}

.reveal-hero.in {
  opacity: 1;
  transform: translateY(0);
}


/* ──────────────────────────────────────────
   13. STATS
────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr) repeat(3, auto);
  align-items: center;
  padding-top: var(--s-md);
}

.stat {
  text-align: center;
  padding-block: var(--s-sm);
  padding-inline: var(--s-md);
}

.stat__n {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: var(--ink);
}

.stat__denom {
  font-family: var(--serif);
  font-size: 0.5em;
  color: var(--taupe-d);
  vertical-align: super;
  margin-left: 2px;
}

.stat__l {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-top: 10px;
}

.stat__sep {
  width: 1px;
  height: 52px;
  background: var(--sand);
  align-self: center;
}


/* ──────────────────────────────────────────
   14. WHO WE ARE — Accordion
────────────────────────────────────────── */
.who {
  background: var(--ivory-2);
  padding-block: var(--s-2xl);
}

.who__accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  margin-bottom: var(--s-xl);
  align-items: start;
}

.who__accord-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 0;
  border-bottom: none;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.who__accord-right {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .who__accordion {
    grid-template-columns: 1fr;
  }
  .who__accord-header {
    position: static;
  }
}

.who__h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.08;
  color: var(--ink);
}

.who__h em { font-style: italic; color: var(--stone); }

.who__trigger { display: none; }
.who__trigger-line { display: none; }
.who__trigger-arrow { display: none; }

.who__teaser {
  padding-top: var(--s-md);
  max-width: 780px;
}

.who__teaser--hidden {
  display: none;
}

.who__teaser-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--stone);
  line-height: 1.7;
}

.who__teaser-ellipsis {
  color: var(--taupe);
  letter-spacing: 0.2em;
}

.who__trigger-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  cursor: none;
  padding: 0 0 0 8px;
  opacity: 0.45;
  transition: opacity var(--dur-fast),
              transform var(--dur-mid) var(--ease),
              color var(--dur-fast);
  vertical-align: middle;
  line-height: 1;
  position: relative;
  top: -1px;
}

.who__trigger-inline:hover {
  opacity: 1;
  transform: translateY(3px);
}

.who__aside {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.who__aside.open {
  max-height: 3000px;
}

.who__aside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  padding-top: var(--s-xl);
}

.who__col { display: flex; flex-direction: column; }

.who__p {
  font-size: var(--t-base);
  color: #4A4540;
  line-height: 1.9;
  margin-bottom: var(--s-md);
}

.who__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
  border-top: 1px solid var(--sand);
  padding-top: var(--s-lg);
}

.who__val { display: flex; flex-direction: column; gap: 8px; }

.who__val-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink);
}

.who__val-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-sm);
  color: #4A4540;
  line-height: 1.75;
}

.who__locations {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  margin-top: var(--s-lg);
  padding-top: var(--s-md);
  border-top: 1px solid var(--sand);
}

.who__loc { display: flex; flex-direction: column; gap: 6px; }

.who__loc-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe-d);
}

.who__loc-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-sm);
  color: #4A4540;
}

.who__trigger-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: none;
  padding: 0 0 0 10px;
  opacity: 0.45;
  transition: opacity var(--dur-fast),
              transform var(--dur-mid) var(--ease);
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.who__trigger-close::before {
  content: '↑';
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.who__trigger-close:hover {
  opacity: 1;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .who__aside-grid { grid-template-columns: 1fr; gap: var(--s-lg); }
  .who__accord-header { align-items: flex-start; }
  .who__values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .who__values { grid-template-columns: 1fr; }
  .who__locations { flex-direction: column; gap: var(--s-md); }
}


/* ──────────────────────────────────────────
   15. SYSTEMS
────────────────────────────────────────── */
.systems {
  background: var(--ivory);
  padding-block: var(--s-2xl);
}

.systems__h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--s-xl);
  max-width: 700px;
}

.systems__h em { font-style: italic; color: var(--stone); }

.systems__panels {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.systems__panels.filtered-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-inline: auto;
}

.systems__panels.filtered-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1200px) {
  .systems__panels { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .systems__panels { grid-template-columns: 1fr; }
}


/* ──────────────────────────────────────────
   16. PANEL
────────────────────────────────────────── */
.panel {
  background: var(--ivory-2);
  overflow: hidden;
  position: relative;
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
}

.panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43,40,38,0.05);
  z-index: 2;
}

.panel__surface {
  position: relative;
  height: clamp(200px, 22vw, 320px);
  overflow: hidden;
  cursor: default;
}

.pcs__track { position: absolute; inset: 0; }

.pcs__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.pcs__slide--active { opacity: 1; }

.pcs__grain {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.11'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
}

.pcs__aggregate {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 12% 18%, rgba(43,40,38,0.28) 0%, transparent 100%),
    radial-gradient(circle 2px   at 27% 44%, rgba(43,40,38,0.20) 0%, transparent 100%),
    radial-gradient(circle 1px   at 43% 11%, rgba(43,40,38,0.18) 0%, transparent 100%),
    radial-gradient(circle 2.5px at 58% 72%, rgba(43,40,38,0.22) 0%, transparent 100%),
    radial-gradient(circle 1px   at 71% 33%, rgba(43,40,38,0.16) 0%, transparent 100%),
    radial-gradient(circle 2px   at 84% 58%, rgba(43,40,38,0.24) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 19% 82%, rgba(43,40,38,0.20) 0%, transparent 100%),
    radial-gradient(circle 1px   at 35% 67%, rgba(43,40,38,0.18) 0%, transparent 100%),
    radial-gradient(circle 2px   at 51% 49%, rgba(43,40,38,0.14) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 66% 88%, rgba(43,40,38,0.22) 0%, transparent 100%),
    radial-gradient(circle 1px   at 79% 14%, rgba(43,40,38,0.16) 0%, transparent 100%),
    radial-gradient(circle 2px   at 92% 41%, rgba(43,40,38,0.20) 0%, transparent 100%);
  pointer-events: none;
}

.pcs__tag { display: none; }

.pcs__foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 0 12px;
  background: linear-gradient(to top, rgba(236,230,221,0.82) 0%, transparent 100%);
  pointer-events: none;
}

.pcs__explore {
  display: inline-block;
  position: relative;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  pointer-events: all;
  cursor: none;
}

.pcs__explore::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pcs__explore:hover::after { width: 100%; }

.pcs__nav-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  box-sizing: border-box;
  pointer-events: all;
}

.pcs__arrow {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink);
  opacity: 0.25;
  transition: opacity var(--dur-fast);
  cursor: none;
  padding: 0;
  flex-shrink: 0;
  pointer-events: all;
}

.pcs__arrow:hover { opacity: 1; }

.pcs__dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.pcs__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(43,40,38,0.22);
  transition: background var(--dur-mid), transform var(--dur-mid) var(--ease);
  cursor: none;
  border: none;
  padding: 0;
  pointer-events: all;
}

.pcs__dot--active {
  background: var(--ink);
  transform: scale(1.3);
}

.panel__explore { display: none; }
.panel__nav     { display: none; }
.panel__nav-dots { display: none; }
.panel__nav-arrow { display: none; }

.panel__idx {
  position: absolute;
  bottom: var(--s-md);
  right: var(--s-md);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4vw, 60px);
  color: rgba(43, 40, 38, 0.12);
  line-height: 1;
  pointer-events: none;
}

.panel__body {
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px) clamp(32px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.panel__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--ink);
  margin-bottom: clamp(16px, 1.8vw, 24px);
  line-height: 1.1;
}

.panel__desc {
  font-size: var(--t-base);
  color: #4A4540;
  line-height: 2.0;
  margin-bottom: 1.5rem;
}

.panel__props {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.panel__props li {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-sm);
  color: #4A4540;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}

.panel__props li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
  font-weight: 200;
}

.panel__domain {
  margin-top: var(--s-sm);
  margin-bottom: var(--s-sm);
  padding-top: var(--s-sm);
  border-top: 1px solid var(--sand);
}

.panel__domain-tag {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-l);
}

.panel__domain-tag + .panel__domain-tag::before {
  content: ' · ';
  color: var(--sand);
}

.panel__domain-tag--infra { color: var(--taupe-d); }

.panel__estimate-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: clamp(20px, 2vw, 28px);
  padding: 13px 0;
  border: none;
  border-top: 1px solid var(--sand);
  background: transparent;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-l);
  transition: color var(--dur-mid) var(--ease);
  cursor: none;
}

.panel__estimate-btn:hover { color: var(--ink); }

.panel__estimate-icon {
  font-size: 16px;
  font-weight: 200;
  line-height: 1;
  transition: transform var(--dur-mid) var(--ease), color var(--dur-mid);
  color: var(--taupe-d);
}

.panel__estimate-btn[aria-expanded="true"] .panel__estimate-icon {
  transform: rotate(45deg);
  color: var(--stone);
}

.panel__estimate-btn[aria-expanded="true"] {
  color: var(--ink);
  border-top-color: var(--taupe-d);
}

.panel__calc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--ivory-3);
}

.panel__calc.open { max-height: 600px; }

.pcalc {
  padding: clamp(20px, 2.5vw, 32px) clamp(24px, 2.5vw, 36px);
}

.pcalc__head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink);
  margin-bottom: clamp(18px, 2vw, 24px);
  letter-spacing: 0.01em;
}

.pcalc__head em { font-style: italic; color: var(--stone); }

.pcalc__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pcalc__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcalc__label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe-d);
}

.pcalc__input-wrap {
  position: relative;
  border-bottom: 1px solid var(--sand);
  transition: border-color var(--dur-fast);
}

.pcalc__input-wrap:focus-within { border-bottom-color: var(--taupe-d); }

.pcalc__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--ink);
  padding: 6px 36px 6px 0;
  -moz-appearance: textfield;
  appearance: textfield;
  caret-color: var(--taupe-d);
  cursor: none;
  opacity: 0.4;
  transition: opacity var(--dur-fast);
}

.pcalc__input:focus { opacity: 1; }

.pcalc__input::-webkit-outer-spin-button,
.pcalc__input::-webkit-inner-spin-button { -webkit-appearance: none; }

.pcalc__unit {
  position: absolute;
  right: 2px; bottom: 9px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-l);
  pointer-events: none;
}

.pcalc__select-wrap {
  position: relative;
  background: var(--ivory-2);
  border-bottom: 1px solid var(--sand);
  transition: border-bottom-color var(--dur-fast);
}

.pcalc__select-wrap:focus-within { border-bottom-color: var(--taupe-d); }

.pcalc__select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-sm);
  color: var(--ink);
  padding: 20px 28px 8px 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: none;
  line-height: 1.3;
  background-image: none;
}

.pcalc__select option {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ivory-2);
  color: var(--ink);
  padding: 8px 0;
}

.pcalc__caret {
  position: absolute;
  right: 4px; bottom: 10px;
  font-size: 9px;
  color: var(--stone-l);
  pointer-events: none;
  transition: transform var(--dur-fast);
  line-height: 1;
}

.pcalc__select:focus ~ .pcalc__caret { transform: rotate(180deg); }

.pcalc__result { min-height: 48px; margin-bottom: 14px; }
.pcalc__result:empty { min-height: 0; margin: 0; }

.pcalc__neutral {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: rgba(43, 40, 38, 0.18);
  letter-spacing: 0.05em;
  display: block;
}

.pcalc__price {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: block;
}

.pcalc__bulk-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-d);
  background: var(--ivory-3);
  border: 0.5px solid var(--sand);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 8px;
}

.pcalc__amount {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.pcalc__amount-unit {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--taupe-d);
  margin-left: 8px;
  text-transform: uppercase;
}

.pcalc__range {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--stone-l);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.pcalc__rate {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--stone-l);
  letter-spacing: 0.06em;
  margin-top: 5px;
}

.pcalc__disclaimer {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  line-height: 1.7;
  color: var(--stone-l);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--sand);
  padding-top: 12px;
  margin-top: 16px;
}

@media (max-width: 500px) {
  .pcalc__inputs { grid-template-columns: 1fr; }
}


/* ──────────────────────────────────────────
   17. PROJECTS
────────────────────────────────────────── */
.projects {
  background: var(--ivory-2);
  padding-block: var(--s-2xl);
}

.projects__h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--s-xl);
  max-width: 600px;
}

.projects__h em { font-style: italic; color: var(--stone); }

.project-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(340px, 40vw, 540px);
  overflow: hidden;
}

.project-row--inv { direction: rtl; }
.project-row--inv > * { direction: ltr; }

.project-row__img {
  position: relative;
  overflow: hidden;
}

.project-row__img--arch {
  background-image: url('images/residential/living/mc-ivory-living-01.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-row__img--infra {
  background-image: url('images/industrial/ind-02.webp');
  background-size: cover;
  background-position: center 40%;
}

.project-row__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.25'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.1'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
}

.project-row__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 0.9s var(--ease);
}

.project-row:hover .project-row__img::after { transform: scale(1.04); }

.project-row__caption {
  position: absolute;
  bottom: var(--s-md);
  left: var(--s-md);
  z-index: 2;
  font-family: var(--sans);
  font-weight: 200;
  font-size: var(--t-xs);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(43, 40, 38, 0.5);
}

.project-row__text {
  background: var(--ivory);
  padding: clamp(40px, 6vw, 88px) clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-row--inv .project-row__text { background: var(--ivory-3); }

.project-row__num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: var(--s-sm);
}

.project-row__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--t-h3);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--s-md);
}

.project-row__body {
  color: #3A3530;
}

.project-row__img--infra .project-row__caption {
  color: rgba(236, 230, 221, 0.75);
}

.project-row__img--arch .project-row__caption {
  color: rgba(17, 14, 2, 0.65);
}

.project-row__body {
  font-size: var(--t-base);
  color: #2e2b26;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: var(--s-sm);
}

.project-row__systems {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: var(--s-md);
}

@media (max-width: 900px) {
  .project-row,
  .project-row--inv {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .project-row__img { height: 280px; }
  .project-row__text { padding: var(--s-lg) var(--gut); }
}


/* ──────────────────────────────────────────
   18. CRAFT
────────────────────────────────────────── */
.craft {
  background: var(--ivory-2);
  padding-block: var(--s-2xl);
}

.craft__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.craft__visual { position: relative; }
.craft__img { overflow: hidden; }

.craft__img--a {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #cec5b4 0%, #a89a88 60%, #8c7e6c 100%);
  position: relative;
}

.craft__img--b {
  height: clamp(100px, 12vw, 160px);
  background: linear-gradient(130deg, #d6cfc5 0%, #c0b8ae 100%);
  margin-top: 3px;
}

.craft__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.craft__plaque {
  position: absolute;
  bottom: calc(clamp(100px, 12vw, 160px) + 10px);
  right: -20px;
  background: var(--ink);
  padding: 24px 28px;
  text-align: center;
}

.craft__plaque-n {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--ivory);
  line-height: 1;
}

.craft__plaque-l {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 10px;
  line-height: 1.6;
}

.craft__h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: var(--s-md);
}

.craft__h em { font-style: italic; color: var(--stone); }

.craft__p {
  font-size: var(--t-base);
  color: #4A4540;
  line-height: 1.9;
  margin-bottom: var(--s-md);
  max-width: 520px;
}


/* ──────────────────────────────────────────
   19. SIGNATURE SERIES BAND
────────────────────────────────────────── */
.sig-band {
  position: relative;
  overflow: hidden;
  padding-block: var(--s-2xl);
}

.sig-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0e0c 0%, #1e1a16 40%, #2e2518 70%, #0f0e0c 100%);
  z-index: 0;
}

.sig-band__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: screen;
}

.sig-band__content { position: relative; z-index: 1; }

.sig-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.sig-band__eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 200;
  font-size: var(--t-xs);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(183, 174, 163, 0.55);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.sig-band__h {
  font-family: var(--serif);
  font-weight: 200;
  font-size: var(--t-h2);
  line-height: 1.05;
  color: var(--dark-text);
  margin-bottom: var(--s-md);
}

.sig-band__h em { font-style: italic; color: rgba(214, 196, 170, 0.65); }

.sig-band__p {
  font-size: var(--t-base);
  color: var(--dark-muted);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: var(--s-lg);
}

.sig-band__cta { display: inline-flex; }

.sig-band__swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: var(--s-sm);
}

.sig-band__swatch { aspect-ratio: 1; border-radius: 2px; }
.sig-band__swatch--1 { background: linear-gradient(135deg, #cdc4b5, #9e9288); }
.sig-band__swatch--2 { background: linear-gradient(135deg, #1a1714, #3d3020); position: relative; overflow: hidden; }
.sig-band__swatch--2::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent 40%, rgba(214,196,170,0.3) 60%, transparent 70%); }
.sig-band__swatch--3 { background: radial-gradient(ellipse at 30% 40%, #a89e90, #6e6458); }
.sig-band__swatch--4 { background: linear-gradient(160deg, #e2dcd2 0%, #2a2520 50%, #cdc4b5 100%); }

.sig-band__note {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(183, 174, 163, 0.35);
  text-align: center;
}

@media (max-width: 900px) {
  .sig-band__inner { grid-template-columns: 1fr; }
  .sig-band__swatches { max-width: 320px; margin-inline: auto; }
}


/* ──────────────────────────────────────────
   20. CONTACT
────────────────────────────────────────── */
.commission {
  background: var(--ivory);
  padding-block: var(--s-2xl);
}

.commission__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.commission__h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--s-md);
}

.commission__h em { font-style: italic; color: var(--stone); }

.commission__body {
  font-size: var(--t-base);
  color: #4A4540;
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: var(--s-lg);
}

.commission__contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.commission__contact-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-sm);
  align-items: baseline;
}

.commission__contact-row span:first-child {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--taupe-d);
}

.commission__contact-row a,
.commission__contact-row span:last-child {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 300;
  color: var(--ink);
  transition: color var(--dur-fast);
}

.commission__contact-row a:hover { color: var(--taupe-d); }

.form { display: flex; flex-direction: column; gap: 0; }

.f {
  position: relative;
  border-bottom: 1px solid var(--sand);
  margin-bottom: var(--s-lg);
}

.f input,
.f textarea,
.f select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-base);
  color: var(--ink);
  padding: 26px 0 10px;
  appearance: none;
  -webkit-appearance: none;
  caret-color: var(--taupe-d);
}

.f select { cursor: none; }
.f textarea { resize: vertical; min-height: 96px; }

.f label {
  position: absolute;
  top: 26px; left: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-sm);
  color: var(--stone-l);
  pointer-events: none;
  transition: top 0.24s var(--ease), font-size 0.24s var(--ease),
              color 0.24s, letter-spacing 0.24s var(--ease);
}

.f input:focus ~ label,
.f input:not(:placeholder-shown) ~ label,
.f textarea:focus ~ label,
.f textarea:not(:placeholder-shown) ~ label,
.f select:focus ~ label,
.f select:valid ~ label {
  top: 8px;
  font-size: 10px;
  color: var(--taupe-d);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.f__bar {
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--taupe-d);
  transition: width var(--dur-mid) var(--ease);
}

.f:focus-within .f__bar { width: 100%; }
.f__opt { color: var(--taupe); font-size: 0.9em; }

.f--sel .f__caret {
  position: absolute;
  right: 0; top: 24px;
  font-size: 11px;
  color: var(--stone-l);
  pointer-events: none;
  transition: transform var(--dur-fast);
}

.f--sel select:focus ~ .f__caret { transform: rotate(180deg); }
.f--error { border-bottom-color: #b05a4a; }
.f--error label { color: #b05a4a; }
.f--error .f__bar { background: #b05a4a; width: 100%; }

.form-ok {
  margin-top: var(--s-md);
  text-align: center;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  color: var(--taupe-d);
  min-height: 20px;
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.form-ok.show { opacity: 1; }

.form-err {
  margin-top: var(--s-sm);
  text-align: center;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  color: #a05a4a;
  min-height: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(160, 90, 74, 0.25);
  background: rgba(160, 90, 74, 0.04);
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.form-err.show { opacity: 1; }


/* ──────────────────────────────────────────
   21. FOOTER
────────────────────────────────────────── */
.foot {
  background: var(--ink);
  padding-block: clamp(44px, 6vw, 72px);
}

.foot__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-md);
}

.foot__wordmark {
  font-family: var(--sans);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 0.42em;
  color: var(--ivory);
  margin-bottom: 5px;
}

.foot__descriptor {
  font-family: var(--sans);
  font-weight: 200;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.foot__nav {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.foot__nav a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--dur-fast);
}

.foot__nav a:hover { color: var(--sand); }

.foot__copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--s-md);
  text-align: center;
  font-size: 11px;
  color: rgba(183,174,163,0.35);
  letter-spacing: 0.08em;
  margin-top: var(--s-xs);
}


/* ──────────────────────────────────────────
   22. RESPONSIVE — tablet <= 1024px
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
  .stat__sep { display: none; }
  .craft__grid,
  .commission__grid { grid-template-columns: 1fr; gap: var(--s-lg); }
  .craft__visual { max-width: 560px; }
  .craft__plaque { right: 0; }
}

/* ──────────────────────────────────────────
   24. RESPONSIVE — small <= 600px
────────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --gut: 20px;
    --s-2xl: 100px;
    --s-xl: 72px;
  }

  .intro__rule-v { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot__inner { flex-direction: column; align-items: flex-start; }
  .foot__nav { flex-wrap: wrap; gap: var(--s-sm); }
}


/* ──────────────────────────────────────────
   25. PANEL CAROUSEL
────────────────────────────────────────── */
.pcarousel {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.pcarousel__track-wrap {
  flex: 1;
  overflow: hidden;
  cursor: grab;
}

.pcarousel__track-wrap:active { cursor: grabbing; }

.pcarousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pcarousel__slide {
  flex: 0 0 33.333%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pcarousel__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(43, 40, 38, 0.55);
  background: linear-gradient(to top, rgba(246,243,238,0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.pcarousel__slide:hover .pcarousel__label { opacity: 1; }

.pcarousel__arrow {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--stone-l);
  background: transparent;
  border: none;
  cursor: none;
  transition: color var(--dur-fast), transform var(--dur-fast);
  z-index: 2;
  padding: 0;
}

.pcarousel__arrow:hover { color: var(--ink); }
.pcarousel__arrow--prev:hover { transform: translateX(-2px); }
.pcarousel__arrow--next:hover { transform: translateX(2px); }
.pcarousel__arrow:disabled { opacity: 0.2; pointer-events: none; }

.pcarousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 0 40px;
}

.pcarousel__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sand);
  transition: background var(--dur-mid), transform var(--dur-mid);
  cursor: pointer;
}

.pcarousel__dot.active {
  background: var(--taupe-d);
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .pcarousel__slide { flex: 0 0 100%; }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .pcarousel__slide { flex: 0 0 50%; }
}


/* ──────────────────────────────────────────
   26. REDUCED MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-hero { opacity: 1; transform: none; }
  .intro__scene { animation: none; }
}

/* ── Brand Statement ── */
.brand-statement {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding-block: var(--s-md);
}

.brand-statement__rule {
  flex: 1;
  height: 1px;
  background: var(--sand);
  display: block;
}

.brand-statement__q {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--stone);
  line-height: 1.6;
  text-align: center;
  max-width: 560px;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.brand-statement__q em {
  font-style: italic;
  color: var(--ink);
}

@media (max-width: 700px) {
  .brand-statement {
    flex-direction: column;
    text-align: center;
  }
  .brand-statement__rule { width: 60px; flex: none; }
}

.intro__tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(236, 230, 221, 0.72);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 480px;
  margin-top: clamp(16px, 2vw, 24px);
}

.intro__desc {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(214, 196, 170, 0.60);
  letter-spacing: 0.01em;
  line-height: 1.6;
  max-width: 460px;
  margin-top: clamp(12px, 1.5vw, 20px);
}

/* ── Navbar backdrop ── */
.nav {
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.72) 0%,
    rgba(10, 9, 8, 0.40) 70%,
    transparent 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav.on-light {
  background: rgba(246, 243, 238, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ══ SECTOR BUTTONS ══ */
.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-sector {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  min-width: 260px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.btn-sector:hover { transform: translateY(-2px); }

.btn-sector--ind {
  background: rgba(43, 40, 38, 0.65);
  color: var(--ivory);
  border: 1px solid rgba(183, 174, 163, 0.4);
}

.btn-sector--ind::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--stone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
}

.btn-sector--ind:hover::before { transform: scaleX(1); }
.btn-sector--ind:hover { box-shadow: 0 12px 40px rgba(43,40,38,0.35); }

.btn-sector--arch {
  background: rgba(183, 174, 163, 0.12);
  color: rgba(236, 230, 221, 0.85);
  border: 1px solid rgba(183, 174, 163, 0.4);
}

.btn-sector--arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(183,174,163,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
}

.btn-sector--arch:hover::before { transform: scaleX(1); }
.btn-sector--arch:hover { border-color: rgba(183,174,163,0.65); }

.btn-sector__label,
.btn-sector__arrow { position: relative; z-index: 1; }

.btn-sector__arrow { transition: transform var(--dur-mid) var(--ease); }
.btn-sector:hover .btn-sector__arrow { transform: translateX(5px); }

@media (max-width: 600px) {
  .btn-sector { min-width: 100%; gap: 16px; }
}

/* ══ SYSTEMS FILTER ══ */
.panel[data-domain] {
  transition: opacity 0.5s var(--ease),
              transform 0.5s var(--ease),
              max-height 0.5s var(--ease);
}

.panel.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  display: none;
}

/* ══ SYSTEMS MORE ══ */
.systems__more {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
  padding-top: var(--s-lg);
  display: none;
}

.systems__more.is-visible { display: block; }

.systems__more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  border: none;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  background: transparent;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: none;
  transition: color var(--dur-mid);
}

.systems__more-btn:hover { color: var(--ink); }

.systems__more-icon {
  font-size: 18px;
  font-weight: 200;
  transition: transform var(--dur-mid) var(--ease);
  flex-shrink: 0;
}

.systems__more-btn[aria-expanded="true"] .systems__more-icon { transform: rotate(45deg); }

.systems__more-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.systems__more-panel.open { max-height: 3000px; }
.systems__more-panel .systems__panels { padding-inline: 0; padding-top: var(--s-lg); }

/* ══ SYSTEMS FILTER ══ */
.panel.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* ══ BESPOKE PRICING ══ */
.pcalc__bespoke {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: clamp(16px, 2vw, 24px);
  max-width: 360px;
}

.pcalc__bespoke-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  transition: border-color var(--dur-mid), color var(--dur-mid);
}

.pcalc__bespoke-cta:hover {
  color: var(--stone);
  border-bottom-color: var(--taupe-d);
}

/* ══ SYSTEMS VEIL ══ */
.systems__veil-zone { display: contents; }

.panel.is-veiled {
  opacity: 0.28;
  filter: blur(1.5px);
  pointer-events: none;
  transition: opacity 0.8s var(--ease), filter 0.8s var(--ease);
}

.panel.is-veiled.is-revealed {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

.systems__veil-wrapper { position: relative; display: contents; }

.systems__seal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.systems__seal.is-hidden { display: none; }

.systems__seal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 28px;
  background: rgba(231, 224, 215, 0.82);
  border: 1px solid rgba(164, 154, 134, 0.5);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: none;
  min-width: 280px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(43,40,38,0.08);
  transition: background var(--dur-mid) var(--ease),
              border-color var(--dur-mid),
              color var(--dur-mid),
              transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.systems__seal-btn:hover {
  background: rgba(43, 40, 38, 0.75);
  color: var(--ivory);
  border-color: rgba(183, 174, 163, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(43,40,38,0.18);
}

.systems__veil-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--sand);
  margin-block: var(--s-sm);
}

.systems__veil-divider.is-hidden { display: none; }

@media (max-width: 900px) {
  .panel.is-veiled { display: none !important; }
  .systems__seal { display: none !important; }
  .systems__veil-divider { display: none !important; }
  .systems__mobile-more {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: var(--s-md) var(--gut);
  }
  .systems__mobile-more.is-hidden { display: none !important; }
  .systems__mobile-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: var(--t-xs);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
    border-bottom: 1px solid var(--sand);
    padding-bottom: 4px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: none;
    transition: color var(--dur-mid);
  }
  .systems__mobile-more-btn:hover { color: var(--ink); }
}

@media (min-width: 901px) {
  .systems__mobile-more { display: none !important; }
}

.systems__panels.filtered-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-inline: auto;
}

.panel.is-hidden { display: none !important; }

/* ════════════════════════════════════════════════════════════
   DECO PREDA — FIXES v2
   Toate corecțiile de contrast, lizibilitate și layout
   ════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════
   CAROUSEL — voal + label + footer row
══════════════════════════════════════════ */

.pcs__track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,8,0.85) 0%,
    rgba(10,9,8,0.45) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
}

/* Label imagine — titlu scurt din galerie */
.pcs__system-label {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236,230,221,0.90);
  text-shadow: 0 1px 6px rgba(0,0,0,0.75);
  z-index: 4;
  pointer-events: none;
}

/* Footer carousel: ← View Gallery → */
.pcs__foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  gap: 0;
  background: transparent !important;
  z-index: 4;
  pointer-events: none;
}
.pcs__foot > * { pointer-events: auto; }

.pcs__arrow {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50%;
  border: 0.5px solid rgba(236,230,221,0.55) !important;
  background: rgba(10,9,8,0.50) !important;
  color: rgba(236,230,221,0.95) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1 !important;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
  flex-shrink: 0;
}
.pcs__arrow:hover {
  background: rgba(236,230,221,0.20) !important;
  border-color: rgba(236,230,221,1) !important;
}
.pcs__arrow svg {
  width: 11px; height: 11px;
  stroke: currentColor; stroke-width: 1.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  display: block;
}

.pcs__explore {
  flex: 1 !important;
  display: block !important;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236,230,221,0.92) !important;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 0 !important;
}
.pcs__explore:hover { color: #fff !important; }
.pcs__explore::after { display: none !important; }
.pcs__nav-row { display: none !important; }

/* ══════════════════════════════════════════
   FIX 2 — PANEL PROPS: font mai mare
══════════════════════════════════════════ */
.panel__props li {
  font-size: clamp(13px, 1.15vw, 15px) !important;
  color: #2A2622 !important;
  line-height: 1.7 !important;
}
.panel__props li::before {
  color: var(--taupe-d) !important;
}

/* ══════════════════════════════════════════
   FIX 3+4 — CONTRAST GENERAL pe fond deschis
══════════════════════════════════════════ */

/* Panel body */
.panel__desc { color: #2A2622 !important; }
.panel__name { color: #1E1B18 !important; }

/* Domain tag — mai vizibil */
.panel__domain-tag {
  font-size: 10px !important;
  letter-spacing: 0.28em;
  color: #5A5450 !important;
}
.panel__domain-tag--infra { color: #3A3530 !important; }

/* Estimate btn */
.panel__estimate-btn {
  color: #3A3530 !important;
  font-size: clamp(11px, 1vw, 13px) !important;
}
.panel__estimate-btn:hover { color: #1E1B18 !important; }

/* Who We Are */
.who__p { color: #2A2622 !important; }
.who__val-desc { color: #2A2622 !important; }
.who__loc-desc { color: #2A2622 !important; }
.who__val-title { color: #1E1B18 !important; }
.who__h { color: #1E1B18 !important; }
.who__teaser-text { color: #4A4540 !important; }

/* Craft */
.craft__p { color: #2A2622 !important; }
.craft__h { color: #1E1B18 !important; }

/* Projects */
.project-row__body { color: #2A2622 !important; }
.project-row__title { color: #1E1B18 !important; }
.project-row__systems {
  font-size: 10px !important;
  letter-spacing: 0.22em;
  color: #5A5450 !important;
}

/* Link arrows */
.link-arrow {
  color: #4A4540 !important;
  font-size: clamp(11px, 1vw, 14px) !important;
  letter-spacing: 0.2em;
}
.link-arrow:hover { color: #1E1B18 !important; }

/* Section labels & idx */
.section-label { color: #5A5450 !important; }
.section-idx   { color: #5A5450 !important; }

/* Commission / Contact */
.commission__body { color: #2A2622 !important; }
.commission__h    { color: #1E1B18 !important; }

/* Brand statement */
.brand-statement__q { color: #4A4540 !important; }
.brand-statement__q em { color: #1E1B18 !important; }

/* Nav items pe fond light */
.nav.on-light .nav__item { color: #3A3530 !important; }
.nav.on-light .nav__item:hover { color: #1E1B18 !important; }

/* Btn-line */
.btn-line { color: #1E1B18 !important; }
.btn-line:hover { color: #4A4540 !important; }

/* Systems heading */
.systems__h { color: #1E1B18 !important; }
.systems__h em { color: #5A5450 !important; }

/* ══════════════════════════════════════════
   FIX 5 — PROJECTS: numere romane + contrast
══════════════════════════════════════════ */
.project-row__num {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px) !important;
  color: #5A5450 !important;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-sm);
}


/* ══════════════════════════════════════════
   HERO MOBIL — fix suprapunere butoane
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .intro__content {
    padding-bottom: clamp(100px, 22vw, 140px);
    display: flex;
    flex-direction: column;
  }
  .intro__actions {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    margin-top: clamp(24px, 6vw, 40px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-sm);
    width: 100%;
  }
  .btn-sector { width: 100%; justify-content: space-between; }
  .intro__scroll { display: none; }
}

/* PROJECTS — imagini ascunse mobil */
@media (max-width: 900px) {
  .project-row__img { display: none; }
  .project-row, .project-row--inv {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr;
  }
  .project-row__text {
    padding: clamp(32px,6vw,48px) var(--gut);
    border-left: 2px solid var(--sand);
  }
  .project-row--inv .project-row__text {
    border-left: 2px solid var(--taupe-d);
  }
}
@media (min-width: 901px) {
  .project-row { min-height: clamp(260px, 28vw, 380px); }
  .project-row__img { height: 100%; }
}

/* SPACING MOBIL */
@media (max-width: 700px) {
  .who, .systems, .projects, .craft, .sig-band, .commission {
    padding-block: clamp(56px, 10vw, 80px);
  }
  .section-head { margin-bottom: clamp(28px, 6vw, 44px); }
  .systems__h { margin-bottom: clamp(32px, 6vw, 48px); }
  .projects__h { margin-bottom: clamp(32px, 6vw, 48px); }
}
/* ════════════════════════════════════════════════════════════
   DECO PREDA — NAV MOBILE — V6 FUNCTIONAL + QUIET LUXURY
   Baza: V6 (funcțional pe iOS) + design rafinat
   ════════════════════════════════════════════════════════════ */

/* ── Burger lines ─────────────────────────────────────────── */
.nav__burger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #ECE6DD;
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
}
.nav.on-light .nav__burger-line { background: #2B2826; }
.nav__burger.is-open .nav__burger-line { background: #2B2826 !important; }
.nav__burger.is-open .nav__burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open .nav__burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Backdrop ─────────────────────────────────────────────── */
.nav__backdrop {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(10, 9, 8, 0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.nav__backdrop.is-active {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s linear 0s;
}

/* ══ MOBIL ════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Nav bar pe mobil — ivory solid */
  .nav {
    height: 64px !important;
    background: rgba(246, 243, 238, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(217, 209, 197, 0.6) !important;
  }

  .nav.on-dark {
    background: rgba(246, 243, 238, 0.98) !important;
  }

  /* Burger */
  .nav__burger {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    padding: 10px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 1001 !important;
  }

  /* Panel — identic V6 ca structură, rafinat vizual */
  .nav__panel {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 78vw !important;
    max-width: 320px !important;
    z-index: 1000 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;

    /* Ivory solid — fără backdrop-filter care rupe iOS */
    background: #F6F3EE !important;
    border-left: 1px solid rgba(217, 209, 197, 0.8) !important;
    box-shadow: -8px 0 48px rgba(10, 9, 8, 0.12) !important;

    /* Nicio mască — bug Safari */
    -webkit-mask-image: none !important;
    mask-image: none !important;

    /* Identic V6 */
    transform: translateX(110%) !important;
    visibility: hidden !important;
    transition: transform 0.44s cubic-bezier(0.22,1,0.36,1),
                visibility 0s linear 0.44s !important;
  }

  .nav__panel.is-active {
    transform: translateX(0) !important;
    visibility: visible !important;
    transition: transform 0.44s cubic-bezier(0.22,1,0.36,1),
                visibility 0s linear 0s !important;
  }

  /* Linie decorativă sus — Quiet Luxury detail */
  .nav__panel::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 28px;
    right: 24px;
    height: 1px;
    background: rgba(217, 209, 197, 0.6);
    z-index: 3;
    pointer-events: none;
  }

  /* Fade gradient la baza panoului */
  .nav__panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(246, 243, 238, 0.95) 100%
    );
    pointer-events: none !important;
    z-index: 2;
  }

  /* Menu scroll — identic V6, toate link-urile vizibile */
  .menu-scroll {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;

    /* Padding generos — toate cele 7 link-uri vizibile fără scroll */
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    padding-left: 28px !important;
    padding-right: 24px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain !important;
    background: transparent !important;

    /* Fără mască — bug Safari */
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  /* Nav items — Quiet Luxury */
  .nav__item {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(24px, 5.5vw, 32px) !important;
    font-weight: 300 !important;
    letter-spacing: 0.01em !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    color: #2B2826 !important;
    text-decoration: none !important;

    display: block !important;
    width: 100% !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(217, 209, 197, 0.5) !important;
    background: transparent !important;
    box-shadow: none !important;

    /* Z-index și pointer-events — identic V6 */
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;

    opacity: 1 !important;
    transition: opacity 0.2s ease, color 0.2s ease !important;
    -webkit-tap-highlight-color: rgba(122, 115, 106, 0.08) !important;
  }

  /* Elimină underline-ul de pe desktop */
  .nav__item::after { display: none !important; }

  /* Toate link-urile la opacitate 1 — toate vizibile clar */
  .menu-scroll .nav__item:nth-child(1) { opacity: 1 !important; }
  .menu-scroll .nav__item:nth-child(2) { opacity: 1 !important; }
  .menu-scroll .nav__item:nth-child(3) { opacity: 1 !important; }
  .menu-scroll .nav__item:nth-child(4) { opacity: 1 !important; }
  .menu-scroll .nav__item:nth-child(n+5) { opacity: 1 !important; }

  .nav__item:hover,
  .nav__item:active,
  .nav__item:focus {
    opacity: 1 !important;
    color: #7A736A !important;
    outline: none !important;
  }

  /* Contact — taupe subtil */
  .nav__item--contact {
    color: #7A736A !important;
    font-size: clamp(20px, 4.5vw, 26px) !important;
  }

  /* Signature Series — sans-serif mic, elegant */
  .nav__item--sig {
    font-family: 'Jost', system-ui, sans-serif !important;
    font-size: 9px !important;
    letter-spacing: 0.38em !important;
    text-transform: uppercase !important;
    color: #9E9890 !important;
    border-bottom: none !important;
    padding-top: 16px !important;
    padding-bottom: 8px !important;
    opacity: 1 !important;
  }

  .nav__item--cta {
    border: none !important;
    background: transparent !important;
    color: #7A736A !important;
  }

} /* end mobile */

/* ══ DESKTOP ═════════════════════════════════════════════ */
@media (min-width: 901px) {

  .nav__burger  { display: none !important; }
  .nav__backdrop { display: none !important; }

  .nav {
    height: var(--nav-h) !important;
    background: unset !important;
  }

  .nav__panel {
    display: flex !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: var(--s-lg) !important;
    transition: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .nav__panel::before { display: none !important; }
  .nav__panel::after  { display: none !important; }

  .menu-scroll {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: var(--s-lg) !important;
    flex: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .nav__item {
    font-family: 'Jost', system-ui, sans-serif !important;
    font-size: clamp(11px, 1vw, 13px) !important;
    font-weight: 300 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: rgba(214, 204, 192, 0.85) !important;
    display: inline !important;
    width: auto !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    position: relative !important;
    z-index: auto !important;
    transition: color 0.25s ease !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    cursor: none !important;
  }

  .nav__item::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 0 !important;
    height: 1px !important;
    background: #7A736A !important;
    transition: width 0.5s cubic-bezier(0.22,1,0.36,1) !important;
  }

  .nav__item:hover { color: #ECE6DD !important; }
  .nav__item:hover::after { width: 100% !important; }
  .nav.on-light .nav__item { color: #7A756F !important; }
  .nav.on-light .nav__item:hover { color: #2B2826 !important; }

  .nav__item--sig {
    opacity: 1 !important;
    color: rgba(214, 204, 192, 0.85) !important;
    font-size: clamp(11px, 1vw, 13px) !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

} /* end desktop */
/* ──────────────────────────────────────────
   TESTIMONIAL TEASER
────────────────────────────────────────── */
.testimonial-teaser {
  background: var(--ivory);
  border-top: 1px solid var(--sand);
  padding-block: clamp(80px, 10vw, 140px);
}

.testimonial-teaser__inner {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 32px);
}

.testimonial-teaser__mark {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 200;
  line-height: 0.7;
  color: var(--sand);
  display: block;
  user-select: none;
}

.testimonial-teaser__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--ink);
  line-height: 1.65;
  letter-spacing: 0.01em;
  max-width: 780px;
}

.testimonial-teaser__author {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe-d);
}

/* link-arrow deja definit global — override doar margin-top */
.testimonial-teaser .link-arrow {
  margin-top: 0;
}
