@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("public/fonts/cormorant-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("public/fonts/cormorant-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("public/fonts/inter-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("public/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("public/fonts/manrope-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("public/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("public/fonts/newsreader-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB;
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("public/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}

:root {
  --paper: #f2eee6;
  --paper-muted: rgba(242, 238, 230, 0.74);
  --line: rgba(242, 238, 230, 0.26);
  --ink: #171715;
  --wood: #ad8a63;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--paper);
  background: var(--ink);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--ink); }
a { color: inherit; text-decoration: none; }

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #25231f url("public/images/hero-poster.png") center 58% / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: brightness(0.88) contrast(1.08) saturate(0.88);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.48) 42%, rgba(8,8,8,.18) 76%, rgba(8,8,8,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.42) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 25% 62% at 91% 57%, rgba(0,0,0,.74) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.26) 72%, transparent 100%),
    linear-gradient(90deg, transparent 70%, rgba(0,0,0,.08) 80%, rgba(0,0,0,.36) 100%);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 104px;
  padding: 0 clamp(24px, 4.2vw, 72px);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand__mark { display: flex; align-items: flex-end; gap: 3px; height: 31px; }
.brand__mark i { display: block; width: 5px; border: 1px solid var(--paper); }
.brand__mark i:nth-child(1) { height: 14px; }
.brand__mark i:nth-child(2) { height: 22px; }
.brand__mark i:nth-child(3) { height: 30px; }
.brand__name { font-size: 10px; line-height: 1.25; letter-spacing: .18em; font-weight: 600; }

.site-nav { display: flex; gap: clamp(28px, 3.4vw, 58px); font-size: 12px; letter-spacing: .07em; }
.site-nav a { color: var(--paper-muted); transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--paper); }
.header-cta { justify-self: end; font-size: 12px; letter-spacing: .06em; padding-bottom: 7px; border-bottom: 1px solid rgba(242,238,230,.6); }
.header-cta span { margin-left: 9px; }

.hero__content {
  position: absolute;
  top: 52%;
  left: clamp(24px, 8vw, 138px);
  width: min(730px, calc(100% - 48px));
  transform: translateY(-45%);
}

.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 27px; font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--paper-muted); }
.hero__eyebrow span { width: 40px; height: 1px; background: var(--wood); }
h1 { margin: 0; font-family: "Newsreader", Georgia, serif; font-weight: 400; font-size: clamp(48px, 5.35vw, 88px); line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.hero__lead { max-width: 590px; margin: 30px 0 0; font-size: clamp(14px, 1.1vw, 17px); line-height: 1.75; color: var(--paper-muted); }
.hero__actions { display: flex; gap: 12px; margin-top: 39px; }
.button { min-height: 56px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; font-size: 12px; font-weight: 600; letter-spacing: .035em; border: 1px solid transparent; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.button--primary { background: var(--paper); color: var(--ink); }
.button--primary:hover, .button--primary:focus-visible { background: #fffaf0; }
.button--ghost { border-color: rgba(242,238,230,.42); background: rgba(15,15,14,.08); backdrop-filter: blur(3px); }
.button--ghost:hover, .button--ghost:focus-visible { border-color: rgba(242,238,230,.82); }
.button span { font-size: 16px; font-weight: 400; }

.hero__footer { position: absolute; left: clamp(24px, 4.2vw, 72px); right: clamp(24px, 4.2vw, 72px); bottom: 27px; display: flex; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .19em; text-transform: uppercase; color: rgba(242,238,230,.5); }
.hero__footer i { width: 3px; height: 3px; border-radius: 50%; background: var(--wood); }

/* Cinematic transition — stairs emerging from darkness */
/* Section 02 — conversation */
.conversation {
  --section-paper: #f7f4ef;
  --section-black: #0b0b0b;
  --section-gold: #c8a36a;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100svh;
  overflow: clip;
  font-family: "Inter", Arial, sans-serif;
}

.conversation h2,
.conversation p { margin-top: 0; }

.conversation__story {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(52px, 4.4vw, 76px) clamp(34px, 5.8vw, 96px) clamp(42px, 4vw, 64px);
  color: #151412;
  background: var(--section-paper);
}

.story__copy { width: min(100%, 650px); }
.section-kicker {
  margin-bottom: clamp(34px, 3vw, 52px);
  color: #9e7544;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
}

.conversation h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 3.2vw, 58px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.story__text {
  display: grid;
  gap: 17px;
  width: min(100%, 590px);
  margin-top: clamp(24px, 1.9vw, 32px);
  color: #393632;
  font-size: clamp(13px, .9vw, 16px);
  line-height: 1.65;
}

.story__text p { margin-bottom: 0; }
.story__figure { margin: 0; padding-top: clamp(28px, 2.5vw, 40px); }
.story__image-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  background: #d3c5b2;
  aspect-ratio: 16 / 10;
  transition: transform 700ms cubic-bezier(.22,.61,.36,1);
}

.story__image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.035) contrast(1.045) saturate(.93);
  transform: scale(1.018) translate3d(-.35%, .2%, 0);
  animation: photoDrift 11s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  transition: filter 700ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.story__image-frame:hover { transform: scale(1.008); }
.story__image-frame:hover img {
  filter: brightness(1.055) contrast(1.06) saturate(.95);
}

@keyframes photoDrift {
  0% { transform: scale(1.018) translate3d(-.35%, .2%, 0); }
  50% { transform: scale(1.036) translate3d(.2%, -.25%, 0); }
  100% { transform: scale(1.052) translate3d(.55%, .15%, 0); }
}

.story__figure figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: #9e7544;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.story__figure figcaption i { width: 20px; height: 1px; background: rgba(158,117,68,.45); }

.conversation__questions {
  min-width: 0;
  padding: clamp(48px, 3.8vw, 64px) clamp(34px, 5.4vw, 90px) clamp(40px, 3.5vw, 58px);
  color: #f4efe7;
  background: var(--section-black);
}

.questions__inner { width: min(100%, 670px); margin-inline: auto; }
.conversation__questions h2 { max-width: 540px; margin-bottom: clamp(26px, 2.2vw, 36px); color: #f5f0e9; }
.typing-word { display: inline-block; white-space: nowrap; }
.typing-letter { display: inline-block; }
.question-list { margin: 0; padding: 0; list-style: none; }
.question-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 36px;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  min-height: clamp(72px, 5vw, 88px);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: border-color 400ms ease;
}

.question-item:first-child { border-top: 1px solid rgba(255,255,255,.13); }
.question-item__number { color: var(--section-gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; transition: color 400ms ease; }
.question-item p { margin-bottom: 0; color: rgba(247,244,239,.82); font-size: clamp(12px, .88vw, 15px); line-height: 1.5; }
.question-item svg { justify-self: end; width: 28px; height: 28px; fill: none; stroke: var(--section-gold); stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; transition: transform 500ms cubic-bezier(.22,.61,.36,1), stroke 400ms ease; }
.question-item:hover { border-color: rgba(255,255,255,.27); }
.question-item:hover .question-item__number { color: #e1c08c; }
.question-item:hover svg { transform: rotate(6deg); stroke: #e1c08c; }

.process-box {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  margin-top: clamp(26px, 2.2vw, 34px);
  padding: clamp(26px, 2.1vw, 32px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.02);
  transition: transform 500ms cubic-bezier(.22,.61,.36,1), border-color 500ms ease, background-color 500ms ease;
}

.process-box:hover { transform: translateY(-4px); border-color: rgba(200,163,106,.4); background: rgba(255,255,255,.028); }
.process-box__icon { width: 42px; height: 42px; fill: none; stroke: var(--section-gold); stroke-width: 1.2; stroke-linejoin: round; }
.process-box__copy p { margin-bottom: 13px; color: rgba(247,244,239,.8); font-size: clamp(13px, .95vw, 16px); line-height: 1.5; }
.process-box__copy strong { display: block; color: var(--section-gold); font-size: clamp(14px, 1vw, 17px); font-weight: 500; line-height: 1.55; }
.process-box__copy span { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--section-gold); font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.process-box__copy span i { font-style: normal; font-size: 18px; transition: transform 400ms cubic-bezier(.22,.61,.36,1); }
.process-box:hover .process-box__copy span i { transform: translateX(8px); }

.story__copy,
.conversation__questions > .questions__inner > h2,
.story__figure,
.question-item,
.process-box { opacity: 1; }

.js-gsap .story__copy,
.js-gsap .conversation__questions > .questions__inner > h2,
.js-gsap .story__figure,
.js-gsap .question-item,
.js-gsap .process-box { opacity: 0; }


@media (min-width: 821px) {
  .conversation {
    grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
    min-height: auto;
  }

  .conversation__story {
    padding: clamp(38px, 3vw, 52px) clamp(32px, 3.7vw, 66px) clamp(32px, 2.7vw, 46px);
  }

  .section-kicker { margin-bottom: clamp(22px, 1.8vw, 30px); }
  .conversation h2 { font-size: clamp(36px, 2.65vw, 49px); line-height: .96; }
  .story__text {
    gap: 12px;
    margin-top: clamp(18px, 1.45vw, 25px);
    font-size: clamp(13px, .82vw, 15px);
    line-height: 1.55;
  }

  .story__figure { padding-top: clamp(18px, 1.5vw, 26px); }
  .story__image-frame { aspect-ratio: 16 / 8.7; }
  .story__figure figcaption { margin-top: 13px; }

  .conversation__questions {
    padding: clamp(36px, 2.8vw, 48px) clamp(34px, 3.5vw, 62px) clamp(32px, 2.6vw, 44px);
  }

  .questions__inner { width: min(100%, 900px); }
  .conversation__questions h2 {
    max-width: 700px;
    margin-bottom: clamp(20px, 1.6vw, 28px);
  }

  .question-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(22px, 2.2vw, 38px);
  }

  .question-item {
    grid-template-columns: 29px minmax(0, 1fr) 23px;
    gap: clamp(10px, .9vw, 16px);
    min-height: 82px;
    padding-block: 10px;
  }

  .question-item:nth-child(2) { border-top: 1px solid rgba(255,255,255,.13); }
  .question-item:last-child { grid-column: 1 / -1; }
  .question-item__number { font-size: 19px; }
  .question-item p { font-size: clamp(12px, .76vw, 14px); line-height: 1.42; }
  .question-item svg { width: 22px; height: 22px; }

  .process-box {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
    margin-top: clamp(18px, 1.5vw, 24px);
    padding: clamp(18px, 1.5vw, 24px);
    border-radius: 20px;
  }

  .process-box__icon { width: 34px; height: 34px; }
  .process-box__copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
    align-items: center;
  }

  .process-box__copy p {
    grid-column: 1;
    margin-bottom: 6px;
    font-size: clamp(12px, .82vw, 14px);
  }

  .process-box__copy strong {
    grid-column: 1;
    font-size: clamp(13px, .88vw, 15px);
    line-height: 1.42;
  }

  .process-box__copy span {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
    white-space: nowrap;
  }
}

/* Compact full-width question section */
@media (min-width: 821px) {
  .conversation {
    display: block;
    min-height: auto;
    background: #0b0b0b;
  }

  .conversation__questions {
    min-height: 0;
    padding: clamp(52px, 4.5vw, 76px) clamp(44px, 6vw, 108px);
  }

  .questions__inner {
    width: min(100%, 1180px);
    margin-inline: auto;
  }

  .conversation__questions h2 {
    max-width: 900px;
    margin: 0 auto clamp(26px, 2.4vw, 38px);
    text-align: center;
  }

  .process-box {
    width: min(100%, 1040px);
    margin-inline: auto;
  }
}

/* Section 03 — craftsmanship */
.craft {
  --split: 50%;
  display: grid;
  grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  grid-template-rows: auto 1fr;
  grid-template-areas: "visual intro" "visual points";
  min-height: 110svh;
  padding: 18px;
  color: #171614;
  background: #ebe9e5;
  font-family: "Inter", Arial, sans-serif;
  overflow: clip;
}

.craft__visual {
  position: relative;
  grid-area: visual;
  min-height: calc(110svh - 36px);
  overflow: hidden;
  border-radius: 22px 0 0 22px;
  background: #17130f;
  isolation: isolate;
  cursor: ew-resize;
}

.craft__image {
  position: absolute;
  inset: -1.5%;
  z-index: 0;
  background-image: url("public/images/rzemioslo-split.webp");
  background-repeat: no-repeat;
  background-size: 200% auto;
  transform: scale(1.001);
  transform-origin: center;
  will-change: transform, clip-path;
}

.craft__image--raw { background-position: left center; }
.craft__image--finished {
  z-index: 1;
  background-position: right center;
  clip-path: inset(0 0 0 var(--split));
}

.craft__image-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,.46) 82%, rgba(0,0,0,.97) 91%, #050403 100%);
}

.craft__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 4;
  width: 1px;
  background: rgba(200,163,106,.88);
  transform: translateX(-.5px);
  will-change: left;
}

.craft__handle {
  position: absolute;
  top: 50%;
  left: var(--split);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: #181714;
  background: rgba(250,248,244,.96);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.craft__handle:hover,
.craft.is-dragging .craft__handle {
  border-color: #fff;
  box-shadow: 0 10px 34px rgba(0,0,0,.22);
  transform: translate(-50%, -50%) scale(1.06);
}

.craft__handle:focus-visible {
  outline: 2px solid #c8a36a;
  outline-offset: 4px;
}

.craft__handle i { font-family: Georgia, serif; font-size: 25px; font-style: normal; font-weight: 400; line-height: 1; }
.craft__label {
  position: absolute;
  bottom: 35px;
  z-index: 3;
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
}
.craft__label--raw { left: 8%; }
.craft__label--finished { right: 8%; }

.craft__intro {
  grid-area: intro;
  padding: clamp(58px, 5vw, 86px) clamp(42px, 5vw, 82px) 24px;
  border-radius: 0 22px 0 0;
  background: #f7f4ef;
}

.craft__kicker {
  margin: 0 0 clamp(30px, 2.8vw, 44px);
  color: #b48145;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
}

.craft__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 4.25vw, 76px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.038em;
}

.craft__description {
  display: grid;
  gap: 11px;
  max-width: 570px;
  margin-top: clamp(30px, 2.7vw, 44px);
  color: #3f3b36;
  font-size: clamp(13px, .92vw, 16px);
  line-height: 1.62;
}
.craft__description p { margin: 0; }

.craft__principles {
  grid-area: points;
  display: grid;
  align-content: end;
  gap: clamp(28px, 2.8vw, 44px);
  margin: 0;
  padding: 18px clamp(42px, 5vw, 82px) clamp(54px, 4vw, 72px);
  border-radius: 0 0 22px 0;
  list-style: none;
  background: #f7f4ef;
}

.craft-point {
  display: grid;
  grid-template-columns: 28px 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}
.craft-point__number { color: #b48145; font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; line-height: 1.1; }
.craft-point > i { width: 46px; height: 1px; margin-top: 11px; background: rgba(180,129,69,.65); }
.craft-point h3 { margin: 0 0 10px; font-size: clamp(15px, 1.05vw, 18px); font-weight: 600; line-height: 1.34; }
.craft-point p { max-width: 500px; margin: 0; color: #5c5750; font-size: clamp(14px, .95vw, 16px); line-height: 1.62; }

.craft-heading-line { display: block; }
.craft-heading-word { display: inline-block; white-space: nowrap; }
.craft-heading-letter { display: inline-block; }

.js-gsap .craft__kicker,
.js-gsap .craft__intro h2,
.js-gsap .craft__description,
.js-gsap .craft-point { opacity: 0; }

@media (max-width: 820px) {
  .hero__video, .hero { object-position: 62% 58%; background-position: 62% 58%; }
  .site-header { height: 86px; grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero__content { top: 53%; left: clamp(24px, 7vw, 56px); width: min(650px, calc(100% - 48px)); }
  h1 { font-size: clamp(50px, 9vw, 74px); }
  .conversation { grid-template-columns: 1fr; min-height: auto; }
  .question-list { display: block; }
  .question-item:nth-child(2) { border-top: 0; }
  .question-item:last-child { grid-column: auto; }
  .conversation__story,
  .conversation__questions { padding: 72px clamp(28px, 7vw, 56px); }
  .story__copy { width: min(100%, 680px); }
  .story__figure { margin-top: 0; padding-top: 36px; }
  .conversation__questions h2 { max-width: 650px; }
  .questions__inner { width: 100%; }
  .question-item { min-height: 104px; }
  .craft {
    --split: 50%;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "intro" "visual" "points";
    min-height: auto;
    padding: 0;
    background: #f7f4ef;
  }
  .craft__intro { padding: 72px clamp(28px, 7vw, 56px) 42px; border-radius: 0; }
  .craft__visual { min-height: 0; height: min(112vw, 650px); margin: 0 clamp(18px, 4vw, 30px); border-radius: 18px; }
  .craft__image { inset: -1%; background-size: 200% auto; }
  .craft__principles { padding: 52px clamp(28px, 7vw, 56px) 72px; border-radius: 0; }
}

@media (max-width: 540px) {
  .hero { min-height: 720px; }
  .hero__video, .hero { object-position: 66% center; background-position: 66% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(8,8,8,.75) 0%, rgba(8,8,8,.45) 72%, rgba(8,8,8,.2) 100%), linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.13) 55%, rgba(0,0,0,.55) 100%); }
  .site-header { padding-inline: 20px; height: 78px; }
  .header-cta { font-size: 0; padding: 10px 0 8px; }
  .header-cta::before { content: "Wycena"; font-size: 11px; }
  .header-cta span { font-size: 13px; margin-left: 8px; }
  .hero__content { left: 20px; width: calc(100% - 40px); top: 48%; transform: translateY(-40%); }
  .hero__eyebrow { font-size: 9px; letter-spacing: .16em; margin-bottom: 22px; gap: 10px; }
  .hero__eyebrow span { width: 24px; }
  h1 { font-size: clamp(43px, 13.2vw, 61px); line-height: 1.01; }
  h1 br { display: none; }
  .hero__lead { margin-top: 23px; font-size: 14px; line-height: 1.65; max-width: 440px; }
  .hero__actions { flex-direction: column; margin-top: 29px; gap: 9px; width: min(100%, 330px); }
  .button { min-height: 52px; }
  .hero__footer { left: 20px; right: 20px; bottom: 20px; }
  .conversation__story,
  .conversation__questions { padding: 64px 20px; }
  .section-kicker { margin-bottom: 29px; font-size: 9px; }
  .conversation h2 { font-size: clamp(42px, 12vw, 55px); line-height: 1; }
  .story__text { margin-top: 27px; font-size: 14px; line-height: 1.65; }
  .story__figure { padding-top: 30px; }
  .story__image-frame { border-radius: 14px; aspect-ratio: 4 / 3; }
  .story__figure figcaption { gap: 10px; margin-top: 16px; font-size: 8px; letter-spacing: .15em; }
  .story__figure figcaption i { width: 12px; }
  .conversation__questions h2 { margin-bottom: 36px; }
  .question-item { grid-template-columns: 38px minmax(0,1fr) 27px; gap: 13px; min-height: 108px; }
  .question-item__number { align-self: start; padding-top: 24px; font-size: 21px; }
  .question-item p { padding-block: 21px; font-size: 14px; line-height: 1.5; }
  .question-item svg { width: 25px; height: 25px; }
  .process-box { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; padding: 24px; border-radius: 18px; }
  .process-box__copy { display: block; }
  .process-box__icon { width: 42px; height: 42px; }
  .process-box__copy p { font-size: 14px; }
  .process-box__copy strong { font-size: 14px; }
  .process-box__copy span { margin-top: 26px; font-size: 9px; }
  .craft__intro { padding: 64px 20px 36px; }
  .craft__kicker { margin-bottom: 27px; font-size: 9px; }
  .craft__intro h2 { font-size: clamp(48px, 14vw, 62px); line-height: .95; }
  .craft__description { margin-top: 27px; font-size: 14px; }
  .craft__visual { height: 122vw; max-height: 560px; margin-inline: 16px; border-radius: 14px; }
  .craft__handle { width: 42px; height: 42px; gap: 4px; }
  .craft__handle i { font-size: 22px; }
  .craft__label { bottom: 22px; font-size: 7px; letter-spacing: .16em; }
  .craft__label--raw { left: 7%; }
  .craft__label--finished { right: 7%; }
  .craft__principles { gap: 34px; padding: 46px 20px 68px; }
  .craft-point { grid-template-columns: 27px 34px minmax(0,1fr); gap: 10px; }
  .craft-point > i { width: 34px; }
  .craft-point h3 { font-size: 16px; }
  .craft-point p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__video { display: none; }
  .craft { --split: 50%; }
  .craft__image { transform: none !important; }
  .js-gsap .craft__kicker,
  .js-gsap .craft__intro h2,
  .js-gsap .craft__description,
  .js-gsap .craft-point { opacity: 1 !important; transform: none !important; }
  .story__image-frame img { animation: none; transform: scale(1.01); }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .js-gsap .story__copy,
  .js-gsap .conversation__questions > .questions__inner > h2,
  .js-gsap .story__figure,
  .js-gsap .question-item,
  .js-gsap .process-box { opacity: 1 !important; transform: none !important; }
}

@media (min-width: 821px) {
  .craft {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .craft__visual {
    min-height: 0;
    height: min(84svh, 720px);
    align-self: start;
    border-radius: 22px;
  }

  .craft__intro {
    padding-top: clamp(40px, 3.3vw, 58px);
    padding-bottom: 18px;
  }

  .craft__kicker { margin-bottom: clamp(22px, 1.8vw, 30px); }
  .craft__description { margin-top: clamp(22px, 1.8vw, 30px); gap: 8px; line-height: 1.52; }
  .craft__principles { gap: clamp(18px, 1.6vw, 26px); padding-top: 12px; padding-bottom: clamp(34px, 3vw, 50px); }
  .craft-point h3 { margin-bottom: 6px; }
  .craft-point p { line-height: 1.5; }
}


/* Readability refinement for the question grid */
@media (min-width: 821px) {
  .question-item:last-child { grid-column: auto; }
  .question-item__number { font-size: 21px; }
  .question-item p { font-size: clamp(14px, .9vw, 16px); line-height: 1.5; }
}

/* Editorial horizontal craftsmanship layout */
@media (min-width: 821px) {
  .craft {
    grid-template-columns: minmax(0, 1.72fr) minmax(360px, .98fr);
    grid-template-rows: auto auto;
    grid-template-areas: "intro intro" "visual points";
    gap: clamp(34px, 3.1vw, 58px) clamp(38px, 4vw, 72px);
    min-height: auto;
    padding: clamp(52px, 4.8vw, 82px) clamp(38px, 4vw, 72px);
    background: #f7f4ef;
    overflow: hidden;
  }

  .craft__intro {
    padding: 0 clamp(2px, 1.5vw, 24px);
    border-radius: 0;
    background: transparent;
  }

  .craft__kicker {
    margin-bottom: clamp(24px, 2vw, 34px);
  }

  .craft__intro h2 {
    max-width: 1220px;
    font-size: clamp(58px, 5.15vw, 88px);
    line-height: .93;
    letter-spacing: -.045em;
  }

  .craft__description { display: none; }

  .craft__visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.72 / 1;
    align-self: start;
    border-radius: 20px;
  }

  .craft__label { bottom: 26px; }

  .craft__principles {
    align-content: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .craft-point {
    grid-template-columns: clamp(54px, 4vw, 70px) 1px minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(20px, 2vw, 34px);
    padding: clamp(20px, 2vw, 32px) 0;
    border-bottom: 1px solid rgba(35,31,27,.16);
  }

  .craft-point:first-child { padding-top: 10px; }
  .craft-point:last-child { padding-bottom: 10px; border-bottom: 0; }

  .craft-point__number {
    font-size: clamp(36px, 3vw, 50px);
    line-height: 1;
  }

  .craft-point > i {
    width: 1px;
    height: 100%;
    min-height: 84px;
    margin: 0;
    background: rgba(60,51,42,.18);
  }

  .craft-point h3 {
    margin: 0 0 12px;
    font-size: clamp(15px, 1.08vw, 18px);
    line-height: 1.35;
  }

  .craft-point p {
    font-size: clamp(13px, .88vw, 15px);
    line-height: 1.58;
  }
}


/* Section 04 — process */
.process {
  --process-gap: clamp(30px, 3.4vw, 58px);
  min-height: 600px;
  padding: 20px clamp(26px, 4vw, 68px) 22px;
  color: #f2eee6;
  background: #1d1d1d;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.process__rule { width: 100%; height: 1px; background: rgba(255,255,255,.68); transform-origin: left center; }
.process__rule--bottom { margin-top: 28px; }

.process > h2 {
  margin: 28px auto 32px;
  color: #f5f1e9;
  font-size: clamp(12px, .9vw, 15px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .05em;
  text-align: center;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--process-gap);
  max-width: 1480px;
  margin-inline: auto;
}

.process-step { position: relative; min-width: 0; }
.process-step__media {
  --line-scale: 1;
  position: relative;
  width: min(100%, 210px);
  aspect-ratio: 4 / 5;
  margin: 0 auto 22px 0;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.78);
  background: #262626;
}

.process-step__media::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  width: calc(var(--process-gap) - 28px);
  height: 1px;
  background: rgba(255,255,255,.72);
  transform: scaleX(var(--line-scale));
  transform-origin: left center;
}
.process-step:last-child .process-step__media::after { display: none; }

.process-step__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.86) saturate(.82) contrast(1.06);
  transition: transform 700ms cubic-bezier(.22,.61,.36,1), filter 700ms ease;
}
.process-step:hover .process-step__media img { transform: scale(1.035); filter: brightness(.94) saturate(.88) contrast(1.07); }
.process-step__number { display: block; margin-bottom: 18px; color: #d2ad75; font-family: "Cormorant Garamond", Georgia, serif; font-size: 18px; }
.process-step h3 { min-height: 42px; margin: 0 0 12px; font-size: clamp(14px, 1vw, 17px); font-weight: 500; line-height: 1.35; }
.process-step p { max-width: 265px; margin: 0; color: rgba(242,238,230,.74); font-size: clamp(12px, .82vw, 14px); line-height: 1.55; }

.js-gsap .process > h2,
.js-gsap .process-step { opacity: 0; }
.js-gsap .process-step__media { --line-scale: 0; }

@media (max-width: 820px) {
  .process { min-height: auto; padding: 28px clamp(22px, 6vw, 42px) 42px; }
  .process > h2 { margin-block: 32px 42px; }
  .process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 46px 28px; }
  .process-step__media { width: min(100%, 240px); }
  .process-step__media::after { display: none; }
  .process__rule--bottom { margin-top: 40px; }
}

@media (max-width: 540px) {
  .process__steps { grid-template-columns: 1fr; gap: 48px; }
  .process-step__media { width: min(72vw, 270px); margin-inline: auto; }
  .process-step h3, .process-step p, .process-step__number { max-width: 270px; margin-left: auto; margin-right: auto; }
}


/* Process typography and connector refinement */
.process > h2 {
  margin-bottom: 8px;
  color: #e8b96a;
}

.process__subtitle {
  margin: 0 auto 34px;
  color: rgba(242,238,230,.58);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.process-step__media {
  overflow: hidden;
  border: 1px solid #3a342c;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.process-step__media::before,
.process-step__media::after,
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8b96a;
  transform: translateY(-50%) scale(1);
  animation: processDotPulse 1.8s ease-in-out infinite;
}

.process-step__media::before { left: calc(100% + 24px); animation-delay: 0s; }
.process-step__media::after { left: calc(100% + 38px); animation-delay: .3s; }
.process-step:not(:last-child)::after { left: calc(50% + 79px); animation-delay: .6s; }
.process-step:last-child .process-step__media::before,
.process-step:last-child .process-step__media::after { display: none; }

@keyframes processDotPulse {
  0%, 100% { opacity: .35; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.3); }
}

.process-step__number {
  color: #b48145;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.process-step h3 {
  min-height: 52px;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 1.75vw, 29px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.015em;
}

.process-step p {
  max-width: 250px;
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.55;
}

.js-gsap .process__subtitle { opacity: 0; }

@media (max-width: 820px) {
  .process__subtitle { margin-bottom: 40px; }
  .process-step__media::before,
  .process-step__media::after,
  .process-step:not(:last-child)::after { display: none; }
}


.process-step__media::before,
.process-step__media::after,
.process-step:not(:last-child)::after { display: none; }

.process-step__dots {
  position: absolute;
  top: 129px;
  left: 234px;
  z-index: 5;
  display: flex;
  gap: 8px;
  pointer-events: none;
}
.process-step__dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8b96a;
  animation: processDotPulseSimple 1.8s ease-in-out infinite;
}
.process-step__dots i:nth-child(1) { animation-delay: 0s; }
.process-step__dots i:nth-child(2) { animation-delay: .3s; }
.process-step__dots i:nth-child(3) { animation-delay: .6s; }
@keyframes processDotPulseSimple {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
@media (max-width: 820px) { .process-step__dots { display: none; } }


/* Process title — same editorial serif as the questions heading */
.process > h2 {
  margin: 20px auto 8px;
  color: #f2eee6;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 2.8vw, 50px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
  text-transform: none;
}
.process__subtitle { margin-bottom: 24px; }
.process-heading-line { display: block; }
.process-heading-word { display: inline-block; white-space: nowrap; }
.process-heading-letter { display: inline-block; }

/* Section 05 — offer */
.offer {
  padding: clamp(76px, 7vw, 122px) clamp(28px, 5vw, 86px) clamp(84px, 7vw, 124px);
  color: #171614;
  background: #f7f4ef;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.offer__header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  grid-template-areas:
    "kicker kicker"
    "title lead";
  align-items: end;
  column-gap: clamp(38px, 6vw, 104px);
  max-width: 1440px;
  margin: 0 auto clamp(48px, 5vw, 82px);
}

.offer__kicker {
  grid-area: kicker;
  margin: 0 0 clamp(24px, 2.2vw, 36px);
  color: #b48145;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.offer__header h2 {
  grid-area: title;
  max-width: 920px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 5vw, 84px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.045em;
}

.offer__header h2 em {
  color: #9a7650;
  font-weight: 400;
}

.offer__lead {
  grid-area: lead;
  max-width: 430px;
  margin: 0 0 4px;
  color: #5c5750;
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.65;
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(52px, 5vw, 82px) clamp(24px, 2.8vw, 48px);
  max-width: 1440px;
  margin-inline: auto;
}

.offer-card {
  min-width: 0;
}

.offer-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
  background: #e3ddd4;
}

.offer-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(25,22,18,.08);
  border-radius: inherit;
}

.offer-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.03);
  transition: transform 700ms cubic-bezier(.22,.61,.36,1), filter 700ms ease;
}

.offer-card:hover .offer-card__media img {
  transform: scale(1.035);
  filter: saturate(.95) contrast(1.04);
}

.offer-card__media span {
  position: absolute;
  right: 15px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(13,12,10,.28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  backdrop-filter: blur(8px);
}

.offer-card__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, .78fr);
  gap: clamp(18px, 2vw, 34px);
  padding-top: 20px;
}

.offer-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.offer-card p {
  margin: 0;
  color: #69635b;
  font-size: clamp(12px, .82vw, 14px);
  line-height: 1.6;
}

.js-gsap .offer__kicker,
.js-gsap .offer__header h2,
.js-gsap .offer__lead,
.js-gsap .offer-card {
  opacity: 0;
}

@media (max-width: 1020px) {
  .offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card__copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .offer {
    padding: 72px 22px 84px;
  }

  .offer__header {
    grid-template-columns: 1fr;
    grid-template-areas: "kicker" "title" "lead";
    margin-bottom: 48px;
  }

  .offer__header h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .offer__lead {
    margin-top: 24px;
  }

  .offer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-card__media img {
    transition: none;
  }
}

/* Section 06 — selected projects */
.projects {
  padding: clamp(76px, 7vw, 118px) 0 clamp(80px, 7vw, 120px);
  color: #f2eee6;
  background: #0d0d0d;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.projects__header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  grid-template-areas:
    "kicker kicker"
    "title lead";
  align-items: end;
  column-gap: clamp(40px, 6vw, 104px);
  width: min(100% - 56px, 1440px);
  margin: 0 auto clamp(50px, 5vw, 78px);
}

.projects__kicker {
  grid-area: kicker;
  margin: 0 0 clamp(24px, 2.2vw, 36px);
  color: #c8a36a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.projects__header h2 {
  grid-area: title;
  max-width: 940px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 5vw, 84px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.045em;
}

.projects__header h2 em {
  color: #c8a36a;
  font-weight: 400;
}

.projects__lead {
  grid-area: lead;
  max-width: 430px;
  margin: 0 0 5px;
  color: rgba(242,238,230,.62);
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.65;
}

.projects__marquees {
  display: grid;
  gap: clamp(14px, 1.4vw, 24px);
}

.projects__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.projects__marquee::before,
.projects__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(28px, 7vw, 120px);
  pointer-events: none;
}

.projects__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0d0d0d 0%, rgba(13,13,13,.7) 38%, transparent 100%);
}

.projects__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #0d0d0d 0%, rgba(13,13,13,.7) 38%, transparent 100%);
}

.projects__track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.projects__track img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: clamp(230px, 30vw, 410px);
  border-radius: 10px;
  filter: saturate(.88) contrast(1.03);
}

.projects__marquee--left .projects__track {
  animation: projectsMoveLeft 34s linear infinite;
}

.projects__marquee--right .projects__track {
  animation: projectsMoveRight 38s linear infinite;
}

.projects__marquee:hover .projects__track {
  animation-play-state: paused;
}

@keyframes projectsMoveLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 8px), 0, 0); }
}

@keyframes projectsMoveRight {
  from { transform: translate3d(calc(-50% - 8px), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.js-gsap .projects__kicker,
.js-gsap .projects__header h2,
.js-gsap .projects__lead {
  opacity: 0;
}

@media (max-width: 700px) {
  .projects {
    padding: 72px 0 84px;
  }

  .projects__header {
    grid-template-columns: 1fr;
    grid-template-areas: "kicker" "title" "lead";
    width: calc(100% - 44px);
    margin-bottom: 46px;
  }

  .projects__header h2 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .projects__lead {
    margin-top: 24px;
  }

  .projects__track {
    gap: 10px;
  }

  .projects__track img {
    height: clamp(190px, 58vw, 250px);
    border-radius: 8px;
  }

  @keyframes projectsMoveLeft {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-50% - 5px), 0, 0); }
  }

  @keyframes projectsMoveRight {
    from { transform: translate3d(calc(-50% - 5px), 0, 0); }
    to { transform: translate3d(0, 0, 0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects__marquee {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .projects__track {
    animation: none !important;
    transform: none !important;
  }

  .projects__track img[aria-hidden="true"] {
    display: none;
  }
}

/* Section 07 — reviews */
.reviews {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 6vw, 104px);
  padding: clamp(72px, 6.5vw, 108px) clamp(28px, 6vw, 104px);
  color: #171614;
  background: #f7f4ef;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.reviews__intro {
  align-self: start;
  position: sticky;
  top: 60px;
}

.reviews__kicker {
  margin: 0 0 clamp(28px, 2.8vw, 44px);
  color: #b48145;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.reviews__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 5.6vw, 94px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.05em;
}

.reviews__intro h2 em {
  color: #9a7650;
  font-weight: 400;
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(48px, 5vw, 82px);
  padding-top: 22px;
  border-top: 1px solid rgba(31,27,23,.2);
}

.reviews__score {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 4vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.reviews__stars {
  display: block;
  margin-bottom: 6px;
  color: #b48145;
  font-size: 13px;
  letter-spacing: .16em;
}

.reviews__rating p {
  margin: 0;
  color: #6b655d;
  font-size: 11px;
  line-height: 1.45;
}

.reviews__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid rgba(31,27,23,.2);
  border-bottom: 1px solid rgba(31,27,23,.2);
}

.reviews__stat {
  padding: 22px 18px 22px 0;
}

.reviews__stat + .reviews__stat {
  padding-left: 24px;
  border-left: 1px solid rgba(31,27,23,.2);
}

.reviews__counter {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 3.6vw, 58px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.04em;
}

.reviews__stat p {
  max-width: 110px;
  margin: 0;
  color: #6b655d;
  font-size: 10px;
  line-height: 1.35;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 3vw, 50px);
  border-top: 1px solid rgba(31,27,23,.2);
}

.review {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 13px;
  align-content: start;
  padding: clamp(24px, 2.1vw, 34px) 0;
  border-bottom: 1px solid rgba(31,27,23,.2);
}

.review:nth-child(5) {
  grid-column: 1 / -1;
}

.review__avatar {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: #a57a4d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}

.review__avatar--sand { background: #b7a184; }
.review__avatar--graphite { background: #4c4b48; }
.review__avatar--olive { background: #74735d; }
.review__avatar--clay { background: #9d7461; }

.review__identity {
  align-self: center;
}

.review__identity strong {
  display: block;
  margin-bottom: 4px;
  color: #24211e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.review__identity span {
  display: block;
  color: #8a837a;
  font-size: 11px;
  line-height: 1.35;
}

.review__stars {
  grid-column: 2;
  margin: 11px 0 9px;
  color: #e8a724;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .12em;
}

.review blockquote {
  grid-column: 2;
  max-width: 720px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 1.25vw, 22px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -.018em;
}

.review:hover .review__avatar {
  transform: scale(1.04);
}

.js-gsap .reviews__kicker,
.js-gsap .reviews__intro h2,
.js-gsap .reviews__rating,
.js-gsap .reviews__stats,
.js-gsap .review {
  opacity: 0;
}

@media (max-width: 860px) {
  .reviews {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .reviews__intro {
    position: static;
  }

  .reviews__rating {
    width: min(100%, 520px);
  }

  .reviews__stats {
    width: min(100%, 520px);
  }
}

@media (max-width: 680px) {
  .reviews__list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 340px);
    gap: 22px;
    margin-right: -22px;
    padding-right: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .reviews__list::-webkit-scrollbar {
    display: none;
  }

  .review {
    scroll-snap-align: start;
  }

  .review:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .reviews {
    padding: 72px 22px 84px;
    gap: 54px;
  }

  .reviews__intro h2 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .review {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
    padding: 30px 0;
  }

  .review blockquote {
    font-size: 20px;
  }
}

/* Final CTA — illuminated stairs and contact */
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(58px, 7vw, 126px);
  min-height: 96svh;
  padding: clamp(64px, 6vw, 104px) clamp(30px, 6vw, 106px);
  color: #f3efe7;
  background: #080808;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.final-cta__visual {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
}

.final-stairs {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 2 / 3;
  isolation: isolate;
}

.final-stairs > img,
.final-stair-light,
.final-stairs__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-stairs > img {
  z-index: 0;
  display: block;
  object-fit: contain;
  opacity: .32;
  filter: grayscale(.38) brightness(.22) contrast(1.55) saturate(.48);
}

.final-stairs__lights {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.final-stair-light {
  opacity: 0;
  background: url("public/images/schody-led-scena.webp") center / 100% 100% no-repeat;
  filter: brightness(1.03) contrast(1.08) saturate(.96);
  will-change: opacity, filter;
}

.final-stairs__vignette {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 38%, rgba(0,0,0,.12) 68%, rgba(0,0,0,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.46) 0%, transparent 28%, transparent 82%, rgba(0,0,0,.42) 100%);
}

.final-stairs.is-confirmed .final-stair-light {
  filter: brightness(1.22) contrast(1.08) saturate(1);
  transition: filter .25s ease;
}

.final-cta__signature {
  width: min(100%, 510px);
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(243,239,231,.42);
}

.final-cta__signature strong,
.final-cta__signature span {
  display: block;
}

.final-cta__signature strong {
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .28em;
}

.final-cta__signature span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: .04em;
}

.final-cta__content {
  width: min(100%, 610px);
}

.final-cta__kicker {
  margin: 0 0 28px;
  color: #c49a65;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
}

.final-cta__content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(56px, 5.2vw, 88px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}

.final-cta__content h2 em {
  color: #b48a5e;
  font-weight: 400;
}

.final-cta__lead {
  max-width: 500px;
  margin-top: clamp(30px, 3vw, 44px);
  color: rgba(243,239,231,.68);
  font-size: clamp(13px, .92vw, 15px);
  line-height: 1.65;
}

.final-cta__lead p {
  margin: 0;
}

.final-cta__lead p + p {
  margin-top: 13px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  margin-top: clamp(36px, 4vw, 56px);
}

.contact-form__field {
  position: relative;
  min-width: 0;
}

.contact-form__field--wide {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 9px;
  color: rgba(243,239,231,.46);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color 280ms ease;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(243,239,231,.22);
  border-radius: 0;
  padding: 5px 0 12px;
  color: #f3efe7;
  outline: 0;
  background: transparent;
  font: 400 15px/1.4 "Inter", Arial, sans-serif;
  resize: vertical;
  transition: border-color 320ms ease, background-color 320ms ease;
}

.contact-form textarea {
  min-height: 64px;
}

.contact-form__field:hover label,
.contact-form__field:focus-within label {
  color: rgba(243,239,231,.78);
}

.contact-form__field:hover input,
.contact-form__field:hover textarea {
  border-color: rgba(243,239,231,.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c49a65;
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: #9d6555;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 2px;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: 230px;
  min-height: 56px;
  border: 1px solid rgba(243,239,231,.28);
  padding: 0 20px;
  color: #171614;
  background: #f3efe7;
  font: 500 12px/1 "Inter", Arial, sans-serif;
  cursor: pointer;
  transition: color 350ms ease, background-color 350ms ease, border-color 350ms ease, transform 350ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  border-color: #fff;
  background: #fff;
}

.contact-form button.is-success {
  color: #f3efe7;
  border-color: rgba(196,154,101,.75);
  background: rgba(196,154,101,.14);
}

.contact-form button i {
  font-size: 17px;
  font-style: normal;
}

.contact-form__status {
  margin: 0;
  color: rgba(243,239,231,.52);
  font-size: 10px;
  line-height: 1.45;
}

.contact-form__privacy {
  grid-column: 1 / -1;
  margin: -12px 0 0;
  color: rgba(243,239,231,.36);
  font-size: 9px;
  line-height: 1.5;
}

.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.js-gsap .final-cta__kicker,
.js-gsap .final-cta__content h2,
.js-gsap .final-cta__lead,
.js-gsap .contact-form,
.js-gsap .final-cta__signature {
  opacity: 0;
}

@media (max-width: 980px) {
  .final-cta {
    grid-template-columns: 1fr;
    gap: 68px;
    min-height: auto;
    padding: 80px clamp(24px, 7vw, 64px) 96px;
  }

  .final-stairs {
    width: min(72vw, 460px);
  }

  .final-cta__content {
    width: min(100%, 680px);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .final-cta {
    gap: 54px;
    padding: 64px 22px 78px;
  }

  .final-stairs {
    width: min(96vw, 390px);
  }

  .final-cta__signature {
    margin-top: 12px;
  }

  .final-cta__content h2 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form__field--wide {
    grid-column: auto;
  }

  .contact-form__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-stairs > img {
    opacity: .42;
  }

  .final-stair-light {
    opacity: 1 !important;
  }

  .js-gsap .final-cta__kicker,
  .js-gsap .final-cta__content h2,
  .js-gsap .final-cta__lead,
  .js-gsap .contact-form,
  .js-gsap .final-cta__signature {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile height and keyboard-accessibility refinements */
[data-horizontal-scroll]:focus-visible {
  outline: 1px solid rgba(200,163,106,.85);
  outline-offset: 7px;
}

@media (max-width: 540px) {
  .process {
    padding-bottom: 34px;
  }

  .process__steps,
  .offer__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .process__steps::-webkit-scrollbar,
  .offer__grid::-webkit-scrollbar {
    display: none;
  }

  .process__steps {
    grid-auto-columns: min(78vw, 280px);
    gap: 22px;
    margin-right: -22px;
    padding-right: 22px;
  }

  .process-step,
  .offer-card {
    scroll-snap-align: start;
  }

  .process-step__media {
    width: 100%;
    margin-inline: 0;
  }

  .process-step h3,
  .process-step p,
  .process-step__number {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .process__rule--bottom {
    margin-top: 30px;
  }

  .offer__grid {
    grid-auto-columns: min(84vw, 330px);
    gap: 22px;
    margin-right: -22px;
    padding-right: 22px;
  }
}
