:root {
  --paper: #f4efe8;
  --paper-warm: #e8dfd4;
  --ink: #171717;
  --graphite: #20201e;
  --graphite-soft: rgba(32, 32, 30, .76);
  --muted: rgba(255, 255, 255, .76);
  --dark-muted: #706a60;
  --line: rgba(255, 255, 255, .24);
  --gold: #b79a64;
  --wood: #ad8d66;
  --serif: "Segoe UI", Arial, sans-serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  color: #f3eee6;
  background: #050505;
  font-family: var(--sans);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  --header-offset: 0px;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  min-height: 6.25rem;
  padding: 1.1rem clamp(1rem, 4.5vw, 4.75rem);
  color: #f3eee6;
  animation: headerIn .65s ease both;
  transform: translate3d(0, calc(var(--header-offset) * -1), 0);
  transition: min-height .25s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease, transform .78s cubic-bezier(.22, .75, .2, 1);
  will-change: transform;
}

.site-header.is-scrolled {
  min-height: 4.75rem;
  border-bottom: 1px solid rgba(183, 154, 100, .18);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  pointer-events: none;
}

.brand {
  display: grid;
  width: clamp(8.5rem, 12vw, 13rem);
  place-items: center;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .12));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: clamp(1rem, 2.4vw, 2.3rem);
  color: rgba(243, 238, 230, .7);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: .35rem 0;
  transition: color .2s ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 154, 100, .55);
  padding: .75rem 1.05rem;
  color: #f3eee6;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.header-action:hover {
  border-color: var(--gold);
  background: rgba(183, 154, 100, .12);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(183, 154, 100, .45);
  background: rgba(0, 0, 0, .18);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: .32rem auto;
  background: #f3eee6;
  transition: transform .2s ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(.2rem) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-.2rem) rotate(-45deg);
}

.scroll-thread {
  position: fixed;
  z-index: 12;
  left: clamp(.9rem, 2.1vw, 2rem);
  top: 9rem;
  bottom: 3rem;
  width: 1.4rem;
  pointer-events: none;
}

.scroll-thread::before {
  position: absolute;
  left: .67rem;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(183, 154, 100, .16);
}

.scroll-thread span {
  position: absolute;
  left: .67rem;
  top: 0;
  width: 1px;
  height: calc(var(--page-progress, 0) * 100%);
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold));
  box-shadow: 0 0 18px rgba(183, 154, 100, .22);
}

.scroll-thread i {
  position: absolute;
  left: .35rem;
  width: .66rem;
  height: .66rem;
  border: 1px solid rgba(183, 154, 100, .58);
  background: #050505;
  transform: rotate(45deg);
}

.scroll-thread i:nth-child(2) { top: 4%; }
.scroll-thread i:nth-child(3) { top: 34%; }
.scroll-thread i:nth-child(4) { top: 64%; }
.scroll-thread i:nth-child(5) { top: 92%; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, .98) 40%, rgba(5, 5, 5, .58) 66%, rgba(5, 5, 5, .18) 100%),
    #050505;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .98) 0%, rgba(5, 5, 5, .84) 42%, rgba(5, 5, 5, .28) 72%, rgba(5, 5, 5, .05) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .82) 0%, rgba(5, 5, 5, 0) 42%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(68vw, 74rem);
  background: var(--graphite);
  animation: imageFade 1s ease both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(.92) contrast(1.03);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  width: min(46rem, 48vw);
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 9rem;
  margin-left: clamp(1rem, 5.6vw, 6rem);
  color: #f3eee6;
  transform: translateY(clamp(3rem, 6.5vw, 6rem));
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 1.35rem;
  padding-left: 3.25rem;
  color: var(--gold);
  font-size: clamp(.68rem, .78vw, .82rem);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.55;
  text-transform: uppercase;
  animation: fadeRise .55s ease .12s both;
}

.hero-kicker::before {
  position: absolute;
  width: 2.25rem;
  height: 1px;
  margin-top: .72rem;
  margin-left: -3.25rem;
  content: "";
  background: var(--gold);
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.9vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
}

h1 span {
  display: block;
  overflow: hidden;
  animation: lineReveal .78s cubic-bezier(.22, .75, .2, 1) both;
}

h1 span:nth-child(1) {
  animation-delay: .24s;
}

h1 span:nth-child(2) {
  animation-delay: .34s;
}

h1 span:nth-child(3) {
  animation-delay: .44s;
}

.hero-lead {
  max-width: 43rem;
  margin: 1.6rem 0 0;
  color: rgba(243, 238, 230, .76);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.72;
  animation: fadeRise .58s ease .7s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.35rem;
  animation: fadeRise .58s ease .88s both;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .92rem 1.25rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.button span {
  transition: transform .2s ease;
}

.button:hover span {
  transform: translateX(.22rem);
}

.button-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #090909;
}

.button-primary:hover {
  background: #d0b579;
}

.button-secondary {
  border: 1px solid rgba(243, 238, 230, .32);
  color: #f3eee6;
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(183, 154, 100, .11);
}

.hero-info {
  position: absolute;
  z-index: 4;
  left: clamp(1rem, 5.6vw, 6rem);
  right: clamp(1rem, 5.6vw, 6rem);
  bottom: clamp(1rem, 3.4vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .25);
  background: rgba(10, 10, 9, .74);
  color: #f3eee6;
  box-shadow: 0 24px 70px rgba(24, 22, 19, .12);
  backdrop-filter: blur(18px);
  animation: infoIn .62s ease 1s both;
}

.hero-info div {
  min-height: 5.15rem;
  display: grid;
  align-content: center;
  gap: .38rem;
  padding: 1rem 1.25rem;
}

.hero-info div + div {
  border-left: 1px solid rgba(183, 154, 100, .18);
}

.hero-info span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.hero-info strong {
  font-size: clamp(.9rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
}

.layers-section {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(19rem, .8fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(90deg, rgba(4, 4, 4, .95), rgba(19, 17, 15, .94)),
    radial-gradient(circle at 78% 24%, rgba(183, 154, 100, .12), transparent 32rem),
    #050505;
  color: #f3eee6;
  isolation: isolate;
  scroll-margin-top: 7rem;
}

.layers-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 5.6rem 5.6rem,
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 5.6rem 5.6rem;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 74%, transparent);
}

.layers-section::after {
  position: absolute;
  right: clamp(1rem, 8vw, 8rem);
  top: 12%;
  z-index: -1;
  width: min(42rem, 60vw);
  height: min(30rem, 48vw);
  border: 1px solid rgba(183, 154, 100, .2);
  content: "";
  transform: skew(-10deg) rotate(-4deg);
}

.layers-copy {
  max-width: 42rem;
}

.section-kicker {
  position: relative;
  margin: 0 0 1.25rem;
  padding-left: 3rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-kicker::before {
  position: absolute;
  left: 0;
  top: .68rem;
  width: 2.1rem;
  height: 1px;
  content: "";
  background: var(--gold);
}

.layers-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
}

.layers-copy h2 span {
  display: block;
  overflow: hidden;
}

.layers-copy p:not(.section-kicker) {
  max-width: 35rem;
  margin: 1.55rem 0 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.76;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2.15rem;
  border-bottom: 1px solid rgba(183, 154, 100, .55);
  padding-bottom: .45rem;
  color: #f6efe3;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-link span {
  color: var(--gold);
  transition: transform .2s ease;
}

.section-link:hover span {
  transform: translateX(.25rem);
}

.layer-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}

.layer-divider {
  width: 1px;
  min-height: 100%;
  background: linear-gradient(0deg, transparent, var(--gold), transparent);
  transform: translateX(var(--line-shift, 0));
  transition: transform .25s ease;
}

.layer-card {
  position: relative;
  min-height: clamp(31rem, 49vw, 42rem);
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .25);
  background: #10100f;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.layer-card::before,
.layer-card::after {
  position: absolute;
  z-index: 3;
  width: 3.2rem;
  height: 3.2rem;
  content: "";
  opacity: .8;
  transition: width .25s ease, height .25s ease, opacity .25s ease;
}

.layer-card::before {
  top: .9rem;
  left: .9rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.layer-card::after {
  right: .9rem;
  bottom: .9rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.layer-card:hover {
  border-color: rgba(183, 154, 100, .65);
  background: #181614;
  transform: translateY(-.25rem);
}

.layer-card:hover::before,
.layer-card:hover::after {
  width: 4.2rem;
  height: 4.2rem;
  opacity: 1;
}

.layer-image {
  position: absolute;
  inset: 0;
}

.layer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: grayscale(.16) saturate(.85) brightness(.58);
  transition: opacity .28s ease, filter .28s ease, transform .45s ease;
}

.layer-card-finish .layer-image img {
  opacity: .42;
  filter: saturate(.9) brightness(.62);
}

.layer-card:hover .layer-image img {
  opacity: .52;
  filter: saturate(.95) brightness(.72);
  transform: scale(1.025);
}

.layer-card::selection {
  background: var(--gold);
  color: #111;
}

.layer-card-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.25rem, 2.6vw, 2.25rem);
  background: linear-gradient(180deg, rgba(7, 7, 6, .08), rgba(7, 7, 6, .82) 62%, rgba(7, 7, 6, .94));
}

.layer-number {
  margin-bottom: 1.1rem;
  color: rgba(243, 238, 230, .58);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  transition: color .2s ease;
}

.layer-card:hover .layer-number {
  color: var(--gold);
}

.layer-card h3 {
  max-width: 12ch;
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.55vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}

.layer-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.layer-card li {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: .86rem 0 .86rem 1.05rem;
  color: rgba(243, 238, 230, .8);
  font-size: .95rem;
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}

.layer-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "·";
}

.layer-card:hover li {
  color: #fff;
  transform: translateX(.18rem);
}

.reveal-block {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.layers-copy.reveal-block.is-visible h2 span {
  animation: layerTitleReveal .72s cubic-bezier(.22, .75, .2, 1) both;
}

.layers-copy.reveal-block.is-visible h2 span:nth-child(2) {
  animation-delay: .08s;
}

.layer-card.reveal-block:nth-child(3) {
  transition-delay: .12s;
}

.steps-section {
  position: relative;
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(17rem, .6fr) minmax(0, 1.78fr);
  gap: clamp(1.6rem, 4vw, 4.2rem);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .2);
  padding: clamp(5rem, 8vw, 8.5rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(120deg, rgba(5, 5, 5, .98), rgba(16, 15, 13, .96)),
    #050505;
  color: #f3eee6;
  isolation: isolate;
  scroll-margin-top: 7rem;
}

.steps-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .08) 1px, transparent 1px) 0 0 / 7rem 7rem,
    linear-gradient(0deg, rgba(183, 154, 100, .045) 1px, transparent 1px) 0 0 / 7rem 7rem;
  opacity: .48;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 86%, transparent);
}

.steps-section::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  z-index: -1;
  width: min(62rem, 68vw);
  height: min(42rem, 50vw);
  border: 1px solid rgba(183, 154, 100, .14);
  content: "";
  transform: rotate(-8deg);
}

.steps-copy {
  position: sticky;
  top: 8rem;
  align-self: start;
  padding-top: clamp(.5rem, 4vw, 3rem);
}

.steps-copy h2 {
  max-width: 11.5ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .96;
}

.steps-copy h2 span {
  display: block;
  overflow: hidden;
}

.steps-copy p:not(.section-kicker) {
  max-width: 33rem;
  margin: 1.45rem 0 0;
  color: rgba(243, 238, 230, .7);
  font-size: clamp(.98rem, 1.08vw, 1.12rem);
  line-height: 1.72;
}

.steps-copy::after {
  display: block;
  width: min(20rem, 70%);
  height: 1px;
  margin-top: 2.2rem;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.steps-stage {
  min-width: 0;
}

.steps-cards {
  display: flex;
  min-width: 0;
  height: clamp(29rem, 45vw, 39rem);
  gap: .65rem;
}

.step-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .2);
  background: #11100e;
  color: #fff;
  isolation: isolate;
  transition: flex .48s cubic-bezier(.22, .75, .2, 1), border-color .28s ease, filter .28s ease;
}

.step-card.is-active,
.step-card:hover,
.step-card:focus-within {
  flex: 1.62 1 0;
  border-color: rgba(183, 154, 100, .72);
  filter: none;
}

.steps-cards:has(.step-card:hover) .step-card:not(:hover) {
  filter: saturate(.76) contrast(.92);
}

.step-card::before,
.step-card::after {
  position: absolute;
  z-index: 3;
  width: 2.2rem;
  height: 2.2rem;
  content: "";
  opacity: 0;
  transition: opacity .25s ease, width .25s ease, height .25s ease;
}

.step-card::before {
  top: .72rem;
  left: .72rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.step-card::after {
  right: .72rem;
  bottom: .72rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.step-card.is-active::before,
.step-card.is-active::after,
.step-card:hover::before,
.step-card:hover::after {
  width: 3.4rem;
  height: 3.4rem;
  opacity: 1;
}

.step-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) brightness(.58) contrast(1.03);
  transform: scale(1.002);
  transition: filter .34s ease, transform .62s ease;
}

.step-card.is-active img,
.step-card:hover img,
.step-card:focus-within img {
  filter: saturate(.95) brightness(.76) contrast(1.02);
  transform: scale(1.035);
}

.step-card::selection {
  background: var(--gold);
  color: #111;
}

.step-card .step-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(.8rem, 1.35vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .1), rgba(5, 5, 5, .66) 54%, rgba(5, 5, 5, .94)),
    linear-gradient(90deg, rgba(0, 0, 0, .32), transparent);
}

.step-card span {
  color: rgba(243, 238, 230, .58);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  transition: color .25s ease;
}

.step-card.is-active span,
.step-card:hover span,
.step-card:focus-within span {
  color: var(--gold);
}

.step-card h3 {
  max-width: 10.5ch;
  margin: .65rem 0 0;
  font-family: var(--serif);
  font-size: clamp(.82rem, .82vw, .98rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  hyphens: auto;
  overflow-wrap: anywhere;
  transition: font-size .28s ease, max-width .28s ease;
}

.step-card.is-active h3,
.step-card:hover h3,
.step-card:focus-within h3 {
  max-width: 9.5ch;
  font-size: clamp(1.28rem, 1.55vw, 1.9rem);
  letter-spacing: -.02em;
}

.step-card p {
  max-width: 17rem;
  max-height: 0;
  margin: .8rem 0 0;
  overflow: hidden;
  color: rgba(243, 238, 230, .78);
  font-size: .88rem;
  line-height: 1.52;
  opacity: 0;
  transform: translateY(.35rem);
  transition: opacity .25s ease, transform .25s ease, max-height .25s ease;
}

.step-card.is-active p,
.step-card:hover p,
.step-card:focus-within p {
  max-height: 7rem;
  opacity: 1;
  transform: translateY(0);
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: .65rem;
  margin-top: 1.55rem;
}

.steps-line span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(183, 154, 100, .32);
  transform: scaleX(var(--steps-progress, .08));
  transform-origin: left;
  transition: transform .42s cubic-bezier(.22, .75, .2, 1);
}

.steps-line::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .12);
}

.steps-line i {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: .55rem;
  height: .55rem;
  border: 1px solid rgba(183, 154, 100, .55);
  background: #060606;
  transform: rotate(45deg);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.steps-line i.is-active {
  border-color: var(--gold);
  background: var(--gold);
  transform: rotate(45deg) scale(1.18);
}

.step-card.reveal-block {
  transition:
    opacity .7s ease,
    transform .7s ease,
    flex .48s cubic-bezier(.22, .75, .2, 1),
    border-color .28s ease,
    filter .28s ease;
}

.step-card.reveal-block:nth-child(2) {
  transition-delay: .06s;
}

.step-card.reveal-block:nth-child(3) {
  transition-delay: .12s;
}

.step-card.reveal-block:nth-child(4) {
  transition-delay: .18s;
}

.step-card.reveal-block:nth-child(5) {
  transition-delay: .24s;
}

.step-card.reveal-block:nth-child(6) {
  transition-delay: .3s;
}

.steps-copy.reveal-block.is-visible h2 span {
  animation: layerTitleReveal .72s cubic-bezier(.22, .75, .2, 1) both;
}

.steps-copy.reveal-block.is-visible h2 span:nth-child(2) {
  animation-delay: .08s;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .2);
  padding: clamp(5rem, 8vw, 8.5rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(120deg, rgba(4, 4, 4, .98), rgba(16, 15, 13, .96)),
    #050505;
  color: #f3eee6;
  scroll-margin-top: 7rem;
}

.portfolio-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .06) 1px, transparent 1px) 0 0 / 8rem 8rem,
    linear-gradient(0deg, rgba(183, 154, 100, .04) 1px, transparent 1px) 0 0 / 8rem 8rem;
  opacity: .38;
  pointer-events: none;
}

.portfolio-intro,
.portfolio-hero,
.portfolio-categories,
.portfolio-gallery-head,
.portfolio-gallery,
.portfolio-more {
  position: relative;
  z-index: 1;
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.portfolio-intro h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .96;
}

.portfolio-intro h2 span {
  display: block;
}

.portfolio-intro-copy p {
  margin: 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(18rem, .72fr);
  min-height: clamp(27rem, 48vw, 40rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid rgba(183, 154, 100, .24);
  background: #0d0d0c;
}

.portfolio-hero img {
  width: 100%;
  height: 100%;
  min-height: 27rem;
  object-fit: cover;
  filter: saturate(.88) brightness(.72);
}

.portfolio-hero div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, rgba(5, 5, 5, .76), rgba(5, 5, 5, .96));
}

.portfolio-hero span,
.portfolio-category span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.portfolio-hero h3 {
  margin: .9rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: .95;
}

.portfolio-hero p {
  max-width: 29rem;
  margin: 1.2rem 0 0;
  color: rgba(243, 238, 230, .72);
  line-height: 1.65;
}

.portfolio-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(16rem, 19vw);
  gap: .85rem;
  margin-top: clamp(2.4rem, 5vw, 4.5rem);
  scroll-margin-top: 7rem;
}

.portfolio-category {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .18);
  background: #10100f;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
}

.portfolio-category-large {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-category-wide,
.portfolio-category-mid {
  grid-column: span 2;
}

.portfolio-category img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) brightness(.52);
  transition: transform .6s ease, filter .32s ease;
}

.portfolio-category::before,
.portfolio-category::after,
.portfolio-shot::before,
.portfolio-shot::after {
  position: absolute;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  opacity: 0;
  transition: opacity .25s ease, width .25s ease, height .25s ease;
}

.portfolio-category::before,
.portfolio-shot::before {
  top: .8rem;
  left: .8rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.portfolio-category::after,
.portfolio-shot::after {
  right: .8rem;
  bottom: .8rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.portfolio-category:hover::before,
.portfolio-category:hover::after,
.portfolio-shot:hover::before,
.portfolio-shot:hover::after {
  width: 3.6rem;
  height: 3.6rem;
  opacity: 1;
}

.portfolio-category:hover img {
  filter: saturate(.95) brightness(.72);
  transform: scale(1.035);
}

.portfolio-category div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1rem, 2vw, 1.65rem);
  background: linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .72) 58%, rgba(5, 5, 5, .96));
}

.portfolio-category h3 {
  max-width: 13ch;
  margin: .75rem 0 .25rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.1vw, 2.65rem);
  line-height: 1;
}

.portfolio-category p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.portfolio-category small {
  max-width: 20rem;
  margin-top: .7rem;
  color: rgba(243, 238, 230, .72);
  font-size: .9rem;
  line-height: 1.45;
}

.portfolio-category a {
  width: fit-content;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(183, 154, 100, .55);
  padding-bottom: .3rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .82;
}

.portfolio-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid rgba(183, 154, 100, .2);
  padding-top: 2.2rem;
}

.portfolio-gallery-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

.portfolio-gallery-head > p {
  margin: 0;
  color: rgba(243, 238, 230, .62);
  font-weight: 700;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: .85rem;
  margin-top: 1.4rem;
}

.portfolio-shot {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .16);
  background: #10100f;
  color: #fff;
  cursor: pointer;
}

.portfolio-shot:nth-child(6n + 1) {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 32rem;
}

.portfolio-shot:nth-child(6n + 2),
.portfolio-shot:nth-child(6n + 5) {
  grid-column: span 2;
}

.portfolio-shot:nth-child(6n + 3),
.portfolio-shot:nth-child(6n + 4),
.portfolio-shot:nth-child(6n + 6) {
  grid-column: span 1;
}

.portfolio-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.86) brightness(.74);
  transition: transform .55s ease, filter .28s ease;
}

.portfolio-shot:hover img {
  filter: saturate(.94) brightness(.58);
  transform: scale(1.035);
}

.portfolio-shot figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: .35rem;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, .92));
  opacity: 0;
  transform: translateY(.35rem);
  transition: opacity .25s ease, transform .25s ease;
}

.portfolio-shot:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-shot span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.portfolio-shot strong {
  font-size: .98rem;
}

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  grid-template-columns: 4rem minmax(0, 1fr) 4rem;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(0, 0, 0, .94);
  color: #f3eee6;
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 1.25rem;
  align-items: end;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
}

.lightbox figcaption {
  border-left: 1px solid rgba(183, 154, 100, .45);
  padding: 1rem 0 1rem 1.25rem;
}

.lightbox figcaption span,
.lightbox figcaption em {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lightbox figcaption strong {
  display: block;
  margin: .7rem 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.lightbox-close,
.lightbox-arrow {
  border: 1px solid rgba(183, 154, 100, .45);
  background: rgba(5, 5, 5, .72);
  color: #f3eee6;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}

.lightbox-arrow {
  width: 3.4rem;
  height: 3.4rem;
  font-size: 2.6rem;
}

.category-page {
  min-height: 100svh;
  padding: clamp(8rem, 12vw, 12rem) clamp(1rem, 5.6vw, 6rem) clamp(5rem, 8vw, 8rem);
  background:
    linear-gradient(120deg, rgba(4, 4, 4, .98), rgba(16, 15, 13, .96)),
    #050505;
  color: #f3eee6;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  border-bottom: 1px solid rgba(183, 154, 100, .22);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.category-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: #f3eee6;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -.045em;
}

.category-hero p:not(.section-kicker) {
  max-width: 40rem;
  margin: 1.2rem 0 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.category-hero img {
  width: 100%;
  min-height: clamp(23rem, 38vw, 36rem);
  object-fit: cover;
  border: 1px solid rgba(183, 154, 100, .22);
  filter: saturate(.88) brightness(.76);
}

.category-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.category-tools p {
  margin: 0;
  color: rgba(243, 238, 230, .64);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.category-gallery {
  margin-top: 1.3rem;
}

.offer-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .22);
  padding: clamp(5rem, 8vw, 8.5rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(120deg, rgba(5, 5, 5, .98), rgba(15, 14, 12, .97)),
    #050505;
  color: #f3eee6;
  scroll-margin-top: 7rem;
}

.offer-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .05) 1px, transparent 1px) 0 0 / 7.5rem 7.5rem,
    linear-gradient(0deg, rgba(183, 154, 100, .035) 1px, transparent 1px) 0 0 / 7.5rem 7.5rem;
  opacity: .44;
  pointer-events: none;
}

.offer-head,
.offer-layout {
  position: relative;
  z-index: 1;
}

.offer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.offer-head h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .96;
}

.offer-head h2 span {
  display: block;
}

.offer-head > p:not(.section-kicker) {
  max-width: 42rem;
  margin: 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(19rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: clamp(2.6rem, 5vw, 5rem);
}

.offer-list {
  position: relative;
  display: grid;
  border-top: 1px solid rgba(183, 154, 100, .2);
}

.offer-list::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--gold), rgba(183, 154, 100, .1));
}

.offer-item {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: .9rem;
  border: 0;
  border-bottom: 1px solid rgba(183, 154, 100, .16);
  padding: 1.05rem 0 1.05rem 1.2rem;
  background: transparent;
  color: rgba(243, 238, 230, .74);
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, transform .25s ease, background .25s ease;
}

.offer-item::before {
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: .35rem;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width .25s ease;
}

.offer-item span {
  color: rgba(183, 154, 100, .72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.offer-item strong {
  display: block;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.offer-item em {
  grid-column: 2;
  margin-top: .32rem;
  color: rgba(243, 238, 230, .48);
  font-style: normal;
  font-size: .86rem;
  line-height: 1.35;
}

.offer-item:hover,
.offer-item.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(183, 154, 100, .08), transparent);
  transform: translateX(.25rem);
}

.offer-item:hover::before,
.offer-item.is-active::before {
  width: 1.15rem;
}

.offer-item.is-active span {
  color: var(--gold);
}

.offer-panel {
  position: sticky;
  top: 7rem;
  min-height: clamp(39rem, 56vw, 48rem);
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .28);
  background: #0f0f0e;
  isolation: isolate;
}

.offer-panel::before,
.offer-panel::after {
  position: absolute;
  z-index: 3;
  width: 4rem;
  height: 4rem;
  content: "";
  pointer-events: none;
}

.offer-panel::before {
  top: 1rem;
  left: 1rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.offer-panel::after {
  right: 1rem;
  bottom: 1rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.offer-panel-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.offer-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) brightness(.48);
  transform: scale(1.015);
  transition: opacity .25s ease, transform .75s ease, filter .35s ease;
}

.offer-panel.is-changing .offer-panel-image img {
  opacity: .15;
  transform: scale(1.055);
}

.offer-panel-content {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.3rem, 3vw, 2.6rem);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .72) 48%, rgba(5, 5, 5, .96)),
    linear-gradient(90deg, rgba(5, 5, 5, .6), transparent);
}

.offer-panel-content > span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.offer-panel h3 {
  max-width: 12ch;
  margin: .85rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.1vw, 4.6rem);
  letter-spacing: -.045em;
  line-height: .95;
}

.offer-panel p {
  max-width: 40rem;
  margin: 1.15rem 0 0;
  color: rgba(243, 238, 230, .78);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.66;
}

.offer-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 1rem;
  max-width: 43rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-panel li {
  position: relative;
  padding-left: 1rem;
  color: rgba(243, 238, 230, .82);
  line-height: 1.35;
}

.offer-panel li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "·";
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 1.8rem;
}

.responsibility-section {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, .96fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .24);
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(120deg, rgba(4, 4, 4, .98), rgba(15, 14, 13, .97)),
    #050505;
  color: #f3eee6;
  scroll-margin-top: 7rem;
}

.responsibility-section::before {
  position: absolute;
  right: -5vw;
  top: 8%;
  content: "ODPOWIEDZIALNOŚĆ";
  color: transparent;
  -webkit-text-stroke: 1px rgba(183, 154, 100, .08);
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: .8;
  pointer-events: none;
}

.responsibility-section::after {
  position: absolute;
  left: clamp(1rem, 5.6vw, 6rem);
  right: clamp(1rem, 5.6vw, 6rem);
  top: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 100, .12), transparent);
  opacity: .48;
}

.responsibility-copy,
.responsibility-points {
  position: relative;
  z-index: 1;
}

.responsibility-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 7rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92;
}

.responsibility-copy h2 span {
  display: block;
}

.responsibility-copy h2 span:last-child {
  color: var(--gold);
}

.responsibility-copy p:not(.section-kicker) {
  max-width: 44rem;
  margin: 1.6rem 0 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.responsibility-copy .button {
  margin-top: 2rem;
}

.responsibility-points {
  display: grid;
  border-top: 1px solid rgba(183, 154, 100, .25);
}

.responsibility-point {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.7rem);
  border-bottom: 1px solid rgba(183, 154, 100, .22);
  padding: clamp(1.2rem, 2vw, 1.8rem) 0;
  transition: background .25s ease, opacity .25s ease, transform .25s ease;
}

.responsibility-point::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width .25s ease;
}

.responsibility-point span {
  color: rgba(183, 154, 100, .65);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  transition: color .25s ease;
}

.responsibility-point h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  letter-spacing: -.025em;
  line-height: 1;
}

.responsibility-point p {
  max-width: 36rem;
  margin: .75rem 0 0;
  color: rgba(243, 238, 230, .62);
  line-height: 1.58;
  transition: color .25s ease;
}

.responsibility-point:hover {
  background: linear-gradient(90deg, rgba(183, 154, 100, .08), transparent);
  transform: translateX(.28rem);
}

.responsibility-point:hover::before {
  width: 4rem;
}

.responsibility-point:hover span {
  color: var(--gold);
}

.responsibility-point:hover p {
  color: rgba(243, 238, 230, .82);
}

.cooperation-section {
  --cooperation-progress: 0;
  position: relative;
  min-height: 110svh;
  display: grid;
  grid-template-columns: minmax(20rem, .82fr) minmax(0, 1.18fr);
  gap: clamp(2.4rem, 7vw, 7rem);
  align-items: start;
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .24);
  padding: clamp(5.8rem, 10vw, 10rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(115deg, rgba(4, 4, 4, .98), rgba(13, 12, 11, .97) 54%, rgba(5, 5, 5, .99)),
    #050505;
  color: #f3eee6;
  isolation: isolate;
  scroll-margin-top: 7rem;
}

.cooperation-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .075) 1px, transparent 1px) 0 0 / 8rem 8rem,
    linear-gradient(0deg, rgba(183, 154, 100, .045) 1px, transparent 1px) 0 0 / 8rem 8rem;
  opacity: .38;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
}

.cooperation-section::after {
  position: absolute;
  right: clamp(1rem, 6vw, 6rem);
  top: clamp(3rem, 8vw, 8rem);
  z-index: -1;
  width: min(39rem, 48vw);
  height: min(28rem, 34vw);
  border: 1px solid rgba(183, 154, 100, .12);
  content: "";
  transform: rotate(-7deg) skew(-8deg);
}

.cooperation-copy {
  position: sticky;
  top: 7.5rem;
  align-self: start;
  padding-top: clamp(.5rem, 4vw, 2.5rem);
}

.cooperation-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.35vw, 6rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
}

.cooperation-copy h2 span {
  display: block;
  overflow: hidden;
}

.cooperation-copy p:not(.section-kicker) {
  max-width: 43rem;
  margin: 1.6rem 0 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.16vw, 1.16rem);
  line-height: 1.72;
}

.cooperation-copy::after {
  display: block;
  width: min(21rem, 74%);
  height: 1px;
  margin-top: 2.25rem;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 100, .1), transparent);
}

.cooperation-copy .button {
  margin-top: 2rem;
}

.cooperation-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: clamp(1.6rem, 3vw, 3rem);
}

.cooperation-timeline::before,
.cooperation-line {
  position: absolute;
  left: clamp(.15rem, .7vw, .7rem);
  top: 1.35rem;
  bottom: 1.35rem;
  width: 1px;
  content: "";
}

.cooperation-timeline::before {
  background: rgba(183, 154, 100, .18);
}

.cooperation-line {
  height: calc(var(--cooperation-progress, 0) * (100% - 2.7rem));
  background: linear-gradient(180deg, var(--gold), rgba(183, 154, 100, .22));
  box-shadow: 0 0 18px rgba(183, 154, 100, .16);
  transition: height .16s linear;
}

.cooperation-step {
  position: relative;
  display: grid;
  grid-template-columns: clamp(4rem, 7vw, 7rem) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2.6rem);
  min-height: clamp(8.5rem, 13vw, 12rem);
  border-bottom: 1px solid rgba(183, 154, 100, .18);
  padding: clamp(1.35rem, 2.5vw, 2.2rem) clamp(.75rem, 2vw, 1.5rem);
  background:
    linear-gradient(90deg, rgba(183, 154, 100, 0), rgba(183, 154, 100, 0)),
    rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, opacity .25s ease;
}

.cooperation-step:first-of-type {
  border-top: 1px solid rgba(183, 154, 100, .22);
}

.cooperation-step::before {
  position: absolute;
  left: calc(clamp(.15rem, .7vw, .7rem) - .29rem - clamp(1.6rem, 3vw, 3rem));
  top: clamp(2rem, 3vw, 2.75rem);
  width: .58rem;
  height: .58rem;
  border: 1px solid rgba(183, 154, 100, .58);
  background: #050505;
  content: "";
  transform: rotate(45deg);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.cooperation-step::after {
  position: absolute;
  left: clamp(.75rem, 2vw, 1.5rem);
  top: 0;
  width: 1.2rem;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: .7;
  transition: width .25s ease, opacity .25s ease;
}

.cooperation-number {
  color: rgba(243, 238, 230, .22);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
  transition: color .25s ease, transform .25s ease;
}

.cooperation-step-content {
  max-width: 48rem;
}

.cooperation-step h3 {
  margin: 0;
  color: #f3eee6;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.55vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}

.cooperation-step p {
  max-width: 42rem;
  margin: .8rem 0 0;
  color: rgba(243, 238, 230, .62);
  font-size: clamp(.96rem, 1.08vw, 1.08rem);
  line-height: 1.62;
  transition: color .25s ease, transform .25s ease;
}

.cooperation-step:hover,
.cooperation-step.is-active {
  border-color: rgba(183, 154, 100, .42);
  background: linear-gradient(90deg, rgba(183, 154, 100, .105), rgba(183, 154, 100, .02) 58%, transparent);
  transform: translateX(.25rem);
}

.cooperation-step:hover::before,
.cooperation-step.is-active::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 22px rgba(183, 154, 100, .28);
}

.cooperation-step:hover::after,
.cooperation-step.is-active::after {
  width: clamp(3rem, 6vw, 6rem);
  opacity: 1;
}

.cooperation-step:hover .cooperation-number,
.cooperation-step.is-active .cooperation-number {
  color: var(--gold);
  transform: translateX(.12rem);
}

.cooperation-step:hover p,
.cooperation-step.is-active p {
  color: rgba(243, 238, 230, .82);
  transform: translateX(.16rem);
}

.cooperation-copy.reveal-block.is-visible h2 span {
  animation: layerTitleReveal .72s cubic-bezier(.22, .75, .2, 1) both;
}

.cooperation-copy.reveal-block.is-visible h2 span:nth-child(2) {
  animation-delay: .08s;
}

.cooperation-copy.reveal-block.is-visible h2 span:nth-child(3) {
  animation-delay: .16s;
}

.cooperation-step.reveal-block:nth-of-type(2) { transition-delay: .05s; }
.cooperation-step.reveal-block:nth-of-type(3) { transition-delay: .1s; }
.cooperation-step.reveal-block:nth-of-type(4) { transition-delay: .15s; }
.cooperation-step.reveal-block:nth-of-type(5) { transition-delay: .2s; }
.cooperation-step.reveal-block:nth-of-type(6) { transition-delay: .25s; }

.standard-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .24);
  padding: clamp(5.8rem, 9vw, 9rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(120deg, rgba(5, 5, 5, .99), rgba(16, 15, 14, .97) 52%, rgba(7, 7, 6, .99)),
    #050505;
  color: #f3eee6;
  isolation: isolate;
  scroll-margin-top: 7rem;
}

.standard-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 6.5rem 6.5rem,
    linear-gradient(0deg, rgba(183, 154, 100, .04) 1px, transparent 1px) 0 0 / 6.5rem 6.5rem;
  opacity: .42;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 88%, transparent);
}

.standard-section::after {
  position: absolute;
  left: clamp(1rem, 5.6vw, 6rem);
  right: clamp(1rem, 5.6vw, 6rem);
  top: clamp(5rem, 9vw, 8.5rem);
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 100, .16), transparent);
}

.standard-main {
  display: grid;
  grid-template-columns: minmax(19rem, .88fr) minmax(0, 1.12fr);
  gap: clamp(2.2rem, 6vw, 6.5rem);
  align-items: center;
}

.standard-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.85rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
}

.standard-copy h2 span {
  display: block;
  overflow: hidden;
}

.standard-copy p:not(.section-kicker) {
  max-width: 47rem;
  margin: 1.55rem 0 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.72;
}

.standard-copy strong {
  display: block;
  max-width: 36rem;
  margin-top: 1.7rem;
  border-left: 1px solid var(--gold);
  padding: .2rem 0 .2rem 1.15rem;
  color: rgba(243, 238, 230, .92);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.standard-visual {
  position: relative;
  min-height: clamp(31rem, 48vw, 47rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .28);
  background: #10100f;
  isolation: isolate;
}

.standard-visual::before,
.standard-visual::after {
  position: absolute;
  z-index: 4;
  width: 4.4rem;
  height: 4.4rem;
  content: "";
  pointer-events: none;
}

.standard-visual::before {
  top: 1rem;
  left: 1rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.standard-visual::after {
  right: 1rem;
  bottom: 1rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.standard-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 50%;
  filter: saturate(.74) brightness(.55) contrast(1.08);
  transform: scale(1.01);
  transition: filter .3s ease, transform .6s ease;
}

.standard-visual:hover img,
.standard-visual.is-focused img {
  filter: saturate(.8) brightness(.48) contrast(1.1);
  transform: scale(1.025);
}

.standard-visual figcaption {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3;
  display: grid;
  gap: .5rem;
  max-width: 27rem;
  border-top: 1px solid rgba(183, 154, 100, .42);
  padding-top: 1rem;
}

.standard-visual figcaption span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.standard-visual figcaption strong {
  color: #f3eee6;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.standard-pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  z-index: 5;
  width: .78rem;
  height: .78rem;
  border: 1px solid rgba(183, 154, 100, .78);
  padding: 0;
  background: rgba(5, 5, 5, .72);
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, width .2s ease, height .2s ease;
}

.standard-pin::before {
  position: absolute;
  left: .36rem;
  top: .36rem;
  width: clamp(3.8rem, 8vw, 7rem);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left center;
  opacity: .34;
}

.standard-pin span {
  position: absolute;
  left: calc(100% + 1.4rem);
  top: 50%;
  min-width: max-content;
  max-width: 13rem;
  border: 1px solid rgba(183, 154, 100, .34);
  padding: .55rem .7rem;
  background: rgba(5, 5, 5, .86);
  color: rgba(243, 238, 230, .86);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) rotate(-45deg) translateX(-.4rem);
  transition: opacity .2s ease, transform .2s ease;
}

.standard-pin:hover,
.standard-pin:focus-visible,
.standard-pin.is-active {
  width: .95rem;
  height: .95rem;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 18px rgba(183, 154, 100, .26);
}

.standard-pin:hover span,
.standard-pin:focus-visible span,
.standard-pin.is-active span {
  opacity: 1;
  transform: translateY(-50%) rotate(-45deg) translateX(0);
}

.standard-checkpoints {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2.6rem, 5vw, 5rem);
  border-top: 1px solid rgba(183, 154, 100, .24);
  border-left: 1px solid rgba(183, 154, 100, .18);
}

.standard-check {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  min-height: clamp(17rem, 22vw, 23rem);
  border-right: 1px solid rgba(183, 154, 100, .18);
  border-bottom: 1px solid rgba(183, 154, 100, .18);
  padding: clamp(1.2rem, 2vw, 1.8rem);
  background: rgba(255, 255, 255, .015);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.standard-check::before {
  position: absolute;
  left: clamp(1.2rem, 2vw, 1.8rem);
  top: 0;
  width: 1.25rem;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width .25s ease;
}

.standard-check span {
  color: rgba(243, 238, 230, .28);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
  transition: color .25s ease;
}

.standard-check h3 {
  max-width: 11ch;
  margin: 0;
  color: #f3eee6;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.02;
}

.standard-check p {
  margin: .9rem 0 0;
  color: rgba(243, 238, 230, .62);
  font-size: .96rem;
  line-height: 1.56;
  transition: color .25s ease;
}

.standard-check:hover,
.standard-check.is-active {
  border-color: rgba(183, 154, 100, .42);
  background: linear-gradient(180deg, rgba(183, 154, 100, .095), rgba(183, 154, 100, .018));
  transform: translateY(-.25rem);
}

.standard-check:hover::before,
.standard-check.is-active::before {
  width: clamp(3rem, 6vw, 6rem);
}

.standard-check:hover span,
.standard-check.is-active span {
  color: var(--gold);
}

.standard-check:hover p,
.standard-check.is-active p {
  color: rgba(243, 238, 230, .84);
}

.standard-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(183, 154, 100, .22);
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

.standard-footer p {
  max-width: 42rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.standard-copy.reveal-block.is-visible h2 span {
  animation: layerTitleReveal .72s cubic-bezier(.22, .75, .2, 1) both;
}

.standard-copy.reveal-block.is-visible h2 span:nth-child(2) { animation-delay: .08s; }
.standard-copy.reveal-block.is-visible h2 span:nth-child(3) { animation-delay: .16s; }
.standard-copy.reveal-block.is-visible h2 span:nth-child(4) { animation-delay: .24s; }

.standard-visual.reveal-block.is-visible {
  clip-path: inset(0 0 0 0);
}

.standard-visual.reveal-block {
  clip-path: inset(0 0 0 18%);
  transition: opacity .8s ease, transform .8s ease, clip-path .8s cubic-bezier(.22, .75, .2, 1);
}

.standard-check.reveal-block:nth-child(2) { transition-delay: .08s; }
.standard-check.reveal-block:nth-child(3) { transition-delay: .16s; }
.standard-check.reveal-block:nth-child(4) { transition-delay: .24s; }

.reviews-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(19rem, .78fr) minmax(0, 1.22fr);
  gap: clamp(2.4rem, 6vw, 6.5rem);
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .24);
  padding: clamp(5.8rem, 9vw, 9rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(118deg, rgba(5, 5, 5, .98), rgba(14, 13, 12, .97) 58%, rgba(5, 5, 5, .99)),
    #050505;
  color: #f3eee6;
  isolation: isolate;
  scroll-margin-top: 7rem;
}

.reviews-section::before {
  position: absolute;
  right: -3vw;
  top: 8%;
  z-index: -1;
  content: "OPINIE";
  color: transparent;
  -webkit-text-stroke: 1px rgba(183, 154, 100, .075);
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: .75;
  pointer-events: none;
}

.reviews-section::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .055) 1px, transparent 1px) 0 0 / 7rem 7rem,
    linear-gradient(0deg, rgba(255, 255, 255, .028) 1px, transparent 1px) 0 0 / 7rem 7rem;
  opacity: .38;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
}

.reviews-copy {
  position: sticky;
  top: 7.5rem;
  align-self: start;
  padding-top: clamp(.5rem, 4vw, 2rem);
}

.reviews-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.1vw, 5.9rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
}

.reviews-copy h2 span {
  display: block;
  overflow: hidden;
}

.reviews-copy p:not(.section-kicker) {
  max-width: 43rem;
  margin: 1.55rem 0 0;
  color: rgba(243, 238, 230, .72);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.72;
}

.reviews-copy::after {
  display: block;
  width: min(20rem, 72%);
  height: 1px;
  margin-top: 2.15rem;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 100, .12), transparent);
}

.reviews-board {
  min-width: 0;
}

.review-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(9rem, .34fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(183, 154, 100, .28);
  padding: clamp(1.5rem, 3vw, 3rem);
  background:
    linear-gradient(135deg, rgba(183, 154, 100, .1), rgba(183, 154, 100, .025) 42%, rgba(255, 255, 255, .018)),
    rgba(10, 10, 9, .74);
}

.review-feature::before {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  top: clamp(.5rem, 1.8vw, 1.4rem);
  content: "“";
  color: rgba(183, 154, 100, .2);
  font-family: var(--serif);
  font-size: clamp(7rem, 12vw, 13rem);
  line-height: .75;
  pointer-events: none;
}

.review-score {
  display: grid;
  align-content: start;
  gap: .35rem;
  border-right: 1px solid rgba(183, 154, 100, .28);
  padding-right: clamp(1rem, 2vw, 2rem);
}

.review-score span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .9;
}

.review-score strong {
  color: #f3eee6;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.review-score em {
  color: rgba(243, 238, 230, .52);
  font-style: normal;
  font-size: .9rem;
  line-height: 1.4;
}

.review-feature blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.review-feature blockquote p {
  max-width: 52rem;
  margin: 0;
  color: rgba(243, 238, 230, .9);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.65vw, 3rem);
  letter-spacing: -.03em;
  line-height: 1.16;
}

.review-feature footer {
  display: grid;
  gap: .25rem;
  margin-top: 1.7rem;
  border-left: 1px solid var(--gold);
  padding-left: 1rem;
}

.review-feature footer strong {
  color: #fff;
  font-size: .95rem;
}

.review-feature footer span {
  color: rgba(243, 238, 230, .52);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1rem, 2vw, 1.35rem);
  border-top: 1px solid rgba(183, 154, 100, .2);
  border-left: 1px solid rgba(183, 154, 100, .16);
}

.review-card {
  position: relative;
  min-height: 17rem;
  border-right: 1px solid rgba(183, 154, 100, .16);
  border-bottom: 1px solid rgba(183, 154, 100, .16);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  background: rgba(255, 255, 255, .012);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

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

.review-card::before {
  position: absolute;
  left: clamp(1.1rem, 2vw, 1.6rem);
  top: 0;
  width: 1.2rem;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width .25s ease;
}

.review-card span {
  color: rgba(183, 154, 100, .76);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.review-card p {
  margin: 1.15rem 0 0;
  color: rgba(243, 238, 230, .74);
  font-size: .98rem;
  line-height: 1.62;
  transition: color .25s ease;
}

.review-card footer {
  margin-top: 1.2rem;
  color: rgba(243, 238, 230, .46);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.review-card:hover {
  border-color: rgba(183, 154, 100, .38);
  background: linear-gradient(180deg, rgba(183, 154, 100, .075), rgba(183, 154, 100, .015));
  transform: translateY(-.22rem);
}

.review-card:hover::before {
  width: clamp(3rem, 6vw, 5rem);
}

.review-card:hover p {
  color: rgba(243, 238, 230, .92);
}

.review-card:hover footer {
  color: rgba(183, 154, 100, .9);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.4rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(183, 154, 100, .22);
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

.reviews-actions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: end;
}

.reviews-actions p {
  max-width: 31rem;
  margin: 0;
  color: rgba(243, 238, 230, .78);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  letter-spacing: -.025em;
  line-height: 1.12;
}

.reviews-copy.reveal-block.is-visible h2 span {
  animation: layerTitleReveal .72s cubic-bezier(.22, .75, .2, 1) both;
}

.reviews-copy.reveal-block.is-visible h2 span:nth-child(2) {
  animation-delay: .08s;
}

.review-card.reveal-block:nth-child(2) { transition-delay: .08s; }
.review-card.reveal-block:nth-child(3) { transition-delay: .16s; }

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, .86fr) minmax(0, 1.14fr);
  gap: clamp(2.4rem, 6.5vw, 7rem);
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .28);
  padding: clamp(5.8rem, 9vw, 9rem) clamp(1rem, 5.6vw, 6rem);
  background:
    linear-gradient(115deg, rgba(5, 5, 5, .98), rgba(9, 8, 7, .94) 56%, rgba(5, 5, 5, .99)),
    url("../media/portfolio/design-01.jpg") center / cover no-repeat,
    #050505;
  color: #f3eee6;
  isolation: isolate;
  scroll-margin-top: 7rem;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .055) 1px, transparent 1px) 0 0 / 7rem 7rem,
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 7rem 7rem;
  opacity: .36;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 88%, transparent);
}

.contact-section::after {
  position: absolute;
  right: -4vw;
  bottom: 4%;
  z-index: -1;
  content: "KONTAKT";
  color: transparent;
  -webkit-text-stroke: 1px rgba(183, 154, 100, .08);
  font-size: clamp(6rem, 15vw, 17rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: .75;
  pointer-events: none;
}

.contact-copy h2 {
  max-width: 11.5ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.6vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92;
}

.contact-copy h2 span {
  display: block;
  overflow: hidden;
}

.contact-copy p:not(.section-kicker) {
  max-width: 45rem;
  margin: 1.55rem 0 0;
  color: rgba(243, 238, 230, .76);
  font-size: clamp(1rem, 1.16vw, 1.16rem);
  line-height: 1.72;
}

.contact-copy::after {
  display: block;
  width: min(22rem, 72%);
  height: 1px;
  margin-top: 2.1rem;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(183, 154, 100, .12), transparent);
}

.contact-details {
  display: grid;
  gap: 0;
  max-width: 42rem;
  margin-top: 2.2rem;
  border-top: 1px solid rgba(183, 154, 100, .22);
}

.contact-details a {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(183, 154, 100, .18);
  padding: 1rem 0;
  transition: color .2s ease, transform .2s ease, background .2s ease;
}

.contact-details a:hover {
  background: linear-gradient(90deg, rgba(183, 154, 100, .08), transparent);
  transform: translateX(.2rem);
}

.contact-details span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-details strong {
  color: #f3eee6;
  font-size: clamp(.95rem, 1.1vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.8rem;
}

.contact-area {
  max-width: 42rem;
  border-left: 1px solid rgba(183, 154, 100, .62);
  padding-left: 1rem;
}

.service-map {
  position: relative;
  overflow: hidden;
  max-width: 45rem;
  margin-top: 1.65rem;
  border: 1px solid rgba(183, 154, 100, .34);
  background:
    linear-gradient(135deg, rgba(183, 154, 100, .1), rgba(255, 255, 255, .018) 42%, rgba(183, 154, 100, .045)),
    rgba(6, 6, 5, .72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 22px 70px rgba(0, 0, 0, .26);
}

.service-map::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .07) 1px, transparent 1px) 0 0 / 3.4rem 3.4rem,
    linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 3.4rem 3.4rem;
  opacity: .5;
  pointer-events: none;
}

.service-map-head {
  position: relative;
  z-index: 2;
  display: flex;
  gap: .65rem 1rem;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(183, 154, 100, .22);
  padding: 1rem 1.15rem;
}

.service-map-head span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-map-head strong {
  color: rgba(243, 238, 230, .92);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
}

.service-map-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(18rem, 31vw, 25rem);
}

.service-map-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-region {
  fill: url("#mapGlow");
  stroke: rgba(183, 154, 100, .38);
  stroke-width: 1.3;
}

.map-orbit {
  fill: none;
  stroke: rgba(183, 154, 100, .2);
  stroke-width: 1;
}

.map-route {
  fill: none;
  stroke: url("#mapLine");
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  stroke-dasharray: 7 10;
  animation: mapRouteFlow 14s linear infinite;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: rgba(243, 238, 230, .78);
  font-size: clamp(.66rem, .85vw, .8rem);
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.15;
  text-transform: uppercase;
  transform: translate(-.42rem, -.42rem);
  white-space: nowrap;
}

.map-pin::before {
  flex: 0 0 auto;
  width: .72rem;
  height: .72rem;
  border: 1px solid rgba(183, 154, 100, .82);
  content: "";
  background: rgba(5, 5, 5, .82);
  box-shadow: 0 0 0 .24rem rgba(183, 154, 100, .08), 0 0 22px rgba(183, 154, 100, .18);
  transform: rotate(45deg);
}

.map-pin-main {
  color: #fff;
  font-size: clamp(.76rem, 1vw, .94rem);
}

.map-pin-main::before {
  width: .95rem;
  height: .95rem;
  background: var(--gold);
  box-shadow: 0 0 0 .32rem rgba(183, 154, 100, .16), 0 0 32px rgba(183, 154, 100, .34);
}

@keyframes mapRouteFlow {
  to {
    stroke-dashoffset: -170;
  }
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  min-width: 0;
  border: 1px solid rgba(183, 154, 100, .32);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: rgba(6, 6, 5, .82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
}

.contact-form::before,
.contact-form::after {
  position: absolute;
  width: 4rem;
  height: 4rem;
  content: "";
  pointer-events: none;
}

.contact-form::before {
  top: 1rem;
  left: 1rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.contact-form::after {
  right: 1rem;
  bottom: 1rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.contact-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: .75rem;
  border-bottom: 1px solid rgba(183, 154, 100, .24);
  padding-bottom: 1.3rem;
}

.contact-form-head span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-form-head p {
  max-width: 38rem;
  margin: .65rem 0 0;
  color: rgba(243, 238, 230, .64);
  line-height: 1.55;
}

.contact-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .45rem;
}

.contact-form .form-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label > span {
  color: rgba(243, 238, 230, .76);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(183, 154, 100, .22);
  border-radius: 0;
  padding: .95rem 1rem;
  background: rgba(255, 255, 255, .035);
  color: #f3eee6;
  font: inherit;
  outline: 0;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 1.2rem) 50%, calc(100% - .85rem) 50%;
  background-size: .35rem .35rem, .35rem .35rem;
  background-repeat: no-repeat;
}

.contact-form option {
  background: #0c0c0b;
  color: #f3eee6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 238, 230, .38);
}

.contact-form label:focus-within > span {
  color: var(--gold);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(183, 154, 100, .78);
  background: rgba(183, 154, 100, .055);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.contact-consent {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  margin-top: .2rem;
}

.contact-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .15rem;
  accent-color: var(--gold);
}

.contact-consent span {
  color: rgba(243, 238, 230, .66);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.contact-form-note {
  position: relative;
  z-index: 1;
  border-left: 1px solid rgba(183, 154, 100, .58);
  padding: .35rem 0 .35rem 1rem;
}

.contact-form-note strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: -.02em;
}

.contact-form-note ul {
  display: grid;
  gap: .35rem;
  margin: .75rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-form-note li {
  position: relative;
  padding-left: .95rem;
  color: rgba(243, 238, 230, .62);
  font-size: .92rem;
  line-height: 1.4;
}

.contact-form-note li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "·";
}

.contact-form .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: .4rem;
  border: 0;
  cursor: pointer;
}

.contact-helper,
.contact-status {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(243, 238, 230, .52);
  font-size: .88rem;
  line-height: 1.45;
}

.contact-status {
  min-height: 1.35rem;
  color: var(--gold);
}

.contact-copy.reveal-block.is-visible h2 span {
  animation: layerTitleReveal .72s cubic-bezier(.22, .75, .2, 1) both;
}

.contact-copy.reveal-block.is-visible h2 span:nth-child(2) { animation-delay: .08s; }
.contact-copy.reveal-block.is-visible h2 span:nth-child(3) { animation-delay: .16s; }

.contact-form.reveal-block {
  clip-path: inset(12% 0 0 0);
  transition: opacity .8s ease, transform .8s ease, clip-path .8s cubic-bezier(.22, .75, .2, 1);
}

.contact-form.reveal-block.is-visible {
  clip-path: inset(0 0 0 0);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(183, 154, 100, .32);
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5.6vw, 6rem) 0;
  background:
    linear-gradient(120deg, rgba(3, 3, 3, .99), rgba(12, 11, 10, .98)),
    #030303;
  color: #f3eee6;
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  bottom: 8%;
  z-index: -1;
  content: "2B";
  color: transparent;
  -webkit-text-stroke: 1px rgba(183, 154, 100, .08);
  font-family: var(--serif);
  font-size: clamp(11rem, 25vw, 28rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .7;
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .05) 1px, transparent 1px) 0 0 / 7rem 7rem,
    linear-gradient(0deg, rgba(255, 255, 255, .024) 1px, transparent 1px) 0 0 / 7rem 7rem;
  opacity: .34;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
}

.footer-statement {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid rgba(183, 154, 100, .54);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-statement p {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .92;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 1.4fr) repeat(3, minmax(10rem, .72fr));
  gap: clamp(1.6rem, 4vw, 4rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid rgba(183, 154, 100, .22);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.footer-brand {
  max-width: 34rem;
}

.footer-brand img {
  width: min(16rem, 58vw);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .28));
  transition: transform .25s ease, filter .25s ease;
}

.footer-brand a:hover img {
  transform: translateY(-.15rem);
  filter: drop-shadow(0 18px 34px rgba(183, 154, 100, .1));
}

.footer-brand p {
  max-width: 30rem;
  margin: 1.25rem 0 0;
  color: rgba(243, 238, 230, .68);
  line-height: 1.65;
}

.footer-brand strong {
  display: inline-block;
  margin-top: 1.25rem;
  border-left: 1px solid var(--gold);
  padding-left: .9rem;
  color: #f3eee6;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: .72rem;
  border-left: 1px solid rgba(183, 154, 100, .16);
  padding-left: clamp(1rem, 2vw, 1.6rem);
}

.footer-column h2 {
  margin: 0 0 .35rem;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column a {
  position: relative;
  width: fit-content;
  color: rgba(243, 238, 230, .68);
  font-size: .96rem;
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.18rem;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.footer-column a:hover {
  color: #f3eee6;
  transform: translateX(.18rem);
}

.footer-column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-contact p {
  max-width: 20rem;
  margin: .35rem 0 0;
  color: rgba(243, 238, 230, .52);
  font-size: .9rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid rgba(183, 154, 100, .22);
  padding: 1.2rem 0;
  color: rgba(243, 238, 230, .46);
  font-size: .78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  justify-content: end;
}

.footer-statement.reveal-block.is-visible p {
  animation: lineReveal .78s cubic-bezier(.22, .75, .2, 1) both;
}

.footer-column.reveal-block:nth-child(2) { transition-delay: .08s; }
.footer-column.reveal-block:nth-child(3) { transition-delay: .16s; }
.footer-column.reveal-block:nth-child(4) { transition-delay: .24s; }

/* Global premium polish */
:root {
  --paper: #050505;
  --paper-warm: #11100f;
  --ink: #f4f0e8;
  --graphite: #0b0b0b;
  --graphite-soft: rgba(17, 17, 17, .84);
  --muted: rgba(244, 240, 232, .72);
  --dark-muted: #afa9a0;
  --line: rgba(200, 164, 93, .28);
  --gold: #c8a45d;
  --wood: #b8914b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

html {
  background: #050505;
}

body {
  background:
    radial-gradient(circle at 78% 0%, rgba(200, 164, 93, .055), transparent 28rem),
    linear-gradient(180deg, #050505, #080807 34%, #050505);
  color: #f4f0e8;
  text-rendering: geometricPrecision;
}

::selection {
  background: rgba(200, 164, 93, .85);
  color: #050505;
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: .22rem;
}

.site-header {
  background: linear-gradient(180deg, rgba(5, 5, 5, .48), rgba(5, 5, 5, 0));
}

.site-header .brand {
  width: clamp(7.4rem, 10vw, 10.8rem);
  height: 3.45rem;
  justify-items: start;
  overflow: hidden;
}

.site-header .brand img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, .9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

h1,
.layers-copy h2,
.steps-copy h2,
.portfolio-intro h2,
.offer-head h2,
.responsibility-copy h2,
.cooperation-copy h2,
.standard-copy h2,
.reviews-copy h2,
.contact-copy h2,
.footer-statement p {
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead,
.layers-copy p:not(.section-kicker),
.steps-copy p:not(.section-kicker),
.portfolio-intro-copy p,
.offer-head > p:not(.section-kicker),
.responsibility-copy p:not(.section-kicker),
.cooperation-copy p:not(.section-kicker),
.standard-copy p:not(.section-kicker),
.reviews-copy p:not(.section-kicker),
.contact-copy p:not(.section-kicker) {
  color: rgba(244, 240, 232, .74);
  text-wrap: pretty;
}

.section-kicker {
  color: var(--gold);
  letter-spacing: .18em;
}

.button {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.22, .75, .2, 1);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  border: 1px solid rgba(200, 164, 93, .74);
  background: rgba(200, 164, 93, .14);
  color: #f4f0e8;
}

.button-primary:hover {
  border-color: var(--gold);
  background: rgba(200, 164, 93, .24);
  color: #fff;
}

.button-secondary {
  border-color: rgba(200, 164, 93, .42);
}

.button-secondary:hover {
  border-color: rgba(200, 164, 93, .82);
  background: rgba(200, 164, 93, .1);
}

.section-link {
  color: rgba(244, 240, 232, .86);
}

.hero,
.layers-section,
.steps-section,
.portfolio-section,
.offer-section,
.responsibility-section,
.cooperation-section,
.standard-section,
.reviews-section,
.contact-section,
.site-footer {
  border-top-color: rgba(200, 164, 93, .24);
}

.layers-section,
.steps-section,
.portfolio-section,
.offer-section,
.responsibility-section,
.cooperation-section,
.standard-section,
.reviews-section,
.contact-section {
  padding-top: clamp(6.5rem, 10vw, 10.5rem);
  padding-bottom: clamp(6.5rem, 10vw, 10.5rem);
}

.hero-media img,
.layer-image img,
.step-card img,
.portfolio-category img,
.portfolio-shot img,
.portfolio-hero img,
.offer-panel-image img,
.standard-visual img,
.category-hero img {
  transition: filter .34s ease, transform .6s cubic-bezier(.22, .75, .2, 1), opacity .28s ease;
}

.portfolio-category,
.layer-card,
.step-card,
.offer-panel,
.standard-visual,
.review-feature,
.contact-form {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025), 0 28px 90px rgba(0, 0, 0, .24);
}

.portfolio-category::after,
.offer-panel::after,
.standard-visual::after,
.contact-form::after {
  border-color: rgba(200, 164, 93, .72);
}

.portfolio-category:hover img,
.portfolio-shot:hover img,
.portfolio-hero:hover img,
.offer-panel:hover img,
.standard-visual:hover img {
  transform: scale(1.03);
}

.portfolio-category h3,
.offer-panel h3,
.responsibility-point h3,
.cooperation-step h3,
.standard-check h3,
.review-feature blockquote p,
.standard-footer p,
.reviews-actions p {
  letter-spacing: 0;
  text-wrap: balance;
}

.portfolio-category small,
.offer-item em,
.responsibility-point p,
.cooperation-step p,
.standard-check p,
.review-card p,
.contact-form-head p,
.footer-contact p {
  color: rgba(244, 240, 232, .62);
}

.site-nav a,
.footer-column a,
.contact-details a,
.portfolio-category a {
  text-underline-offset: .2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  caret-color: var(--gold);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: inset 0 -2px 0 rgba(200, 164, 93, .88);
}

.site-footer .footer-brand img {
  height: auto;
  max-height: 6.5rem;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .layers-section,
  .steps-section,
  .portfolio-section,
  .offer-section,
  .responsibility-section,
  .cooperation-section,
  .standard-section,
  .reviews-section,
  .contact-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  h1,
  .layers-copy h2,
  .steps-copy h2,
  .portfolio-intro h2,
  .offer-head h2,
  .responsibility-copy h2,
  .cooperation-copy h2,
  .standard-copy h2,
  .reviews-copy h2,
  .contact-copy h2,
  .footer-statement p {
    letter-spacing: 0;
    overflow-wrap: normal;
    word-break: normal;
  }

  .site-nav.is-open {
    background:
      linear-gradient(135deg, rgba(5, 5, 5, .98), rgba(18, 16, 13, .98)),
      #050505;
  }

  .site-header .brand {
    width: 8.6rem;
    height: 3rem;
  }
}

@keyframes layerTitleReveal {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(.45em);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes headerIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes imageFade {
  from {
    opacity: 0;
    transform: scale(1.018);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(.85rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineReveal {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(.55em);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes infoIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    align-content: center;
    justify-content: stretch;
    gap: 0;
    padding: 7rem 1.25rem 2rem;
    background: rgba(24, 24, 22, .97);
    color: #fff;
    font-size: 1rem;
  }

  .site-nav.is-open a {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding: 1.15rem 0;
  }

  .hero-content {
    width: min(42rem, calc(100% - 2rem));
    transform: translateY(2rem);
  }

  .layers-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .layers-copy {
    max-width: 54rem;
  }

  .layers-copy h2 {
    max-width: 12ch;
  }

  .layer-board {
    min-height: 38rem;
  }

  .steps-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .steps-copy {
    position: relative;
    top: auto;
    max-width: 54rem;
    padding-top: 0;
  }

  .steps-copy h2 {
    max-width: 13ch;
  }

  .steps-cards {
    height: clamp(27rem, 54vw, 35rem);
  }

  .scroll-thread {
    display: none;
  }

  .portfolio-intro,
  .portfolio-hero {
    grid-template-columns: 1fr;
  }

  .portfolio-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(17rem, 28vw);
  }

  .portfolio-category-large,
  .portfolio-category-wide,
  .portfolio-category-mid {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-shot,
  .portfolio-shot:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 24rem;
  }

  .lightbox figure {
    grid-template-columns: 1fr;
  }

  .offer-head,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .offer-panel {
    position: relative;
    top: auto;
  }

  .responsibility-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cooperation-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cooperation-copy {
    position: relative;
    top: auto;
    max-width: 54rem;
    padding-top: 0;
  }

  .cooperation-copy h2 {
    max-width: 12ch;
  }

  .cooperation-timeline {
    margin-top: 1rem;
  }

  .standard-main {
    grid-template-columns: 1fr;
  }

  .standard-copy {
    max-width: 56rem;
  }

  .standard-copy h2 {
    max-width: 13ch;
  }

  .standard-checkpoints {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standard-check {
    min-height: 17rem;
  }

  .reviews-section {
    grid-template-columns: 1fr;
  }

  .reviews-copy {
    position: relative;
    top: auto;
    max-width: 56rem;
    padding-top: 0;
  }

  .reviews-copy h2 {
    max-width: 13ch;
  }

  .reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 58rem;
  }

  .contact-copy h2 {
    max-width: 12ch;
  }

  .footer-statement {
    align-items: start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 4.75rem;
    padding: .75rem 1rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(18, 18, 17, .46), rgba(18, 18, 17, 0));
  }

  .brand {
    width: 8.8rem;
  }

  .brand img {
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .32));
  }

  .site-header.is-scrolled {
    background: rgba(24, 24, 22, .9);
    color: #fff;
  }

  .menu-button {
    border-color: rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .12);
  }

  .menu-button span {
    background: #fff;
  }

  .hero {
    min-height: 100svh;
    background: var(--graphite);
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(18, 18, 17, .92) 0%, rgba(18, 18, 17, .82) 42%, rgba(18, 18, 17, .18) 100%),
      linear-gradient(90deg, rgba(18, 18, 17, .36), transparent);
  }

  .hero-media {
    height: 48svh;
    inset: 0 0 auto;
  }

  .hero-media img {
    object-position: 58% 42%;
  }

  .hero-content {
    min-height: 100svh;
    width: auto;
    margin: 0;
    justify-content: end;
    padding: 34svh 1rem 13.5rem;
    transform: none;
  }

  .hero-kicker {
    max-width: 22rem;
    padding-left: 2.35rem;
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .hero-kicker::before {
    width: 1.55rem;
    margin-left: -2.35rem;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.55rem, 10.8vw, 4.1rem);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 32rem;
    margin-top: 1.15rem;
    font-size: .98rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    gap: .7rem;
    margin-top: 1.35rem;
  }

  .button {
    min-height: 3.15rem;
    width: min(100%, 22rem);
  }

  .hero-info {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    grid-template-columns: 1fr;
  }

  .hero-info div {
    min-height: 3.5rem;
    grid-template-columns: 2.25rem 1fr;
    align-items: center;
    gap: .7rem;
    padding: .7rem .85rem;
  }

  .hero-info div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
  }

  .layers-section {
    display: block;
    padding: 4.5rem 1rem;
  }

  .layers-section::before {
    opacity: .34;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
  }

  .layers-section::after,
  .layer-divider {
    display: none;
  }

  .section-kicker {
    max-width: 20rem;
    padding-left: 2.2rem;
    font-size: .66rem;
    letter-spacing: .12em;
  }

  .section-kicker::before {
    width: 1.45rem;
  }

  .layers-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.55rem, 11vw, 3.85rem);
  }

  .layers-copy p:not(.section-kicker) {
    font-size: .98rem;
    line-height: 1.66;
  }

  .layer-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.75rem;
  }

  .layer-card {
    min-height: 31rem;
  }

  .layer-card-content {
    padding: 1.25rem;
  }

  .layer-card h3 {
    max-width: 11ch;
    font-size: 2.25rem;
  }

  .layer-card li {
    padding-top: .76rem;
    padding-bottom: .76rem;
  }

  .steps-section {
    display: block;
    padding: 4.5rem 1rem;
  }

  .steps-section::before {
    opacity: .28;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
  }

  .steps-section::after {
    display: none;
  }

  .steps-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.45rem, 10.5vw, 3.75rem);
  }

  .steps-copy p:not(.section-kicker) {
    font-size: .98rem;
    line-height: 1.64;
  }

  .steps-copy::after {
    width: 100%;
    margin-top: 1.65rem;
  }

  .steps-stage {
    position: relative;
    margin-top: 2.6rem;
  }

  .steps-stage::before {
    position: absolute;
    left: .42rem;
    top: 0;
    bottom: 0;
    width: 1px;
    content: "";
    background: linear-gradient(180deg, var(--gold), rgba(183, 154, 100, .12));
  }

  .steps-cards {
    display: grid;
    height: auto;
    gap: 1rem;
    padding-left: 1.55rem;
  }

  .step-card,
  .step-card.is-active,
  .step-card:hover,
  .step-card:focus-within {
    min-height: 25rem;
    flex: none;
  }

  .step-card::before,
  .step-card::after {
    opacity: .72;
  }

  .step-card p {
    max-height: 8rem;
    opacity: 1;
    transform: none;
  }

  .step-card h3 {
    max-width: 12ch;
    font-size: 2rem;
  }

  .steps-line {
    display: none;
  }

  .portfolio-section {
    padding: 4.5rem 1rem;
  }

  .portfolio-intro {
    display: block;
  }

  .portfolio-intro h2 {
    max-width: 10.5ch;
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .portfolio-intro-copy {
    margin-top: 1.3rem;
  }

  .portfolio-hero {
    min-height: auto;
  }

  .portfolio-hero img {
    min-height: 20rem;
  }

  .portfolio-categories {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(22rem, auto);
  }

  .portfolio-gallery-head {
    display: block;
  }

  .portfolio-gallery-head > p {
    margin-top: 1rem;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-shot,
  .portfolio-shot:nth-child(n) {
    min-height: 23rem;
  }

  .portfolio-shot figcaption {
    opacity: 1;
    transform: none;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 4.5rem 1rem 1rem;
  }

  .lightbox-arrow {
    position: absolute;
    top: 50%;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: .7rem;
  }

  .lightbox-next {
    right: .7rem;
  }

  .lightbox figcaption {
    border-left: 0;
    border-top: 1px solid rgba(183, 154, 100, .45);
    padding: 1rem 0 0;
  }

  .category-page {
    padding: 6.5rem 1rem 4.5rem;
  }

  .category-hero {
    grid-template-columns: 1fr;
  }

  .category-hero img {
    min-height: 20rem;
  }

  .category-tools {
    display: block;
  }

  .category-tools .button {
    margin-top: 1rem;
  }

  .offer-section {
    padding: 4.5rem 1rem;
  }

  .offer-head {
    display: block;
  }

  .offer-head h2 {
    max-width: 10.5ch;
    font-size: clamp(2.45rem, 10vw, 3.75rem);
  }

  .offer-head > p:not(.section-kicker) {
    margin-top: 1.2rem;
    font-size: .98rem;
    line-height: 1.64;
  }

  .offer-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.2rem;
  }

  .offer-list {
    order: 1;
  }

  .offer-panel {
    order: 2;
    min-height: 34rem;
  }

  .offer-item {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    padding: 1rem 0 1rem 1rem;
  }

  .offer-item strong {
    font-size: 1.3rem;
  }

  .offer-item em {
    font-size: .82rem;
  }

  .offer-panel-content {
    padding: 1.2rem;
  }

  .offer-panel h3 {
    max-width: 10.5ch;
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .offer-panel ul {
    grid-template-columns: 1fr;
  }

  .offer-actions,
  .offer-actions .button {
    width: 100%;
  }

  .responsibility-section {
    display: block;
    padding: 4.8rem 1rem;
  }

  .responsibility-section::before {
    right: auto;
    left: 1rem;
    top: 2rem;
    font-size: 4.3rem;
    max-width: 100%;
    overflow: hidden;
  }

  .responsibility-section::after {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 2.2rem;
  }

  .responsibility-copy h2 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .responsibility-copy p:not(.section-kicker) {
    font-size: .98rem;
    line-height: 1.64;
  }

  .responsibility-copy .button {
    width: 100%;
  }

  .responsibility-points {
    margin-top: 3rem;
  }

  .responsibility-point {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: .85rem;
  }

  .responsibility-point h3 {
    font-size: 1.65rem;
  }

  .cooperation-section {
    display: block;
    padding: 4.8rem 1rem;
  }

  .cooperation-section::before {
    opacity: .28;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
  }

  .cooperation-section::after {
    display: none;
  }

  .cooperation-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.55rem, 10.8vw, 3.9rem);
  }

  .cooperation-copy p:not(.section-kicker) {
    font-size: .98rem;
    line-height: 1.64;
  }

  .cooperation-copy::after {
    width: 100%;
    margin-top: 1.65rem;
  }

  .cooperation-copy .button {
    width: 100%;
  }

  .cooperation-timeline {
    margin-top: 2.75rem;
    padding-left: 1.45rem;
  }

  .cooperation-timeline::before,
  .cooperation-line {
    left: .32rem;
    top: .7rem;
    bottom: .7rem;
  }

  .cooperation-line {
    height: calc(var(--cooperation-progress, 0) * (100% - 1.4rem));
  }

  .cooperation-step {
    grid-template-columns: 3.45rem minmax(0, 1fr);
    gap: .75rem;
    min-height: auto;
    padding: 1.1rem 0 1.15rem .75rem;
  }

  .cooperation-step::before {
    left: -1.41rem;
    top: 1.5rem;
  }

  .cooperation-step::after {
    left: .75rem;
  }

  .cooperation-step:hover,
  .cooperation-step.is-active {
    transform: none;
  }

  .cooperation-number {
    font-size: 1.85rem;
  }

  .cooperation-step h3 {
    font-size: 1.55rem;
  }

  .cooperation-step p {
    font-size: .94rem;
    line-height: 1.55;
  }

  .standard-section {
    padding: 4.8rem 1rem;
  }

  .standard-section::before {
    opacity: .3;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
  }

  .standard-section::after {
    left: 1rem;
    right: 1rem;
    top: 4.6rem;
  }

  .standard-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.45rem, 10.5vw, 3.75rem);
  }

  .standard-copy p:not(.section-kicker) {
    font-size: .98rem;
    line-height: 1.64;
  }

  .standard-copy strong {
    font-size: 1.3rem;
  }

  .standard-visual {
    min-height: 29rem;
    margin-top: 2.4rem;
  }

  .standard-visual img {
    object-position: 61% 50%;
  }

  .standard-visual figcaption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .standard-visual figcaption strong {
    font-size: 1.55rem;
  }

  .standard-pin {
    width: .7rem;
    height: .7rem;
  }

  .standard-pin::before {
    width: 2.4rem;
  }

  .standard-pin span {
    min-width: 9rem;
    max-width: 10rem;
    font-size: .65rem;
  }

  .standard-checkpoints {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .standard-check {
    min-height: auto;
    grid-template-columns: 3.1rem minmax(0, 1fr);
    grid-template-rows: auto;
    gap: .85rem;
    padding: 1.15rem 0 1.2rem 1rem;
  }

  .standard-check:hover,
  .standard-check.is-active {
    transform: none;
  }

  .standard-check::before {
    left: 1rem;
  }

  .standard-check span {
    font-size: 1.85rem;
  }

  .standard-check h3 {
    max-width: none;
    font-size: 1.55rem;
  }

  .standard-check p {
    font-size: .94rem;
    line-height: 1.55;
  }

  .standard-footer {
    display: grid;
  }

  .standard-footer .button {
    width: 100%;
  }

  .reviews-section {
    display: block;
    padding: 4.8rem 1rem;
  }

  .reviews-section::before {
    right: auto;
    left: 1rem;
    top: 2rem;
    max-width: 100%;
    overflow: hidden;
    font-size: 5.2rem;
  }

  .reviews-section::after {
    opacity: .26;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
  }

  .reviews-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.55rem, 10.8vw, 3.9rem);
  }

  .reviews-copy p:not(.section-kicker) {
    font-size: .98rem;
    line-height: 1.64;
  }

  .reviews-copy::after {
    width: 100%;
    margin-top: 1.65rem;
  }

  .reviews-board {
    margin-top: 2.5rem;
  }

  .review-feature {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .review-feature::before {
    right: .8rem;
    top: .4rem;
    font-size: 6rem;
  }

  .review-score {
    grid-template-columns: auto 1fr;
    align-items: end;
    border-right: 0;
    border-bottom: 1px solid rgba(183, 154, 100, .28);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .review-score span {
    grid-row: span 2;
    font-size: 3.2rem;
  }

  .review-feature blockquote p {
    font-size: 1.45rem;
    line-height: 1.22;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
    padding: 1.15rem;
  }

  .review-card:hover {
    transform: none;
  }

  .reviews-actions {
    display: grid;
  }

  .reviews-actions > div {
    display: grid;
    justify-content: stretch;
  }

  .reviews-actions .button {
    width: 100%;
  }

  .contact-section {
    display: block;
    padding: 4.8rem 1rem;
    background-position: 62% 50%;
  }

  .contact-section::before {
    opacity: .24;
    mask-image: linear-gradient(180deg, #000, transparent 84%);
  }

  .contact-section::after {
    right: auto;
    left: 1rem;
    bottom: 2rem;
    max-width: 100%;
    overflow: hidden;
    font-size: 4.6rem;
  }

  .contact-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.55rem, 10.8vw, 3.9rem);
  }

  .contact-copy p:not(.section-kicker) {
    font-size: .98rem;
    line-height: 1.64;
  }

  .contact-copy::after {
    width: 100%;
    margin-top: 1.65rem;
  }

  .contact-details a {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .contact-actions {
    display: grid;
  }

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

  .contact-form {
    margin-top: 2.6rem;
    padding: 1.15rem;
  }

  .contact-form::before,
  .contact-form::after {
    width: 2.8rem;
    height: 2.8rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 3.2rem;
    font-size: 1rem;
  }

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

  .contact-consent {
    grid-template-columns: 1.2rem minmax(0, 1fr);
  }

  .site-footer {
    padding: 4.5rem 1rem 0;
  }

  .site-footer::before {
    left: .6rem;
    bottom: 7rem;
    font-size: 10rem;
  }

  .site-footer::after {
    opacity: .24;
    mask-image: linear-gradient(180deg, #000, transparent 84%);
  }

  .footer-statement {
    gap: 1.25rem;
  }

  .footer-statement p {
    max-width: 10.5ch;
    font-size: clamp(2.65rem, 11vw, 4.1rem);
  }

  .footer-statement .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand img {
    width: 13rem;
  }

  .footer-column {
    border-left: 0;
    border-top: 1px solid rgba(183, 154, 100, .18);
    padding: 1.25rem 0 0;
  }

  .footer-bottom {
    display: grid;
    gap: .8rem;
  }

  .footer-bottom div {
    justify-content: start;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 7.8rem;
  }

  .hero-content {
    padding-bottom: 14.25rem;
  }

  h1 {
    font-size: 2.42rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.site-header .brand {
  width: clamp(4.2rem, 5.4vw, 5.6rem);
  height: 3.45rem;
  overflow: hidden;
}

.site-header .brand img {
  width: 100% !important;
  max-width: 100%;
  height: 100% !important;
  max-height: 3.45rem;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 760px) {
  .site-header .brand {
    width: 4.2rem;
    height: 3rem;
  }

  .site-header .brand img {
    max-height: 3rem;
  }
}

/* Header restored to the earlier Netlify-style version. */
.site-header {
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  min-height: 6.25rem;
  padding: 1.1rem clamp(1rem, 4.5vw, 4.75rem);
  background: linear-gradient(180deg, rgba(5, 5, 5, .48), rgba(5, 5, 5, 0));
}

.site-header .brand {
  width: clamp(8.5rem, 12vw, 13rem);
  height: auto;
  overflow: visible;
  place-items: center;
}

.site-header .brand img {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.site-header.is-scrolled {
  min-height: 4.75rem;
  background: rgba(5, 5, 5, .86);
  border-bottom: 1px solid rgba(200, 164, 93, .18);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand {
  width: clamp(7.4rem, 9vw, 9.6rem);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 4.75rem;
    padding: .75rem 1rem;
  }

  .site-header .brand,
  .site-header.is-scrolled .brand {
    width: 8.8rem;
    height: auto;
  }
}

/* 2B white ornament intro */
.intro-overlay.intro-orna {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  pointer-events: none;
  animation: ornaIntroExit .48s ease 2.05s both;
}

.intro-overlay.intro-orna.is-hidden {
  display: none;
}

.intro-orna-pair {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  transform: translate(-50%, -50%);
  animation: ornaSpin 1.22s cubic-bezier(.45, 0, .2, 1) .18s both, ornaFade .35s ease 1.35s forwards;
}

.intro-orna-half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .14));
}

.intro-orna-left {
  left: 0;
  transform: scaleX(-1);
  transform-origin: right center;
}

.intro-orna-right {
  right: 0;
  transform-origin: left center;
}

.intro-full-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  object-fit: contain;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.92);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .12));
  animation: ornaLogoIn .55s cubic-bezier(.22, .75, .2, 1) 1.48s forwards;
}

@keyframes ornaSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg) scale(.96);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}

@keyframes ornaFade {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(360deg) scale(.94);
  }
}

@keyframes ornaLogoIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes ornaIntroExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 760px) {
  .intro-orna-pair,
  .intro-full-logo {
    width: min(82vw, 62vh);
    height: min(82vw, 62vh);
  }

  .intro-overlay.intro-orna {
    animation-delay: 1.75s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay.intro-orna {
    animation: ornaIntroExit .2s ease .45s both;
  }

  .intro-orna-pair {
    display: none;
  }

  .intro-full-logo {
    opacity: 1;
    animation: none;
  }
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(200, 164, 93, .08), transparent 22rem),
    #050505;
  pointer-events: none;
  animation: introExit .55s cubic-bezier(.22, .75, .2, 1) 1.75s both;
}

.intro-overlay.is-hidden {
  display: none;
}

.intro-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(200, 164, 93, .07) 1px, transparent 1px) 0 0 / 5rem 5rem,
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 5rem 5rem;
  opacity: .45;
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
  animation: introGrid .7s ease both;
}

.intro-mark {
  position: relative;
  width: min(22rem, 58vw);
  aspect-ratio: 1.25;
}

.intro-mark svg,
.intro-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-mark svg {
  z-index: 2;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(200, 164, 93, .18));
}

.intro-mark svg path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: goldTrace 1s cubic-bezier(.22, .75, .2, 1) .22s forwards;
}

.intro-mark img {
  opacity: 0;
  transform: scale(.96);
  animation: introLogo .55s ease .82s forwards, introLogoMove .65s cubic-bezier(.22, .75, .2, 1) 1.35s forwards;
}

.intro-cut {
  position: absolute;
  left: -12vw;
  top: 50%;
  width: 124vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  animation: introCut 1s cubic-bezier(.22, .75, .2, 1) 1.1s both;
}

@keyframes goldTrace {
  to { stroke-dashoffset: 0; }
}

@keyframes introLogo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introLogoMove {
  to {
    opacity: .65;
    transform: translate(-38vw, -39vh) scale(.22);
  }
}

@keyframes introCut {
  0% { transform: scaleX(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

@keyframes introGrid {
  from { opacity: 0; }
}

@keyframes introExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.offer-section {
  min-height: auto;
  padding-top: clamp(4.8rem, 7vw, 7.2rem);
  padding-bottom: clamp(4.8rem, 7vw, 7.2rem);
}

.offer-head {
  align-items: start;
}

.offer-head h2 {
  max-width: 16ch;
  font-size: clamp(2.5rem, 3.7vw, 4.35rem);
  line-height: .98;
}

.offer-head > p:not(.section-kicker) {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.58;
}

.offer-layout {
  grid-template-columns: minmax(22rem, .92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 3.4vw, 3.6rem);
  margin-top: clamp(1.6rem, 3vw, 3rem);
}

.offer-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
}

.offer-item {
  min-height: 3.75rem;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  gap: .55rem;
  padding-top: .62rem;
  padding-bottom: .62rem;
}

.offer-item strong {
  font-size: clamp(1rem, 1.18vw, 1.32rem);
}

.offer-item em {
  display: none;
}

.offer-panel {
  min-height: clamp(27rem, 35vw, 34rem);
}

.offer-panel h3 {
  font-size: clamp(1.85rem, 3vw, 3.3rem);
}

.offer-panel p {
  line-height: 1.52;
}

.offer-panel ul {
  gap: .35rem .8rem;
  margin-top: 1rem;
}

.responsibility-section {
  grid-template-columns: minmax(0, .9fr) minmax(23rem, 1.1fr);
}

.responsibility-copy h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.standard-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: clamp(1.3rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(200, 164, 93, .24);
  border-bottom: 1px solid rgba(200, 164, 93, .16);
  padding: 1rem 0;
}

.standard-proof span {
  position: relative;
  padding-left: 1rem;
  color: rgba(244, 240, 232, .76);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.standard-proof span::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
}

.category-page,
.category-page * {
  font-family: var(--sans);
}

.category-page h1,
.category-page h2,
.category-page h3,
.category-page .portfolio-shot strong,
.lightbox strong {
  font-family: var(--serif);
}

@media (max-width: 1100px) {
  .offer-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .intro-mark {
    width: min(13rem, 48vw);
  }

  .intro-overlay {
    animation-duration: .42s;
    animation-delay: 1.25s;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .standard-proof {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    animation: introExit .2s ease .12s both;
  }

  .intro-mark svg,
  .intro-cut {
    display: none;
  }

  .intro-mark img {
    opacity: 1;
    animation: none;
  }
}

/* New 2B black-card intro */
.intro-overlay.intro-card {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #030303;
  pointer-events: none;
  animation: introCardOverlayOut .85s cubic-bezier(.22, .75, .2, 1) 2.25s forwards;
}

.intro-overlay.intro-card.is-hidden {
  display: none;
}

.intro-card-logo {
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  object-fit: contain;
  opacity: 0;
  transform: translate(0, 0) scale(.94);
  filter: drop-shadow(0 1.8rem 3.8rem rgba(0, 0, 0, .55));
  animation:
    introCardFadeIn .78s cubic-bezier(.22, .75, .2, 1) .12s forwards,
    introCardToHero .88s cubic-bezier(.2, .82, .2, 1) 2s forwards;
}

.hero-logo-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(1.1rem, 5.2vw, 6.25rem);
  width: clamp(8.2rem, 15.5vw, 15.4rem);
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(206, 170, 103, .42);
  border-radius: clamp(1rem, 1.45vw, 1.45rem);
  background: #030303;
  box-shadow:
    0 2.2rem 5.4rem rgba(0, 0, 0, .54),
    0 .8rem 1.6rem rgba(0, 0, 0, .32),
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    inset 0 -1.2rem 2.2rem rgba(0, 0, 0, .38);
  transform: translateY(-48%) perspective(920px) rotateY(-10deg) rotateX(2deg);
  transform-style: preserve-3d;
  will-change: transform;
  animation: heroLogoTilt 5.8s ease-in-out infinite;
}

.hero-logo-button::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), transparent 31%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .26));
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-logo-button::after {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -58%;
  z-index: 3;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
  animation: heroLogoShine 5.2s ease-in-out 1.25s infinite;
}

.hero-logo-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(1.4rem) scale(1.012);
}

.hero-logo-button:hover,
.hero-logo-button:focus-visible {
  border-color: rgba(225, 190, 112, .75);
  box-shadow:
    0 2.4rem 6.2rem rgba(0, 0, 0, .6),
    0 0 0 1px rgba(225, 190, 112, .16),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.hero-logo-button:focus-visible {
  outline: 2px solid rgba(225, 190, 112, .85);
  outline-offset: 6px;
}

@keyframes introCardFadeIn {
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes introCardToHero {
  to {
    opacity: 0;
    border-radius: 1.35rem;
    transform: translate(32vw, -1vh) scale(.29);
  }
}

@keyframes introCardOverlayOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes heroLogoTilt {
  0%,
  100% {
    transform: translateY(-48%) perspective(920px) rotateY(-11deg) rotateX(2deg);
  }

  50% {
    transform: translateY(-48%) perspective(920px) rotateY(12deg) rotateX(-2deg);
  }
}

@keyframes heroLogoShine {
  0%,
  62% {
    opacity: 0;
    transform: translateX(-160%) skewX(-18deg);
  }

  72% {
    opacity: .78;
  }

  86%,
  100% {
    opacity: 0;
    transform: translateX(360%) skewX(-18deg);
  }
}

@media (max-width: 1180px) {
  .hero-logo-button {
    right: clamp(1rem, 3vw, 2.8rem);
    width: clamp(7rem, 15vw, 10rem);
    opacity: .94;
  }
}

@media (max-width: 900px) {
  .hero-logo-button {
    top: 18%;
    right: 1rem;
    width: clamp(5.8rem, 20vw, 7.6rem);
    border-radius: .9rem;
    opacity: .88;
  }

  .intro-card-logo {
    width: min(82vw, 62vh);
    height: min(82vw, 62vh);
  }

  @keyframes introCardToHero {
    to {
      opacity: 0;
      border-radius: .9rem;
      transform: translate(27vw, -33vh) scale(.2);
    }
  }
}

@media (max-width: 640px) {
  .hero-logo-button {
    top: 11.4rem;
    width: 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay.intro-card {
    animation: introCardOverlayOut .2s ease .55s forwards;
  }

  .intro-card-logo {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-logo-button,
  .hero-logo-button::after {
    animation: none;
  }
}

/* Final interaction polish */
.site-header,
.site-header.is-scrolled {
  min-height: 6.25rem;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease, transform .78s cubic-bezier(.22, .75, .2, 1);
}

.site-header .brand,
.site-header.is-scrolled .brand {
  width: clamp(8.5rem, 12vw, 13rem);
}

.intro-overlay.intro-card {
  background: #030303;
  animation: introCardOverlayOut .95s cubic-bezier(.22, .75, .2, 1) 2.35s forwards;
}

.intro-card-logo {
  position: relative;
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  overflow: hidden;
  border: 1px solid rgba(206, 170, 103, .42);
  border-radius: clamp(1.6rem, 3vw, 2.6rem);
  background: #030303;
  box-shadow:
    0 3rem 8rem rgba(0, 0, 0, .56),
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    inset 0 -2rem 3rem rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translate(0, 0) perspective(1100px) rotateY(-8deg) rotateX(2deg) scale(.94);
  transform-style: preserve-3d;
  animation:
    introCardFadeIn .72s cubic-bezier(.22, .75, .2, 1) .12s forwards,
    introCardToHero .95s cubic-bezier(.2, .82, .2, 1) 2s forwards;
}

.intro-card-logo::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), transparent 32%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .3));
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.intro-card-logo::after {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -55%;
  z-index: 3;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .68), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-160%) skewX(-18deg);
  animation: heroLogoShine 2.7s ease-in-out .62s forwards;
}

.intro-card-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(1.4rem) scale(1.012);
}

.hero-logo-button {
  right: clamp(1rem, 3.8vw, 4.6rem);
  width: clamp(16.4rem, 31vw, 30.8rem);
  border-radius: clamp(1.25rem, 2vw, 2.1rem);
}

.footer-logo-button {
  position: relative;
  width: min(10.5rem, 42vw);
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(206, 170, 103, .38);
  border-radius: 1rem;
  background: #030303;
  box-shadow:
    0 1.2rem 3rem rgba(0, 0, 0, .42),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.footer-logo-button::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -60%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .52), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-160%) skewX(-18deg);
  animation: heroLogoShine 6s ease-in-out 1.4s infinite;
}

.footer-brand .footer-logo-button img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  filter: none;
}

.footer-brand .footer-logo-button:hover img {
  transform: none;
  filter: none;
}

.offer-head {
  grid-template-columns: minmax(0, .95fr) minmax(22rem, .78fr);
  align-items: start;
}

.offer-head .section-kicker {
  grid-column: 1 / -1;
}

.offer-head h2 {
  grid-column: 1;
  grid-row: 2;
}

.offer-head > p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  padding-top: .25rem;
}

.offer-layout {
  margin-top: clamp(1.4rem, 2.8vw, 2.8rem);
}

.offer-panel-content {
  justify-content: center;
  padding-top: clamp(1.6rem, 3vw, 3rem);
  padding-bottom: clamp(1.6rem, 3vw, 3rem);
}

.review-feature {
  grid-template-columns: minmax(9.5rem, .28fr) minmax(0, 1fr);
  align-items: start;
}

.review-score {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.review-score span {
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

.review-feature blockquote {
  min-width: 0;
  opacity: 1;
  transition: opacity .34s ease, transform .34s ease;
}

.review-feature blockquote.is-switching {
  opacity: 0;
  transform: translateY(.55rem);
}

.review-feature blockquote p {
  font-size: clamp(1.35rem, 2.2vw, 2.55rem);
}

@keyframes introCardFadeIn {
  to {
    opacity: 1;
    transform: translate(0, 0) perspective(1100px) rotateY(-8deg) rotateX(2deg) scale(1);
  }
}

@keyframes introCardToHero {
  to {
    opacity: .96;
    border-radius: clamp(1.25rem, 2vw, 2.1rem);
    transform: translate(26vw, -1vh) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.58);
  }
}

@media (max-width: 1180px) {
  .hero-logo-button {
    right: clamp(.75rem, 2vw, 1.8rem);
    width: clamp(12rem, 26vw, 17rem);
  }
}

@media (max-width: 900px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 4.75rem;
  }

  .site-header .brand,
  .site-header.is-scrolled .brand {
    width: 8.8rem;
  }

  .hero-logo-button {
    top: 15.2rem;
    right: 1rem;
    width: clamp(7.6rem, 28vw, 10rem);
    border-radius: 1rem;
  }

  .offer-head {
    grid-template-columns: 1fr;
  }

  .offer-head h2,
  .offer-head > p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }

  .review-feature {
    grid-template-columns: 1fr;
  }

  .review-score {
    border-right: 0;
    border-bottom: 1px solid rgba(183, 154, 100, .28);
    padding-right: 0;
    padding-bottom: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-logo-button {
    top: 12.6rem;
    width: 7.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-card-logo,
  .intro-card-logo::after {
    animation: none;
  }
}

/* Detail pass 20260705-28 */
.hero-info div {
  position: relative;
  overflow: hidden;
  transition: background .28s ease, color .28s ease, transform .28s ease;
}

.hero-info div::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f3eee6;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity .28s ease, transform .32s cubic-bezier(.22, .75, .2, 1);
}

.hero-info div:hover,
.hero-info div:focus-within {
  color: #050505;
  transform: translateY(-.18rem);
}

.hero-info div:hover::before,
.hero-info div:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.hero-info div:hover span,
.hero-info div:focus-within span {
  color: #9d7b37;
}

.hero-info div:hover strong,
.hero-info div:focus-within strong {
  color: #050505;
}

.steps-copy h2 {
  max-width: min(14.8ch, 100%);
  overflow: visible;
}

.steps-copy h2 span {
  overflow: visible;
}

.review-feature {
  grid-template-columns: minmax(8.4rem, .24fr) minmax(0, 1fr);
}

.review-score {
  margin-left: clamp(-1.3rem, -1.2vw, -.45rem);
  padding-right: clamp(.75rem, 1.5vw, 1.4rem);
}

.reviews-actions .button,
.reviews-actions .button-secondary {
  color: #f3eee6;
  border-color: rgba(183, 154, 100, .56);
  background: rgba(183, 154, 100, .12);
}

.reviews-actions .button:hover,
.reviews-actions .button-secondary:hover {
  color: #050505;
  background: var(--gold);
}

.category-hero {
  align-items: start;
}

.category-hero > div {
  align-self: start;
  padding-top: 0;
}

.category-hero h1 {
  margin-top: 0;
}

.category-page {
  padding-top: clamp(6.4rem, 8.6vw, 8.8rem);
}

.category-tools {
  margin-top: clamp(1.35rem, 3vw, 2.6rem);
}

.footer-logo-button {
  width: min(12rem, 44vw);
  border-radius: clamp(1rem, 1.5vw, 1.35rem);
  transform: perspective(920px) rotateY(-10deg) rotateX(2deg);
  transform-style: preserve-3d;
  animation: footerLogoTilt 5.8s ease-in-out infinite;
}

.footer-logo-button::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), transparent 31%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .26));
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.footer-logo-button img {
  transform: translateZ(1.4rem) scale(1.012);
}

.footer-brand .footer-logo-button:hover img {
  transform: translateZ(1.4rem) scale(1.012);
}

@keyframes footerLogoTilt {
  0%,
  100% {
    transform: perspective(920px) rotateY(-11deg) rotateX(2deg);
  }

  50% {
    transform: perspective(920px) rotateY(12deg) rotateX(-2deg);
  }
}

.section-kicker,
.hero-kicker,
.hero-lead,
.layers-copy p:not(.section-kicker),
.steps-copy p:not(.section-kicker),
.portfolio-intro-copy p,
.offer-head > p:not(.section-kicker),
.responsibility-copy p,
.cooperation-copy p:not(.section-kicker),
.standard-copy p,
.reviews-copy p:not(.section-kicker),
.contact-copy p:not(.section-kicker),
.footer-brand p,
.category-hero p:not(.section-kicker) {
  text-shadow: 0 .45rem 1.2rem rgba(183, 154, 100, .08);
}

.hero-content h1 span,
.layers-copy h2 span,
.steps-copy h2 span,
.portfolio-intro h2 span,
.offer-head h2 span,
.responsibility-copy h2 span,
.cooperation-copy h2 span,
.standard-copy h2 span,
.reviews-copy h2 span,
.contact-copy h2 span,
.footer-statement p,
.category-hero h1 {
  background-image: linear-gradient(180deg, transparent 63%, rgba(183, 154, 100, .16) 63%, rgba(183, 154, 100, .04) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-shadow: 0 .08rem 0 rgba(183, 154, 100, .08), 0 1rem 2.4rem rgba(0, 0, 0, .24);
}

.section-link,
.footer-column a,
.portfolio-category a {
  text-decoration-color: rgba(183, 154, 100, .42);
  text-decoration-thickness: 1px;
  text-underline-offset: .28em;
}

@media (max-width: 900px) {
  .review-score {
    margin-left: 0;
  }

  .category-page {
    padding-top: clamp(5.8rem, 16vw, 7.2rem);
  }
}

/* Refinement pass 20260705-29 */
.site-header {
  grid-template-columns: auto 1fr auto auto auto;
}

.header-social {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 154, 100, .48);
  border-radius: 50%;
  color: #f3eee6;
  background: rgba(8, 8, 7, .42);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.header-social:hover {
  border-color: var(--gold);
  color: #050505;
  background: var(--gold);
  transform: translateY(-.12rem);
}

.hero-content h1 span,
.layers-copy h2 span,
.steps-copy h2 span,
.portfolio-intro h2 span,
.offer-head h2 span,
.responsibility-copy h2 span,
.cooperation-copy h2 span,
.standard-copy h2 span,
.reviews-copy h2 span,
.contact-copy h2 span,
.footer-statement p,
.category-hero h1 {
  background-image: none;
}

.text-frame,
.layers-copy p:not(.section-kicker),
.steps-copy p:not(.section-kicker),
.portfolio-intro-copy,
.offer-head > p:not(.section-kicker),
.responsibility-copy p,
.cooperation-copy p:not(.section-kicker),
.standard-copy p,
.reviews-copy p:not(.section-kicker),
.contact-copy p:not(.section-kicker),
.contact-area,
.footer-brand p,
.category-hero p:not(.section-kicker) {
  position: relative;
  border-left: 1px solid rgba(183, 154, 100, .72);
  padding: .95rem 1.15rem .95rem 1.25rem;
  background:
    linear-gradient(90deg, rgba(183, 154, 100, .1), rgba(183, 154, 100, .025) 62%, transparent),
    rgba(255, 255, 255, .012);
  box-shadow:
    inset .55rem 0 0 rgba(183, 154, 100, .055),
    0 1.2rem 3rem rgba(0, 0, 0, .12);
}

.text-frame::before,
.layers-copy p:not(.section-kicker)::before,
.steps-copy p:not(.section-kicker)::before,
.portfolio-intro-copy::before,
.offer-head > p:not(.section-kicker)::before,
.responsibility-copy p::before,
.cooperation-copy p:not(.section-kicker)::before,
.standard-copy p::before,
.reviews-copy p:not(.section-kicker)::before,
.contact-copy p:not(.section-kicker)::before,
.contact-area::before,
.footer-brand p::before,
.category-hero p:not(.section-kicker)::before {
  position: absolute;
  left: -.28rem;
  top: .95rem;
  width: .55rem;
  height: .55rem;
  border: 1px solid var(--gold);
  background: #050505;
  content: "";
  transform: rotate(45deg);
}

.portfolio-intro-copy {
  max-width: 43rem;
}

.portfolio-intro-copy p {
  margin: 0;
  padding: 0;
  border-left: 0;
  background: none;
  box-shadow: none;
}

.portfolio-intro-copy p::before {
  display: none;
}

.contact-copy h2 {
  max-width: min(14ch, 100%);
  overflow: visible;
}

.contact-copy h2 span {
  overflow: visible;
}

.contact-section {
  grid-template-columns: minmax(0, .95fr) minmax(24rem, 1.05fr);
  gap: clamp(2rem, 5vw, 5.5rem);
}

.portfolio-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(22rem, auto);
  gap: clamp(1rem, 1.65vw, 1.55rem);
}

.portfolio-category,
.portfolio-category-large,
.portfolio-category-wide,
.portfolio-category-mid {
  grid-column: auto;
  grid-row: auto;
  min-height: 22rem;
}

.portfolio-category div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.portfolio-category h3 {
  max-width: 100%;
  font-size: clamp(1.55rem, 2.4vw, 3rem);
}

.portfolio-category p {
  margin-top: .55rem;
}

.portfolio-category small {
  min-height: 2.8em;
}

.category-hero {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: start;
}

.category-gallery.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(.8rem, 1.4vw, 1.25rem);
}

.category-gallery .portfolio-shot,
.category-gallery .portfolio-shot:nth-child(n) {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.category-gallery .portfolio-shot:nth-child(9n + 1),
.category-gallery .portfolio-shot:nth-child(9n + 6) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.category-gallery .portfolio-shot img {
  object-fit: cover;
}

.footer-logo-button {
  width: min(15rem, 56vw);
  aspect-ratio: 1 / 1;
  border-radius: 1.35rem;
  background: #030303;
}

.footer-brand .footer-logo-button img,
.footer-logo-button img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: #030303;
}

.footer-facebook::before {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: .55rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #050505;
  content: "f";
  font-weight: 900;
}

.footer-bottom {
  grid-template-columns: 1fr auto auto;
  gap: 1rem 2rem;
}

.footer-credit {
  color: rgba(243, 238, 230, .52);
  font-size: .82rem;
}

.footer-credit a {
  color: var(--gold);
}

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }
}

@media (max-width: 900px) {
  .portfolio-categories,
  .category-gallery.portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .category-gallery .portfolio-shot:nth-child(n) {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-section,
  .category-hero {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-social {
    display: none;
  }
}

/* Category gallery final grid */
.category-gallery.portfolio-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
}

.category-gallery.portfolio-gallery .portfolio-shot,
.category-gallery.portfolio-gallery .portfolio-shot:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
}

.category-gallery.portfolio-gallery .portfolio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .category-gallery.portfolio-gallery {
    grid-template-columns: 1fr !important;
  }
}

/* Refinement pass 20260705-31 */
.intro-overlay.intro-card {
  background: #030303;
  animation: introCardOverlayOut 1.05s cubic-bezier(.22, .75, .2, 1) 5.12s forwards;
}

.intro-card-logo {
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  border-radius: clamp(1.25rem, 2vw, 2.1rem);
  opacity: 0;
  transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(.94);
  animation: introHeroButtonCycle 5.8s cubic-bezier(.22, .75, .2, 1) .08s forwards;
}

.intro-card-logo img {
  object-fit: cover;
  transform: translateZ(1.4rem) scale(1.012);
}

.hero-logo-button {
  opacity: 0;
  animation:
    heroLogoAppear .32s ease 5.52s forwards,
    heroLogoTilt 5.8s ease-in-out 5.84s infinite;
}

.footer-logo-button {
  display: grid;
  place-items: center;
}

.footer-brand .footer-logo-button img,
.footer-logo-button img {
  width: 200% !important;
  height: 200% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: translateZ(1.4rem) scale(1);
}

.footer-brand .footer-logo-button:hover img {
  transform: translateZ(1.4rem) scale(1);
}

.category-page {
  padding-top: clamp(7.7rem, 10vw, 10.4rem);
}

.category-hero {
  padding-top: clamp(.75rem, 1.3vw, 1.25rem);
}

@keyframes introHeroButtonCycle {
  0% {
    opacity: 0;
    transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(.94);
  }

  10% {
    opacity: 1;
    transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(1);
  }

  34% {
    opacity: 1;
    transform: translate(0, 0) perspective(920px) rotateY(12deg) rotateX(-2deg) scale(1);
  }

  58% {
    opacity: 1;
    transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(1);
  }

  76% {
    opacity: 1;
    transform: translate(0, 0) perspective(920px) rotateY(8deg) rotateX(-1deg) scale(1);
  }

  100% {
    opacity: .98;
    transform: translate(26vw, -1vh) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.58);
  }
}

@keyframes heroLogoAppear {
  to {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero-logo-button {
    animation:
      heroLogoAppear .32s ease 5.52s forwards,
      heroLogoTilt 5.8s ease-in-out 5.84s infinite;
  }

  .category-page {
    padding-top: clamp(7.1rem, 18vw, 8.4rem);
  }

  @keyframes introHeroButtonCycle {
    0% {
      opacity: 0;
      transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(.94);
    }

    10% {
      opacity: 1;
      transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(1);
    }

    34% {
      opacity: 1;
      transform: translate(0, 0) perspective(920px) rotateY(12deg) rotateX(-2deg) scale(1);
    }

    58% {
      opacity: 1;
      transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(1);
    }

    76% {
      opacity: 1;
      transform: translate(0, 0) perspective(920px) rotateY(8deg) rotateX(-1deg) scale(1);
    }

    100% {
      opacity: .98;
      transform: translate(27vw, -31vh) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.22);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-card-logo {
    opacity: 1;
    animation: none;
  }

  .hero-logo-button {
    opacity: 1;
    animation: none;
  }
}

/* Refinement pass 20260705-32 */
.footer-logo-button {
  position: relative;
  overflow: hidden;
}

.footer-brand .footer-logo-button img,
.footer-logo-button img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200% !important;
  height: 200% !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%) translateZ(1.4rem);
}

.footer-brand .footer-logo-button:hover img {
  transform: translate(-50%, -50%) translateZ(1.4rem);
}

.category-page {
  padding-top: clamp(9.5rem, 12vw, 12.4rem);
}

.category-hero {
  padding-top: clamp(1.5rem, 2.2vw, 2.25rem);
}

@media (max-width: 900px) {
  .category-page {
    padding-top: clamp(8.2rem, 20vw, 9.6rem);
  }
}

/* Refinement pass 20260705-33 */
.logo-button {
  position: relative;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(206, 170, 103, .42);
  border-radius: clamp(1.25rem, 2vw, 2.1rem);
  background: #030303;
  box-shadow:
    0 2.2rem 5.4rem rgba(0, 0, 0, .54),
    0 .8rem 1.6rem rgba(0, 0, 0, .32),
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    inset 0 -1.2rem 2.2rem rgba(0, 0, 0, .38);
  transform-style: preserve-3d;
}

.logo-button::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), transparent 31%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .26));
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.logo-button::after {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -58%;
  z-index: 3;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
  animation: heroLogoShine 5.2s ease-in-out 1.25s infinite;
}

.logo-button img,
.footer-brand .logo-button img,
.footer-logo-button img,
.intro-card-logo img,
.hero-logo-button img {
  position: static;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #030303;
  transform: translateZ(1.4rem) scale(1.012);
}

.footer-logo-button,
.footer-brand .footer-logo-button {
  width: min(12rem, 42vw);
  border-radius: 1.25rem;
  transform: perspective(920px) rotateY(-10deg) rotateX(2deg);
  animation: footerLogoTilt 5.8s ease-in-out infinite;
}

.footer-brand .footer-logo-button:hover img {
  transform: translateZ(1.4rem) scale(1.012);
}

.intro-card-logo.logo-button {
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  opacity: 0;
  transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(.94);
  animation: introHeroButtonCycle 5.8s cubic-bezier(.22, .75, .2, 1) .08s forwards;
}

.hero-logo-button.logo-button {
  opacity: 0;
  animation:
    heroLogoAppear .32s ease 5.52s forwards,
    heroLogoTilt 5.8s ease-in-out 5.84s infinite;
}

.hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}

.steps-copy h2,
.reviews-copy h2,
.contact-copy h2 {
  max-width: min(16ch, 100%);
  letter-spacing: -.035em;
  overflow: visible;
}

.steps-copy h2 {
  font-size: clamp(2.45rem, 4.05vw, 4.55rem);
}

.reviews-copy h2 {
  font-size: clamp(2.45rem, 4.05vw, 4.75rem);
}

.contact-copy h2 {
  font-size: clamp(2.45rem, 4vw, 4.85rem);
}

.steps-copy h2 span,
.reviews-copy h2 span,
.contact-copy h2 span {
  overflow: visible;
}

@media (max-width: 900px) {
  .steps-copy h2,
  .reviews-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 9vw, 3.35rem);
    max-width: 100%;
  }

  .hero-logo-button.logo-button {
    animation:
      heroLogoAppear .32s ease 5.52s forwards,
      heroLogoTilt 5.8s ease-in-out 5.84s infinite;
  }
}

/* Refinement pass 20260705-34 */
.hero-logo-button.logo-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(1rem, 3.8vw, 4.6rem);
  width: clamp(16.4rem, 31vw, 30.8rem);
  display: block;
  opacity: 0;
  transform: translateY(-48%) perspective(920px) rotateY(-10deg) rotateX(2deg);
  animation:
    heroLogoAppear .32s ease 5.52s forwards,
    heroLogoTilt 5.8s ease-in-out 5.84s infinite;
}

.intro-card-logo.logo-button,
.hero-logo-button.logo-button,
.footer-logo-button.logo-button {
  border: 1px solid rgba(206, 170, 103, .42);
  background: #030303;
  box-shadow:
    0 2.2rem 5.4rem rgba(0, 0, 0, .54),
    0 .8rem 1.6rem rgba(0, 0, 0, .32),
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    inset 0 -1.2rem 2.2rem rgba(0, 0, 0, .38);
}

@media (max-width: 1180px) {
  .hero-logo-button.logo-button {
    right: clamp(.75rem, 2vw, 1.8rem);
    width: clamp(12rem, 26vw, 17rem);
  }
}

@media (max-width: 900px) {
  .hero-logo-button.logo-button {
    top: 12.6rem;
    right: 1rem;
    width: 7.2rem;
  }
}

/* Refinement pass 20260705-35: intro uses an actual hero button copy */
.intro-overlay .hero-logo-button.logo-button {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(.94);
  animation: introHeroButtonCycle 5.8s cubic-bezier(.22, .75, .2, 1) .08s forwards;
}

.intro-overlay .hero-logo-button.logo-button img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transform: translateZ(1.4rem) scale(1.012);
}

@media (max-width: 900px) {
  .intro-overlay .hero-logo-button.logo-button {
    width: min(82vw, 62vh);
    height: min(82vw, 62vh);
  }
}

/* Layout/header adjustment 20260706-02 */
.steps-section {
  align-items: start;
}

.steps-copy {
  top: 7rem;
  padding-top: 0;
  transform: translateY(clamp(-1.6rem, -2vw, -.75rem));
}

.steps-stage {
  align-self: start;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(5, 5, 5, .48), rgba(5, 5, 5, 0));
  border-bottom-color: rgba(200, 164, 93, .08);
  backdrop-filter: none;
}

@media (max-width: 900px) {
  .steps-copy {
    transform: none;
  }
}

/* Hero video + final logo-button placement 20260706-01 */
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(.92) contrast(1.03);
}

.hero-media video {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-logo-button.logo-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(1rem, 3.8vw, 4.6rem);
  width: clamp(16.4rem, 31vw, 30.8rem);
  opacity: 0;
  transform: translateY(-48%) perspective(920px) rotateY(-10deg) rotateX(2deg);
  animation:
    heroLogoAppear .32s ease 5.52s forwards,
    heroLogoTilt 5.8s ease-in-out 5.84s infinite;
}

.intro-overlay .hero-logo-button.logo-button {
  position: relative;
  inset: auto;
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  opacity: 0;
  transform: translate(0, 0) perspective(920px) rotateY(-11deg) rotateX(2deg) scale(.94);
  animation: introHeroButtonCycle 5.8s cubic-bezier(.22, .75, .2, 1) .08s forwards;
}

/* Intro timing and centered hero video 20260706-03 */
.intro-overlay.intro-card {
  animation: introCardOverlayOut .78s cubic-bezier(.22, .75, .2, 1) 3.84s forwards;
}

.intro-overlay .hero-logo-button.logo-button {
  animation: introHeroButtonCycle 4.35s cubic-bezier(.22, .75, .2, 1) .06s forwards;
}

.hero-logo-button.logo-button {
  animation:
    heroLogoAppear .24s ease 4.14s forwards,
    heroLogoTilt 5.8s ease-in-out 4.38s infinite;
}

.hero-media video,
.hero-media img {
  object-position: center center;
}

@media (max-width: 900px) {
  .intro-overlay .hero-logo-button.logo-button {
    animation: introHeroButtonCycle 4.35s cubic-bezier(.22, .75, .2, 1) .06s forwards;
  }

  .hero-logo-button.logo-button {
    animation:
      heroLogoAppear .24s ease 4.14s forwards,
      heroLogoTilt 5.8s ease-in-out 4.38s infinite;
  }
}

@media (max-width: 1180px) {
  .hero-logo-button.logo-button {
    right: clamp(.75rem, 2vw, 1.8rem);
    width: clamp(12rem, 26vw, 17rem);
  }
}

@media (max-width: 900px) {
  .hero-logo-button.logo-button {
    top: 12.6rem;
    right: 1rem;
    width: 7.2rem;
  }

  .intro-overlay .hero-logo-button.logo-button {
    width: min(82vw, 62vh);
    height: min(82vw, 62vh);
  }
}

/* Intro handoff 20260706-04: the intro uses the exact hero logo button copy */
.intro-overlay.intro-card {
  background: #000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  animation: introBlackFadeSimple .72s cubic-bezier(.22, .75, .2, 1) 2.45s forwards;
}

.intro-overlay .hero-logo-button.logo-button {
  position: relative;
  inset: auto;
  z-index: 2;
  width: min(80vw, 80vh);
  height: min(80vw, 80vh);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.96);
  transform-origin: center center;
  animation: introButtonToHeroSimple 2.9s cubic-bezier(.2, .78, .18, 1) .08s forwards;
}

.intro-overlay .hero-logo-button.logo-button img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.hero > .hero-logo-button.logo-button {
  opacity: 0;
  transform: translateY(-48%) perspective(920px) rotateY(-10deg) rotateX(2deg);
  animation:
    heroLogoAppear .24s ease 2.9s forwards,
    heroLogoTilt 5.8s ease-in-out 3.14s infinite;
}

@keyframes introButtonToHeroSimple {
  0% {
    opacity: 0;
    transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.96);
  }

  18% {
    opacity: 1;
    transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(1);
  }

  58% {
    opacity: 1;
    transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate(28vw, -1vh) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.68);
  }
}

@keyframes introBlackFadeSimple {
  0%,
  38% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 1180px) {
  @keyframes introButtonToHeroSimple {
    0% {
      opacity: 0;
      transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.96);
    }

    18%,
    58% {
      opacity: 1;
      transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(1);
    }

    100% {
      opacity: 1;
      transform: translate(29vw, -2vh) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.52);
    }
  }
}

/* Review and hero media refinement 20260706-05 */
.review-feature blockquote {
  transition:
    opacity .72s cubic-bezier(.22, .75, .2, 1),
    transform .72s cubic-bezier(.22, .75, .2, 1),
    filter .72s cubic-bezier(.22, .75, .2, 1);
  will-change: opacity, transform, filter;
}

.review-feature blockquote.is-switching {
  opacity: 0;
  transform: translateY(.22rem);
  filter: blur(1.5px);
}

.hero-media video,
.hero-media img {
  object-position: 44% 50%;
}

@media (max-width: 900px) {
  .hero-media video,
  .hero-media img {
    object-position: 50% 50%;
  }
}

/* Selected portfolio works 20260706-06 */
.selected-works-head {
  align-items: end;
  margin-top: clamp(3.4rem, 6vw, 6.5rem);
}

.selected-works-head .section-kicker {
  margin-bottom: .85rem;
}

.selected-works-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  align-items: stretch;
}

.selected-works-gallery .portfolio-shot,
.selected-works-gallery .portfolio-shot:nth-child(n) {
  grid-column: span 1;
  grid-row: span 1;
  min-height: clamp(15rem, 20vw, 23rem);
  border-color: rgba(206, 170, 103, .22);
  animation: selectedWorkReveal .58s cubic-bezier(.22, .75, .2, 1) both;
}

.selected-works-gallery .portfolio-shot img {
  min-height: inherit;
}

.selected-works-more {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

@keyframes selectedWorkReveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 1180px) {
  .selected-works-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .selected-works-head {
    align-items: start;
  }

  .selected-works-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
  }

  .selected-works-gallery .portfolio-shot,
  .selected-works-gallery .portfolio-shot:nth-child(n) {
    min-height: 13.5rem;
  }
}

@media (max-width: 480px) {
  .selected-works-gallery {
    grid-template-columns: 1fr;
  }
}

.selected-works-more .button-secondary {
  background: rgba(8, 8, 7, .88);
  border-color: rgba(206, 170, 103, .56);
  color: #f3eee6;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    0 1rem 2.4rem rgba(0, 0, 0, .24);
}

.selected-works-more .button-secondary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #090806;
}

.category-more {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.category-more .button-secondary {
  background: rgba(8, 8, 7, .88);
  border-color: rgba(206, 170, 103, .56);
  color: #f3eee6;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    0 1rem 2.4rem rgba(0, 0, 0, .24);
}

.category-more .button-secondary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #090806;
}

@media (max-width: 900px) {
  .intro-overlay .hero-logo-button.logo-button {
    width: min(82vw, 62vh);
    height: min(82vw, 62vh);
  }

  .hero > .hero-logo-button.logo-button {
    animation:
      heroLogoAppear .24s ease 2.9s forwards,
      heroLogoTilt 5.8s ease-in-out 3.14s infinite;
  }

  @keyframes introButtonToHeroSimple {
    0% {
      opacity: 0;
      transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.96);
    }

    18%,
    58% {
      opacity: 1;
      transform: translate(0, 0) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(1);
    }

    100% {
      opacity: 1;
      transform: translate(29vw, -30vh) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.28);
    }
  }
}


/* Final header restore: match the earlier Netlify-style bar. */
.site-header {
  grid-template-columns: auto 1fr auto auto !important;
}

.site-header .brand,
.site-header.is-scrolled .brand {
  width: clamp(8.5rem, 12vw, 13rem) !important;
  height: auto !important;
}

.site-header .brand img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

/* 20260706-16: one real hero logo button is used for the intro handoff. */
.intro-overlay.intro-card {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block !important;
  background: #000;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  animation: none !important;
  transition:
    opacity .72s cubic-bezier(.22, .75, .2, 1),
    visibility .72s cubic-bezier(.22, .75, .2, 1);
}

.intro-overlay.intro-card.is-hidden {
  display: block !important;
  opacity: 0;
  visibility: hidden;
}

.hero-media {
  inset: 0 !important;
  width: 100% !important;
  height: 100%;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center !important;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .5) 0%, rgba(5, 5, 5, .38) 35%, rgba(5, 5, 5, .18) 64%, rgba(5, 5, 5, .08) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .72) 0%, rgba(5, 5, 5, .16) 46%, rgba(5, 5, 5, .04) 100%);
}

.hero-content h1,
.hero-lead,
.hero-kicker {
  text-shadow:
    0 .9rem 2.2rem rgba(0, 0, 0, .86),
    0 .18rem .55rem rgba(0, 0, 0, .7);
}

.hero > .hero-logo-button.logo-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(1rem, 3.8vw, 4.6rem);
  width: clamp(16.4rem, 31vw, 30.8rem);
  height: auto;
  opacity: 1 !important;
  transform: translateY(-48%) perspective(920px) rotateY(-10deg) rotateX(2deg);
  animation: heroLogoTilt 5.8s ease-in-out infinite !important;
  will-change: transform;
}

body.intro-running,
body.intro-moving {
  overflow: hidden;
}

body.intro-running > .hero-logo-button.logo-button,
body.intro-running .hero > .hero-logo-button.logo-button {
  position: fixed !important;
  z-index: 110;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  width: min(80vw, 80vh) !important;
  height: min(80vw, 80vh) !important;
  opacity: 0;
  transform: translate(-50%, -50%) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.94);
  transform-origin: center center;
  animation: none !important;
}

body.intro-moving > .hero-logo-button.logo-button,
body.intro-moving .hero > .hero-logo-button.logo-button {
  opacity: 1 !important;
  animation: none !important;
}

body.intro-measuring .hero > .hero-logo-button.logo-button {
  opacity: 1 !important;
  animation: none !important;
}

@media (max-width: 1180px) {
  .hero > .hero-logo-button.logo-button {
    right: clamp(.75rem, 2vw, 1.8rem);
    width: clamp(12rem, 26vw, 17rem);
  }
}

@media (max-width: 900px) {
  .hero > .hero-logo-button.logo-button {
    top: 12.6rem;
    right: 1rem;
    width: 7.2rem;
  }

  body.intro-running > .hero-logo-button.logo-button,
  body.intro-running .hero > .hero-logo-button.logo-button {
    width: min(82vw, 62vh) !important;
    height: min(82vw, 62vh) !important;
  }
}

/* 20260706-20: polish-safe UI text, brighter offer media, smoother review rotation. */
.button,
.header-action,
.site-nav,
.menu-button,
.offer-item,
.section-link,
.portfolio-category a,
.reviews-actions .button,
.category-tools .button,
.category-more .button,
button,
input,
select,
textarea {
  font-family: var(--sans);
  font-synthesis: none;
}

.offer-panel {
  border-color: rgba(206, 170, 103, .46);
  background: #17140f;
}

.offer-panel-image img {
  opacity: .98;
  filter: saturate(1.05) brightness(.74) contrast(1.04);
}

.offer-panel-content {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .03), rgba(5, 5, 5, .36) 48%, rgba(5, 5, 5, .78)),
    linear-gradient(90deg, rgba(5, 5, 5, .4), rgba(5, 5, 5, .08) 58%, transparent);
}

.offer-item {
  background: rgba(255, 255, 255, .026);
}

.offer-item:hover,
.offer-item.is-active {
  background:
    linear-gradient(90deg, rgba(198, 164, 99, .18), rgba(255, 255, 255, .035));
}

.review-feature blockquote {
  transition:
    opacity 1.05s cubic-bezier(.22, .75, .2, 1),
    transform 1.05s cubic-bezier(.22, .75, .2, 1),
    filter 1.05s cubic-bezier(.22, .75, .2, 1);
}

.review-feature blockquote.is-switching {
  opacity: 0;
  transform: translateY(.08rem);
  filter: blur(.55px);
}

@media (max-width: 900px) {
  .service-map-head {
    display: grid;
    justify-content: start;
  }

  .service-map-visual {
    min-height: 24rem;
  }

  .map-pin {
    max-width: 7rem;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .service-map-visual {
    min-height: 27rem;
  }

  .map-pin {
    font-size: .58rem;
    letter-spacing: .045em;
  }

  .map-pin::before {
    width: .58rem;
    height: .58rem;
  }

  .map-pin-main::before {
    width: .78rem;
    height: .78rem;
  }
}

/* Mobile-only corrections 20260706-21 */
.mobile-call-fab {
  display: none;
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-scrolled {
    z-index: 120;
    grid-template-columns: minmax(7.2rem, 1fr) auto 2.9rem;
    min-height: 4.7rem;
    padding: .72rem .88rem;
    gap: .65rem;
    background: linear-gradient(180deg, rgba(5, 5, 5, .62), rgba(5, 5, 5, .08));
    border-bottom: 0;
    backdrop-filter: none;
  }

  .site-header .brand,
  .site-header.is-scrolled .brand {
    grid-column: 1;
    justify-self: start;
    width: min(39vw, 9.4rem) !important;
    height: auto !important;
    min-width: 7.8rem;
    overflow: visible;
  }

  .site-header .brand img {
    width: 100% !important;
    height: auto !important;
    max-height: 3.5rem !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .menu-button {
    position: relative;
    z-index: 132;
    grid-column: 3;
    justify-self: end;
    display: block;
    width: 2.85rem;
    height: 2.85rem;
    border-color: rgba(206, 170, 103, .58);
    background: rgba(0, 0, 0, .42);
  }

  .hero > .hero-logo-button.logo-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body.intro-running > .hero-logo-button.logo-button,
  body.intro-running .hero > .hero-logo-button.logo-button {
    display: block !important;
    z-index: 130;
    top: 50% !important;
    left: 50% !important;
    width: min(82vw, 62vh) !important;
    height: min(82vw, 62vh) !important;
    opacity: 1;
    visibility: visible !important;
    pointer-events: none !important;
    transform: translate(-50%, -50%) perspective(920px) rotateY(-10deg) rotateX(2deg) scale(.94);
  }

  body.intro-moving > .hero-logo-button.logo-button,
  body.intro-moving .hero > .hero-logo-button.logo-button {
    display: block !important;
    z-index: 130;
    animation: none !important;
  }

  .site-nav.is-open {
    position: fixed !important;
    inset: 0 !important;
    z-index: 125 !important;
    display: grid !important;
    width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    align-content: center;
    justify-items: stretch;
    gap: 0;
    padding: 6.2rem 1.2rem 2rem;
    background:
      radial-gradient(circle at 50% 10%, rgba(183, 154, 100, .13), transparent 34rem),
      #030303 !important;
    color: #f3eee6;
    overflow-y: auto;
  }

  .site-nav.is-open a {
    display: flex;
    min-height: 4.15rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(183, 154, 100, .24);
    padding: .95rem .15rem;
    color: #f3eee6;
    font-family: var(--sans);
    font-size: clamp(1.35rem, 7vw, 2.25rem);
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: none;
  }

  .site-nav.is-open a::after {
    position: static;
    width: auto;
    height: auto;
    content: "→";
    background: none;
    color: var(--gold);
    transform: none;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    background: #030303;
  }

  body.menu-open .hero > .hero-logo-button.logo-button {
    display: none !important;
  }

  .hero {
    min-height: 100svh;
    padding-top: 5.2rem;
  }

  .hero-content {
    min-height: calc(100svh - 5.2rem);
    align-items: center;
    justify-content: flex-start;
    padding: 0 1.1rem 13.2rem;
    text-align: center;
  }

  .hero-kicker {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    text-align: center;
  }

  .hero-kicker::before {
    display: block;
    margin: 0 auto .85rem;
  }

  .hero-actions {
    justify-items: center;
    width: 100%;
  }

  .hero h1,
  .portfolio-intro h2,
  .layers-copy h2,
  .steps-copy h2,
  .responsibility-copy h2,
  .cooperation-copy h2,
  .standard-copy h2,
  .reviews-copy h2,
  .contact-copy h2,
  .footer-statement p {
    max-width: min(100%, 11.8ch) !important;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .layers-copy p,
  .steps-copy p,
  .responsibility-copy p,
  .cooperation-copy p,
  .standard-copy p,
  .reviews-copy p,
  .contact-copy p,
  .portfolio-intro-copy p {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    overflow-wrap: break-word;
  }

  .section-kicker {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    text-align: center;
  }

  .section-kicker::before {
    display: block;
    margin: 0 auto .8rem;
  }

  .section-link {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .layers-copy,
  .steps-copy,
  .portfolio-intro,
  .portfolio-intro-copy,
  .offer-head,
  .responsibility-copy,
  .cooperation-copy,
  .standard-copy,
  .reviews-copy,
  .contact-copy,
  .footer-statement {
    text-align: center;
  }

  .offer-head,
  .standard-footer,
  .contact-actions,
  .footer-statement {
    align-items: center;
    justify-items: center;
  }

  section,
  .portfolio-section,
  .layers-section,
  .steps-section,
  .responsibility-section,
  .cooperation-section,
  .standard-section,
  .reviews-section,
  .contact-section {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-info {
    bottom: 5.75rem;
  }

  .layers-section .section-link {
    position: relative;
    z-index: 4;
    display: flex;
    width: fit-content;
    margin-top: 1.35rem;
    margin-bottom: 2rem;
  }

  .layer-card {
    isolation: isolate;
  }

  .mobile-call-fab {
    position: fixed;
    z-index: 119;
    left: .85rem;
    right: .85rem;
    bottom: max(.85rem, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    pointer-events: none;
    animation: mobileCallFloat 4.2s ease-in-out infinite;
  }

  .mobile-call-fab a {
    display: flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(206, 170, 103, .64);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(206, 170, 103, .25), rgba(8, 8, 7, .94)),
      #070706;
    box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, .42);
    color: #f3eee6;
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .04em;
    pointer-events: auto;
  }

  .mobile-call-fab a::before {
    margin-right: .42rem;
    content: "☎";
    color: var(--gold);
    font-size: .9rem;
  }

  footer.site-footer {
    padding-bottom: 5rem;
  }

  @keyframes mobileCallFloat {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-.42rem);
    }
  }
}

@media (max-width: 390px) {
  .hero > .hero-logo-button.logo-button {
    display: none !important;
  }

  .site-header .brand,
  .site-header.is-scrolled .brand {
    width: 7.15rem !important;
    height: auto !important;
    min-width: 7.15rem;
  }

  .hero-content {
    padding-top: 0;
  }

  .mobile-call-fab {
    grid-template-columns: 1fr;
  }
}

/* Mobile-only refinements 20260706-27 */
@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: minmax(9.2rem, 1fr) 2.9rem;
    min-height: 5.35rem;
    padding-top: .82rem;
    padding-bottom: .82rem;
  }

  .site-header .brand,
  .site-header.is-scrolled .brand {
    width: min(49vw, 11.75rem) !important;
    min-width: 9.2rem;
  }

  .site-header .brand img {
    max-height: 4.4rem !important;
  }

  .menu-button {
    grid-column: 2;
  }

  .hero-content {
    padding-top: 1.35rem;
  }

  .offer-layout {
    display: block;
  }

  .offer-list {
    display: grid;
    gap: .7rem;
  }

  .offer-item {
    width: 100%;
    min-height: 5.15rem;
    border-radius: .9rem;
    border-color: rgba(206, 170, 103, .28);
    background: rgba(255, 255, 255, .035);
    text-align: left;
  }

  .offer-item.is-active {
    border-color: rgba(206, 170, 103, .75);
    background:
      linear-gradient(135deg, rgba(206, 170, 103, .22), rgba(255, 255, 255, .04)),
      rgba(8, 8, 7, .94);
  }

  .offer-item.is-active::after {
    position: absolute;
    right: 1rem;
    top: 50%;
    color: var(--gold);
    content: "↓";
    font-size: 1rem;
    transform: translateY(-50%);
  }

  .offer-panel {
    position: relative;
    top: auto;
    width: 100%;
    max-height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-.7rem);
    transition:
      max-height .72s cubic-bezier(.22, .75, .2, 1),
      margin .72s cubic-bezier(.22, .75, .2, 1),
      opacity .38s ease,
      transform .72s cubic-bezier(.22, .75, .2, 1);
  }

  .offer-item.is-active + .offer-panel {
    max-height: 58rem;
    margin: .05rem 0 1.05rem;
    opacity: 1;
    transform: translateY(0);
  }

  .offer-panel-image {
    min-height: 13.8rem;
  }

  .offer-panel-content {
    padding: 1.25rem;
    text-align: center;
  }

  .offer-panel h3,
  .offer-panel p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .offer-panel ul {
    display: grid;
    justify-items: center;
    padding-left: 0;
  }

  .offer-panel li {
    width: fit-content;
    max-width: 100%;
    text-align: center;
  }

  .offer-actions {
    display: grid;
    justify-items: center;
  }

  .review-feature {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 1.15rem;
    padding: 1rem;
  }

  .review-score {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: .9rem;
    row-gap: .2rem;
    width: 100%;
    margin: 0 !important;
    border-right: 0;
    border-bottom: 1px solid rgba(183, 154, 100, .26);
    padding: .9rem .8rem 1rem;
    border-radius: .8rem;
    background: rgba(183, 154, 100, .08);
    text-align: left;
  }

  .review-score span {
    grid-row: span 3;
    font-size: clamp(3.4rem, 18vw, 4.8rem) !important;
    line-height: .82;
    letter-spacing: -.055em;
  }

  .review-score strong {
    align-self: end;
    font-size: .82rem;
  }

  .review-score em {
    font-size: .78rem;
    line-height: 1.25;
  }

  .review-feature blockquote {
    text-align: center;
  }

  .review-feature blockquote p {
    font-size: clamp(1.08rem, 5.2vw, 1.55rem);
    line-height: 1.35;
  }

  .site-footer,
  .site-footer * {
    text-align: center;
  }

  .footer-statement,
  .footer-grid,
  .footer-brand,
  .footer-column,
  .footer-contact,
  .footer-bottom {
    align-items: center !important;
    justify-items: center !important;
    justify-content: center !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-brand .footer-logo-button,
  .footer-logo-button {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand p,
  .footer-brand strong,
  .footer-column p,
  .footer-column a {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 390px) {
  .site-header .brand,
  .site-header.is-scrolled .brand {
    width: 8.95rem !important;
    min-width: 8.95rem;
  }

  .hero-content {
    padding-top: 1rem;
  }
}

/* Mobile heading safety 20260706-28 */
@media (max-width: 760px) {
  :is(
    .layers-copy,
    .steps-copy,
    .portfolio-intro,
    .offer-head,
    .responsibility-copy,
    .cooperation-copy,
    .standard-copy,
    .reviews-copy,
    .contact-copy
  ) h2 {
    width: 100% !important;
    max-width: min(100%, 21rem) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(2.15rem, 8.7vw, 3.1rem) !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  :is(
    .layers-copy,
    .steps-copy,
    .portfolio-intro,
    .offer-head,
    .responsibility-copy,
    .cooperation-copy,
    .standard-copy,
    .reviews-copy,
    .contact-copy
  ) h2 span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto .08em !important;
    line-height: inherit !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .responsibility-copy h2,
  .cooperation-copy h2,
  .standard-copy h2 {
    max-width: min(100%, 22.5rem) !important;
    font-size: clamp(2rem, 8.15vw, 2.9rem) !important;
    line-height: 1.2 !important;
  }

  .responsibility-copy h2 span,
  .cooperation-copy h2 span,
  .standard-copy h2 span {
    margin-bottom: .12em !important;
  }

  .responsibility-copy h2 span:last-child {
    font-size: .88em !important;
    line-height: 1.22 !important;
  }
}

@media (max-width: 390px) {
  :is(
    .layers-copy,
    .steps-copy,
    .portfolio-intro,
    .offer-head,
    .responsibility-copy,
    .cooperation-copy,
    .standard-copy,
    .reviews-copy,
    .contact-copy
  ) h2 {
    max-width: min(100%, 20rem) !important;
    font-size: clamp(1.92rem, 8vw, 2.55rem) !important;
    line-height: 1.22 !important;
  }

  .responsibility-copy h2,
  .cooperation-copy h2,
  .standard-copy h2 {
    font-size: clamp(1.82rem, 7.7vw, 2.42rem) !important;
    line-height: 1.24 !important;
  }
}

/* Mobile word wrapping safety 20260706-33 */
@media (max-width: 760px) {
  body,
  body * {
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  span,
  strong,
  em,
  li,
  label,
  input,
  textarea {
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .hero h1,
  .hero h1 span,
  .hero-kicker,
  .section-kicker,
  .layers-copy h2,
  .steps-copy h2,
  .portfolio-intro h2,
  .offer-head h2,
  .responsibility-copy h2,
  .cooperation-copy h2,
  .standard-copy h2,
  .reviews-copy h2,
  .contact-copy h2 {
    max-width: min(100%, 22rem) !important;
    white-space: normal !important;
  }

  .button,
  .header-action,
  .section-link,
  .offer-item strong,
  .offer-item em,
  .portfolio-category strong,
  .review-card p,
  .contact-area,
  .map-pin {
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}
