:root {
  --blue: #090909;
  --blue-soft: #111111;
  --black-900: #050505;
  --black-850: #0b0b0b;
  --black-800: #111111;
  --black-700: #1a1a1a;
  --ink: #090909;
  --yellow: #c9a45a;
  --line: rgba(9, 9, 9, 0.09);
  --white-line: rgba(255, 255, 255, 0.08);
  --ease: cubic-bezier(0.33, 0, 0.13, 1);
  --header: 112px;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--blue);
  background: #fff;
  font-family: Outfit, Montserrat, Avenir Next, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

.fixed-lines {
  position: fixed;
  inset: 0;
  z-index: 18;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  pointer-events: none;
  opacity: 0.85;
}

.fixed-lines div:first-child {
  border-right: 1px solid var(--line);
}

.fixed-lines div:nth-child(3) {
  border-left: 1px solid var(--line);
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  /* liquid glass base */
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 50%, rgba(255,255,255,0.90) 100%);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.12);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.12);
  /* edge shimmer */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(255,255,255,0.4),
    inset 1px 0 0 rgba(255,255,255,0.6),
    inset -1px 0 0 rgba(255,255,255,0.3);
  pointer-events: none;
  transform: translateY(100%);
  will-change: transform;
  overflow: hidden;
}

/* noise grain overlay for depth */
.page-curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.04;
  pointer-events: none;
}

/* light streak */
.page-curtain::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 160%;
  background: linear-gradient(105deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.page-curtain__logo {
  position: relative;
  z-index: 1;
  width: clamp(140px, 16vw, 220px);
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.35s ease, transform 0.35s ease;
  filter: drop-shadow(0 2px 24px rgba(9,9,9,0.08));
}

.page-curtain__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.page-curtain[data-state="leaving"] .page-curtain__logo {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s;
}

/* EXIT: slide up to cover */
.page-curtain[data-state="leaving"] {
  transform: translateY(0);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: all;
}

/* ARRIVE ready: curtain covers screen instantly */
.page-curtain[data-state="cover"] {
  transform: translateY(0);
  transition: none;
}

/* ARRIVE animate: slide up to reveal */
.page-curtain[data-state="arriving"] {
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  transition: opacity 1.8s var(--ease), visibility 1.8s var(--ease);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.preloader__mark {
  width: clamp(160px, 18vw, 280px);
  height: auto;
  display: block;
  overflow: visible;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: preloaderLogo 1s var(--ease) forwards;
}

.preloader__mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.preloader__clip {
  overflow: hidden;
  line-height: 1;
}

.preloader__clip--sub {
  margin-top: 1rem;
}

.preloader span {
  display: block;
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 400;
  transform: translateY(105%);
  animation: preloaderIn 1s var(--ease) forwards;
}

.preloader small {
  display: block;
  color: var(--yellow);
  font-size: 0.938rem;
  line-height: 1;
  letter-spacing: 0.33em;
  transform: translateY(105%);
  animation: preloaderIn 1s var(--ease) 0.16s forwards;
}


@keyframes preloaderIn {
  to {
    transform: translateY(0);
  }
}

@keyframes preloaderLogo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderLogoOut {
  to {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--header);
  display: grid;
  grid-template-columns:
    100px
    repeat(3, calc((33.333vw - 100px) / 3))
    33.333vw
    repeat(3, calc(33.333vw / 3));
  align-items: stretch;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.site-header > * {
  border-left: 1px solid var(--line);
}

.site-header > *:last-child {
  border-right: 1px solid var(--line);
}

body.is-menu-open .site-header {
  z-index: 55;
  color: #fff;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: var(--white-line);
  box-shadow: none;
}

body.is-menu-open .site-header > *,
body.is-menu-open .header-nav a {
  border-color: var(--white-line);
}

body.is-menu-open .header-nav a {
  transform: translateY(-100%);
  pointer-events: none;
}

body.is-menu-open .brand > span:not(.brand__mark),
body.is-menu-open .brand small {
  color: #fff;
}

body.is-menu-open .brand__custom-logo {
  filter: brightness(0) invert(1);
}

body.has-page-cover .site-header {
  color: #fff;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: var(--white-line);
  box-shadow: none;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

body.has-page-cover .site-header > *,
body.has-page-cover .header-nav a {
  border-color: var(--white-line);
}

body.has-page-cover .menu-toggle span {
  background: #fff;
}

body.has-page-cover .brand__mark img,
body.has-page-cover .brand__custom-logo {
  filter: brightness(0) invert(1);
}

body.has-page-cover .brand > span:not(.brand__mark),
body.has-page-cover .brand small {
  color: #fff;
}

body.has-page-cover .header-nav a:hover,
body.has-page-cover .language:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.has-page-cover.header-on-light .site-header {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

body.has-page-cover.header-on-light .site-header > *,
body.has-page-cover.header-on-light .header-nav a {
  border-color: var(--line);
}

body.has-page-cover.header-on-light .menu-toggle span {
  background: var(--blue);
}

body.has-page-cover.header-on-light .brand__mark img,
body.has-page-cover.header-on-light .brand__custom-logo {
  filter: none;
}

body.has-page-cover.header-on-light .brand > span:not(.brand__mark),
body.has-page-cover.header-on-light .brand small {
  color: var(--blue);
}

body.has-page-cover.header-on-light .header-nav a:hover,
body.has-page-cover.header-on-light .language:hover {
  background: rgba(9, 9, 9, 0.05);
}

.header-contact-btn {
  display: none;
}

.menu-toggle,
.language {
  display: flex;
  align-items: start;
  justify-content: center;
}

.menu-toggle {
  grid-column: 1;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: color 0.45s var(--ease), background 0.45s var(--ease);
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--blue);
  transition: top 0.45s var(--ease), transform 0.45s var(--ease), background 0.45s var(--ease);
}

.menu-toggle span:first-child {
  top: calc(50% - 6px);
}

.menu-toggle span:last-child {
  top: calc(50% + 6px);
}

.menu-toggle:hover {
  color: #fff;
  background: var(--blue);
}

.menu-toggle:hover span {
  background: currentColor;
}

body.is-menu-open .menu-toggle {
  color: #fff;
  background: transparent;
}

body.is-menu-open .menu-toggle span {
  top: 50%;
  background: currentColor;
}

body.is-menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.is-menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.header-nav {
  display: contents;
}

.header-nav a {
  display: grid;
  place-items: center;
  min-width: 0;
  border-left: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.5s var(--ease);
}

.language {
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.header-nav a:hover,
.language:hover {
  background: var(--blue);
  color: #fff;
}

.brand {
  grid-column: 5;
  display: grid;
  align-content: center;
  justify-items: center;
  height: 100%;
  padding: 0 1.4rem;
  overflow: hidden;
  text-align: center;
}

.brand__mark {
  width: 54px;
  height: 38px;
  display: block;
  overflow: hidden;
}

.brand__mark img {
  width: 106px;
  height: 106px;
  max-width: none;
  object-fit: contain;
  transform: translate(-26px, -16px);
}

.brand span {
  display: block;
  font-size: 29px;
  line-height: 0.92;
  letter-spacing: 0.2em;
  font-weight: 500;
  white-space: nowrap;
}

.brand > span:not(.brand__mark) {
  margin-top: 0.2rem;
}

.brand small {
  display: block;
  margin-top: 0.28rem;
  font-size: 12px;
  letter-spacing: 0.42em;
  white-space: nowrap;
}

.brand--custom {
  overflow: visible;
}

.brand__custom-logo {
  display: block;
  height: 68px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.language {
  grid-column: 9;
  display: none;
}

.language::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.7rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: white;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  visibility: hidden;
  pointer-events: none;
  transition: clip-path 0.8s var(--ease), visibility 0.8s var(--ease);
  overflow: hidden;
}

.menu-panel.is-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  visibility: visible;
  pointer-events: auto;
}

.menu-panel__grid {
  display: none;
}

.menu-panel__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.menu-contact {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0 3rem 3.5rem;
  border-right: 1px solid var(--white-line);
  font-style: normal;
  line-height: 1.55;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease) 0.18s, transform 0.8s var(--ease) 0.18s;
}

.menu-contact strong,
.footer strong {
  display: block;
  margin: 2.4rem 0 0.7rem;
  text-transform: uppercase;
  font-size: 0.63rem;
  letter-spacing: 0;
  font-weight: 700;
}

.menu-contact strong:first-child,
.footer strong:first-child {
  margin-top: 0;
}

.menu-links {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  gap: 1rem;
  padding: 0 3rem 4rem;
  font-size: clamp(2.5rem, 5vh, 4rem);
  line-height: 1;
  font-weight: 500;
}

.menu-links a,
.arrow-link {
  overflow: hidden;
}

.menu-links a {
  position: relative;
  display: block;
  height: 1.05em;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.menu-panel.is-open .menu-links a,
.menu-panel.is-open .menu-contact {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel.is-open .menu-links a:nth-child(1) {
  transition-delay: 0.12s;
}

.menu-panel.is-open .menu-links a:nth-child(2) {
  transition-delay: 0.17s;
}

.menu-panel.is-open .menu-links a:nth-child(3) {
  transition-delay: 0.22s;
}

.menu-panel.is-open .menu-links a:nth-child(4) {
  transition-delay: 0.27s;
}

.menu-panel.is-open .menu-links a:nth-child(5) {
  transition-delay: 0.32s;
}

.menu-panel.is-open .menu-links a:nth-child(6) {
  transition-delay: 0.37s;
}

.menu-panel.is-open .menu-links a:nth-child(7) {
  transition-delay: 0.42s;
}

.menu-links a span,
.arrow-link__label {
  display: block;
  transition: transform 0.5s var(--ease);
}

.menu-links a span + span {
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 100% 0 0);
  background: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  transform: none;
  transition: clip-path 0.5s var(--ease);
}

.menu-links a:hover span + span {
  clip-path: inset(0);
}

.menu-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.menu-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
  transition: transform 0.9s var(--ease);
}

.menu-panel.is-open .menu-media img {
  transform: scale(1);
}

.menu-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.3);
}

.menu-media span {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.15);
  -webkit-text-stroke: 0;
  transform: rotate(-90deg) translate(100%, -50%);
  transform-origin: bottom right;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.75;
  letter-spacing: 0.13em;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 1.5s var(--ease);
}

.menu-panel.is-open .menu-media span {
  transform: rotate(-90deg) translateX(100%);
}

.section-grid {
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: var(--header) 48px 80px;
  display: grid;
  grid-template-rows: 1fr;
}

.hero__content {
  position: relative;
  z-index: 4;
  align-self: start;
  padding-top: 39px;
  padding-bottom: 48px;
  max-width: 520px;
  overflow: visible;
  max-height: calc(58vh - var(--header));
}

@media (min-width: 1181px) {
  .hero__content {
    width: min(520px, calc(33.333vw - 48px));
  }
}

.hero__label {
  display: block;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 2.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 500;
}

.hero__title span {
  display: block;
  overflow: hidden;
}

.hero__title i {
  display: block;
  font-style: normal;
  transform: translateY(-110%) rotate(-5deg);
  transform-origin: bottom left;
  will-change: transform;
}

body.is-loaded .hero__title i {
  animation: heroTitleReveal 1s var(--ease) forwards;
}

.hero__title span:nth-child(2) i {
  animation-delay: 0.12s;
}

.hero__title span:nth-child(3) i {
  animation-delay: 0.24s;
}

.hero__title span:nth-child(4) i {
  animation-delay: 0.36s;
}

.hero__title em {
  color: var(--yellow);
  font-style: normal;
}

.hero__rotating-word {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.1em;
}

.hero__rotating-word span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
  white-space: nowrap;
}

.hero__rotating-word span.is-active {
  transform: translateY(0);
  opacity: 1;
}

.hero__rotating-word span.is-leaving {
  transform: translateY(-110%);
  opacity: 0;
}


.hero-note {
  position: absolute;
  top: calc(var(--header) + 48px);
  left: calc(33.333% + 48px);
  z-index: 2;
  width: calc(33.333% - 96px);
  max-width: 460px;
  min-height: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-note::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(130px, 40%);
  height: 2px;
  background: var(--yellow);
}

.hero-note > span {
  display: block;
  color: rgba(9, 9, 9, 0.42);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-note p {
  max-width: 370px;
  margin: 1rem 0 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 1.45vw, 1.8rem);
  line-height: 1.35;
  font-weight: 500;
}

.hero-note__rotating {
  display: grid;
}

.hero-note__rotating span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}

.hero-note__rotating span.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-note__rotating span.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
}


@keyframes heroTitleReveal {
  to {
    transform: translateY(0) rotate(0);
  }
}

.line-reveal-title > span {
  display: block;
  overflow: hidden;
}

.line-reveal-title i {
  display: block;
  font-style: normal;
  transform: translateY(-110%) rotate(-5deg);
  transform-origin: bottom left;
  will-change: transform;
}

.reveal.is-visible .line-reveal-title i,
.reveal-group.is-visible .line-reveal-title i {
  animation: heroTitleReveal 1s var(--ease) forwards;
}

.line-reveal-title > span:nth-child(2) i {
  animation-delay: 0.12s;
}

.line-reveal-title > span:nth-child(3) i {
  animation-delay: 0.24s;
}

.line-reveal-title > span:nth-child(4) i {
  animation-delay: 0.36s;
}

.line-reveal-title > span:nth-child(5) i {
  animation-delay: 0.48s;
}

.line-reveal-title > span:nth-child(6) i {
  animation-delay: 0.6s;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 0;
  text-decoration: none;
  color: var(--blue);
}

.hero-cta__index {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--yellow);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.9;
}

.hero-cta__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 28px;
  border: 1px solid rgba(9, 9, 9, 0.18);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s var(--ease);
}

.hero-cta__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateY(100%);
  transition: transform 0.55s var(--ease);
  z-index: 0;
}

.hero-cta:hover .hero-cta__body {
  border-color: var(--blue);
}

.hero-cta:hover .hero-cta__body::before {
  transform: translateY(0);
}

.hero-cta__label {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.55s var(--ease);
}

.hero-cta:hover .hero-cta__label {
  color: #fff;
}

.hero-cta__sub {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(9, 9, 9, 0.42);
  transition: color 0.55s var(--ease);
}

.hero-cta:hover .hero-cta__sub {
  color: rgba(255, 255, 255, 0.6);
}

.hero-cta__circle {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  position: relative;
  flex-shrink: 0;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}

.hero-cta__circle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--yellow);
  border-right: 1.5px solid var(--yellow);
  transform: rotate(45deg) translate(-1px, 1px);
  transition: border-color 0.5s var(--ease);
}

.hero-cta:hover .hero-cta__circle {
  background: var(--yellow);
  transform: rotate(45deg);
}

.hero-cta:hover .hero-cta__circle::after {
  border-color: var(--blue);
}

.arrow-link {
  position: relative;
  display: inline-grid;
  grid-template-columns: 42px max-content;
  align-items: center;
  gap: 14px;
  margin-top: 39px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: var(--blue);
}

.arrow-link__label:first-of-type {
  grid-column: 2;
  grid-row: 1;
}

.arrow-link__label + .arrow-link__label {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(65%);
}

.arrow-link:hover .arrow-link__label:first-of-type {
  transform: translateY(-165%);
}

.arrow-link:hover .arrow-link__label + .arrow-link__label {
  transform: translateY(-50%);
}

.arrow-link__icon {
  position: relative;
  width: 42px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}

.arrow-link__icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.arrow-link:hover .arrow-link__icon {
  transform: translateX(8px);
}

.hero-collage {
  position: absolute;
  z-index: 1;
  inset: 0 48px 0;
  top: calc(var(--header) + 48px);
  display: grid;
  grid-template-columns: 1fr calc(33.333% - 64px) 1fr;
  align-items: stretch;
  gap: 48px;
  height: calc(100vh - var(--header) - 48px);
  pointer-events: none;
}

.hero-collage__pane {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.hero-collage__pane img,
.hero-collage__pane video {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  height: 120%;
  width: var(--hero-img-width, 100%);
  object-fit: cover;
  transform: translate3d(0, -96px, 0);
}

.hero-collage__pane--low {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.hero-collage__pane--mid {
  clip-path: polygon(0 25%, 100% 25%, 100% 100%, 0 100%);
}

.hero-collage__pane--high {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.page-cover {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── Full-bleed background ── */
.page-cover__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-cover__media {
  display: block;
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.page-cover__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      #090909 0%,
      #090909 28%,
      rgba(9, 9, 9, 0.85) 48%,
      rgba(9, 9, 9, 0.3) 72%,
      rgba(9, 9, 9, 0.0) 100%
    ),
    linear-gradient(to top,
      rgba(9, 9, 9, 0.65) 0%,
      transparent 45%
    );
}

/* Film grain overlay */
.page-cover__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* ── Ghost index ── */
.page-cover__index {
  position: absolute;
  right: clamp(32px, 4vw, 64px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: clamp(10rem, 18vw, 22rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translateY(-50%) translateX(20px);
  transition: opacity 1.2s var(--ease) 0.4s, transform 1.2s var(--ease) 0.4s;
}

.page-cover.is-ready .page-cover__index {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Content ── */
.page-cover__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: calc(var(--header) + 40px) clamp(40px, 5vw, 80px) clamp(56px, 7vh, 96px);
}

.page-cover__top {
  margin-bottom: clamp(2rem, 4vh, 4rem);
}

.page-cover__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

.page-cover__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--yellow);
  flex-shrink: 0;
}

/* Title — massive, bleeds toward right */
.page-cover__title {
  margin: 0;
  display: block;
  max-width: 72vw;
}

.page-cover__title-line {
  display: block;
  overflow: hidden;
  font-size: clamp(4.5rem, 10vw, 11rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
}

/* Odd lines slightly indented for rhythm */
.page-cover__title-line--1 {
  padding-left: clamp(2rem, 5vw, 7rem);
}

.page-cover__title-line--2 {
  padding-left: clamp(4rem, 9vw, 14rem);
}

/* Bottom row: intro + scroll */
.page-cover__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(2rem, 4vh, 4rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 68vw;
}

.page-cover__intro {
  margin: 0;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.page-cover__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.page-cover__scroll-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  writing-mode: vertical-rl;
}

.page-cover__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.page-cover__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateY(-100%);
  animation: scrollSlide 2s var(--ease) infinite 1.4s;
}

@keyframes scrollSlide {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* Responsive */
@media (max-width: 700px) {
  .page-cover__title-line {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .page-cover__title-line--1 { padding-left: 1rem; }
  .page-cover__title-line--2 { padding-left: 2rem; }

  .page-cover__index { display: none; }

  .page-cover__foot {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }

  .page-cover__scroll {
    flex-direction: row;
  }

  .page-cover__scroll-label {
    writing-mode: horizontal-tb;
  }

  .page-cover__scroll-line {
    width: 40px;
    height: 1px;
  }

  .page-cover__scroll-line::after {
    animation-name: scrollSlideH;
  }

  @keyframes scrollSlideH {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(0); }
    100% { transform: translateX(100%); }
  }
}

.page-content-block {
  position: relative;
  z-index: 1;
  padding: clamp(58px, 5.4vw, 96px) 0 clamp(92px, 8vw, 148px);
  overflow: hidden;
  background: #fff;
  border-bottom: 0;
}

.page-content-block::before {
  content: none;
}

.page-content-block__intro,
.page-content-block__stack {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: min(100% - 96px, 1780px);
  margin: 0 auto;
}

.page-content-block__intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1.08fr) minmax(300px, 0.56fr);
  gap: clamp(34px, 4vw, 70px);
  align-items: start;
  padding-bottom: clamp(34px, 3.8vw, 58px);
}

.page-content-block__label {
  color: var(--yellow);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-content-block__headline h2 {
  max-width: 1060px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(36px, 3.45vw, 64px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: 0;
}

.page-content-block__headline h2 span {
  display: block;
}

.page-content-block__summary {
  padding-top: clamp(4px, 0.8vw, 12px);
}

.page-content-block__summary strong {
  display: block;
  color: var(--blue);
  font-size: clamp(22px, 1.65vw, 32px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

.page-content-block__summary p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(9, 9, 9, 0.62);
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.58;
  font-weight: 500;
}

.page-content-block__summary .arrow-link {
  margin-top: 32px;
}

.page-content-block__stack {
  display: grid;
  background: #fff;
}

.page-content-service {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  align-items: stretch;
  margin-bottom: clamp(24px, 3vw, 48px);
}

.page-content-service:last-child {
  margin-bottom: 0;
}

.page-content-service.is-reversed {
  flex-direction: row;
}

.page-content-service.is-reversed .page-content-service__content {
  order: 0;
  border-left: 0;
  border-right: 0;
}

.page-content-service__media {
  flex: 0 0 58%;
}

.page-content-service__content {
  flex: 0 0 38%;
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 64px) clamp(24px, 3vw, 48px);
  overflow: hidden;
  border: 0;
}

.page-content-service__count {
  display: block;
  margin-bottom: clamp(28px, 3vw, 48px);
  color: rgba(9, 9, 9, 0.36);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.page-content-service__subtitle {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-content-service h3 {
  max-width: 720px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(42px, 4.1vw, 78px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.page-content-service p {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(9, 9, 9, 0.6);
  font-size: clamp(19px, 1.35vw, 25px);
  line-height: 1.48;
  font-weight: 500;
}

.page-content-service__media {
  position: relative;
  min-height: clamp(420px, 52vw, 695px);
  margin: 0;
  overflow: hidden;
  background: #e8eaf0;
  clip-path: polygon(evenodd, 0 0, 49.7% 0, 49.7% 16%, 100% 16%, 100% 100%, 50% 100%, 50% 16%, 49.7% 16%, 49.7% 84%, 0 84%);
}

.page-content-service.is-reversed .page-content-service__media {
  clip-path: polygon(50% 0, 100% 0, 100% 90%, 50% 90%, 50% 10%, 49.7% 10%, 49.7% 100%, 0 100%, 0 10%, 49.7% 10%, 50% 10%);
}

.page-content-service__media::after {
  content: none;
}

.page-content-service__media img {
  position: absolute;
  left: 0;
  top: -26%;
  width: 100%;
  height: 152%;
  object-fit: cover;
  will-change: transform;
}

.agency {
  position: relative;
  min-height: 860px;
  display: grid;
  grid-template-columns: 1fr calc(33.333% - 64px) 1fr;
  column-gap: 48px;
  row-gap: 52px;
  align-items: start;
  padding: 112px 48px 76px;
  overflow: hidden;
}

.agency > * {
  min-width: 0;
}

.section-kicker {
  padding-left: 48px;
  font-size: 80px;
  line-height: 0.95;
  font-weight: 400;
}

.agency__content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  max-width: 610px;
}

.agency__kicker {
  padding-left: 0;
  max-width: 560px;
  font-size: clamp(3.2rem, 5vw, 6.1rem);
  line-height: 0.93;
  color: var(--yellow);
}

.agency__headline {
  max-width: 560px;
  margin: 3.4rem 0 0;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.agency__content p {
  max-width: 520px;
  margin: 2rem 0 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.agency__content strong {
  font-weight: 500;
}

.arrow-link--dark {
  margin-top: 2.4rem;
}

.agency__signals {
  display: grid;
  grid-template-columns: 1fr;
  margin: 3.8rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.agency__signals li {
  min-height: auto;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 1.35rem;
  padding: 1.35rem 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.agency__signals li:last-child {
  border-bottom: 0;
}

.agency__signals span {
  display: block;
  grid-row: 1 / span 2;
  padding-top: 0.1rem;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 500;
  color: rgba(9, 9, 9, 0.42);
  opacity: 1;
}

.agency__signals strong {
  display: block;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.14;
  color: var(--yellow);
}

.agency__signals em {
  display: block;
  max-width: 360px;
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.42;
  color: rgba(9, 9, 9, 0.68);
  opacity: 1;
}

.agency__visual {
  position: relative;
  z-index: 2;
  grid-column: 2 / -1;
  min-height: 560px;
}

.agency__stage {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.agency__stage::after {
  content: "";
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: 50%;
  z-index: 6;
  width: 1px;
  background: var(--line);
  pointer-events: none;
}

.method-browser {
  position: relative;
  z-index: 2;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #d7deea;
  background: #fff;
  box-shadow: 0 14px 28px rgba(9, 9, 9, 0.045);
  will-change: transform;
}

.method-browser--strategy {
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.method-browser--performance {
  border-left: 0;
  border-radius: 0 6px 6px 0;
  min-height: 590px;
  margin-top: 170px;
}

.method-browser__body {
  position: relative;
  min-height: 458px;
  padding: 48px;
}

.method-browser__body > span {
  display: block;
  color: rgba(9, 9, 9, 0.58);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.method-browser__body strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(2rem, 3vw, 3.65rem);
  line-height: 0.98;
  font-weight: 400;
}

.method-browser__body p {
  max-width: 390px;
  margin: 2rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(9, 9, 9, 0.72);
}

.browser-lines {
  display: grid;
  gap: 16px;
  margin-top: 4rem;
}

.browser-lines i {
  display: block;
  height: 10px;
  background: #e5e9f1;
}

.browser-lines i:first-child {
  width: 72%;
  background: var(--blue);
}

.browser-lines i:nth-child(2) {
  width: 88%;
}

.browser-lines i:nth-child(3) {
  width: 58%;
}

.method-browser--performance .method-browser__body {
  padding-top: 46px;
  text-align: left;
}

.method-browser--performance .method-browser__body strong {
  max-width: 420px;
  margin-inline: 0;
  font-size: clamp(1.75rem, 2.1vw, 2.6rem);
}

.method-browser--performance .method-browser__body p {
  max-width: 400px;
  margin-top: 1.6rem;
}

.standard-list {
  display: grid;
  gap: 0;
  width: calc(100% + 96px);
  margin: 2.8rem -48px -48px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e3e7ef;
}

.standard-list li {
  min-height: 66px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid #e3e7ef;
  background: #fff;
}

.standard-list li:last-child {
  border-bottom: 0;
}

.standard-list span {
  color: rgba(9, 9, 9, 0.36);
  font-size: 0.72rem;
  font-weight: 500;
}

.standard-list li strong {
  margin: 0;
  color: var(--blue);
  font-size: 0.86rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.method-browser--performance .standard-list li strong {
  max-width: none;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.1;
}

.agency__browser {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  will-change: transform;
}

.agency__browser--main {
  left: 6%;
  right: 7%;
  top: 82px;
  height: 456px;
}

.agency__browser--side {
  width: 42%;
  height: 282px;
  right: 5%;
  bottom: 48px;
  background: #f7f8fb;
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid #e8eaf0;
  background: #fbfbfd;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8cedb;
}

.browser-bar em {
  margin-left: 12px;
  color: rgba(9, 9, 9, 0.46);
  font-style: normal;
  font-size: 0.8rem;
}

.browser-bar--compact {
  height: 34px;
}

.word-marquee {
  position: absolute;
  left: -6vw;
  right: -28vw;
  bottom: 8px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 1.5rem;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(var(--marquee-x, 0));
}

.word-marquee span {
  color: var(--blue);
  font-size: clamp(8rem, 17vw, 22rem);
  line-height: 0.85;
  font-weight: 500;
  opacity: 0.055;
}

.word-marquee span:nth-child(2) {
  transform: scale(1.02);
}

.word-marquee span:nth-child(3) {
  color: transparent;
  opacity: 0.22;
  -webkit-text-stroke: 1.2px rgba(9, 9, 9, 0.9);
}

.flow-section {
  position: relative;
  min-height: 270vh;
  overflow: clip;
  color: var(--blue);
  background: transparent;
}

.flow-pin {
  position: sticky;
  top: var(--header);
  z-index: 1;
  min-height: calc(100vh - var(--header));
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(2.75rem, 3.8vw, 4.4rem);
  padding:
    clamp(3.8rem, 5vw, 5.5rem)
    clamp(3rem, 3.8vw, 4.5rem)
    clamp(3rem, 4vw, 4.6rem);
}

.flow-pin::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 66.666%;
  z-index: 0;
  background-color: var(--blue);
  background-image:
    linear-gradient(to top, rgba(9,9,9,0.88) 0%, rgba(9,9,9,0.55) 50%, rgba(9,9,9,0.35) 100%),
    var(--detail-image);
  background-size: cover;
  background-position: center;
  pointer-events: none;
  transition: background-image 0.5s var(--ease);
}

.flow-pin > * {
  position: relative;
  z-index: 1;
}

.flow-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, calc(33.333% - 64px));
  column-gap: 48px;
  row-gap: clamp(1.6rem, 2vw, 2.35rem);
  align-items: start;
}

.flow-header > span {
  grid-column: 1;
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.flow-header h2 {
  grid-column: 1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.flow-header h2 span {
  display: block;
  overflow: hidden;
}

.flow-header h2 i {
  display: block;
  font-style: normal;
  transform: translateY(-110%) rotate(-5deg);
  transform-origin: bottom left;
  will-change: transform;
}

.flow-header.is-visible h2 i {
  animation: heroTitleReveal 1s var(--ease) forwards;
}

.flow-header h2 span:nth-child(2) i {
  animation-delay: 0.12s;
}

.flow-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, calc(33.333% - 64px));
  gap: 48px;
  align-items: stretch;
  min-height: 0;
}

.flow-window {
  min-width: 0;
  overflow: hidden;
}

.flow-rail {
  display: flex;
  gap: 28px;
  align-items: stretch;
  width: max-content;
  transform: translate3d(var(--flow-x, 0px), 0, 0);
  will-change: transform;
}

.flow-rail::after {
  content: "";
  flex: 0 0 28px;
}

.flow-card {
  position: relative;
  width: clamp(360px, 27vw, 470px);
  min-height: clamp(360px, 44vh, 500px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: clamp(1.6rem, 2.2vw, 2.25rem);
  background: #fff;
  border: 1px solid #dfe4ee;
  border-radius: 0;
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.74) 0%, rgba(9, 9, 9, 0.93) 58%, rgba(9, 9, 9, 0.99) 100%),
    var(--flow-image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.45s var(--ease),
    transform 0.8s var(--ease);
}

.flow-card.is-active {
  color: #fff;
  background: var(--blue);
  border-color: transparent;
}

.flow-card.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.flow-card span {
  position: relative;
  z-index: 1;
  color: rgba(9, 9, 9, 0.38);
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 500;
}

.flow-card.is-active span {
  color: var(--yellow);
}

.flow-card h3 {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 340px;
  margin: 0;
  font-size: clamp(2rem, 2.55vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
}

.flow-card p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 1.4rem 0 0;
  color: rgba(9, 9, 9, 0.58);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 400;
}

.flow-card.is-active p {
  color: rgba(255, 255, 255, 0.72);
}

.flow-card--final {
  background: #fff;
  border-color: #dfe4ee;
}

.flow-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(360px, 44vh, 500px);
  color: #fff;
}

.flow-detail__count {
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.flow-detail h3 {
  margin: 1.4rem 0 0;
  font-size: clamp(2.2rem, 3vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
}

.flow-detail p {
  max-width: 420px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.52;
  font-weight: 400;
}

.flow-detail .arrow-link {
  margin-top: 2.4rem;
  color: #fff;
}

.flow-word {
  position: absolute;
  left: -5vw;
  bottom: -0.08em;
  z-index: 0;
  color: var(--blue);
  font-size: clamp(7rem, 17vw, 23rem);
  line-height: 0.8;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.045;
  pointer-events: none;
}

.services {
  min-height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.service-strip {
  display: flex;
  gap: clamp(2rem, 5vw, 6rem);
  padding-left: clamp(2rem, 4vw, 4rem);
  font-size: clamp(2.4rem, 7vw, 7rem);
  line-height: 1;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px var(--blue);
  transform: translateX(var(--services-x, 0));
}

.blueprint {
  position: relative;
  min-height: auto;
  overflow: clip;
  border-top: 1px solid var(--white-line);
  background:
    linear-gradient(90deg, transparent calc(33.333% - 1px), rgba(255, 255, 255, 0.09) calc(33.333% - 1px), rgba(255, 255, 255, 0.09) 33.333%, transparent 33.333%, transparent calc(66.666% - 1px), rgba(255, 255, 255, 0.09) calc(66.666% - 1px), rgba(255, 255, 255, 0.09) 66.666%, transparent 66.666%),
    var(--blue);
  color: #fff;
}

.blueprint__pin {
  position: relative;
  top: auto;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
  padding:
    clamp(3.8rem, 5vw, 5.5rem)
    clamp(3rem, 3.8vw, 4.5rem)
    clamp(3rem, 4vw, 4.6rem);
}

.blueprint__intro {
  position: sticky;
  top: calc(var(--header) + 3rem);
  align-self: start;
  max-width: 560px;
  translate: none;
}

.blueprint__intro > span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blueprint__intro h2 {
  max-width: 560px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.blueprint__intro p {
  max-width: 460px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.62;
  font-weight: 400;
}

.blueprint__intro .arrow-link {
  margin-top: 2.6rem;
  color: #fff;
}

.blueprint__system {
  position: relative;
  min-width: 0;
}

.blueprint__canvas {
  position: relative;
}

.blueprint__browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 222, 234, 0.24);
  border-radius: 6px;
  background: #0b0b0b;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.blueprint__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(215, 222, 234, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.blueprint__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200, 206, 219, 0.62);
}

.blueprint__bar em {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
  font-size: 0.8rem;
}

.blueprint__screen {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: clamp(250px, 31vh, 340px);
  gap: 0;
  border-bottom: 1px solid rgba(215, 222, 234, 0.16);
  background: rgba(255, 255, 255, 0.015);
}

.blueprint__zone {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 34px;
  border: 0;
  color: rgba(255, 255, 255, 0.36);
  background: transparent;
  transition:
    color 0.5s var(--ease),
    background 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.blueprint__zone.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.blueprint__zone span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 500;
}

.blueprint__zone strong {
  display: block;
  max-width: 330px;
  margin-top: 1.1rem;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  line-height: 1.02;
  font-weight: 400;
  color: #fff;
}

.blueprint__zone p {
  max-width: 290px;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  line-height: 1.38;
  font-weight: 400;
}

.blueprint__zone.is-active p {
  color: rgba(255, 255, 255, 0.72);
}

.blueprint__zone--hero {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid rgba(215, 222, 234, 0.16);
  border-bottom: 1px solid rgba(215, 222, 234, 0.16);
}

.blueprint__zone--proof {
  grid-column: 2;
  grid-row: 1;
  border-bottom: 1px solid rgba(215, 222, 234, 0.16);
}

.blueprint__zone--speed {
  grid-column: 1;
  grid-row: 2;
  border-right: 1px solid rgba(215, 222, 234, 0.16);
}

.blueprint__zone--action {
  grid-column: 2;
  grid-row: 2;
}

.blueprint__measure {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: end;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(215, 222, 234, 0.16);
  padding-top: 1.25rem;
}

.blueprint__measure span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.blueprint__measure strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.8rem, 2.8vw, 3.8rem);
  line-height: 0.9;
  font-weight: 500;
}

.blueprint__proofs {
  --node-w: 184px;
  --center-w: 186px;
  --node-edge: clamp(22px, 2.2vw, 38px);
  position: relative;
  width: 100%;
  min-height: clamp(520px, 58vh, 590px);
  margin: 0;
  overflow: visible;
}

.blueprint__proofs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.blueprint__proofs::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 164, 90, 0.12), transparent 34%);
  pointer-events: none;
}

.blueprint__connector {
  position: absolute;
  z-index: 3;
  height: 1px;
  width: calc(50% - var(--node-edge) - var(--node-w) - (var(--center-w) / 2));
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(201, 164, 90, 0.95) 0 4px, transparent 4px 11px);
  background-size: 22px 1px;
  animation: blueprintRouteRight 0.65s linear infinite;
}

.blueprint__connector--left {
  left: calc(var(--node-edge) + var(--node-w));
  animation-name: blueprintRouteLeft;
}

.blueprint__connector--right {
  left: calc(50% + (var(--center-w) / 2));
  animation-name: blueprintRouteRight;
}

.blueprint__connector--top {
  top: 36%;
}

.blueprint__connector--bottom {
  top: 66%;
}

@keyframes blueprintRouteLeft {
  to {
    background-position: -22px 0;
  }
}

@keyframes blueprintRouteRight {
  to {
    background-position: 22px 0;
  }
}

.blueprint__node {
  position: absolute;
  z-index: 2;
  width: var(--node-w);
  min-height: 204px;
  display: grid;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.blueprint__node:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 90, 0.55);
  background: rgba(201, 164, 90, 0.12);
}

.blueprint__node--center {
  left: 50%;
  top: 50%;
  width: var(--center-w);
  min-height: 164px;
  color: var(--blue);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.blueprint__node--center:hover {
  transform: translate(-50%, -54%);
  background: var(--yellow);
}

.blueprint__node--one {
  left: var(--node-edge);
  top: 38px;
}

.blueprint__node--two {
  right: var(--node-edge);
  top: 38px;
}

.blueprint__node--three {
  left: var(--node-edge);
  bottom: 38px;
}

.blueprint__node--four {
  right: var(--node-edge);
  bottom: 38px;
}

.blueprint__node span {
  display: block;
  margin-bottom: 14px;
  color: rgba(9, 9, 9, 0.62);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blueprint__node strong {
  display: block;
  color: #fff;
  font-size: 1.42rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.blueprint__node p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.48;
  font-weight: 400;
}

.blueprint__node--center strong {
  color: var(--blue);
}

.blueprint__node--center p {
  color: rgba(9, 9, 9, 0.72);
}

.blueprint__word {
  position: absolute;
  left: -0.04em;
  bottom: -0.12em;
  color: #fff;
  font-size: clamp(6rem, 17vw, 22rem);
  line-height: 0.78;
  font-weight: 500;
  opacity: 0.035;
  white-space: nowrap;
  transform: translateX(var(--blueprint-word-x, 0));
  pointer-events: none;
}

.testimonials-section {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: stretch;
  padding:
    clamp(3.8rem, 5vw, 5.8rem)
    clamp(3rem, 3.8vw, 4.5rem)
    clamp(3rem, 4.5vw, 5rem);
  overflow: clip;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent calc(33.333% - 1px), var(--line) calc(33.333% - 1px), var(--line) 33.333%, transparent 33.333%, transparent calc(66.666% - 1px), var(--line) calc(66.666% - 1px), var(--line) 66.666%, transparent 66.666%),
    #fff;
  color: var(--blue);
}

.testimonials-section__intro {
  position: sticky;
  top: calc(var(--header) + 3rem);
  z-index: 2;
  align-self: start;
  max-width: 560px;
}

.testimonials-section__intro > span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-section__intro h2 {
  max-width: 620px;
  margin: 1.5rem 0 0;
  font-size: clamp(2rem, 3.1vw, 3.65rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.testimonials-section__intro p {
  max-width: 460px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.62;
  font-weight: 400;
}

.testimonials-section__system {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.testimonials-browser {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid #d7deea;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(9, 9, 9, 0.06);
}

.testimonials-browser .blueprint__bar {
  border-bottom-color: #e4e8f1;
  background: #f8f9fc;
}

.testimonials-browser .blueprint__bar span {
  background: #c6cedd;
}

.testimonials-browser .blueprint__bar em {
  color: #8b92a7;
}

.testimonials-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonials-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(9, 9, 9, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: clamp(290px, 31vh, 360px);
  border-bottom: 1px solid #e4e8f1;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.testimonial-card__image {
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.testimonial-card--has-image:hover .testimonial-card__image,
.testimonial-card--has-image.is-active .testimonial-card__image {
  opacity: 1;
}

.testimonial-card--has-image .testimonial-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.9) 0%, rgba(9,9,9,0.6) 50%, rgba(9,9,9,0.2) 100%);
}

.testimonial-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  height: 100%;
  padding: clamp(1.8rem, 2.4vw, 2.8rem);
  transition: color 0.3s var(--ease);
}

.testimonial-card--has-image:hover .testimonial-card__body,
.testimonial-card--has-image.is-active .testimonial-card__body {
  color: #fff;
}

.testimonial-card--has-image:hover blockquote,
.testimonial-card--has-image.is-active blockquote {
  color: #fff;
}

.testimonial-card--has-image:hover .testimonial-card__footer > div:first-child strong,
.testimonial-card--has-image.is-active .testimonial-card__footer > div:first-child strong {
  color: #fff;
}

.testimonial-card--has-image:hover .testimonial-card__footer > div:first-child span,
.testimonial-card--has-image.is-active .testimonial-card__footer > div:first-child span {
  color: rgba(255,255,255,0.65);
}

.testimonial-card--has-image:hover .testimonial-card__footer,
.testimonial-card--has-image.is-active .testimonial-card__footer {
  border-top-color: rgba(255,255,255,0.2);
}

.testimonial-card:nth-child(odd) {
  border-right: 1px solid #e4e8f1;
}

/* Circular progress ring */
.testimonial-card__ring {
  position: absolute;
  top: clamp(1rem, 1.6vw, 1.6rem);
  right: clamp(1rem, 1.6vw, 1.6rem);
  width: 32px;
  height: 32px;
  transform: rotate(-90deg);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.testimonial-card.is-active .testimonial-card__ring {
  opacity: 1;
}

.testimonial-card__ring-track {
  fill: none;
  stroke: rgba(9, 9, 9, 0.1);
  stroke-width: 2.5;
}

.testimonial-card__ring-fill {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.1s linear;
}

.testimonial-card--has-image.is-active .testimonial-card__ring-track {
  stroke: rgba(255, 255, 255, 0.2);
}

.testimonial-card__index {
  color: var(--yellow);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.testimonial-card blockquote {
  max-width: 560px;
  margin: clamp(1.45rem, 2vw, 2.2rem) 0;
  color: var(--blue);
  font-size: clamp(1.45rem, 1.9vw, 2.28rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0;
}

.testimonial-card__footer {
  display: flex;
  gap: 1.3rem;
  align-items: end;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid #e4e8f1;
}

.testimonial-card__footer strong,
.testimonial-card__footer span {
  display: block;
}

.testimonial-card__footer > div:first-child strong {
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
}

.testimonial-card__footer > div:first-child span {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 400;
}

.testimonial-card__metric {
  min-width: 92px;
  text-align: right;
}

.testimonial-card__metric strong {
  color: var(--yellow);
  font-size: clamp(1.35rem, 1.75vw, 2rem);
  line-height: 1;
  font-weight: 500;
}

.testimonial-card__metric span {
  margin-top: 0.34rem;
  color: #8b92a7;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonials-section__word {
  position: absolute;
  left: -0.04em;
  bottom: -0.13em;
  color: var(--blue);
  font-size: clamp(6rem, 17vw, 22rem);
  line-height: 0.78;
  font-weight: 500;
  opacity: 0.035;
  white-space: nowrap;
  pointer-events: none;
}

.portfolio {
  position: relative;
  scroll-margin-top: var(--header);
  min-height: 245vh;
  display: block;
  padding: 0;
  overflow: visible;
  background: #fff;
  color: var(--blue);
}

.portfolio__pin {
  position: sticky;
  top: var(--header);
  min-height: calc(100vh - var(--header));
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: start;
  padding:
    clamp(3.8rem, 5vw, 5.5rem)
    clamp(3rem, 3.8vw, 4.5rem)
    clamp(3rem, 4vw, 4.6rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(33.333% - 1px), rgba(9, 9, 9, 0.055) calc(33.333% - 1px), rgba(9, 9, 9, 0.055) 33.333%, transparent 33.333%, transparent calc(66.666% - 1px), rgba(9, 9, 9, 0.055) calc(66.666% - 1px), rgba(9, 9, 9, 0.055) 66.666%, transparent 66.666%),
    #fff;
}

.portfolio__intro {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.portfolio__intro > span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio__intro h2 {
  max-width: 620px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
}

.portfolio__intro p {
  max-width: 430px;
  margin: 2rem 0 0;
  color: rgba(9, 9, 9, 0.62);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.6;
}

.portfolio__list {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  max-height: calc(100vh - var(--header) - clamp(5.5rem, 8vw, 9rem));
  overflow: visible;
  transform: translate3d(0, var(--portfolio-y, 0px), 0);
  will-change: transform;
  border-top: 1px solid var(--line);
}

.portfolio-item {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.94fr);
  gap: clamp(2rem, 3.5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 3vw, 3.4rem) 0;
  border-bottom: 1px solid var(--line);
}

.portfolio-item__hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  letter-spacing: 2px;
}

.portfolio-item__content {
  min-width: 0;
}

.portfolio-item__meta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  color: rgba(9, 9, 9, 0.46);
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.portfolio-item__meta em {
  font-style: normal;
}

.portfolio-item h3 {
  max-width: 560px;
  margin: 1.4rem 0 0;
  font-size: clamp(2.25rem, 4.3vw, 5rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0;
}

.portfolio-item p {
  max-width: 430px;
  margin: 1.5rem 0 0;
  color: rgba(9, 9, 9, 0.62);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.52;
}

.portfolio-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-item__stats li {
  min-width: 98px;
}

.portfolio-item__stats strong,
.portfolio-item__stats span {
  display: block;
}

.portfolio-item__stats strong {
  color: var(--blue);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 0.95;
  font-weight: 500;
}

.portfolio-item__stats span {
  margin-top: 0.45rem;
  color: rgba(9, 9, 9, 0.46);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.portfolio-preview {
  position: relative;
  z-index: 1;
  min-height: clamp(230px, 24vw, 330px);
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.14);
  border-radius: 6px;
  background: #f7f8fb;
  box-shadow: 0 18px 50px rgba(9, 9, 9, 0.08);
}

.portfolio-preview__bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.12);
  background: #fff;
}

.portfolio-preview__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8cedb;
}

.portfolio-preview__screen {
  position: absolute;
  inset: 38px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, 0.86fr);
  background: #fff;
}

.portfolio-preview__image {
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.08), rgba(9, 9, 9, 0.38)),
    var(--preview-image);
  background-size: cover;
  background-position: center;
}

.portfolio-preview__panel {
  display: grid;
  align-content: center;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.4rem, 2.3vw, 2.4rem);
  border-left: 1px solid rgba(9, 9, 9, 0.1);
  background:
    linear-gradient(rgba(9, 9, 9, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 34px 34px, 34px 34px, auto;
}

.portfolio-preview__panel i {
  display: block;
  width: min(76%, 180px);
  height: 8px;
  margin-bottom: 1.25rem;
  background: var(--yellow);
}

.portfolio-preview__panel strong {
  display: block;
  color: var(--blue);
  max-width: 100%;
  font-size: clamp(1.45rem, 1.75vw, 2.1rem);
  line-height: 0.98;
  font-weight: 500;
  overflow-wrap: break-word;
}

.portfolio-preview__panel span {
  display: block;
  margin-top: 0.9rem;
  color: rgba(9, 9, 9, 0.46);
  font-size: clamp(0.84rem, 0.95vw, 1rem);
  line-height: 1.35;
}

.portfolio__word {
  position: absolute;
  left: -0.04em;
  bottom: -0.12em;
  z-index: 0;
  color: var(--blue);
  font-size: clamp(6rem, 15vw, 18rem);
  line-height: 0.78;
  font-weight: 500;
  opacity: 0.035;
  white-space: nowrap;
  pointer-events: none;
}

.news {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  background: var(--blue);
}

.news-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: var(--blue);
}

.news-grid::-webkit-scrollbar {
  display: none;
}

.news-card {
  position: relative;
  flex: 0 0 33.333%;
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-snap-align: start;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background: var(--blue);
  overflow: hidden;
}

.news-card:last-child {
  border-right: 0;
}

.news-card__media {
  height: 60vh;
  min-height: 310px;
  max-height: 560px;
  overflow: hidden;
  opacity: 1;
  background: var(--blue);
}

.news-card__image {
  position: relative;
  height: 100%;
  overflow: hidden;
  transform: scale(1.1);
}

.news-card__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.news-card__image img:nth-child(2) {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transform: scale(1.05);
  transition: clip-path 1s var(--ease);
}

.news-card__image:hover img:nth-child(2),
.news-card:hover .news-card__image img:nth-child(2) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.news-card__body {
  position: relative;
  display: flex;
  min-height: 186px;
  flex-direction: column;
  padding: 40px;
  background: var(--blue);
  transition: color 0.5s var(--ease), background 0.5s var(--ease);
}

.news-card:hover .news-card__body {
  color: var(--blue);
  background: #fff;
}

.news-card__hit {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.news-card__meta > * + *::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 0.7rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  vertical-align: middle;
}

.news-card time {
  font: inherit;
}

.news-card h3 {
  padding-right: 1.5rem;
  margin: 0.75rem 0 1.25rem;
  color: currentColor;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
}

.news-card__read {
  margin-top: auto;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.5s var(--ease);
}

.contact-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.contact-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 25, 0.64);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.contact-drawer.is-open .contact-drawer__backdrop {
  opacity: 1;
}

.contact-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 550px);
  overflow-y: auto;
  color: #fff;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(50% - 1px),
      rgba(255, 255, 255, 0.05) calc(50% - 1px),
      rgba(255, 255, 255, 0.05) 50%
    ),
    var(--blue);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -32px 0 90px rgba(3, 7, 25, 0.34);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}

.contact-drawer.is-open .contact-drawer__panel {
  transform: translateX(0);
}

.contact-drawer--schedule .contact-drawer__panel {
  width: min(100%, 900px);
}

.contact-drawer__close {
  position: sticky;
  z-index: 2;
  top: 0;
  left: calc(100% - 88px);
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-left: auto;
  color: #fff;
  border-left: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(12px);
}

.contact-drawer__close span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.contact-drawer__close span:first-child {
  transform: rotate(45deg);
}

.contact-drawer__close span:last-child {
  transform: rotate(-45deg);
}

.contact-drawer__content {
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(2rem, 6vh, 4.8rem) clamp(1.5rem, 4vw, 3.2rem) clamp(2rem, 5vh, 4rem);
  margin-top: -88px;
}

.contact-drawer--schedule .contact-drawer__content {
  align-content: start;
  gap: 0.8rem;
  padding: clamp(1.3rem, 3vh, 2.2rem) clamp(1.2rem, 3vw, 2.6rem) clamp(1.3rem, 3vh, 2rem);
  margin-top: -72px;
}

.contact-drawer__eyebrow {
  align-self: end;
  width: fit-content;
  padding-top: 1rem;
  border-top: 2px solid var(--yellow);
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-drawer h2 {
  max-width: 420px;
  margin: 1.2rem 0 0;
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
}

.contact-drawer--schedule h2 {
  max-width: 620px;
  margin-top: 0.4rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.contact-drawer__content > p {
  max-width: 410px;
  margin: 0.35rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-drawer--schedule .contact-drawer__content > p {
  max-width: 660px;
  margin: 0 0 0.8rem;
}

.contact-form,
.contact-drawer .wpcf7-form {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1rem;
}

.contact-form label,
.contact-drawer .wpcf7-form p {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
  margin: 0;
}

.contact-drawer .wpcf7-form label {
  display: grid;
  gap: 0;
}

.contact-drawer .wpcf7-form label br {
  display: none;
}

.contact-form label span,
.contact-drawer .wpcf7-form label > .wpcf7-form-control-wrap:first-child,
.contact-drawer .wpcf7-form label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-drawer .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-drawer .wpcf7-form input,
.contact-drawer .wpcf7-form textarea,
.contact-drawer .wpcf7-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-form input,
.contact-form select,
.contact-drawer .wpcf7-form input,
.contact-drawer .wpcf7-form select {
  min-height: 48px;
  padding: 0 0.85rem;
}

.contact-form textarea,
.contact-drawer .wpcf7-form textarea {
  min-height: 126px;
  resize: vertical;
  padding: 0.9rem 0.85rem;
}

.contact-form select,
.contact-drawer .wpcf7-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 25px,
    calc(100% - 14px) 25px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-drawer .wpcf7-form input:focus,
.contact-drawer .wpcf7-form textarea:focus,
.contact-drawer .wpcf7-form select:focus {
  border-color: rgba(201, 164, 90, 0.72);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 3px rgba(201, 164, 90, 0.12);
}

.contact-form__wide,
.contact-form button,
.contact-drawer .wpcf7-form p:has(textarea),
.contact-drawer .wpcf7-form p:has(input[type="submit"]),
.contact-drawer .wpcf7-form p.is-full-width {
  grid-column: 1 / -1;
}

.contact-form button,
.contact-drawer .wpcf7-submit {
  position: relative;
  min-height: 56px;
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-form button:hover,
.contact-drawer .wpcf7-submit:hover {
  border-color: rgba(201, 164, 90, 0.64);
  background: var(--yellow);
  color: var(--blue);
}

.contact-drawer .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.35rem;
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.contact-drawer .wpcf7-form input.wpcf7-not-valid,
.contact-drawer .wpcf7-form textarea.wpcf7-not-valid,
.contact-drawer .wpcf7-form select.wpcf7-not-valid {
  border-color: rgba(248, 113, 113, 0.5);
}

.contact-drawer .wpcf7-response-output {
  display: none !important;
}

.cf7-response-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 550px);
  z-index: 2;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.cf7-response-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cf7-response-overlay__inner {
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 380px;
}

.cf7-response-overlay__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cf7-response-overlay__icon--success {
  background: rgba(201, 164, 90, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(201, 164, 90, 0.25);
}

.cf7-response-overlay__icon--error {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cf7-response-overlay__title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.cf7-response-overlay__message {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cf7-response-overlay__close {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}

.cf7-response-overlay__close:hover {
  opacity: 0.82;
}

.schedule-embed {
  position: relative;
  align-self: stretch;
  height: clamp(500px, calc(100vh - 330px), 660px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.schedule-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #fff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.schedule-embed.is-loaded iframe {
  opacity: 1;
}

.schedule-embed.is-loaded .schedule-embed__skeleton {
  opacity: 0;
  pointer-events: none;
}

/* Skeleton */
.schedule-embed__skeleton {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1a1a1a;
  transition: opacity 0.3s ease;
}

.schedule-embed__skeleton-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.schedule-embed__skeleton-body {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 16px;
  flex: 1;
}

.schedule-embed__skeleton-cal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.schedule-skeleton-cell {
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}

.schedule-skeleton-cell:nth-child(odd) {
  animation-delay: 0.2s;
}

.schedule-embed__skeleton-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 28px;
}

.schedule-skeleton-slot {
  height: 38px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}

.schedule-skeleton-slot:nth-child(even) {
  animation-delay: 0.3s;
}

.schedule-skeleton-line {
  height: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}

.schedule-skeleton-line--short  { width: 30%; animation-delay: 0s; }
.schedule-skeleton-line--medium { width: 55%; animation-delay: 0.15s; }
.schedule-skeleton-line--long   { width: 40%; animation-delay: 0.1s; }

@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.schedule-embed__fallback {
  display: grid;
  min-height: 50px;
  place-items: center;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.schedule-embed__fallback:hover {
  border-color: rgba(201, 164, 90, 0.64);
  background: var(--yellow);
  color: var(--blue);
}

.schedule-empty {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.schedule-empty strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
}

.schedule-empty p {
  max-width: 32rem;
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer {
  position: relative;
  min-height: auto;
  overflow: hidden;
  border-top: 1px solid rgba(201, 164, 90, 0.3);
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(100vw / 6 - 1px),
      var(--white-line) calc(100vw / 6 - 1px),
      var(--white-line) calc(100vw / 6)
    ),
    var(--blue);
  color: white;
}

.footer__translate {
  min-height: auto;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
  transform: translateY(var(--footer-y, -14vh));
}

.footer__brand {
  font-size: clamp(3rem, 10vw, 11rem);
  line-height: 0.85;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  max-width: 980px;
}

.footer address {
  font-style: normal;
}

.footer a {
  transition: color 0.3s var(--ease);
}

.footer a:hover {
  color: var(--yellow);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 5rem;
  padding-top: 0;
  border-top: 0;
}

.footer__legal {
  margin: 4rem 0 0;
  opacity: 0.72;
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(54px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}

.reveal.is-visible,
.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 0.24s;
}

.cursor {
  position: fixed;
  z-index: 55;
  left: 0;
  top: 0;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: #fff;
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s var(--ease);
}

.cursor.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1180px) {
  :root {
    --header: 100px;
  }

  .site-header {
    grid-template-columns: 76px 1fr 76px;
  }

  .header-nav {
    display: none;
  }

  .brand {
    grid-column: 2;
  }

  .language {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
  }

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

  .menu-contact,
  .menu-media {
    display: none;
  }

  .menu-links {
    padding: 9rem 2rem 3rem;
    justify-self: center;
  }

  .hero {
    min-height: 100svh;
    padding-inline: 2.5rem;
  }

  .hero__content {
    max-width: 560px;
    max-height: none;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  }

  .hero-collage {
    top: 52vh;
    inset-inline: 0;
    height: 44vh;
    grid-template-columns: 1fr;
  }

  .hero-note {
    display: none;
  }

  .hero-collage__pane:not(.hero-collage__pane--mid) {
    display: none;
  }

  .hero-collage__pane--mid {
    clip-path: none;
  }

  .page-cover {
    min-height: auto;
    padding: calc(var(--header) + 64px) 40px 0;
  }

  .page-cover__main-media {
    inset: var(--header) 0 auto 42%;
    height: 100%;
  }

  .page-cover__inset-media {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(720px, 100%);
    height: 360px;
    min-height: 0;
    margin-top: 48px;
  }

  .page-cover__content {
    width: min(720px, 100%);
    margin-left: 0;
    padding: 96px 0 64px;
  }

  .page-content-block {
    padding: 88px 0 104px;
  }

  .page-content-block__intro,
  .page-content-block__stack {
    width: min(100% - 80px, 920px);
  }

  .page-content-block__intro {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 54px;
  }

  .page-content-block__headline h2 {
    font-size: clamp(3rem, 7vw, 5.4rem);
  }

  .page-content-service,
  .page-content-service.is-reversed {
    grid-template-columns: 1fr;
  }

  .page-content-service.is-reversed .page-content-service__content {
    order: 0;
    border-left: 0;
  }

  .page-content-service__content {
    min-height: 360px;
    border-right: 0;
  }

  .page-content-service__media {
    min-height: 440px;
  }

  .agency {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-top: 4rem;
  }

  .agency__content {
    grid-column: 1;
    width: 100%;
    max-width: 720px;
  }

  .agency__visual {
    grid-column: 1;
    width: 100%;
    min-height: auto;
  }

  .agency__stage {
    min-height: 600px;
  }

  .method-browser {
    min-height: 480px;
  }

  .method-browser__body {
    min-height: 438px;
  }

  .word-marquee {
    position: relative;
    left: -8vw;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: -4rem;
  }

  .flow-pin {
    gap: 2.8rem;
    padding-inline: 40px;
  }

  .flow-pin::after {
    display: none;
  }

  .flow-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flow-header span,
  .flow-header h2 {
    grid-column: 1;
  }

  .flow-stage {
    grid-template-columns: 1fr;
  }

  .flow-detail {
    min-height: auto;
    padding: 2rem 0 0;
    color: var(--blue);
  }

  .flow-detail p {
    color: rgba(9, 9, 9, 0.62);
  }

  .flow-detail .arrow-link {
    color: var(--blue);
  }

  .blueprint {
    min-height: auto;
  }

  .blueprint__pin {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    padding-inline: 40px;
  }

  .blueprint__intro {
    position: relative;
    top: auto;
    max-width: 760px;
    translate: none;
  }

  .blueprint__system {
    grid-template-rows: minmax(420px, 52vh) auto;
  }

  .testimonials-section {
    grid-template-columns: 1fr;
    padding-inline: 40px;
  }

  .testimonials-section__intro {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .portfolio {
    min-height: 220vh;
    padding: 0;
  }

  .portfolio__pin {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-inline: 40px;
  }

  .portfolio__intro {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .portfolio__intro h2 {
    max-width: 620px;
    font-size: clamp(2.55rem, 4.5vw, 5.5rem);
    line-height: 0.94;
  }

  .portfolio__intro p {
    max-width: 560px;
    font-size: clamp(1rem, 1.15vw, 1.16rem);
    line-height: 1.6;
  }

  .portfolio-item {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  }

  .portfolio-item:hover {
    padding-inline: 20px;
  }

  .news-card {
    flex-basis: 40%;
  }

  .contact-drawer__panel {
    width: min(100%, 500px);
  }
}

@media (max-width: 720px) {
  :root {
    --header: 92px;
  }

  body {
    background: #fff;
  }

  .fixed-lines {
    display: none;
  }

  .site-header {
    height: var(--header);
    grid-template-columns: 74px 1fr 74px;
  }

  .header-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 1;
    border: none;
    border-left: 1px solid var(--line);
    background: none;
    padding: 0;
    cursor: pointer;
    color: var(--blue);
    transition: color 0.3s var(--ease);
  }

  .header-contact-btn:hover {
    color: var(--yellow);
  }

  .header-contact-btn svg {
    width: 18px;
    height: 18px;
  }

  body.has-page-cover .header-contact-btn {
    color: rgba(255,255,255,0.85);
    border-color: var(--white-line);
  }

  body.has-page-cover .header-contact-btn:hover {
    color: var(--yellow);
  }

  body.is-menu-open .header-contact-btn {
    color: rgba(255,255,255,0.85);
    border-color: var(--white-line);
  }

  .menu-toggle {
    grid-column: 3;
  }

  .brand {
    padding: 0 1rem;
  }

  .brand__mark {
    width: 42px;
    height: 30px;
  }

  .brand__mark img {
    width: 82px;
    height: 82px;
    transform: translate(-20px, -12px);
  }

  .brand span {
    font-size: clamp(1.45rem, 6vw, 2.2rem);
  }

  .brand small {
    font-size: 0.62rem;
    letter-spacing: 0.34em;
  }

  .hero {
    min-height: unset;
    height: auto;
    padding: var(--header) 1.5rem 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--blue);
    color: #fff;
  }

  .hero__content {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    max-width: 100%;
    max-height: none;
  }

  .hero__label {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .hero-note {
    display: none;
  }

  .hero-collage {
    position: relative;
    inset: auto;
    top: auto;
    flex: 0 0 45vw;
    min-height: 260px;
    max-height: 45vw;
    height: 45vw;
    gap: 0;
    margin: 0 -1.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    pointer-events: auto;
  }

  .hero-collage__pane--low,
  .hero-collage__pane--high {
    display: none;
  }

  .hero-collage__pane--mid {
    clip-path: none;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
  }

  .hero-collage__pane--mid img,
  .hero-collage__pane--mid video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .page-cover {
    padding: calc(var(--header) + 42px) 24px 0;
  }

  .page-cover__main-media {
    top: var(--header);
    left: 0;
    right: 0;
    bottom: auto;
    height: 42%;
    clip-path: none;
    opacity: 0.4;
  }

  .page-cover__main-media::after {
    background: rgba(9, 9, 9, 0.64);
  }

  .page-cover__content {
    padding: 120px 0 48px;
  }

  .page-cover__eyebrow {
    gap: 16px;
    font-size: 0.72rem;
  }

  .page-cover__eyebrow span {
    width: 28px;
  }

  .page-cover__title {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .page-cover__content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-cover__inset-media {
    height: 260px;
    margin-top: 28px;
  }

  .page-content-block {
    padding: 68px 0 78px;
  }

  .page-content-block__intro,
  .page-content-block__stack {
    width: calc(100% - 40px);
  }

  .page-content-block__intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 38px;
  }

  .page-content-block__headline h2 {
    font-size: clamp(2.45rem, 11vw, 4.1rem);
  }

  .page-content-block__summary p {
    margin-top: 24px;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .page-content-service,
  .page-content-service.is-reversed {
    flex-direction: column;
    gap: 0;
  }

  .page-content-service.is-reversed .page-content-service__content {
    order: 0;
  }

  .page-content-service__media {
    flex: none;
    width: 100%;
    min-height: 260px;
    clip-path: none !important;
  }

  .page-content-service__content {
    flex: none;
    width: 100%;
    min-height: auto;
    padding: 36px 1.25rem;
    border-right: 0;
  }

  .page-content-service h3 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .page-content-service p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .agency {
    min-height: auto;
    padding: 3rem 1.5rem 3rem;
    gap: 2rem;
  }

  .section-kicker,
  .positioning-section .agency__kicker {
    padding-left: 0;
    font-size: 0.74rem !important;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .agency__headline {
    margin-top: 1rem;
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }

  .agency__content p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .agency__signals {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .agency__signals li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .agency__signals li:last-child {
    border-bottom: 0;
  }

  .agency__visual {
    min-height: auto;
  }

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

  .agency__stage::after,
  .positioning-section .agency__stage::after {
    display: none !important;
  }

  .method-browser {
    min-height: auto;
    border: 1px solid #d7deea;
    border-radius: 6px;
  }

  .method-browser--performance {
    margin-top: 1.5rem;
  }

  .method-browser__body {
    min-height: auto;
    padding: 28px;
  }

  .method-browser__body strong {
    font-size: 2.35rem;
  }

  .method-browser__body p {
    font-size: 0.98rem;
  }

  .browser-lines {
    margin-top: 2.75rem;
  }

  .method-browser--performance .method-browser__body strong {
    font-size: 2rem;
  }

  .standard-list {
    width: calc(100% + 56px);
    margin: 2.5rem -28px -28px;
  }

  .standard-list li {
    min-height: 74px;
    padding: 0 28px;
    border-right: 0;
    border-bottom: 1px solid #e3e7ef;
  }

  .standard-list li:last-child {
    border-bottom: 0;
  }

  .word-marquee {
    display: none;
  }

  .blueprint__word,
  .portfolio__word {
    display: none;
  }

  .flow-section {
    min-height: 300vh;
    overflow: visible;
  }

  .flow-pin {
    position: sticky;
    top: var(--header);
    min-height: auto;
    padding: 2.5rem 1.5rem 3rem;
    overflow: hidden;
  }

  .flow-header h2 {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
  }

  .flow-stage {
    gap: 1rem;
  }

  .flow-window {
    overflow: hidden;
    padding-bottom: 0;
  }

  .flow-rail {
    width: auto;
    scroll-snap-type: none;
  }

  .flow-card {
    width: min(75vw, 300px);
    min-height: 360px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .flow-card.is-active {
    transform: none;
  }

  .flow-card h3 {
    font-size: 2.2rem;
  }

  .flow-detail {
    display: none;
  }

  .flow-word {
    display: none;
  }

  .blueprint {
    background: var(--blue);
  }

  .blueprint__browser {
    border: none;
  }

  .blueprint__pin {
    padding: 3rem 1.5rem 3.5rem;
    gap: 2rem;
  }

  .blueprint__intro h2 {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
  }

  .blueprint__system {
    grid-template-rows: 560px auto;
    gap: 1.5rem;
  }

  .blueprint__screen {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .blueprint__zone {
    padding: 20px;
  }

  .blueprint__zone strong {
    font-size: 1.35rem;
  }

  .blueprint__zone--hero {
    grid-column: 1;
    grid-row: 1;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 222, 234, 0.16);
  }

  .blueprint__zone--proof {
    grid-column: 1;
    grid-row: 2;
    border-bottom: 1px solid rgba(215, 222, 234, 0.16);
  }

  .blueprint__zone--speed {
    grid-column: 1;
    grid-row: 3;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 222, 234, 0.16);
  }

  .blueprint__zone--action {
    grid-column: 1;
    grid-row: 4;
  }

  .blueprint__measure {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .blueprint__proofs {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 10px;
    margin-top: 1.5rem;
    padding-top: 0;
  }

  .blueprint__proofs::before {
    background-size: 32px 32px;
  }

  .blueprint__proofs::after {
    display: none;
  }

  .blueprint__connector {
    display: none;
  }

  .blueprint__node,
  .blueprint__node--center,
  .blueprint__node--one,
  .blueprint__node--two,
  .blueprint__node--three,
  .blueprint__node--four {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    transform: none !important;
    border: none;
  }

  .blueprint__node--center {
    order: -1;
  }

  .blueprint__node {
    padding: 1.35rem;
  }

  .blueprint__word {
    font-size: 5.5rem;
  }

  .testimonials-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 3.5rem;
    gap: 2rem;
    background: #fff;
  }

  .testimonials-section__intro h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }

  .testimonial-card blockquote {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    line-height: 1.3;
    margin: 1rem 0;
  }

  .testimonials-section__word {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card,
  .testimonial-card:nth-child(odd) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #e4e8f1;
  }

  .testimonial-card:last-child {
    border-bottom: 0;
  }

  .testimonial-card__footer {
    align-items: start;
    flex-direction: column;
  }

  .testimonial-card__metric {
    text-align: left;
  }

  .testimonials-section__word {
    font-size: 5.5rem;
  }

  .portfolio {
    min-height: auto;
    padding: 0;
  }

  .portfolio__pin {
    position: relative;
    top: auto;
    min-height: auto;
    padding: calc(var(--header) + 2.5rem) 2rem 5rem;
    gap: 2.6rem;
  }

  .portfolio__intro h2 {
    font-size: 3.05rem;
  }

  .portfolio__list {
    max-height: none;
    overflow: visible;
    border-top: 1px solid var(--line);
  }

  .portfolio-item {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 2rem 0;
  }

  .portfolio-item::before {
    inset: 0 -2rem;
  }

  .portfolio-item:hover {
    padding-inline: 0;
  }

  .portfolio-item h3 {
    font-size: 2.7rem;
  }

  .portfolio-item__stats {
    gap: 1.25rem;
    margin-top: 1.55rem;
  }

  .portfolio-preview {
    min-height: 240px;
  }

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

  .portfolio-preview__panel {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 104px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(9, 9, 9, 0.82);
    backdrop-filter: blur(10px);
  }

  .portfolio-preview__panel i {
    width: 58%;
    height: 6px;
    margin-bottom: 1.6rem;
  }

  .portfolio-preview__panel strong {
    color: #fff;
    font-size: 1.35rem;
  }

  .portfolio-preview__panel span {
    color: rgba(255, 255, 255, 0.6);
  }

  .portfolio__word {
    font-size: 5.5rem;
  }

  .services {
    min-height: 150px;
  }

  .news {
    padding: 0;
  }

  .footer__columns {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex-basis: 75%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .news-card__body {
    min-height: 0;
    padding: 1rem;
  }

  .news-card h3 {
    padding-right: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .contact-drawer__panel {
    width: 100%;
  }

  .contact-drawer__close {
    left: calc(100% - 74px);
    width: 74px;
    height: 74px;
  }

  .contact-drawer__content {
    min-height: 100dvh;
    margin-top: -74px;
    padding: 2rem 1.5rem;
  }

  .contact-drawer h2 {
    max-width: 320px;
    font-size: 2.6rem;
    line-height: 1;
  }

  .contact-drawer__content > p {
    margin-bottom: 1rem;
  }

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

  .footer {
    min-height: unset;
    background: var(--blue);
  }

  .footer__translate {
    min-height: unset;
    transform: none;
    padding: 2rem 1.5rem;
  }

  .footer__columns {
    gap: 2rem;
  }

  .footer__nav {
    gap: 1rem 1.5rem;
    margin-top: 2.5rem;
  }

  .footer__legal {
    margin-top: 2rem;
  }

  .cursor {
    display: none;
  }
}

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

/* WordPress integration layer. Visual rules above are copied from the static prototype. */
.wp-site-blocks,
.wp-site-blocks > *,
.wp-block-post-content,
.entry-content {
  margin-block-start: 0;
}

.wp-block-post-content {
  display: block;
}

.alpenor-front,
.alpenor-page {
  margin-block-start: 0;
}

.alpenor-page > .entry-content:empty::before {
  content: "Add Alpenor blocks from the WordPress editor.";
  display: block;
  padding: calc(var(--header) + clamp(4rem, 7vw, 7rem)) clamp(1.5rem, 4vw, 5rem) clamp(4rem, 7vw, 7rem);
  color: #8b91a8;
  font-size: 1rem;
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .menu-panel,
body.admin-bar .contact-drawer,
body.admin-bar .preloader {
  top: 32px;
}

body.admin-bar .hero {
  min-height: calc(100vh - 32px);
}

body.admin-bar .page-cover {
  min-height: calc(100vh - 32px - var(--header));
}

.alpenor-editor-hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-hero > *:not(.alpenor-editor-hero-video) {
  position: relative;
  z-index: 1;
}

.alpenor-editor-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.alpenor-editor-hero h2 {
  display: grid;
  gap: 0.08em;
  margin: 0;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.alpenor-editor-hero h2 span,
.alpenor-editor-hero h2 em {
  display: block;
  font-style: normal;
}

.alpenor-editor-hero h2 em {
  color: var(--yellow);
}

.alpenor-editor-hero p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #626985;
  font-size: 17px;
  line-height: 1.55;
}

.alpenor-editor-hero strong {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
}

.alpenor-editor-hero-video {
  position: absolute;
  inset: auto 0 0 auto;
  width: 34%;
  height: 100%;
  opacity: 0.22;
  object-fit: cover;
  pointer-events: none;
}

.alpenor-editor-page-cover {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 64px 40px 44px;
  background: var(--blue);
  color: #fff;
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-page-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 33.333% 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 120px;
  pointer-events: none;
}

.alpenor-editor-page-cover > *:not(img):not(video) {
  position: relative;
  z-index: 2;
}

.alpenor-editor-page-cover > img,
.alpenor-editor-page-cover > video {
  position: absolute;
  inset: 0 0 0 48%;
  z-index: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
}

.alpenor-editor-page-cover h2 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
}

.alpenor-editor-page-cover p {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.45;
}

.alpenor-editor-media-preview {
  width: 100%;
  max-height: 180px;
  margin-bottom: 12px;
  object-fit: cover;
  background: #111;
}

.alpenor-editor-clear-media {
  margin-top: 10px;
}

.alpenor-editor-intro {
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-intro .alpenor-editor-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alpenor-editor-intro h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 500;
  text-align: center;
}

.alpenor-editor-intro h2 span {
  display: block;
}

.alpenor-editor-page-content {
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent calc(33.333% - 0.5px), var(--line) calc(33.333% - 0.5px), var(--line) calc(33.333% + 0.5px), transparent calc(33.333% + 0.5px)),
    #fff;
  color: var(--blue);
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-page-content h2 {
  max-width: 860px;
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
  font-weight: 500;
}

.alpenor-editor-page-content p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(9, 9, 9, 0.62);
  font-size: 18px;
  line-height: 1.55;
}

.alpenor-editor-page-content__stack {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  border: 1px solid var(--line);
}

.alpenor-editor-page-content__stack article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 180px;
  gap: 24px;
  align-items: center;
  min-height: 136px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.alpenor-editor-page-content__stack article:last-child {
  border-bottom: 0;
}

.alpenor-editor-page-content__stack article > span {
  color: rgba(9, 9, 9, 0.36);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.alpenor-editor-page-content__stack small {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alpenor-editor-page-content__stack h3 {
  margin: 0;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
}

.alpenor-editor-page-content__stack p {
  margin-top: 10px;
  font-size: 14px;
}

.alpenor-editor-page-content__stack article > div:last-child {
  width: 100%;
  height: 100%;
  min-height: 112px;
  background-position: center;
  background-size: cover;
}

.alpenor-editor-intro ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.alpenor-editor-intro li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--yellow);
  font-weight: 500;
}

.alpenor-editor-intro li span {
  color: rgba(9, 9, 9, 0.42);
  font-size: 12px;
}

.alpenor-editor-intro li strong {
  color: var(--yellow);
  font-weight: 500;
}

.alpenor-editor-positioning {
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-positioning .alpenor-editor-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alpenor-editor-positioning h2 {
  max-width: 760px;
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 500;
}

.alpenor-editor-positioning p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(9, 9, 9, 0.68);
  white-space: pre-line;
}

.alpenor-editor-positioning ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.alpenor-editor-positioning li {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--yellow);
  font-weight: 500;
}

.alpenor-editor-agency-content {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-agency-content .alpenor-editor-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alpenor-editor-agency-content h2 {
  max-width: 900px;
  margin: 0;
  color: var(--blue);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 500;
}

.alpenor-editor-agency-content p {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(9, 9, 9, 0.66);
  white-space: pre-line;
}

.alpenor-editor-agency-content ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.alpenor-editor-agency-content li {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 600;
}

.alpenor-editor-card {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.alpenor-editor-card > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 500;
}

.alpenor-editor-card .components-button + .components-button {
  margin-left: 8px;
}

.alpenor-editor-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.alpenor-editor-promise {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--blue);
  color: #fff;
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-promise .alpenor-editor-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alpenor-editor-promise h2 {
  max-width: 640px;
  margin: 0;
  font-size: 38px;
  line-height: 1.04;
  font-weight: 500;
}

.alpenor-editor-promise p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  white-space: pre-line;
}

.alpenor-editor-promise strong {
  display: inline-block;
  margin-top: 24px;
  color: #fff;
  font-weight: 500;
}

.alpenor-editor-testimonials {
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  font-family: Outfit, system-ui, sans-serif;
}

.alpenor-editor-testimonials .alpenor-editor-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.alpenor-editor-testimonials h2 {
  max-width: 680px;
  margin: 0;
  font-size: 38px;
  line-height: 1.04;
  font-weight: 500;
}

.alpenor-editor-testimonials ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.alpenor-editor-testimonials li {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.positioning-section .method-browser__body strong,
.positioning-section .method-browser--performance .method-browser__body strong {
  max-width: 520px;
  margin-inline: 0;
  font-size: clamp(2rem, 2.45vw, 3rem);
  line-height: 1.04;
  font-weight: 400;
}

.positioning-section .method-browser__body p,
.positioning-section .method-browser--performance .method-browser__body p {
  max-width: 460px;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.positioning-section {
  overflow: visible;
  padding-top: 56px;
}

.positioning-section .agency__content {
  overflow: visible;
  padding-top: 0;
}

.positioning-section .agency__visual {
  padding-top: 0;
}

.positioning-section .agency__stage::after {
  display: block;
}

.positioning-section .method-browser {
  min-height: 0;
}

.positioning-section .method-browser--performance {
  min-height: 0;
}

.positioning-section .agency__kicker {
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  line-height: 1;
}

.positioning-section__actions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Split pill */
.positioning-section__pill {
  display: inline-flex;
  align-items: center;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7deea;
  box-shadow: 0 14px 28px rgba(9, 9, 9, 0.045);
}

.positioning-section__pill-btn {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

/* Primary half — filled dark */
.positioning-section__pill-btn:first-child {
  background: var(--blue);
  color: #fff;
}

.positioning-section__pill-btn:first-child:hover {
  background: var(--yellow);
}

/* Secondary half */
.positioning-section__pill-btn--secondary {
  background: #fff;
  color: var(--blue);
  opacity: 0.45;
  transition: opacity 0.25s var(--ease);
}

.positioning-section__pill-btn--secondary:hover {
  opacity: 1;
}


.intro-block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 92px 48px 104px;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}


.intro-block > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.intro-block__text {
  grid-column: 1 / 4;
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 64px;
  text-align: center;
}

.intro-block__kicker {
  display: block;
  color: var(--yellow);
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-block__headline {
  max-width: 1280px;
  margin: 2.55rem auto 0;
  color: var(--blue);
  font-size: clamp(2.5rem, 3.15vw, 4.15rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

.intro-block__text .line-reveal-title i {
  transform-origin: bottom center;
}

.intro-block__headline em {
  color: var(--yellow);
  font-style: normal;
}

.intro-block__items {
  position: relative;
  z-index: 3;
  grid-column: 1 / 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-block__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 0;
  min-height: 96px;
  padding: 1.05rem 1.55rem;
  border-right: 1px solid var(--line);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.intro-block__item::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: -1px;
  width: 52px;
  height: 2px;
  background: var(--yellow);
}

.intro-block__item:last-child {
  border-right: 0;
}

.intro-block__item span {
  display: none;
  color: rgba(9, 9, 9, 0.42);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 500;
}

.intro-block__item strong {
  display: block;
  max-width: 330px;
  color: var(--blue);
  font-size: clamp(1.18rem, 1.34vw, 1.62rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.intro-block__items.reveal {
  opacity: 1;
  transform: none;
}

.intro-block__items.is-visible .intro-block__item {
  opacity: 1;
  transform: translateY(0);
}

.intro-block__items.is-visible .intro-block__item:nth-child(1) {
  transition-delay: 0.08s;
}

.intro-block__items.is-visible .intro-block__item:nth-child(2) {
  transition-delay: 0.2s;
}

.intro-block__items.is-visible .intro-block__item:nth-child(3) {
  transition-delay: 0.32s;
}

.intro-block__items.is-visible .intro-block__item:nth-child(4) {
  transition-delay: 0.44s;
}

@media (max-width: 1180px) {
  .intro-block {
    grid-template-columns: 1fr;
    padding: 86px 2rem 78px;
  }

  .intro-block__text,
  .intro-block__items {
    grid-column: 1;
  }

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

  .intro-block__item {
    min-height: 112px;
    padding: 1.25rem 1.5rem;
    align-content: center;
    align-items: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .intro-block__item:nth-child(2n) {
    border-right: 0;
  }

  .intro-block__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .intro-block {
    padding: 3rem 1.5rem 3rem;
  }

  .intro-block__text {
    padding-bottom: 2.5rem;
    text-align: left;
  }

  .intro-block__headline {
    margin-top: 1.25rem;
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
    line-height: 1.22;
  }

  .intro-block__items {
    grid-template-columns: 1fr;
  }

  .intro-block__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    min-height: 82px;
    padding: 1rem 1.1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-block__item::before {
    left: 1.1rem;
    width: 42px;
  }

  .intro-block__item:nth-child(2n),
  .intro-block__item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-block__item:last-child {
    border-bottom: 0;
  }

.intro-block__item strong {
  font-size: 1.32rem;
  }
}

.agency-content-page {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  color: var(--blue);
}


.agency-content-page > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   INTRO — mirrors positioning section DNA:
   left col = kicker + massive number + copy
   right col = headline + image stacked
   ═══════════════════════════════════════════════ */
.agency-content-page__intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr calc(66.666% - 64px);
  column-gap: 0;
  align-items: start;
  min-height: 860px;
  padding: 0;
}

/* kicker label — gold, small caps */
.agency-content-page__kicker,
.agency-content-page__section-head > span,
.agency-content-page__strength > span,
.agency-content-page__objective > span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* left column — kicker + massive index + copy */
.agency-content-page__intro-left {
  position: sticky;
  top: var(--header);
  padding: 112px 48px 76px;
  min-height: 0;
}

/* enormous gold number — same language as .agency__kicker on homepage */
.agency-content-page__intro-num {
  margin-top: 1.6rem;
  font-size: clamp(5rem, 9vw, 10.5rem);
  line-height: 0.88;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.agency-content-page__copy {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.agency-content-page__copy p {
  margin: 0;
  max-width: 440px;
  color: rgba(9, 9, 9, 0.62);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
}

.agency-content-page__copy p + p {
  margin-top: 1.5rem;
}

/* right column — headline stacked above image */
.agency-content-page__intro-right {
  display: flex;
  flex-direction: column;
  min-height: 860px;
}

.agency-content-page__headline {
  margin: 0;
  padding: 112px 48px 64px;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

/* image fills remaining right-column height */
.agency-content-page__intro-media {
  position: relative;
  flex: 1;
  min-height: clamp(340px, 36vw, 540px);
  overflow: hidden;
  background: #f0ede8;
  margin: 0;
}

.agency-content-page__intro-media::after {
  content: none;
}

.agency-content-page__intro-media img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.agency-content-page__identity {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  row-gap: 24px;
  padding: clamp(76px, 7.5vw, 120px) 48px;
  column-gap: 24px;
}

.agency-browser {
  overflow: hidden;
  min-height: 392px;
  border: 1px solid #d7deea;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(9, 9, 9, 0.045);
  will-change: transform;
}

.agency-browser--large {
  grid-row: span 2;
  min-height: 620px;
}

.agency-browser__kicker {
  display: block;
  color: rgba(9, 9, 9, 0.58);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.agency-browser--large .agency-browser__kicker {
  color: var(--yellow);
}

.agency-browser__desc {
  margin: 1.4rem 0 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(9, 9, 9, 0.62);
}

.agency-browser__desc + .agency-browser__desc {
  margin-top: 1.5rem;
}

.agency-browser--large .agency-browser__body {
  justify-content: space-between;
}

.agency-browser--large .agency-browser__body strong {
  color: var(--blue);
}

.agency-browser__gold-lines {
  display: grid;
  gap: 14px;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e3e7ef;
}

.agency-browser__gold-lines i {
  display: block;
  height: 9px;
  border-radius: 2px;
  background: #eaedf4;
}

.agency-browser__gold-lines i:first-child {
  width: 68%;
  background: var(--yellow);
  opacity: 0.75;
}

.agency-browser__gold-lines i:nth-child(2) {
  width: 85%;
}

.agency-browser__gold-lines i:nth-child(3) {
  width: 54%;
}

.agency-browser__gold-lines--sm {
  margin-top: 2rem;
  padding-top: 2rem;
  gap: 12px;
}

.agency-browser__gold-lines--sm i {
  height: 7px;
}

.agency-browser--commitment .agency-browser__body {
  justify-content: space-between;
}

.agency-browser--commitment .agency-browser__body strong {
  margin-top: 16px;
  font-size: clamp(1.3rem, 1.7vw, 1.9rem);
  line-height: 1.2;
  font-weight: 400;
  color: var(--blue);
}

.agency-browser .browser-bar {
  background: #fbfbfd;
  border-bottom-color: #e8eaf0;
}

.agency-browser__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px;
  min-height: calc(100% - 42px);
}

.agency-browser__body > span {
  display: block;
  color: rgba(9, 9, 9, 0.58);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.agency-browser__body strong {
  display: block;
  max-width: 760px;
  margin-top: 24px;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 3.65rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.agency-browser:not(.agency-browser--large) .agency-browser__body strong {
  font-size: clamp(1.75rem, 2.1vw, 2.6rem);
}

.agency-browser__sub {
  display: block;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(9, 9, 9, 0.62);
}

.agency-browser__body ul {
  display: grid;
  gap: 0;
  margin: 2.8rem -48px -48px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e3e7ef;
  width: calc(100% + 96px);
}

.agency-browser__body li {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid #e3e7ef;
  color: var(--blue);
  font-size: 0.86rem;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}

.agency-browser__body li:last-child {
  border-bottom: 0;
}

.agency-content-page__sectors {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  background: var(--blue);
  color: #fff;
}

.agency-content-page__section-head {
  padding: clamp(70px, 7vw, 120px) 48px;
}

.agency-content-page__section-head h2 {
  max-width: 700px;
  margin: 1.6rem 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.agency-content-page__section-head p {
  max-width: 480px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.agency-content-page__sector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-content-page__sector {
  position: relative;
  min-height: 220px;
  padding: clamp(28px, 3vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-content-page__sector:nth-child(2n) {
  border-right: 0;
}

.agency-content-page__sector:nth-last-child(1),
.agency-content-page__sector:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.agency-content-page__sector::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 3vw, 52px);
  width: 40px;
  height: 2px;
  background: var(--yellow);
  opacity: 0.8;
}

.agency-content-page__sector span {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
}

.agency-content-page__sector strong {
  display: block;
  max-width: 360px;
  margin-top: clamp(32px, 4vw, 56px);
  color: #fff;
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0;
}

.agency-content-page__strength {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-content-page__strength > span {
  padding: 42px 48px;
  color: var(--yellow);
}

.agency-content-page__strength p {
  margin: 0;
  padding: 38px 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  line-height: 1.45;
  font-weight: 400;
}

.agency-content-page__method {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 132px) 48px clamp(86px, 9vw, 150px);
  background: #fff;
  color: var(--blue);
}

.agency-content-page__section-head--method {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
  padding: 0 0 clamp(54px, 6vw, 96px);
}

.agency-content-page__section-head--method h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.08;
}

.agency-content-page__method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.agency-content-page__method-grid article {
  min-height: 300px;
  padding: clamp(28px, 3vw, 52px);
  border-right: 1px solid var(--line);
}

.agency-content-page__method-grid article:last-child {
  border-right: 0;
}

.agency-content-page__method-grid article > span {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.agency-content-page__method-grid h3 {
  margin: clamp(48px, 5.5vw, 80px) 0 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  line-height: 1.15;
  font-weight: 500;
}

.agency-content-page__method-grid p {
  max-width: 340px;
  margin: 1rem 0 0;
  color: rgba(9, 9, 9, 0.55);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

.agency-content-page__objective {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  margin-top: clamp(44px, 5vw, 76px);
  padding-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.agency-content-page__objective strong {
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
}

.agency-content-page__objective .arrow-link {
  color: var(--blue);
}

.agency-content-page__sector,
.agency-content-page__method-grid article {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.agency-content-page__sectors.is-visible .agency-content-page__sector,
.agency-content-page__method.is-visible .agency-content-page__method-grid article {
  opacity: 1;
  transform: translateY(0);
}

.agency-content-page__sectors.is-visible .agency-content-page__sector:nth-child(1),
.agency-content-page__method.is-visible .agency-content-page__method-grid article:nth-child(1) {
  transition-delay: 0.08s;
}

.agency-content-page__sectors.is-visible .agency-content-page__sector:nth-child(2),
.agency-content-page__method.is-visible .agency-content-page__method-grid article:nth-child(2) {
  transition-delay: 0.18s;
}

.agency-content-page__sectors.is-visible .agency-content-page__sector:nth-child(3),
.agency-content-page__method.is-visible .agency-content-page__method-grid article:nth-child(3) {
  transition-delay: 0.28s;
}

.agency-content-page__sectors.is-visible .agency-content-page__sector:nth-child(4),
.agency-content-page__method.is-visible .agency-content-page__method-grid article:nth-child(4) {
  transition-delay: 0.38s;
}

.agency-content-page__sectors.is-visible .agency-content-page__sector:nth-child(5) {
  transition-delay: 0.48s;
}

@media (max-width: 1180px) {
  .agency-content-page__identity,
  .agency-content-page__sectors,
  .agency-content-page__strength,
  .agency-content-page__section-head--method,
  .agency-content-page__objective {
    grid-template-columns: 1fr;
  }

  /* intro: stack vertically at tablet */
  .agency-content-page__intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .agency-content-page__intro-left {
    position: static;
    padding: 64px 1.5rem 48px;
    border-bottom: 1px solid var(--line);
  }

  .agency-content-page__intro-right {
    border-left: 0;
    min-height: auto;
  }

  .agency-content-page__headline {
    padding: 52px 1.5rem 44px;
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .agency-content-page__intro-media {
    min-height: 320px;
  }

  .agency-browser--large {
    grid-row: auto;
  }

  .agency-content-page__sector-grid {
    border-left: 0;
  }

  .agency-content-page__strength {
    grid-column: auto;
  }

  .agency-content-page__strength p {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .agency-content-page__method-grid article:nth-child(2n) {
    border-right: 0;
  }

  .agency-content-page__method-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--white-line);
  }
}

@media (max-width: 720px) {
  .agency-content-page__identity,
  .agency-content-page__method {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* identity: single column, tighter padding */
  .agency-content-page__identity {
    padding-top: 52px;
    padding-bottom: 48px;
    row-gap: 16px;
  }

  .agency-browser__body {
    padding: 28px;
  }

  .agency-browser__body ul {
    margin: 2rem -28px -28px;
    width: calc(100% + 56px);
  }

  .agency-browser__body li {
    padding: 0 28px;
  }

  .agency-browser__gold-lines {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  /* intro */
  .agency-content-page__intro-left {
    padding: 48px 1.25rem 36px;
  }

  .agency-content-page__intro-num {
    font-size: clamp(4.5rem, 18vw, 7rem);
  }

  .agency-content-page__headline {
    padding: 40px 1.25rem 36px;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .agency-content-page__copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .agency-content-page__intro-media {
    min-height: 260px;
  }

  /* sectors: stack section-head above grid */
  .agency-content-page__sectors {
    grid-template-columns: 1fr;
  }

  .agency-content-page__section-head {
    padding: 48px 1.25rem 40px;
  }

  .agency-content-page__section-head h2 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .agency-content-page__section-head p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .agency-content-page__sector-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .agency-content-page__sector {
    border-right: 0;
    min-height: auto;
    padding: 28px 1.25rem;
  }

  .agency-content-page__sector:nth-last-child(1) {
    border-bottom: 0;
  }

  .agency-content-page__sector strong {
    margin-top: 20px;
    font-size: 1.25rem;
  }

  /* strength bar */
  .agency-content-page__strength {
    grid-template-columns: 1fr;
  }

  .agency-content-page__strength > span {
    padding: 28px 1.25rem 20px;
  }

  .agency-content-page__strength p {
    padding: 20px 1.25rem 32px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
  }

  /* method */
  .agency-content-page__method {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .agency-content-page__section-head--method {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 32px;
  }

  .agency-content-page__method-grid {
    grid-template-columns: 1fr;
    border: none;
  }

  .agency-content-page__method-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0 20px;
  }

  .agency-content-page__method-grid article:last-child {
    border-bottom: none;
  }

  .agency-content-page__method-grid article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .agency-content-page__method-grid article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .agency-content-page__method-grid h3 {
    margin-top: 16px;
    font-size: 1.25rem;
  }

  .agency-content-page__method-grid p {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* objective */
  .agency-content-page__objective {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .agency-content-page__objective strong {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }
}

/* ─── Réalisations block ─────────────────────────────────────────────────── */

/* ─── Réalisations ────────────────────────────────────── */

.realisations-section {
  position: relative;
  z-index: 20;
  padding: clamp(76px, 8vw, 130px) 0 clamp(64px, 7vw, 112px);
  background: #fff;
}

/* Top bar: kicker + headline left, intro right */
.realisations-section__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: 0;
  column-gap: clamp(36px, 6vw, 96px);
  padding: 0 clamp(36px, 4vw, 80px) clamp(48px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.realisations-section__head {
  padding-right: clamp(24px, 3vw, 48px);
}

.realisations-section__kicker {
  display: block;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.realisations-section__kicker span {
  display: block;
  overflow: hidden;
}

.realisations-section__kicker span i {
  display: block;
  font-style: normal;
  transform: translateY(-110%) rotate(-5deg);
  transform-origin: bottom left;
  will-change: transform;
}

.reveal.is-visible .realisations-section__kicker span i {
  animation: heroTitleReveal 0.9s var(--ease) forwards;
}

.realisations-section__headline {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--blue);
}

.realisations-section__headline span {
  display: block;
  overflow: hidden;
}

.realisations-section__headline span i {
  display: block;
  font-style: normal;
  transform: translateY(-110%) rotate(-5deg);
  transform-origin: bottom left;
  will-change: transform;
}

.reveal.is-visible .realisations-section__headline span i {
  animation: heroTitleReveal 0.9s var(--ease) forwards;
}

.reveal.is-visible .realisations-section__headline span:nth-child(2) i { animation-delay: 0.1s; }
.reveal.is-visible .realisations-section__headline span:nth-child(3) i { animation-delay: 0.2s; }

.realisations-section__intro {
  margin: 0;
  max-width: 480px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(9, 9, 9, 0.55);
  padding-left: clamp(24px, 3vw, 48px);
  border-left: 1px solid var(--line);
  align-self: end;
}

/* ── List of project rows ── */

.realisations-section__list {
  display: flex;
  flex-direction: column;
}

.realisation-row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(72px, 8vw, 110px) 1fr auto clamp(44px, 5vw, 64px);
  align-items: center;
  gap: 0;
  column-gap: clamp(24px, 3vw, 48px);
  padding: clamp(28px, 3.5vw, 52px) clamp(36px, 4vw, 80px);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.6s var(--ease);
}

.realisation-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--row-bg);
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--ease), transform 1.1s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.realisation-row:hover::before {
  opacity: 1;
  transform: scale(1);
}

.realisation-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #fff 0%,
    #fff 38%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.realisation-row > * {
  position: relative;
  z-index: 2;
}

/* Index number */
.realisation-row__index {
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.realisation-row:hover .realisation-row__index {
  transform: translateX(4px);
}

/* Content: category + title */
.realisation-row__content {
  min-width: 0;
}

.realisation-row__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.6rem;
}

.realisation-row__category {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(9, 9, 9, 0.38);
}

.realisation-row__client {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(9, 9, 9, 0.28);
}

.realisation-row__client::before {
  content: "—";
  margin-right: 0.6rem;
  opacity: 0.5;
}

.realisation-row__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.8vw, 2.1rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--blue);
  transition: color 0.3s var(--ease);
}

/* Metric */
.realisation-row__metric {
  text-align: right;
  flex-shrink: 0;
}

.realisation-row__metric strong {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.03em;
  transition: color 0.4s var(--ease);
}

.realisation-row__metric small {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(9, 9, 9, 0.32);
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}

.realisation-row:hover .realisation-row__metric strong {
  color: #fff;
}

.realisation-row:hover .realisation-row__metric small {
  color: rgba(255, 255, 255, 0.65);
}

/* Thumbnail — hidden, image used as row background via --row-bg */
.realisation-row__thumb {
  display: none;
}

/* Arrow */
.realisation-row__arrow {
  display: grid;
  place-items: center;
  width: clamp(36px, 4vw, 52px);
  height: clamp(36px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  flex-shrink: 0;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.realisation-row:hover .realisation-row__arrow {
  border-color: var(--yellow);
  color: #fff;
  background: var(--yellow);
  transform: rotate(45deg);
}

/* Scroll-in animation */
.realisation-row {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.35s var(--ease);
}

.realisation-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.realisation-row:nth-child(2) { transition-delay: 0.08s; }
.realisation-row:nth-child(3) { transition-delay: 0.16s; }
.realisation-row:nth-child(4) { transition-delay: 0.24s; }
.realisation-row:nth-child(5) { transition-delay: 0.32s; }

/* CTA row */
.realisations-section__cta {
  display: flex;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px) clamp(36px, 4vw, 80px) 0;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .realisation-row {
    grid-template-columns: clamp(56px, 7vw, 80px) 1fr auto clamp(36px, 4vw, 48px);
  }
}

@media (max-width: 700px) {
  .realisations-section__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 2rem;
  }

  .realisations-section__intro {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
  }

  .realisations-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .realisations-section__headline {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .realisations-section__list {
    padding: 0 1.5rem;
  }

  .realisation-row {
    grid-template-columns: clamp(44px, 7vw, 64px) 1fr clamp(32px, 4vw, 44px);
    padding-left: 0;
    padding-right: 0;
  }

  .realisation-row__title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .realisation-row__client {
    display: none;
  }

  .realisation-row__metric {
    display: none;
  }

  .realisations-section__cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: flex-start;
  }
}

/* ─── Realisation drawer ─────────────────────────────── */

.realisation-drawer__panel {
  width: min(100%, 620px);
}

.realisation-drawer__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin-top: -88px;
}

.realisation-drawer__media {
  position: relative;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  overflow: hidden;
  flex-shrink: 0;
}

.realisation-drawer__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.realisation-drawer__body {
  padding: clamp(32px, 4vw, 56px);
}

.realisation-drawer__body .contact-drawer__eyebrow {
  margin-bottom: 1.5rem;
}

.realisation-drawer__body h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: #fff;
}

.realisation-drawer__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--white-line);
}

.realisation-drawer__meta-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.realisation-drawer__meta-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.realisation-drawer__meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.realisation-drawer__meta-value--gold {
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.realisation-drawer__desc {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 clamp(32px, 4vw, 52px);
}

.realisation-drawer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--yellow);
  border-bottom: 1px solid rgba(201, 164, 90, 0.3);
  padding-bottom: 6px;
  transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}

.realisation-drawer__link:hover {
  border-color: var(--yellow);
  gap: 14px;
}

@media (max-width: 900px) {
  .realisation-drawer__panel {
    width: 100%;
  }

  .realisation-drawer__media {
    height: clamp(180px, 48vw, 280px);
  }
}

/* ─── Back to top ────────────────────────────────────── */

.to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  pointer-events: none;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  tabindex: 0;
}

.to-top:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.to-top svg {
  transition: transform 0.3s var(--ease);
}

.to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .to-top {
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
  }
}
